.notificationBoxWrapper {
	width: 100%;
	display: inline-block;
	margin-left: 10px;
	margin-top: 2px;
	float: right;
}

.notificationBox {
	display: inline;
	float: right;
	margin-left: 12px;
	line-height: 15px;
	color: #393939;
	font-size: 11px;
	border-radius: 3px;
}

.notificationBox .fa {
	font-size: 13px;
}

.infoBox {
	border-radius: 0;
	background: #F9FDFE;
	color: #477B8F;
	padding: 5px 10px;
	border: 1px solid #7bd1f5;
}

.warningBox {
	border-radius: 0;
	background: #fffff7;
	color: #bb6c00;
	padding: 5px 10px;
	border: 1px solid #cf7700;
}

.errorBox {
	border-radius: 0;
	color: #AD343C;
	padding: 5px 10px;
	border: 1px solid #c83c46;
	background: #f4dbdb;
}

.feedbackMessageHorizontalLine {
	width: 100%;
	border: 0;
	border-bottom: 1px solid;
	margin: 5px 0;
}

.warningDarkBrown {
	color: #cf7700;
}

.feedbackMessageCheckBoxLabel {
	font-size: 0.95em;
	font-style: italic;
	font-weight: normal;
}

.feedbackMessageCheckBoxLabel input {
	cursor: pointer;
	vertical-align: text-top;
	margin-bottom: 0;
	margin-top: 2px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* The container */
.feedbackMessageCheckBoxContainer {
	font-size: 0.95em;
	font-style: italic;
	font-weight: normal;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	padding-left: 22px;
}

/* Hide the browser's default checkbox */
.feedbackMessageCheckBoxContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/*Create a custom checkbox */
.checkMark {
	position: absolute;
	top: 0;
	left: 0;
	height: 17px;
	width: 17px;
	background-color: #cf7700;
	border-radius: 3px;
	-webkit-box-shadow: inset 2px 2px 5px -1px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: inset 2px 2px 5px -1px rgba(0, 0, 0, 0.4);
	box-shadow: inset 2px 2px 5px -1px rgba(0, 0, 0, 0.4);
}

/*Create the checkmark/indicator (hidden when not checked) */
.checkMark:after {
	content: "";
	position: absolute;
	display: none;
}

/*Show the checkmark when checked*/
.feedbackMessageCheckBoxContainer input:checked ~ .checkMark:after {
	display: block;
}

/* Style the checkmark/indicator */
.feedbackMessageCheckBoxContainer .checkMark:after {
	left: 5px;
	top: 2px;
	width: 4px;
	height: 7px;
	border: solid #fffff7;;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.requiredField {
	color: #c83c46 !important;
	font-size: 0.8em;
}

.flagWarning {
	background: #fffff7;
	color: #bb6c00;
	border: 1px solid #cf7700;
}

.infoBoxContainer {
	margin-right: 5px;
}

.infoBoxContainer > div {
	float: right;
	display: inline-block;
	margin-bottom: 5px;
	margin-left: 5px;
}

.infoBoxContainer > div:not(:last-child) {
	display: inline-block;
	margin-bottom: 5px;
}

.infoBoxContainer .notificationPanel {
	font-size: 11px;
	border-radius: 0;
}

.infoBoxContainer .notificationPanel-text {
	padding: 5px 10px 5px 5px;
}

.invoiceNotificationContainer {
	margin-left: 60px;
	margin-right: 20px;
}

.invoiceNotificationItems {
	margin-right: 10px;
	margin-bottom: 10px;
	display: inline-block;
}

.notificationPanel {
	border: 1px solid;
	border-radius: 5px;
	font-weight: 600;
	display: inline-flex;
}

.notificationPanel.centerAlign {
	align-items: center;
}


.notificationPanel.dangerous {
	color: #AD343C;
	border-color: #AD343C;
	background: #f4dbdb;
}

.notificationPanel.warning {
	color: #bb6c00;
	border-color: #cf7700;
	background: #fffff7;
}

.notificationPanel.info {
	color: #477B8F;
	border-color: #477B8F;
	background: #F9FDFE;
}

.notificationPanelAction {
	border-radius: 5px 15px 15px 5px;
}

.notificationPanel-icon {
	padding: 5px 0 5px 10px;
}

.notificationPanel-text-message,
.notificationPanel-text {
	display: block;
	padding: 5px 10px 5px 10px;
}

.notificationPanel-text-message {
	white-space: pre-line;
	font-weight: normal;
	hyphens: auto;
	word-break: break-word;
	padding-top: 0;
}

.notificationPanel-button {
	padding: 5px 15px;
	border-radius: 15px;
	color: #ffffff;
	cursor: pointer;
}

.notificationPanel-button.info {
	border: 1px solid #477B8F;
	background: #477B8F;
}

.notificationPanel-button.info:hover {
	background: #7bd1f5;
}

.notificationPanel-button.warning {
	border: 1px solid #cf7700;
	background: #cf7700;
}

.notificationPanel-button.warning:hover {
	background: #bb6c00;
}

.notificationPanel-button.dangerous {
	border: 1px solid #AD343C;
	background: #AD343C;

}

.notificationPanel-button.dangerous:hover {
	background: #c83c46;
}
