html {
    position: relative;
    min-height: 100%;
}

body {
    overflow-x: hidden;
    font-size: 13px;
    background-color: rgba(244, 245, 249, 1);
    line-height: 1;
    font-family: 'Barlow', serif;
    min-width: 1024px;
    color: #44474A;
}

@media (max-width: 1023px) {
    body {
        overflow: auto;
    }
}

select, p, a, span, button, li, legend, textarea {
    font-family: 'Barlow', serif;
    line-height: 1;
    color: #44474A;
    font-size: 13px;
}

h1 {
    font-family: 'Barlow-Light', 'Barlow', serif;
    font-size: 20px;
    color: #44474A;
}

h2 {
    font-family: 'Barlow-Bold', 'Barlow', serif;
    font-size: 17px;
    color: #44474A;
    display: inline;
}

h3 {
    font-family: 'Barlow-Bold', 'Barlow', serif;
    font-size: 15px;
    color: #44474A;
    display: inline;
}

h4 {
    font-size: 15px;
}

legend {
    font-family: 'Barlow-Bold', 'Barlow-Regular', serif;
    font-size: 15px;
    margin-bottom: 20px;
}

a:focus {
    outline: none;
}

.text-huge {
    font-size: 20px !important;;
}

.text-large {
    font-size: 14px !important;
}

.text-small {
    font-size: 12px !important;;
}

.text-micro {
    font-size: 11px;
}
.hidden {
    display: none;
}

a {
    color: #80878E;
}

button a,
button a:hover {
    color: #ffffff;
}

a:hover {
    text-decoration: none;
    color: #80878E;
}

table td {
    font-family: 'Barlow', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
}

table th {
    font-family: 'Barlow-Bold', 'Barlow', serif;
    font-style: normal;
    font-weight: initial;
    font-size: 14px;
    color: #707A7F;
}
.table {
    margin-bottom: 0rem !important;
}

.table thead th {
    border-bottom: 1px solid #e5e5e5;
}

.table td {
    vertical-align: middle;
}

.border-table thead th {
    padding-top: 13px;
    border-top: 1px solid #dee2e6;
    border-bottom: none;
}

.table th {
    border: none;
    padding-top: 0;
}

.table-list thead th {
    padding: 17px 12px;
}

.table-list .addButton .glyphicon {
    font-size: 17px!important;
    vertical-align: middle;
    margin-right: 5px;
}
.table-list .addButton {
    border-left: 1px solid #e5e5e5;
    width: 115px;
}
.table-list .addButton:hover {
    background-color: #F1F1F1;
}

.table-scroll {
    max-height: 300px;
    overflow-y: auto;
}

.table-scroll {
    white-space: normal;
}

.table-scroll tbody {
    display: block;
    max-height: 280px;
    overflow-y: auto;
}

.table-scroll thead,
.table-scroll tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.cell90 {
    width:90px;
}

.cell120 {
    width:120px;
}

.cell140 {
    width:140px;
}

#pageTitle {
    color: #ffffff;
    height: 35px;
    padding: 8px 0;
}

/*Font properties*/
.light {
    font-family: 'Barlow-Light', 'Barlow', serif;
}

.bold {
    font-family: 'Barlow-Bold', 'Barlow', serif;
}

.blue-text {
    color: #0274D2;
}

.green-text {
    color: #109B1D;
}

.light-grey-text {
    color: #767D84 !important;
}

.dark-grey-text {
    color: #666666 !important;;
}

/*<editor-fold desc="---LOADER---">*/
#loader {
    position: fixed;
    left: 50%;
    top: 35%;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    z-index: 99999;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }
    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }
    to {
        bottom: 0;
        opacity: 1
    }
}

/*<editor-fold desc="---FORM---"*/
.form-group {
    padding: 0;
    /*margin-bottom: 20px;*/
}

.form-row {
    width: 100%;
}

.form-row > .col, .form-row > [class*=col-] {
    padding-right: 15px;
}


select.form-control[multiple] option {
    padding: 5px;
}

select.form-control:not([size]):not([multiple]) option {
    padding: 10px;
}
select.form-control:not([size]):not([multiple]) {
    height: 40px;
    padding: 5px;
}

.multipleTransfer select {
    height: 200px;
}

.form-control {
    padding: 10px;
    /*min-height: 40px;*/
}

.form-control:focus {
    box-shadow: none;
}

.form-group label {
    padding-left: 0px;
    margin-right: 20px;
}
.form-control.input-small {
    min-height: 30px;
}

label.required:after {
    content: "*";
    color: red;
    margin-left: 3px;
    font-family: 'Barlow', serif;
}
.appendInputIcon {
    position: absolute;
    right: 25px;
    top: 35px;
    font-size: 16px;
    z-index: 99;
}
.appendInputCurrencyIcon {
    background-color: rgba(242, 242, 242, 1);
    padding: 13px 20px;
    top: 23px;
    right: 16px;
    position: absolute;
}

.badge {
    font-family: 'Barlow-Thin', serif;
    line-height: normal;
    vertical-align: baseline;
    padding: .35em .7em;
    font-size: 90%;
}
.badge-success {
    background-color: rgba(87, 186, 7, 1);
}


label.disabled,
label[disabled] {
    pointer-events: none;
    opacity: .5;
    filter: alpha(opacity=50);
    cursor: default !important;
}

/*<editor-fold desc="---glyphicon----"*/

.glyphicon {
    color: #656565
}

.glyphicon-trash,
.glyphicon-plus-sign,
.glyphicon-minus-sign,
.glyphicon.appendInputIcon,
.glyphicon-pencil {
    cursor: pointer;
}

.glyphicon {
    font-size: 16px;
}

.glyphicon-remove {
    color: #ff0000;
}

.glyphicon-ok {
    color: #008000;
}

.glyphicon-trash {
    color: red !important;
}

.glyphicon-ban-circle {
    color: red !important;
}

.glyphicon-ok-circle {
    color: green !important;;
}

.glyphicon.appendInputIcon {
    position: absolute;
    right: 25px;
    top: 35px;
    z-index: 99;
}

.glyphicon-remove {
    color: #ff0000;
}

.glyphicon-ok {
    color: #008000;
}

/*<editor-fold desc="---FORM---"*/



/*</editor-fold>*/

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 99999; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

/*</editor-fold>*/

/*<editor-fold desc="---FORM---"*/
.form-group {
    padding: 0;
    margin-bottom: 20px;
}

.form-row > .col, .form-row > [class*=col-] {
    padding-right: 15px;
}

select.form-control[multiple] option {
    padding: 5px;
}

select.form-control:not([size]):not([multiple]) {
    height: 40px;
    padding: 5px;
}

.form-control {
    padding: 10px;
    height: 40px;
}

.form-control:focus {
    box-shadow: none;
}

.form-group label {
    padding-left: 0px;
    margin-right: 20px;
}

label.disabled,
label[disabled] {
    pointer-events: none;
    opacity: .5;
    filter: alpha(opacity=50);
    cursor: default !important;
}

label.required:after {
    content: "*";
    color: red;
    margin-left: 3px;
    font-family: 'Barlow', serif;
}

.crudForm .form-group label,
.input-label-gray {
    font-family: 'Barlow-Bold', 'Barlow', serif;
    font-style: normal;
    font-weight: initial;
    font-size: 14px;
    color: #707A7F;
    text-align: left;
}
.form-horizontal .table th {
    padding-top: 15px;
}

.inline-label {
    margin-top: 2rem;
}

.input-row {
    margin-bottom: 1.2rem;
    margin-left: 0;
    margin-right: 0;
}

/*</editor-fold>*/

/*<editor-fold desc="---CONTENT---">*/
.contentHeader {
    border-bottom: 1px solid #e6e6e6;
    padding: 0px 15px;
    margin-bottom: 20px;
}

.containerFooter {
    border-top: 1px solid #e6e6e6;
    padding: 15px 15px 0 15px;
}

.content-wrapper {
    padding-top: 10px;
    position: relative;
    margin-bottom: 10px;
}

.contentBottomShadow {
    border: none;
    -webkit-box-shadow: 0 5px 5px rgba(204, 204, 204, 0.4);
    -moz-box-shadow: 0 5px 5px rgba(204, 204, 204, 0.4);
    box-shadow: 0 5px 5px rgba(204, 204, 204, 0.4);
    height: 100%;
    background-color: #ffffff;
}

.contentBottomBlackShadow {
    border: none;
    -webkit-box-shadow: 0 5px 5px rgba(113, 113, 113, 0.9);
    -moz-box-shadow: 0 5px 5px rgba(113, 113, 113, 0.9);
    box-shadow: 0 5px 5px rgba(113, 113, 113, 0.9);
    height: 100%;
    background-color: #ffffff;
}

.content {
    background-color: #ffffff;
    padding: 15px;
}

.card-body p {
    color: #666666;
}

.card-footer {
    border-top: 1px solid #e5e5e5;
    background-color: #ffffff;
    min-height: 40px;
}

.small-widget-header {
    font-size: 17px;
    text-align: center;
    padding: 10px;
}

.large-widget-header {
    font-size: 17px;
    padding: 15px 0 15px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    line-height: normal;
    height: 50px;
}

.reload-widget-button {
    margin-right: 15px;
}

.large-widget-header img.icn {
    margin: 0 3px 5px 0;
}
.icn_edit,
.icn_delete,
.save-button,
.edit-button,
.update-button {
    cursor: pointer;
}

.icn_delete{
    padding-left: 5px;
}
.nav-widget-header {
    margin-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.widget-nav {
    display: inline-block;
}

.widget-export-icons {
    margin-top: 12px;
    display: inline-block;
    float: right;
}

body .form-control {
    font-size: 13px;
}

.dropdown-menu {
    z-index: 1022;
}

li.dropdown-item a {
    display: block;
}

.dropdown-item.active, .dropdown-item:active {
    background: none;
    background-color: #fff;
}

.dropdown-item:hover {
    background-color: rgba(224, 224, 224, 0.47);
}

.pagination {
    display: inline-flex;
    margin: 20px 0;
}

.pagination li > a,
.pagination li > span {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1;
    color: #017DE7;
    background-color: #fff;
    border: 1px solid #e5e5e5;
}

.pagination li.active > span {
    z-index: 1;
    color: #fff;
    background-color: #017DE7;
    border-color: #017DE7;
}

.alert h4 {
    font-size: 20px;
}

.alert {
    margin-top: 25px;
}

.modal-content .alert {
    margin-top: 0;
}

.has-error {
    border: 1px solid #dc3545 !important;
}

#pills-tab button.has-error {
    border: 1px solid #dc3545 !important;
}

.input-label-gray {
    font-family: 'Barlow-Bold', 'Barlow', serif;
    font-style: normal;
    font-weight: initial;
    font-size: 14px;
    color: #707A7F;
    text-align: left;
}

.inline-label {
    margin-top: 2rem;
}

.input-row {
    margin-bottom: 1.2rem;
    margin-left: 0;
    margin-right: 0;
}

/*</editor-fold>*/

/*<editor-fold desc="---BUTTONS BTN---">*/
.btn {
    padding: 13px 30px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    line-height: 1;
}

.btn.focus, .btn:focus {
    box-shadow: none !important;
}

.btn[disabled] {
    opacity: .65;
}

.btn-large {
    font-size: 14px;
}

.btn-small {
    padding: 10px 20px;
}

.btn-micro {
    padding: 10px 10px;
    font-size: 12px;
}

.btn-primary {
    background-color: #017DE7;
    border-color: #017DE7;
    color: white !important;
}

.btn-secondary {
    background-color: rgba(224, 225, 231, 1);
    color: #333333;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #a6aaad;
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: none;
}

.btn-outline-secondary {
    border: none;
    background-color: rgba(245, 246, 250, 1);
}

.btn-outline-secondary:hover {
    border: none;
    background-color: rgba(224, 225, 231, 1);
    color: #44474A;
}

.btn-outline-secondary.focus, .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.04rem rgba(108, 117, 125, .5);
}

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show > .btn-outline-secondary.dropdown-toggle {
    border: none;
    background-color: rgba(224, 225, 231, 1);
    color: #44474A;

}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-right: 2px solid rgba(245, 246, 250, 1);
}
.btn-group .btn+.btn {
    margin-left: 0;
}

.search-btn {
    padding-left: 5px;
    padding-top: 15px;
}

/*</editor-fold>*/

/*<editor-fold desc="--MODAL--">*/
.modal-dialog {
    margin: 100px auto
}

.modal-content {
    border-radius: 5px;
    min-width: 600px;
}

.modal-backdrop.show {
    background-color: rgb(36, 47, 56);
    opacity: 0.847059;
    z-index: 1099;
}

.modal {
    z-index: 1100;
}

.modal button.close:focus {
    outline: none;
}

.modal button.close {
    position: absolute;
    right: 15px;
}

.modal button.close > span {
    font-size: 1.5rem;
    color: #000;
    opacity: 1;
}
#CurrencyLimitsWarning {
    z-index: 999999;
}

/*</editor-fold>*/

/*<editor-fold desc="--SWITCH SLIDER--">*/
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 6px;
    top: 7px;
}

.switch input {
    display: none;
}

.slider {
    border-radius: 34px;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(217, 220, 232, 1);
    -webkit-transition: .3s;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    bottom: -7px;
    background-color: rgb(167, 170, 183);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(171, 207, 239, 1);
}

input:checked + .slider:before {
    background-color: #0274D2;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(23px);
    -ms-transform: translateX(23px);
    transform: translateX(23px);
}

/*</editor-fold>*/

/*<editor-fold desc="--- Icons ---">*/
.right-side-icon {
    margin-right: 15px;
    float: right;
}

.sort-items-icon {
    margin-left: 5px;
}

/*</editor-fold>*/

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

.collapse.row.show {
    display: flex;
}


.details-popup {
    width: 700px;
    max-height: 500px;
    position: absolute;
    z-index: 99999;
    top: 0;
    left: 0
}

.gray-background-header {
    background-color: rgba(245, 246, 250, 1);
    height: 60px;
}
.gray-background-bookings-header {
    background-color: rgba(245, 246, 250, 1);
    padding: 15px 0 15px 15px;
}

.gray-text {
    font-family: 'Barlow-Bold', 'Barlow', serif;
    font-style: normal;
    font-weight: initial;
    font-size: 14px;
    color: #707A7F;
}

.widget-category-title {
    font-size: 15px;
    line-height: 1;
}

.vcc-info {
    padding: 15px 0 15px 15px;
}

.details-title {
    text-align: right;
    font-family: 'Barlow-Bold', 'Barlow', serif;
    font-style: normal;
    font-weight: initial;
    font-size: 13px;
    color: #707A7F;
    padding-top: 10px;
}

.details-value {
    text-align: left;
    padding-top: 10px;
}

.booking-details-container {
    border-top: 1px solid #e5e5e5;
}

.bd-container {
    border-right: 1px solid #e5e5e5;
}

.hotel-booking-details{
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-left: 14px;
}

.passenger-details {
    border-bottom: 1px solid #e5e5e5;
    margin-right: 15px;
}
.cursor-pointer{
    cursor: pointer;
}
.label-info {
    color: #fff;
    background-color: #17a2b8;
}
.label-primary {
    color: #fff;
    background-color: #007bff;
}
.label {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.tooltip {
    z-index: 999999;
}
.blue-tooltip {
    margin-left: 5px;
    font-size: 16px;
    color: #0274d3;
}
.tooltip.show {
    opacity: 1;
}
.tooltip-inner {
    max-width: 300px;
    padding: 3px 8px;
    color: #fff!important;
    text-align: center;
    background-color: #0274d3;
    border-radius: .25rem;
}

.tooltip-inner p,
.tooltip-inner li {
    color: white;
    text-align: left;
    margin-top: 8px;
}
.tooltip-inner ul {
    padding: 0 15px
}
/**
 * Fix for IE10 bug. This block could be empty, but the minifier would remove it.
 */
span[data-toggle=tooltip]:hover::after {
    cursor: pointer;
}
.bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-left .arrow::before {
    border-left-color: #0274d3;
}
.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before
{
    margin-left: 3px;
    content: "";
    border-width: 5px 5px 0;
    border-top-color: #0274d3;
}
#supplementForm .table th {
    padding-top: 15px;
}

/*Latest Bookings widget*/
.enter-reference-button {
    font-size: 12px;
    border-radius: 5px;
    height: 30px;
    padding: 0 15px 0 15px;
}

.booking_status_1665 p,
.booking_status_1668 p {
    color: #b38600;
}
.booking_status_1666 p,
.booking_status_1669 p {
    color: #28a745;
}
.booking_1666 button.btn,
.booking_1669 button.btn {
    background-color: #28a745;
    color: #FFFFFF;
}

.total-payable-tbody {
    display: block;
    max-height: 110px;
    overflow-y: auto;
    width: 155px;
}

.booking_status_1667 p {
    color: #dc3545;
}
.booking_1667 button.btn {
    background-color: #dc3545;
    color: #FFFFFF;
}

.label-warning {
    background-color: #f0ad4e;
}

.label-info {
    background-color: #5bc0de;
}

.label-danger {
    background-color: #d9534f;
}

/*
* ---Disabled elements styles---
*/

.disabled-element select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    text-indent: 1px !important;
    text-overflow: '' !important;
    border: none !important;
    background: none !important;
    pointer-events: none;
}

.disabled-element input {
    border: none !important;
    background: none !important;
    cursor: auto;
}

.disabled-element input[type='checkbox'] {
    display: none;
}

.disabled-element textarea {
    height: auto;
    outline: none;
    resize: none !important;
    border: none !important;
    background: none !important;
    cursor: auto;
}



.larges-widget-header {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    line-height: normal;
}
.add-pool-innerdiv{
    margin-top: 23px;
    margin-left: 35px;
}
.add-pool-div {
    display: inline-block;
    float: right;
    width: 143px;
    border-left: 1px solid rgba(0, 0, 0, .125);
    height: 61px;
    cursor: pointer;
}

.plus-sign {
    margin-right: 5px;
    vertical-align: bottom;
}
.btn-green {
    background-color: #5cb85c;
    border-color: #5cb85c;
    color: #fff;
}
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}
.larges-widget-header h2 {
    font-family: 'Barlow-Bold', 'Barlow', serif;
    font-size: 17px;
    color: #44474A;
    position: absolute;
    left: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.allotment-form th {
    padding-top: 10px;
}
h1.light-grey-text {
    padding-left: 15px;
}
select#RoomtypesTo {
    min-width: 150px;
}

.form-group.input-small.ts.multipleTransfer.col-lg-12 {
    padding-left: 13px;
}

label.allotment-lh {
    padding-top: 10px;
}
/*
* ---!Disabled elements styles!---
*/

.multiselect-wrapper .btn-group {
    width: 100%;
}

.multiselect {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.multiselect-container {
    max-height: 200px;
    overflow-y: scroll;
}

.multiselect-container > li {
    padding: 5px;
}

.white-bg {
    background: white;
}

.price-input {
    display: inline-block;
    width: 100px;
}

.error-message-ratePlanCode {
    color: red;
    text-align: right;
    margin-right: 20px;
    margin-bottom: 10px;
}

.error-message-allocation {
    color: red;
    text-align: left;
}

.promotionRatesModal .table th {
    padding-top: 12px;
}

.promotionRatesButton {
    cursor: pointer;
}

.small-legend {
    border-radius: 3px;
    display: inline-block;
    height: 14px;
    width: 14px;
}

input.combinationCheckbox,
span.promotionRatesButton
{
    margin-right: 6px;
}

.red-color {
    color: red;
}

.green-background {
    background: #6abf58;
}

/* Make the bootstrap switch look how it is supposed to look */

.bootstrap-switch-container {
    background: white;
    width: 120px !important;
}

.bootstrap-switch {
    width: 82px !important;
}

.bootstrap-switch-handle-on,
.bootstrap-switch-handle-off,
.bootstrap-switch-label {
    width: 40px !important;
}

.bootstrap-switch-label {
    margin: 0 !important; /* Don't ask */
    padding: 0 !important;
}

.meal-supplements-form table td {
    border: none;
}

.mealSupplements .black-header {
    background: #4f4f4f;
    color: white;
}

.mealSupplements .black-header th {
    color: white;
    padding: 16px;
}

.booking-confirm-modal .modal-dialog {
    max-width: 1300px;
}

.booking-confirm-modal .table th {
    padding-top: 12px;
}

.booking-confirm-modal .row > label {
    padding-left: 15px;
}

.booking-confirm-modal .blue-header th {
    background: #4982ff;
    color: white;
    vertical-align: middle;
}

.booking-confirm-modal .label {
    font-size: 12px;
    margin-bottom: 0;
}

.booking-info-table.table th {
    padding-top: 12px;
}

table .booking-details-table-header {
    padding: 12px;
}

.modal {
    overflow: auto !important;
}

.latest-bookings .card-footer {
    text-align: center;
}

#search_results_container .card-footer {
    text-align: center;
}

.load-more-button {
    display: inline-block;
    text-align: center;
}

.white-box {
    -webkit-box-shadow: 0 5px 5px rgba(204, 204, 204, 0.4);
    -moz-box-shadow: 0 5px 5px rgba(204, 204, 204, 0.4);
    box-shadow: 0 5px 5px rgba(204, 204, 204, 0.4);
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 15px;
    position: relative;
}

.top-tabs {
    display: flex;
    position: absolute;
    right: 0;
    top: -37px;
}

.top-tab {
    background: #666;
    border-left: 1px solid #333;
    border-top: 1px solid #333;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
    padding: 10px;
}

.top-tab:first-child {
    border-top-right-radius: 0;
}

.top-tab:last-child {
    border-top-left-radius: 0;
    border-right: 1px solid #333;
}

.top-tab span {
    color: white;
    font-size: 16px;
}

.top-tab.active {
    background: white;
}

.top-tab.active span {
    color: #666;
}

.multiselect-wrapper .multiselect-container li {
    padding: 10px;
}

.multiselect-wrapper .multiselect-container .multiselect-all {
    padding: 0;
}

.allocation_table .monthText h2 {
    color: white;
}

.p-relative {
    position: relative;
}

.white-button.btn-warning:hover,
.white-button.btn-warning:active {
    color: white;
}

#ui-datepicker-div {
    z-index: 9999 !important;
}

.modern-modal .modal-content {
    background: none;
}

.modern-modal .modal-header {
    background: #488ee5;
    color: white;
}

.modern-modal .close {
    color: white;
}

.modern-modal .modal-body,
.modern-modal .modal-footer {
    background: white;
}

.bi {
    font-size: 17px;
}

.bi-white {
    color: white;
}

.button-with-icon,
.label-with-icon {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
}

.button-with-icon {
    cursor: pointer;
}

.button-with-icon:focus {
    outline: none;
}

.button-with-icon .bi,
.label-with-icon .bi {
    color: white;
    font-size: 16px;
}

.button-with-icon:hover,
.button-with-icon:hover .bi{
    color: #eee;
}

.datepickerIcon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.bi-plus-circle-fill,
.bi-dash-circle-fill {
    cursor: pointer;
}

.top-alert-wrapper .bi {
    font-size: 15px;
}