.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: #fff;
    color: #18bcdc;
    padding: 5px 10px;
    border: 1px solid #18bcdc;
}

.warningBox {
    border-radius: 0;
    background: #fffff7;
    color: #cf7700;
    padding: 5px 10px;
    border: 1px solid #cf7700;
}

.errorBox {
    border-radius: 0;
    color: #993333;
    padding: 5px 10px;
    border: 1px solid #993333;
    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: red !important;
	font-size: 0.8em;
}

.flagWarning {
    background: #fffff7;
    color: #cf7700;
    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;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.notificationPanel.dangerous {
    color: #ac2925;
    border-color: #ac2925;
    background: #f4dbdb;
}

.notificationPanel.warning {
    color: #cf7700;
    border-color: #cf7700;
    background: #fffff7;
}

.notificationPanel.info {
    color: #18bcdc;
    border-color: #187d9b;
    background: #F9FDFE;
}

.notificationPanelAction {
    border-radius: 5px 15px 15px 5px;
}

.notificationPanel-icon {
    padding: 5px 0 5px 10px;
}

.notificationPanel-text {
    padding: 5px 10px 5px 10px;
}

.notificationPanel-button {
    padding: 5px 15px;
    border-radius: 15px;
    color: #ffffff;
    cursor: pointer;
}

.notificationPanel-button.info {
    border: 1px solid #187d9b;
    background: #18bcdc;
}

.notificationPanel-button.info:hover {
    background: #187d9b;
}

.notificationPanel-button.warning {
    border: 1px solid #bb6c00;
    background: #cf7700;
}

.notificationPanel-button.warning:hover {
    background: #bb6c00;
}

.notificationPanel-button.dangerous {
    border: 1px solid #ac2925;
    background: #d9534f;
}

.notificationPanel-button.dangerous:hover {
    background: #ac2925;
}
