@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700');

html {
    font-size: 17px;
}

:root {
    /* Site Colors */
    --primary-color:57, 142, 146;
    /* Event Colors */
    --event-confirmed-color: 57, 142, 146;
    --event-tentative-color: 210, 181, 79;
    --event-cancelled-color: 213, 105, 105;
    --event-category-color: 31, 183, 249;
    /* Priority Colors */
    --low-color: #95BDFF;
    --medium-color: #B6E2A1;
    --high-color: #FEBE8C;
    --immediate-color: #FF8787;
    /* Status & Stock Status Colors */
    --new-color: #90bcfc;
    --inprogress-color: #f2ee95;
    --closed-color: #54BAB9;
    --hold-color: #FEBE8C;
    --reopen-color: #ca90d5;
    --resolved-color: #B6E2A1;
    --feedback-color: #c9ccc4;
    --cancelled-color: #FF8787;
    --fc-highlight-color: #e0ff7f;
    
    /* Make the mention background blue. */
    --ck-color-mention-background: hsla(220, 100%, 54%, 0.4) !important;

    /* Make the mention text dark grey. */
    --ck-color-mention-text: hsl(0, 0%, 15%) !important;
}
.status-filter, .priority-filter {
    height: 10px;
    width: 10px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
}
.badge-low {
    background-color: var(--low-color);
}

.badge-normal,
.badge-medium {
    background-color: var(--medium-color);
}

.badge-high {
    background-color: var(--high-color);
}

.badge-immediate {
    background-color: var(--immediate-color);
}

.badge-feedback {
    background-color: var(--feedback-color);
}

.badge-reopen,
.badge-received {
    background-color: var(--reopen-color);
}

.badge-new,
.badge-requested {
    background-color: var(--new-color);
}

.badge-inprogress,
.badge-pending {
    background-color: var(--inprogress-color);
}

.badge-cancelled,
.badge-escalated,
.badge-rejected {
    background-color: var(--cancelled-color);
}

.badge-hold,
.badge-dispatched {
    background-color: var(--hold-color);
}

.badge-resolved,
.badge-authorized {
    background-color: var(--resolved-color);
}

.badge-closed {
    background-color: var(--closed-color);
}

.center {
    margin: auto;
    width: 60%;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

[role=button] {
    cursor: pointer;
}

.hideform {
    display: none;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

body {
    background-color: #F0F0F0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.875rem;
    color: #747474;
}

.wrapper {
    display: flex;
    height: calc(100%);
}

.login-box {
    margin: 0 auto;
    background-color: #FFF;
    padding: 30px 50px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.22);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

    .login-box .btn {
        background-color: #3FCBC5;
        border-color: #3FCBC5;
        color: #FFF;
    }

.forget-password {
    color: #3FCBC5;
    font-weight: 600;
    display: block;
    margin: 5px 0px 0;
}

    .forget-password:hover {
        color: #2aa29d;
    }

.login-logo {
    text-align: center;
    margin: 40px auto;
}

a:hover {
    text-decoration: none;
}

button:focus {
    outline: none;
}

textarea {
    resize: none !important;
}

.btn {
    min-width: 130px;
    font-size: inherit;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    font-size: inherit;
    border-radius: 0 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
}

.disabled {
    color: gray;
    cursor: no-drop !important;
}
.eventGroupNameLink,
.eventGroupNameLink.disabled {
    text-decoration: underline;
}

.checked.disabled {
    cursor: no-drop !important;
    opacity: 0.5;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: #398E92;
    border-color: #2d989e;
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(24, 95, 99, 0.32);
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary:disabled:hover {
    background-color: #398E92;
    border-color: #1B7E84;
    color: #FFF;
    opacity: 0.5 !important;
    cursor: no-drop !important;
}

div.btn-group > .btn-primary.disabled {
    cursor: no-drop !important;
}

.btn-secondary.disabled, .btn-secondary:disabled, .btn-secondary:disabled:hover {
    background-color: #EEEEEE;
    color: #398E92;
    border-color: transparent;
    cursor: no-drop;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
    background-color: #d0d2d4;
    border-color: #d0d2d4;
}

.btn-secondary {
    background-color: #FFFFFF;
    border-color: #E6E6E6;
    color: #797979;
}

    .btn-secondary.selected:focus, .btn-secondary.focus, .btn-secondary:focus {
        box-shadow: 0 0 0 0.2rem rgba(24, 95, 99, 0.32);
    }

    .btn-secondary.selected {
        background-color: #38787B;
        border-color: #47979A;
        color: #FFF;
    }

.btn-primary {
    background-color: #398E92;
    border-color: #1B7E84;
    color: #FFF;
}

.btn-outline-primary{
    background-color: transparent;
    border-color: #1B7E84;
    color: #1B7E84;
}

.btn-brown {
    background-color: #c37547;
    border-color: #b56b40;
    color: #FFF;
}



.btn-primary:hover,
.btn-outline-primary:hover {
    background-color: #38787B;
    border-color: #47979A;
}

.btn-brown:hover {
    background-color: #c37547;
    border-color: #b56b40;
}

.form-control, select.form-control:not([size]):not([multiple]):not(.is-invalid) {
    border-radius: 0px;
    border-color: #D5D5D5;
    font-size: inherit;
    height: 35px;
}

textarea.form-control {
    height: auto;
    min-height: 35px;
}

.toast {
    position: absolute;
    right: 15px;
    top: 0px;
    z-index: 0;
}

    .toast.show {
        z-index: 99;
    }

.toast-header {
    font-weight: 300;
}

.toast + .toast {
    top: 60px;
}

    .toast + .toast + .toast {
        top: 120px;
    }

        .toast + .toast + .toast + .toast {
            top: 180px;
        }

            .toast + .toast + .toast + .toast + .toast {
                top: 240px;
            }

.tooltip {
    font-size: inherit;
}

    .tooltip.show {
        opacity: 1;
        z-index: 99999;
    }

.tooltip-inner {
    background-color: #FFF;
    color: #212529;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.12), inset 0 -1px 0 0 #dadce0;
    min-width: 250px;
    max-width: none;
    text-align: left;
    padding: 0px;
    max-height: 100px;
    overflow-y: scroll;
}

.bs-tooltip-bottom {
    top: 3px !important;
}

    .bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before {
        border-bottom-color: #FFF;
    }

.tooltip-inner p {
    margin: 0px;
    padding: 5px;
    display: table;
    width: 100%;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    border-bottom: 1px solid #EFEEEE;
    /*background-color:greenyellow;*/
}

    /*.tooltip-inner p:hover {
        background-color: #greenyellow;
    }*/

    .tooltip-inner p span, .tooltip-inner p a {
        display: table-cell;
        vertical-align: middle;
    }

    .tooltip-inner p span {
        width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        margin-right: 10px;
    }

    .tooltip-inner p a {
        text-decoration: none;
        color: #616467;
    }

.tootltip-text {
    cursor: pointer;
    color: #1a98e4;
    font-weight: 800;
    display: inline-block;
}

.dangerbtn {
    background-color: #E55E5E;
    border-color: #E55E5E;
}

    .dangerbtn:hover {
        background-color: #c55353;
        border-color: #E55E5E;
    }

.form-control.is-invalid, .was-validated .form-control:invalid {
    background: none !important;
    background-color: #FFF !important;
    padding-right: .75rem !important;
}

.add-template {
    background-color: #FFFFFF;
    margin: 1.5rem 3rem;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
    padding: 1.5rem;
}

    .add-template .btn {
        min-width: auto;
        padding: 0.16rem 1rem;
        border: none;
    }

.table {
    margin-bottom: 0;
}

    .table thead th, .table th {
        padding: 0.5rem 0.35rem;
        vertical-align: middle;
        font-weight: 600;
        border: none;
        color: #5B5B5B;
    }

    .table tbody td, .table td {
        padding: 0.5rem 0.35rem;
        background-color: #F6F6F6;
        vertical-align: middle;
        border: none;
        border-bottom: 2px solid #FFFFFF;
        color: #5B5B5B;
        position: relative;
    }

.card-body .table tbody td,
.card-body .table td,
.tab-pane table td:not(.fc-day),
.tab-pane .table td {
    background-color: #FFFFFF;
    border-bottom: 2px solid #F6F6F6;
}

.table tr th a.action {
    display: grid;
    width: 25px;
    margin: 0 0rem 0px auto;
}

.table th i {
    background-color: #398E92;
    font-size: 0.9rem;
    color: #FFF;
    padding: 5px;
    border-radius: 4px;
}

.table label {
    margin-bottom: 0px;
}

.table .btn {
    padding: 0.05rem 0.05rem 0.05rem 0.05rem;
    min-width: 100px;
}

.table-responsive {
    overflow: inherit;
}

    .table-responsive tr td i {
        color: #8a8a8a;
        font-size: 0.9rem;
    }

.table .add-template {
    margin: 1rem;
}

.custom-file-input {
    height: calc(1.9rem + 2px);
}

.custom-file-label::after {
    background-color: #398E92;
    color: #FFF;
    height: auto;
}

.custom-file-label {
    height: 35px;
    bottom: 0px;
    top: inherit;
    margin: 0px;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-right: 90px;
}

.fileupload {
    opacity: 0;
}

label.custom-file-label + input + .invalid-feedback {
    position: absolute;
}

.border-radius {
    border-radius: 5px 5px;
}

.border-radius-25 {
    border-radius: 25px 25px;
}


/* Custom Radio Button CSS Starts Here */
.radio-container {
    display: block;
    position: relative;
    padding: 0.35rem 3rem;
    background-color: #FFFFFF;
    cursor: pointer;
    font-size: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 2rem;
    border-radius: 30px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

    .radio-container.checked {
        background-color: #398e92;
        color: #FFFFFF;
    }

    .radio-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .radio-container .checkmark {
        position: absolute;
        top: 50%;
        left: 2%;
        height: 25px;
        width: 25px;
        border-radius: 50%;
        border: none;
        transform: translate(0,-50%);
    }

    /*.radio-container:hover input ~ .checkmark {
    background-color: #ccc;
}*/

    .radio-container input:checked ~ .checkmark {
        background-color: #FFF;
    }

    .radio-container .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .radio-container input:checked ~ .checkmark:after {
        display: block;
    }

    .radio-container .checkmark:after {
        top: 8px;
        left: 8px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #398E92;
        box-shadow: 1px 1px 1px rgba(0,0,0,0.25);
    }

.checkcontainer {
    display: inline;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .checkcontainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

        .checkcontainer input:checked ~ .radiobtn {
            background-color: #1A6A78;
        }

    .checkcontainer .radiobtn:after {
        top: 4px;
        left: 4px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: white;
    }
/* Create a custom radio button */
.radiobtn {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border-radius: 50%;
}

    .radiobtn:after {
        content: "";
        position: absolute;
        display: none;
    }

.checkcontainer input:checked ~ .radiobtn:after {
    display: block;
}
/*Custom Checkbox CSS Ends Here*/
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-top: 5px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

    .checkbox-container.checked {
        background-color: #398e92;
        color: #FFFFFF;
    }

    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkbox-container .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 25px;
        width: 25px;
        background-color: transparent;
        border: 2px solid transparent;
        border-radius: 4px;
    }

.chekbox-bg .checkbox-container {
    box-shadow: none;
}

.incident-checkbox-container .checkbox-container .checkmark {
    width: 20px;
    height: 20px;
    top: 5px;
    left: 3px;
    background-color: #979797;
}

.incident-checkbox-container .chekbox-bg label {
    padding: 4px 7px 4px 30px;
}

.incident-checkbox-container .checkbox-container .checkmark:before, .incident-checkbox-container .checkbox-container .checkmark:after {
    opacity: 0;
    visibility: hidden;
}

.incident-checkbox-container .checkbox-container .checkbox-container .checkmark {
    background-color: #979797;
}

.incident-checkbox-container .checkbox-container .checkmark img {
    display: flex;
    margin: 0 auto;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

.checkbox-container .checkmark {
    overflow: hidden;
}

.checkmark img.active-incident {
    transform: translateY(-45px);
}

.checkbox-container.checked .checkmark img.active-incident {
    transform: translateY(-15px);
}

.checkbox-container.checked .checkmark img.normal-incident {
    transform: translateY(45px);
}

/* On mouse-over, add a grey background color */
/* .checkbox-container:hover input ~ .checkmark {
background-color: #CCCCCC;
} */

.checkbox-container input:checked ~ .checkmark {
    background-color: #FFF;
}

.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 8px;
    top: 2px;
    width: 7px;
    height: 14px;
    border: solid #398E92;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.chekbox-bg label {
    background-color: #eeeeee;
    padding: 7px 7px 7px 40px;
    border-radius: 7px;
}

    .chekbox-bg label.active {
        background-color: #185F63;
    }

.chekbox-bg .checkmark {
    left: 5px;
    top: 4px;
}
/*Custom Checkbox CSS Ends Here*/

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 53px;
    height: 25px;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
    color: #FFF;
    margin-bottom: 0;
}

.form-control .switch:not(.float-right) {
    margin-top: -5px;
}

.form-control .switch {
    margin-top: -2px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E8E6E6;
    -webkit-transition: .4s;
    transition: .4s;
}

    .switch .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 3px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

.switch input:checked + .slider {
    background-color: #398E92;
}

    .switch input:checked + .slider::after {
        content: 'YES';
        position: absolute;
        left: 3px;
        width: 30px;
        height: 25px;
    }

.switch input:not(:checked) + .slider::after {
    content: 'NO';
    position: absolute;
    right: 3px;
    width: 30px;
    color: #A7A7A7;
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px #398E92;
}

.switch input:checked + .slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.switchWrite {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 53px;
    height: 25px;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
    color: #FFF;
    margin-bottom: 0;
}

.form-control .switchWrite:not(.float-right) {
    margin-top: -5px;
}

.form-control .switchWrite {
    margin-top: -2px;
}

.switchWrite input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switchWrite .sliderWrite {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E8E6E6;
    -webkit-transition: .4s;
    transition: .4s;
}

    .switchWrite .sliderWrite:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 3px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

.switchWrite input:checked + .sliderWrite {
    background-color: #398E92;
}

    .switchWrite input:checked + .sliderWrite::after {
        content: 'Write';
        position: absolute;
        left: 3px;
        width: 30px;
        height: 25px;
    }

.switchWrite input:not(:checked) + .sliderWrite::after {
    content: 'Read';
    position: absolute;
    right: 3px;
    width: 30px;
    color: #A7A7A7;
}

.switchWrite input:focus + .sliderWrite {
    box-shadow: 0 0 1px #398E92;
}

.switchWrite input:checked + .sliderWrite:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

.sliderWrite.roundWrite {
    border-radius: 34px;
}

    .sliderWrite.roundWrite:before {
        border-radius: 50%;
    }

/*Header CSS Starts Here*/
header {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+30,076c7e+100 */
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(left, #ffffff 0%, #ffffff 30%, #076c7e 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #ffffff 0%,#ffffff 30%,#076c7e 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ffffff 0%,#ffffff 30%,#076c7e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#076c7e',GradientType=1 ); /* IE6-9 */
    margin-bottom: 10px;
    position: sticky;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
}

    header .logo {
        padding: 5px 0px;
    }

        header .logo a {
            display: inline-block;
        }

            header .logo a img {
                height: 30px;
            }

.notification {
    color: #FFF;
    position: relative;
    background-image: url('/images/menu-seperator.svg');
    background-position: right 0px center;
    background-repeat: no-repeat;
}

    .notification i {
        cursor: pointer;
    }

.notification-count {
    background-color: #EB4E4E;
    display: block !important;
    min-width: 17px;
    height: 17px;
    text-align: center;
    line-height: 17px;
    border-radius: 50%;
    position: absolute;
    right: 7px;
    top: 1px;
    font-size: 0.7rem;
    padding-left: 0.12rem;
    padding-right: 0.12rem;
}

.notification-details {
    position: absolute;
    top: 42px;
    background-color: #E9E9E9;
    padding: 10px;
    z-index: 999;
    right: 0;
    width: 310px;
    border-radius: 5px 5px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.4);
    display: none;
    max-height: 80vh;
}

.notification-status {
    margin-bottom: 5px;
    background-color: #FFF;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    padding: 5px 5px 5px 15px;
    font-size: 12px;
    border-radius: 5px;
    position: relative;
    color: #747474;
}

    .notification-status:last-child {
        margin-bottom: 0px;
    }

.notification-priority {
    width: 7px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px 0 0 5px;
}

.notification-status-low {
    color: #56D782;
}

.notification-status-medium {
    color: #FFCF71;
}

.notification-status-high {
    color: #F37070;
}

.notification-status.low span.notification-priority {
    background-color: #56D782;
}

.notification-status.medium span.notification-priority {
    background-color: #FFCF71;
}

.notification-status.high span.notification-priority {
    background-color: #F37070;
}

.right-top-bar-cont {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.right-top-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.login-section, .settings, .alerts, .notification {
    display: flex;
    align-items: center;
    color: #FFF;
    height: 40px;
}

    .notification span, .login-section span, .settings span, .alerts > span {
        display: flex;
        align-items: center;
        align-self: center;
    }

.notification, .alerts, .settings {
    position: relative;
}


    .settings:hover div.dropdown-menu {
        display: block;
        right: 0px;
        top: 100% !important;
    }

.login-section:hover div.dropdown-menu {
    display: block;
    right: 0px;
    top: 100% !important;
}

.settings .dropdown-toggle, .login-section .drop-menu-arrow {
    pointer-events: none;
}

.alerts {
    background-image: url('/images/menu-seperator.svg');
    background-position: right 0px center;
    background-repeat: no-repeat;
}

.login-section {
    background-color: #1A6A78;
    margin-right: -15px;
    padding: 0 15px 0 15px;
}

.dropdown-toggle::after {
    display: none;
}

.right-top-bar > span {
    background-color: #2B8189;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.dropdown.settings {
    padding-left: 10px;
}

.dropdown.settings, .dropdown.login-section {
    position: static;
}

.settings .menu-settings {
    background-image: url('/images/icon-settings-white.svg');
    padding-left: 30px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: left center;
    border: none;
    color: #FFF;
}

.right-top-bar .username button {
    color: #FFFFFF;
    font-weight: 500;
}

.right-top-bar .login-section button {
    border: none;
    background: none;
    padding: 0px;
}

.right-top-bar .dropdown i {
    padding-top: 0.14rem;
    transition: all ease 0.5s;
}

    .right-top-bar .dropdown i:hover {
        opacity: 0.35;
    }

.dropdown-menu {
    font-size: 0.9rem;
}

.right-top-bar .dropdown-menu {
    border-radius: 0 0;
    padding: 0px;
    font-size: 0.9rem;
    /*top: 12px !important;*/
    margin: 0px;
    border: none;
}

    .right-top-bar .dropdown-menu.master-menu {
        padding: 2rem 1rem;
    }


.mainmenu {
    padding: 0px;
    margin: 0px;
}

    .mainmenu li {
        list-style-type: none;
        position: relative;
    }

.submenu {
    display: none;
    padding: 0px;
    margin: 0px;
    background-color: #FFFFFF;
    width: 200px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

    .submenu li {
        list-style-type: none;
    }

.has-submenu:hover .submenu {
    display: block;
    position: absolute;
    right: 100%;
    top: 0;
}

.submenu-item {
    display: block;
    color: inherit;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

.right-top-bar .dropdown-item, .submenu-item {
    border-bottom: 1px solid #f3f3f3;
    padding: .45rem 1.5rem;
}

    .submenu-item:focus, .submenu-item:hover, .dropdown-item:focus, .dropdown-item:hover {
        color: #16181b;
        text-decoration: none;
        background-color: #f8f9fa;
    }

/*Timeline Carousel CSS Starts Here*/
#year-carousel {
    background-color: #272727;
}

    #year-carousel .item {
        padding: 2px 0px;
        background-color: #272727;
        color: #89B4A0;
        font-weight: 600;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
        font-size: 1.1rem;
    }

#month-carousel {
    background-color: #185F63;
}

    #month-carousel .item {
        padding: 2px 0px;
        background-color: #185F63;
        transition: all ease 0.5s;
        -webkit-transition: all ease 0.5s;
        text-transform: uppercase;
        color: #74BEB2;
        font-weight: 600;
        font-size: 1rem;
        text-shadow: 1px 1px 5px rgba(0,0,0,.3);
    }

        #month-carousel .item.selected {
            background-color: #398E92;
            color: #DBE9BD;
        }

        #month-carousel .item:hover:not(.selected) {
            background-color: #367477;
            color: #DBE9BD;
            cursor: pointer;
        }

#day-carousel {
    background-color: #398E92;
}

    #day-carousel .item {
        padding: 2px 0px;
        background-color: #0D3D40;
        border-right: 1px solid #2A8185;
        height: 70px;
        color: #DBE9BD;
    }

        #day-carousel .item.selected {
            background-color: #62A299;
        }

        #day-carousel .item:hover:not(.selected) {
            background-color: rgba(24, 95, 99, 0.87);
            transition: background-color ease 0.5s;
        }

.event-day {
    display: block;
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    height: 20px;
}

.event-add, .event-booked {
    width: 25px;
    height: 25px;
    display: inline-block;
}

    .event-booked::after {
        display: none;
    }

.event-cont .dropdown-menu {
    transform: none !important;
    will-change: initial !important;
    top: 43px !important;
    border: none;
    border-radius: 0 0 0 0;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    width: 300px;
}

.event-details {
    display: flex;
    align-items: center;
}

.event-add {
    cursor: pointer;
}

    .event-add i {
        font-size: 35px;
    }

.event-booked {
    background: url('/images/marked.svg');
    font-weight: 600;
    font-size: 1rem;
    color: #0D3D40;
    line-height: 25px;
    cursor: pointer;
    background-size: contain;
}

.calendar-collapse {
    position: absolute;
    left: 50%;
    max-width: 100%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #FFF;
    height: 25px;
    top: 100%;
    z-index: 15;
}

.abs-event {
    height: 25px;
    line-height: 25px;
    padding-left: 28px;
    padding-right: 10px;
    background: #0d3d40;
    position: relative;
    display: inline-block;
    border-radius: 0 0 3px 3px;
}

.calendar-collapse::before {
    content: '';
    background-image: url('/images/green-triangle.png');
    background-size: contain;
    position: absolute;
    display: inline-block;
    width: 25px;
    height: 25px;
    left: -24px;
    top: 0px;
    transform: rotate(-90deg);
}

.calendar-collapse::after {
    content: '';
    background-image: url('/images/green-triangle.png');
    background-size: contain;
    position: absolute;
    display: inline-block;
    width: 25px;
    height: 25px;
    right: -24px;
    top: 0px;
    transform: rotate(180deg);
}

.push-arrow {
    position: absolute;
    left: 1px;
    top: 0px;
    display: inline-grid;
    cursor: pointer;
    width: 25px;
    height: 25px;
    text-align: center;
    transition: all ease 0.5s;
}

    .push-arrow img {
        margin: auto auto;
    }

.calendar-collapse.turn .push-arrow {
    transform: rotate(180deg);
}

/*Header CSS Starts Here*/

/*Body Content CSS Starts Here*/
.container-fluid {
    position: relative;
}

.right-side {
    position: fixed;
    top: 50%;
    z-index: 100;
    right: 0;
    transform: translate(0%, -50%);
}

.main-container {
    background-color: #FAFAFA;
    padding: 1rem 1rem;
    position: relative;
}

/*.slide-out .main-container {
    padding-bottom: 50px;
}*/

.event-minimum-height {
    min-height: 580px;
}

h2.title {
    color: #6C6C6C;
    font-weight: 500;
    font-size: 1.35rem;
    margin-bottom: 15px;
    position: relative;
}

.selected-event-name {
    text-decoration: underline;
    cursor: pointer;
    position: relative;
}

.event-names {
    position: absolute;
    left: 0;
    min-width: 200px;
    z-index: 9999;
    background-color: #FFF;
    color: #212529;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.12), inset 0 -1px 0 0 #dadce0;
    top: 25px;
    display: none;
}

    .event-names::before {
        position: absolute;
        content: "";
        border-color: transparent;
        border-style: solid;
        top: -7px;
        border-width: 0 .4rem .4rem;
        border-bottom-color: #fff;
        left: 10px;
    }

    .event-names a {
        display: block;
        margin: 0px;
        padding: 5px;
        color: #747474;
        font-size: 0.85rem;
        transition: all ease 0.5s;
        -webkit-transition: all ease 0.5s;
        border-bottom: 1px solid #EFEEEE;
    }

        .event-names a:hover, .event-names a.active {
            background-color: #EFEEEE;
        }

h4.sub-title {
    padding-bottom: 5px;
    font-size: 1rem;
    color: #1E827E;
    margin-bottom: 20px;
    border-bottom: 2px solid #3ECCC5;
}

h2.sub-title {
    padding-bottom: 5px;
    font-size: 1rem;
    color: #1E827E;
    margin-bottom: 20px;
    border-bottom: 2px solid #3ECCC5;
}

h4.grid-title {
    font-weight: 700;
    color: #398E92;
}

.grey-bg {
    background-color: #f6f6f6;
    padding: 15px 15px;
}

    .grey-bg .table tbody td, .grey-bg .table td {
        background-color: #FFFFFF;
        border-bottom: 2px solid #f6f6f6;
    }

        .grey-bg .table tbody td.edit-column {
            background-color: #f6f6f6;
        }

.summary-info {
    display: inline-block;
    background: #788F95;
    padding: 5px 15px;
    margin-right: 20px;
    color: #FFF;
    border-radius: 15px;
    font-size: 0.9rem;
}

    .summary-info span {
        display: inline;
    }

.summary-seperator {
    padding: 0 4px;
    opacity: 0.45;
}

/*Push Menu CSS Starts here*/
section {
    position: relative;
}

.right-side {
    width: 43px;
    white-space: nowrap;
    transition: all ease 0.5s;
}

.right-menu {
    white-space: nowrap;
    margin: 0px;
    padding: 0px;
    box-shadow: -3px 3px 10px 1px rgba(0,0,0,0.1);
    background-color: #FFFFFF;
    width: 100%;
}

    .right-menu li {
        margin: 0px;
        padding: 0px;
        display: flex;
        height: 40px;
        position: relative;
        align-items: center;
        list-style-type: none;
        border-left: 3px solid transparent;
        transition: all ease 0.5s;
    }

        .right-menu li.event-bg {
            border-left-color: #398E92;
        }

        .right-menu li.event-bg-partial {
            border-left-color: #f5a60b;
        }

        .right-menu li:last-child {
            border-bottom: none;
        }

        .right-menu li:hover {
            margin: 0px;
            padding: 0px;
            list-style-type: none;
            box-shadow: -3px 0px 10px 5px rgba(0,0,0,0.12);
            z-index: 99;
        }

        .right-menu li.active {
            box-shadow: -3px 0px 10px 5px rgba(0,0,0,0.12);
            z-index: 99;
        }

        .right-menu li a {
            display: flex;
            padding: 0px 0px;
            background-color: #FFFFFF;
            border-bottom: 1px solid #F1F1F1;
            font-size: inherit;
            color: #8D8D8D;
            transition: color ease 0.5s;
            width: 100%;
            height: 40px;
        }

        .right-menu li:last-child a {
            border-bottom: none;
        }

    .right-menu span.menu-item, .right-menu span.menu-icon {
        display: inline-flex;
        align-items: center;
        transition: all ease 0.5s;
    }

    .right-menu span.menu-item {
        max-width: 200px;
        flex: 0 0 200px;
        order: 2;
        padding-left: 5px;
    }

    .right-menu span.menu-icon {
        max-width: 37px;
        flex: 0 0 37px;
        justify-content: center;
    }

.right-side:hover {
    width: 250px;
}

    .right-side:hover a {
        padding-left: 10px;
        padding-right: 10px;
    }

    .right-side:hover .menu-item {
        order: 1;
        padding-left: 0px;
    }

    .right-side:hover .menu-icon {
        order: 2;
    }
/*Push Menu CSS Ends here*/

.main-container {
    transition: all ease 0.5s;
}

.form-check-inline .form-check-input {
    vertical-align: middle;
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 0.75rem;
}

    .form-group .mandatory {
        color: #BB1A1A;
        font-size: 16.8px;
    }

.action-buttons {
    /*position: absolute;
    bottom: 0px;*/
    text-align: right;
    margin-top: 1rem;
}

.btn-inline-container {
    padding: 3px;
    height: 35px;
    background-color: #398E92;
    margin: 0px 0px;
    border-radius: 5px;
    color: #FFFFFF;
}

    .btn-inline-container .btn {
        min-width: auto;
        padding: 0.16rem 1rem;
        min-height: 29px;
        border: none;
        border-radius: 5px;
    }

    .btn-inline-container .btn-primary.selected {
        background-color: #FFF;
        color: #398E92;
    }

.action-icon {
    margin: 1px 0px 1px 10px;
    display: inline-grid;
    vertical-align: middle;
}


.slider.slider-horizontal {
    width: 100%;
}

.slider-horizontal {
    margin-bottom: 5px !important;
}

.slider-track {
    background: none;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a2d466+18,f62a2a+100 */
    background: #BEDAAA; /* Old browsers */
    background: -moz-linear-gradient(left, #BEDAAA 18%, #FAAB78 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #BEDAAA 18%,#FAAB78 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #BEDAAA 18%,#FAAB78 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#BEDAAA', endColorstr='#FAAB78',GradientType=1 ); /* IE6-9 */
}

.slider-selection.tick-slider-selection {
    background: transparent;
}

.nobackground-hideselection .slider-selection.tick-slider-selection {
    background: transparent;
}

.slider-tick.in-selection {
    background: none;
    background-color: #FFFFFF;
}

.slider-tick {
    width: 5px;
    height: 5px;
    top: 8px;
    opacity: 1;
}

    .slider-tick.round.in-selection:nth-child(1) {
        display: none;
    }

.slider-handle {
    top: -1px;
    width: 20px;
    height: 20px;
    background: none;
    background-color: #4d4d4d;
    border: 2px solid #FFFFFF;
}

.slider-track {
    box-shadow: none;
    border-radius: 5px;
}

.nobackground-hideselection .slider-selection.tick-slider-selection + div {
    background: none;
    background-color: #F1F1F1;
}

.nobackground-hideselection .slider-tick-container .slider-tick.slider-tick.round.in-selection {
    display: none;
}

.nobackground-hideselection .slider-tick-container .slider-tick {
    background: none;
    background-color: #F2A744;
}

.lowdata-table .slider-tick-label-container {
    display: table;
    width: 100%;
    margin-left: 0 !important;
}


    .lowdata-table .slider-tick-label-container > div {
        display: table-cell !important;
    }

        .lowdata-table .slider-tick-label-container > div:first-child {
            text-align: left !important;
        }

        .lowdata-table .slider-tick-label-container > div:last-child {
            text-align: right !important;
        }


.slider-tick-label-container {
    pointer-events: none;
}

.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
    font-size: 0.5625rem;
}
/*.slider-tick-label-container {
    margin-left: 0 !important;
    display: table;
    width: 100%;
    pointer-events: none;
}

.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
    font-size: 0.5625rem;
    display: table-cell;
    text-align: center;
}

    .slider.slider-horizontal .slider-tick-label-container .slider-tick-label:first-child {
        text-align: left;
    }

    .slider.slider-horizontal .slider-tick-label-container .slider-tick-label:last-child {
        text-align: right;
    }*/
.add-split {
    text-decoration: underline;
}

.danger-alert {
    color: #EB4A4A;
}

.warning-alert {
    color: #1d93ce;
}

.success-alert {
    color: #43D264;
}

.td-success-priority {
    background-color: #43D264;
}

.td-warning-priority {
    background-color: #1d93ce;
}

.td-danger-priority {
    background-color: #EB4A4A;
}

.edit-split-container {
    display: inline-flex;
    align-items: center;
    background-color: #FFF;
    padding: 5px 1px 4px 5px;
    border-radius: 5px 5px;
    box-shadow: 1px 1px 11px rgba(0,0,0,0.25);
    float: right;
    margin-left: 0.5rem;
}

.card {
    border: none;
    margin-bottom: 3px;
}

.card-header {
    padding: 0;
    border: none;
}

    .card-header a {
        margin: 0px;
        padding: 0.5rem 0.5rem;
        background-color: #A2B2B6;
        color: #FFFFFF;
        cursor: pointer;
        font-size: 1rem;
        border-radius: 5px 5px;
        font-weight: 400;
        display: block;
    }

        .card-header a i {
            position: absolute;
            right: 10px;
            transform: rotate(-90deg);
            -webkit-transform: rotate(-90deg);
            transition: all ease 0.5s;
            -webkit-transition: all ease 0.5s;
            font-size: 1rem;
            border-radius: 50px;
        }

    .card-header.active a {
        background-color: #185F63;
        color: #FFF;
        border-radius: 5px 5px 0 0;
    }

    .card-header a i {
        background: #FFFFFF;
        color: #A2B2B6;
    }

    .card-header.active a i {
        background: #FFFFFF;
        color: #185f63;
    }

    .card-header.active a i {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

.collapse-group .controls {
    height: 38px;
    overflow: hidden;
}

.close-button, .open-button {
    transition: all ease 0.5s;
    display: block;
    margin-left: auto;
    text-transform: uppercase;
    height: 36px;
}

.close-button {
    transform: translateY(-85px);
}

    .close-button:focus .open-button:focus {
        outline: none;
    }

.translate-up .open-button {
    transform: translateY(55px);
}

.translate-up .close-button {
    transform: translateY(-36px);
}

.edit-split-column {
    border: none !important;
    background-color: transparent !important;
}

.edit-split-value-container {
    margin-right: 1rem;
    border-radius: 6px 6px;
    background-color: #EFEFEF;
}

.edit-split-value input {
    border-radius: 4px 4px;
    background-color: transparent;
    border: 1px solid #BBB9B9;
    min-height: 23px;
    max-width: 100px;
    font-size: 0.75rem;
    padding-left: 0.52rem;
}

.split-icon, .split-value, .edit-split-value {
    padding: 6px 6px;
    display: inline-grid;
    vertical-align: middle;
}

.split-icon {
    border-right: 1px solid #DEE2E6;
    cursor: pointer;
}

.edit-split-input-container {
    border-radius: 6px 6px;
    background-color: #EFEFEF;
}

    .edit-split-input-container .split-icon {
        border-right: none;
        padding: 0px 5px;
    }

#nav-tab {
    box-shadow: 0px 0px 13px rgba(0,0,0,0.25);
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
    padding: 0.5rem 4rem 0.5rem 1.5rem;
    border: none;
    border-bottom: 3px solid transparent;
    position: relative;
    font-weight: 600;
    color: #949494;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
}

    .nav-tabs .nav-item span.floor-count {
        display: inline-block;
        position: absolute;
        top: 50%;
        right: 0.6rem;
        transform: translateY(-50%);
        background-color: #D4D4D4;
        color: #FFF;
        padding: 4px 6px;
        border-radius: 4px;
        font-size: 0.7rem;
    }

    .nav-tabs .nav-item.active span.floor-name {
        background: none;
    }

    .nav-tabs .nav-item.active {
        border-bottom: 3px solid #38787B;
        color: #38787B !important;
        font-weight: 600 !important;
    }

        .nav-tabs .nav-item.active span {
            background-color: #38787B;
        }

.floor-tab-carousel {
    padding-top: 42px;
    position: relative;
    padding-right: 45px;
}

    .floor-tab-carousel .owl-stage-outer {
        height: 42px;
        position: absolute;
        top: 0;
        z-index: 999999;
        left: 0;
        right: 0;
    }

    .floor-tab-carousel .nav-link {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

#floorTab .owl-nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 41px;
    z-index: 999999;
    background-color: #FCFCFC;
}

    #floorTab .owl-nav button {
        width: 27px;
        line-height: 17px;
        height: 40px;
        background: transparent !important;
        margin: 0px 0px 0 3px;
        border: none !important;
    }

        #floorTab .owl-nav button span {
            font-size: 35px !important;
            display: inline-block;
            line-height: 17px;
            width: 15px;
            height: 25px;
        }

        #floorTab .owl-nav button.disabled span {
            opacity: 0.5;
            cursor: default !important;
        }

.middle-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.select-template, .link-underline {
    text-decoration: underline;
    color: #559ddc;
    font-weight: 600;
}

.modal-body {
    overflow-y: auto;
    padding: 2rem 1rem;
    max-height: 75vh;
}

.calendar-minheight .modal-body {
    min-height: 66vh;
}


.modal {
    z-index: 10500;
}

.modal-backdrop {
    z-index: 10410
}

.modal-minheight .modal-body {
    min-height: 480px;
}

.modal-maxheight .modal-body {
    max-height: 300px;
}

.modal-content {
    border-radius: 5px 5px;
}

.modal-header {
    padding: 0.5rem 0.7rem 0.5rem 1rem;
    border: none;
    background-color: #f9f9f9;
    border-bottom: 1px solid rgba(57, 142, 146, 0.039);
}

    .modal-header h5 {
        color: #398E92;
        font-weight: 500;
        font-size: 1.2rem;
    }

.modal-footer {
    border-top: none;
}

    .modal-footer .btn {
        border-radius: 5px 5px;
    }

    .modal-footer .btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
        border-radius: 5px 5px;
    }

    .modal-footer .row {
        width: 100%;
        text-align: right;
    }

.modal .card-body, .card-body {
    background-color: #F6F6F6;
}

.modal .add-template {
    /* margin: 1rem 1rem;
    padding: 1rem 0rem; */
    margin: 0;
    padding: 0;
    box-shadow: none;
}

.modal .inner-add-template {
    margin: 1rem 1rem;
    padding: 1rem 0rem;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
    display: none;
}

.modal-custom-header {
    background-color: #38787B;
    border-top-right-radius: 5px;
    margin-top: -3px;
    border-top-left-radius: 5px;
}

    .modal-custom-header label {
        font-size: 20px;
        color: #fff !important;
    }

.tab-content {
    padding: 1rem;
    border: 1px solid #E2E0E0;
    border-top: none;
    background-color: #F6F6F6;
}

.tab-pane .card {
    margin-bottom: 0.5rem;
    border-radius: 6px 6px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
}

.tab-pane .zone-title {
    margin: 0px;
    font-size: 0.9rem;
    font-weight: 700;
}

.tab-pane .card-body {
    background-color: #FFF;
    padding: 0.65rem;
}

    .tab-pane .card-body .col-md-7 span {
        display: inline-block;
        padding-right: 10px;
    }

.multiselect-icon {
    cursor: pointer;
    width: 30px;
    margin: 2rem auto;
    background-color: #FFF;
    border: 1px solid #EAEAEA;
    display: grid;
    padding: 0.3rem 0;
}

    .multiselect-icon.active {
        background-color: #398E92;
        color: #FFF;
    }

.input-group .input-group-append[data-toggle="datetimepicker"],
.input-group .input-group-append[data-icon] {
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 8;
}

    .input-group .input-group-append[data-toggle="datetimepicker"] .input-group-text,
    .input-group .input-group-append[data-icon] .input-group-text {
        background-color: transparent;
        border: none;
    }

.bootstrap-datetimepicker-widget {
    list-style: none;
    padding: 0 !important;
    border: none;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
}

.datepicker-days tr th, .datepicker-days tr td {
    font-weight: 500;
    color: #6f6f6f;
    font-size: 0.8rem;
    border: 1px solid #f1f1f1 !important;
    border-collapse: collapse;
    background-color: #FFF;
    padding: 5px;
}

.bootstrap-datetimepicker-widget td.day.old, .bootstrap-datetimepicker-widget td.day.new {
    color: #dcdcdc !important;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
    background-color: transparent;
}

.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover, .bootstrap-datetimepicker-widget table td span.active {
    background-color: #38787B !important;
    border-radius: 0px;
    color: #ffffff;
}

.bootstrap-datetimepicker-widget table td.today:before {
    right: 0px;
    bottom: 0px;
}

.date .input-group-text {
    padding: 7px 7px;
    background-color: #FFF;
    border-radius: 0;
}

.bootstrap-datetimepicker-widget table th.prev span, .bootstrap-datetimepicker-widget table th.next span {
    display: inline-grid;
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    background-size: cover;
    margin-top: 7px;
}

.bootstrap-datetimepicker-widget a {
    display: inline-grid;
}

    .bootstrap-datetimepicker-widget a span {
        margin: 0 auto !important;
    }

.bootstrap-datetimepicker-widget table th.prev span {
    background-image: url('/images/left-arrow.svg');
}

.bootstrap-datetimepicker-widget table th.next span {
    background-image: url('/images/right-arrow.svg');
}

.timepicker {
    align-self: center;
}

span.fa-arrow-up, span.fa-arrow-down {
    display: inline-grid !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    width: 30px !important;
    height: 30px !important;
    opacity: 0.5;
}

span.fa-arrow-up {
    background-image: url('/images/up-arrow.svg');
}

span.fa-arrow-down {
    background-image: url('/images/down-arrow.svg');
}

span.fa-arrow-up:hover {
    background-color: transparent !important;
    background-image: url('/images/up-arrow.svg') !important;
    opacity: 0.35;
}

span.fa-arrow-down:hover {
    background-color: transparent !important;
    background-image: url('/images/down-arrow.svg') !important;
    opacity: 0.35;
}

.fa-clock-o {
    background-image: url('/images/time.svg') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 30px !important;
    height: 20px !important;
}

.fa-calendar {
    background-color: transparent !important;
    background-image: url('/images/calendar.svg') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 30px !important;
    height: 20px !important;
}

.fa-clock-o:hover {
    background-color: transparent !important;
    background-image: url('/images/time.svg') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 30px !important;
    height: 20px !important;
}

.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second {
    font-weight: normal;
}

.btn.cancel-btn, .btn.save-btn, .btn.print-btn,.btn.cancel-btn-white {
    background-position: left 10px center;
    background-repeat: no-repeat;
    min-width: 60px;
    padding: 0.25rem 0.5rem 0.25rem 2rem;
    border-radius: 5px;
}

.bootstrap-datetimepicker-widget .btn {
    min-width: 50px;
    box-shadow: none;
}

.picker-switch.accordion-toggle {
    background: #E9ECEF;
}


.btn.save-btn {
    background-image: url('/images/save-btn-icon.svg');
}

.save-icon-btn {
    height: 30px;
    width: Auto !important;
    padding: 8px;
    min-width: 21px !important;
}

.btn.print-btn {
    background-image: url('/images/printer-btn-icon.svg');
}

.btn.cancel-btn {
    background-image: url('/images/cancel-btn-icon.svg');
}

.btn.cancel-btn-white {
    background-image: url('/images/cancel-btn-icon-white.svg');
}

.add-zone {
    display: inline-grid;
    margin-bottom: 0.5rem;
}

.zone-map-container {
    overflow: hidden;
}

.expected-container {
    overflow: hidden;
}

.expected-options {
    position: absolute;
    right: 0px;
    top: 0px;
}

    .expected-options span {
        display: inline-grid;
        padding-left: 10px;
        cursor: pointer;
    }

        .expected-options span.active {
            color: #398e92;
            font-weight: 600;
        }

.expected-value-field {
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
    display: none;
    position: absolute;
    z-index: 0;
    transition: all ease 0.5s;
}

.expected-value .expected-value-field {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    display: block;
    position: relative;
    z-index: 1;
    transition: all ease 0.5s;
}

.expected-quality-field {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    display: block;
    position: relative;
    z-index: 1;
    transition: all ease 0.5s;
}

.expected-value .expected-quality-field {
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
    display: none;
    position: absolute;
    z-index: 0;
    transition: all ease 0.5s;
}

/*Datatable CSS Overwrite*/
table.dataTable thead th, table.dataTable thead td {
    padding: 0.5rem 0.35rem;
    border: none;
}

table.dataTable thead th, table.dataTable tfoot th {
    font-weight: 600;
    background-color: #ffffff !important;
    border-right: 1px solid #f0f0f0;
}

    table.dataTable thead th:last-child, table.dataTable tfoot th:last-child {
        border-right: none;
    }

table.table-bordered.dataTable tbody td {
    border-right: 1px solid #f0f0f0;
}

    table.table-bordered.dataTable tbody td:last-child {
        border-right: none;
    }

table.dataTable tbody th, table.dataTable tbody td {
    padding: 0.2rem 0.35rem;
}

.table-fullwidth {
    width: 100% !important;
}

td.child ul {
    width: 100%;
}

    td.child ul li {
        padding: 5px 8px !important;
        background: #FFF;
        margin-left: 25px;
    }

        td.child ul li .dtr-title {
            font-weight: 600 !important;
            min-width: 120px !important;
            position: relative;
            padding-right: 10px;
        }

            td.child ul li .dtr-title::after {
                content: ':';
                position: absolute;
                right: 5px;
            }

        td.child ul li .dtr-data div {
            white-space: normal;
        }

table.table-bordered.dataTable th, table.table-bordered.dataTable td {
    border-bottom-width: 2px !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
    background-color: #398e92;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
    background-color: #e96f6f;
}

table.dataTable.no-footer {
    border: none;
}

.dataTables_length select {
    border-radius: 30px;
    padding: 0.2rem 0.75rem;
    margin: 0 0.5rem;
    color: #848484;
}

.dataTables_length select, .dataTables_filter input {
    border-color: rgba(112, 112, 112, 0.25);
}

    .dataTables_length select:focus, .dataTables_filter input:focus {
        outline: none;
    }

.dataTables_filter input {
    border-width: 1px;
    padding: 5px 10px;
    min-width: 250px;
    color: #848484;
}

.datatable-toprow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

    .datatable-toprow > div {
        float: none !important;
        padding: 0 !important;
        margin-left: 1rem;
    }

        .datatable-toprow > div > label {
            margin: 0px;
            text-transform: capitalize;
            color: #848484;
        }

.datatable-bottomrow {
    margin-top: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

    .datatable-bottomrow > div {
        padding: 0px !important;
        color: #848484 !important;
    }

.dataTables_wrapper .dataTables_paginate span .paginate_button {
    background-color: #ECECEC;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0 !important;
    min-width: 25px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #A1A1A1 !important;
    margin-left: 5px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    border: none !important;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button:hover {
    background: #398E92 !important;
    color: #FFF !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #398E92 !important;
    color: #FFF !important;
}

.dataTables_paginate {
    display: flex;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.first {
    background-image: url('/images/pagination-last-previous.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous {
    background-image: url('/images/pagination-step-left.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next {
    background-image: url('/images/pagination-step-right.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.last {
    background-image: url('/images/pagination-last-next.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.first:hover
.dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover
.dataTables_wrapper .dataTables_paginate .paginate_button.next:hover
.dataTables_wrapper .dataTables_paginate .paginate_button.last:hover {
    background: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    border: none;
    box-shadow: none;
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc {
    background: none;
}

/*table.dataTable thead .sorting::after, table.dataTable thead .sorting_asc::after, table.dataTable thead .sorting_desc::after {
        content: '';
        width: 20px;
        height: 20px;
        display: inline-block;
        background-repeat: no-repeat;
        position: absolute;
        background-position: top 3px center;
        margin-left: 3px;
    }

    table.dataTable thead .sorting::after {
        background-image: url('/images/sort_both.svg');
    }

    table.dataTable thead .sorting_asc::after {
        background-image: url('/images/sort_asc.svg');
        background-position: top 8px center;
    }

    table.dataTable thead .sorting_desc::after {
        background-image: url('/images/sort_desc.svg');
        background-position: top 8px center;
    }*/



.dashboard-table-container .dataTables_wrapper {
    margin-top: -25px;
}

.dashboard-table-container .datatable-toprow {
    justify-content: flex-start;
    display: inline-flex;
}

.dashboard-table-container .dataTables_filter, .dashboard-table-container .dataTables_filter * {
    margin-left: 0 !important;
}

.selectize-dropdown-content {
    max-height: 110px;
}

.selectize-input {
    border: 1px solid #D5D5D5;
    border-radius: 0px;
    box-shadow: none;
}

.selectize-control {
    display: flex;
}

    .selectize-control.multi .selectize-input > div, .selectize-control.multi .selectize-input > div.active {
        background: #398E92;
        color: #ffffff;
        border-radius: 4px;
    }

.selectize-input::after,.selectize-control.single .selectize-input:after {
    content: '';
    display: block;
    clear: left;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -3px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #808080;
    z-index: 1;
    cursor: auto;
}

.selectize-control::after {
    content: '';
    background: transparent;
    top: 0;
    bottom: 5px;
    position: absolute;
    width: 11px;
    right: 0;
    z-index: 5;
    cursor: auto;
}

.main-container.dashboard-main-container {
    background-color: transparent;
    padding-right: 0;
    padding-top: 0px;
}

.dashboard-container {
    align-items: center;
    background-color: #FFF;
    padding: 0.75rem;
    margin: 0px;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.15);
}

.inc-label, .inc-count {
    align-self: center;
    text-align: center;
}

.inc-label {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0px;
}

.inc-count {
    padding: 0px;
    font-size: 2.3rem;
    border-left: 1px solid #E4E9F3;
    height: 30px;
    line-height: 30px;
}

.color-blue {
    color: #5888C9;
}

.color-green {
    color: #4EDB39;
}

.color-purple {
    color: #AC35F0;
}

.color-green-l {
    color: #B1C840;
}

.color-cyan {
    color: #61DEEC;
}

.color-red {
    color: #F0356D;
}

.dashboard-table-container {
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.15);
    padding-top: 15px;
    padding-bottom: 15px;
}

    .dashboard-table-container .table tbody > tr:last-child td {
        border-bottom: none;
    }

    .dashboard-table-container tbody td.table-right-border.text-indent {
        border-radius: 10px 0 0px 10px;
        padding-left: 20px;
    }

    .dashboard-table-container tr.active td {
        background: #525252;
        color: #FFF;
    }

    .dashboard-table-container tr.active .incident-date-info {
        color: #82E9EE;
    }

.priority {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 20px;
    border-radius: 5px 0px 0px 5px;
    height: 300px;
}

.high-priority {
    background-color: #F37070;
}

.low-priority {
    background-color: #56D782;
}

.medium-priority {
    background-color: #FFCF71;
}

.text-indent {
    text-indent: 30px;
    overflow: hidden;
    border-radius: 5px 0 0 5px;
}

.incident-name {
    display: block;
    background-color: #398E92;
    padding: 3px 30px;
    border-radius: 30px;
    text-align: center;
    color: #FFF;
}

.inner-table {
    margin: 0 auto;
}

    .inner-table tr td {
        padding: 0px 5px;
    }

        .inner-table tr td span.incident-symptoms {
            display: block;
            width: 35px;
            height: 35px;
            margin: 8px 5px;
            text-align: center;
            cursor: pointer;
            overflow: hidden;
            pointer-events: none;
        }

tr.edit-mode .inc-pad tr td span.incident-symptoms {
    pointer-events: auto;
}

p.table-para {
    margin-bottom: 5px;
}

    p.table-para:last-child {
        margin-bottom: 0;
    }

.inc-pad tr td span img {
    display: inline-grid;
    transition: all ease 0.5s;
}

.inc-pad tr td span.incident-symptoms img.active-incident {
    transform: translateY(-80px);
}

.inc-pad tr td span.incident-symptoms.selected img.active-incident {
    transform: translateY(-35px);
}

.inc-pad tr td span.incident-symptoms.selected img.normal-incident {
    transform: translateY(80px);
}

.inc-table-description p:first-child {
    margin-bottom: 3px;
    font-weight: 600;
    padding-right: 75px;
}

.inc-table-description p {
    margin-bottom: 3px;
}

tr.active .inc-table-description p.incidentcomment-heading {
    color: #B6F5F8;
}

tr.active > td:first-child {
    border-radius: 10px 0 0 10px;
}

.inc-table-edit, .inc-table-cancel, .inc-table-save, .inc-table-track, .inc-actionform-open-popup {
    position: absolute;
    cursor: pointer;
}

.inc-table-edit, .inc-table-cancel {
    right: 10px;
}

.inc-actionform-open-popup {
    right: 10px;
    top: 100px;
}

.inc-table-save, .inc-table-track {
    right: 40px;
}

.status-block {
    background-color: #E0E0E0;
    border-radius: 5px 5px;
    padding: 0 10px 10px 10px;
    min-height: 400px;
    height: 100%;
}

.status {
    font-size: 0.9rem;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    margin: 0 -10px;
    padding: 0.35rem 0 0.35rem 0;
}

.stat-emergency {
    background-color: #E84F4F;
    color: #FFFFFF;
}

.stat-medium {
    background-color: #FFDA65;
    color: #816C2A;
}

.stat-low {
    background-color: #B9E462;
    color: #658722;
}

.status-inner-block {
    margin-top: 10px;
    background-color: #FFF;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.15);
}

    .status-inner-block > .row {
        margin-left: 0px;
        margin-right: 0px;
    }

        .status-inner-block > .row > [class*="col-"] {
            padding-left: 10px;
            padding-right: 10px;
        }

    .status-inner-block td h5 {
        margin-bottom: 0px;
    }

.person-info-table tr td {
    padding: 5px;
    color: #989898;
    vertical-align: bottom;
}

.incident-icon-table tr td {
    padding: 5px 3px;
}

.person-info {
    margin-bottom: 0px;
    line-height: 1.1;
}

.progress-bar-container {
    color: #FFF;
    margin: 5px 10px 4px 10px !important;
}

.progress-bar-line {
    background-color: #7A7A7A;
}

.progress-bar-info {
    background-color: #EFEFEF;
    color: #A2A2A2;
}

.progress-time {
    font-size: 0.8rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zone-table {
    background-color: #EFEFEF;
}

.zone-table-cell {
    border-right: 1px solid #E8E4E4;
    text-align: center;
}

.incident-checkbox-container .col {
    padding: 0 5px;
}

.incident-history {
    box-shadow: 0 0px 6px 0 rgba(0,0,0,.12);
    padding: 10px;
    border-radius: 5px 5px;
    background-color: #525252;
    position: -webkit-sticky;
    position: sticky;
    top: 65px;
}

.incident-history-div {
    max-height: 77vh;
}

.incident-history h5 {
    color: #FFFFFF;
}

.history-block {
    padding: 10px;
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.12), inset 0 -1px 0 0 #dadce0;
    margin-bottom: 15px;
}

    .history-block:last-child {
        margin-bottom: 0px;
    }

    .history-block p {
        margin: 0px;
        position: relative;
    }

        .history-block p:first-child {
            margin-bottom: 10px;
        }

.history-progress {
    /* background-color: #43B4D6; */
    padding: 0 10px;
    border-radius: 10px;
    /* color: #FFF; */
    font-weight: 600;
}

.warning-status {
    display: inline-block;
    color: #3ACA95;
    font-weight: 600;
}

.alert-text {
    text-align: center;
    cursor: pointer;
    display: flex;
}

.alert-content, .settings-content, .username {
    padding: 0 10px;
}

.alert-click, .notification-click {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: left;
}

.notification-click {
    min-width: 37px;
}

.alert-click {
    padding: 0 10px 0 15px;
}

.alerts-popup, .notification-popup {
    position: absolute;
    right: 0;
    top: 42px;
    z-index: 9999;
    background-color: #FFF;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.4);
    color: #7D7D7D;
    /* padding: 20px; */
    width: 320px;
    border-radius: 10px;
    cursor: auto;
    display: none;
}

.alert-chk-box-container {
    background-color: #FBFBFB;
    padding: 8px;
    max-height: 250px;
    overflow-x: hidden;
}

.alerts-popup .tab-content {
    background-color: transparent;
    padding: 0px;
    border: none;
}

.alerts-popup .checkbox-value {
    padding-left: 10px;
    cursor: pointer;
}

.alerts-popup .nav-tabs .nav-item {
    width: 33%;
    justify-content: center;
    padding: 10px;
}

.checkbox-collapse-container {
    display: flex;
}

.alerts-popup .checkbox-container {
    box-shadow: none;
    padding: 9px 9px;
    margin-top: 3px;
    height: 18px;
}

    .alerts-popup .checkbox-container.checked {
        background-color: transparent;
        color: inherit;
    }

    .alerts-popup .checkbox-container .checkmark {
        width: 18px;
        height: 18px;
        top: 0px;
        left: 0px;
        background-color: #eaeaea;
    }

    .alerts-popup .checkbox-container input:checked ~ .checkmark {
        background-color: #398E92;
    }

    .alerts-popup .checkbox-container .checkmark:after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 11px;
        border: solid #FFFFFF;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.alerts-popup .slider-horizontal {
    margin-bottom: 0px !important;
}

.alert-chk-box-container .mCSB_scrollTools .mCSB_draggerRail {
    width: 10px;
    border-radius: 0px;
    background-color: #C7C7C7;
}

.alert-chk-box-container .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 10px;
    border-radius: 0px;
    background-color: rgb(148, 145, 145);
}

.alert-chk-box-container .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .alert-chk-box-container .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .alert-chk-box-container .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #707070 !important;
}

.alert-marquee {
    background-color: #525252;
    padding: 5px 0;
}

    .alert-marquee marquee {
        display: block;
        font-size: 1rem;
    }

.checkbox-container.level1 {
    margin-left: 30px;
}

.checkbox-container.level2 {
    margin-left: 60px;
}

.checkbox-container.level3 {
    margin-left: 90px;
}

.team-name {
    display: inline-block;
    font-weight: 600;
    position: absolute;
    right: 0px;
}

.team-description {
    color: #BABABA;
}

.history-time {
    font-size: 0.75rem;
    color: #999999;
    position: absolute;
    right: 0;
}

.incident-progress {
    display: block;
    text-align: center;
    padding: 2px 5px;
    border-radius: 15px 15px;
    color: #FFF;
    min-width: 80px;
    margin: 0 5px;
}

.incident-status {
    background-color: #43D6AB;
}

.incident-action {
    background-color: #B5BE5D;
}

.incident-team {
    background-color: #43B4D6;
}

.NoAction {
    background-color: #a1a1a1;
}

.Noteam {
    background-color: #a1a1a1;
}

.incident-date-info {
    color: #398E92;
    display: inline-block;
    font-size: 0.8rem;
}

.legend-block-container {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

    .legend-block-container > .selected {
        border-bottom: 2px solid #398E92;
    }

.legend-block {
    color: #5B5B5B;
    font-weight: normal;
    display: inline-flex;
    cursor: pointer;
}

    .legend-block span {
        width: 20px;
        height: 20px;
        display: inline-grid;
        margin-right: 10px;
    }

.legend-block-container .legend-high {
    background: #F37070;
}

.legend-block-container .legend-medium {
    background: #FFCF71;
}

.legend-block-container .legend-low {
    background: #56D782;
}

.legend-Medical {
    background: #a1a1a1;
}

.legend-block-container .legend-Medical {
    background: #398e92;
}

.legend-NonMedical {
    background: #a1a1a1;
}

.legend-block-container .legend-NonMedical {
    background: #398e92;
}

.steward-value {
    background-color: #DDDDDD;
    padding-top: 5px;
    padding-bottom: 5px;
}

    .steward-value label {
        margin: 0px;
    }

.nowraptext {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #FFF;
    width: 3px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgba(56, 120, 123, 0.7);
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #38787b !important;
}

.accordion > .card {
    overflow: inherit;
}

.dashboard-container-tab {
    background-color: transparent;
    padding: 2rem 0 0 0;
}

    .dashboard-container-tab > .row {
        margin-left: -15px;
        margin-right: -15px;
    }

        .dashboard-container-tab > .row > .col {
            padding-left: 0px;
            padding-right: 0px;
        }

    .dashboard-container-tab .nav-tabs {
        border-bottom: none;
    }

        .dashboard-container-tab .nav-tabs .nav-item.active {
            background-color: #E9E9E9;
            color: #707070;
        }

        .dashboard-container-tab .nav-tabs .nav-item {
            border-bottom: none;
            margin-bottom: 0px;
        }

    .dashboard-container-tab .header-text-divider {
        border-bottom: 2px dashed #d8d8d8;
    }

    .dashboard-container-tab h5 {
        color: #3D8C9A;
        padding-bottom: 10px;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .dashboard-container-tab .tab-content {
        background-color: transparent;
        border: none;
    }

.event-plan-block {
    /*box-shadow: 0px 0px 13px rgba(0,0,0,0.175);*/
    position: relative;
    background-color: #FFF;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
    padding: 0.3rem;
}

.individual-event-block {
    border: 1px solid #ececec;
    border-radius: 5px 5px;
    margin-bottom: 0.4rem;
    padding: 0.5rem;
    box-shadow: 0px 0 2px rgba(0, 0, 0, 0.25);
    /*background-color: #F0F0F0;*/
}

.event-plan-block-innerscroll {
    height: calc(100% - 50px);
    overflow-y: auto;
    overflow-x: hidden;
}

.link-no-underline {
    color: #3D8C9A;
    font-weight: 600;
    position: absolute;
    float: right;
    right: 20px;
    bottom: 5px;
}

.individual-event-block h6 {
    font-size: 0.9rem;
    position: relative;
    margin-bottom: 5px;
    color: #707070;
}

    .individual-event-block h6 .individual-event-time {
        position: absolute;
        right: 0;
        font-size: 0.8rem;
        color: #989898;
    }

.individual-event-section {
    color: #989898;
    display: flex;
    width: 100%;
}

.event-section-name, .event-name {
    width: 50%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.event-name {
    text-align: right;
}

.menu {
    background-color: #FFFFFF;
    position: relative;
    border-top: 5px solid #272727;
}

    .menu .nav-item a {
        color: #707070;
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-weight: 600;
        min-width: 150px;
    }

        .menu .nav-item a:focus {
            outline: none;
        }

    .menu .nav-item > a.active, .menu .nav-item > a:hover {
        color: #3D8C9A !important;
    }

    .menu .nav-item a.nav-link {
        background-repeat: no-repeat;
        background-position: left 10px center;
    }

.menu-dashboard {
    background-image: url('/images/icon-dashboard.svg');
}

.menu-events {
    background-image: url('/images/icon-event.svg');
}

.menu-settings {
    background-image: url('/images/icon-settings.svg');
}

.show .menu-settings {
    color: #3D8C9A !important;
    background-image: url('/images/icon-settings-active.svg');
}

.menu-reports {
    background-image: url('/images/icon-reports.svg');
}

.menu-staffing {
    background-image: url('/images/icon-EventStaffing.svg');
}

.menu-dashboard:hover, .active.menu-dashboard {
    background-image: url('/images/icon-dashboard-active.svg');
}

.menu-events:hover, .active.menu-events {
    background-image: url('/images/icon-event-active.svg');
}

.menu .menu-settings:hover, .active.menu-settings {
    background-image: url('/images/icon-settings-active.svg');
}

.menu-reports:hover, .active.menu-reports {
    background-image: url('/images/icon-reports-active.svg');
}

.menu-staffing:hover, .active.menu-staffing {
    background-image: url('/images/icon-EventStaffing-Active.svg');
}

.event-plan-container {
    max-width: 30%;
    flex: 0 0 30%;
    padding: 0;
}

.pending-section .individual-event-block span {
    display: block;
}

.pending-name, .pending-time {
    text-align: left;
}

.pending-event, .pending-category {
    text-align: center;
}

.pending-status, .pending-notification {
    text-align: right;
    font-weight: 600;
}

.pending-event {
    color: #3D8C9A;
    font-weight: 600;
    font-size: 1rem;
}

.pending-status.high {
    color: #ED6C6C;
}

.pending-status.low {
    color: #FFFCD7;
}

.pending-status.medium {
    color: #CFEFFF;
}

.pending-notification {
    color: #7BB6C1;
}

.alert-section-bg {
    /*box-shadow: 0px 0px 1px rgba(0,0,0,0.3);*/
    border-radius: 5px 5px;
    /*margin-bottom: 1rem;*/
    padding: 0.5rem;
    color: #707070;
}

.individual-event-block.low {
    background-color: #56D782;
}

.individual-event-block.medium {
    background-color: #FFCF71;
}

.individual-event-block.high {
    background-color: #F37070;
}

.timeline-container {
    height: 125px;
    background-color: #11454A;
    margin-right: -2rem;
}

.timeline-activity-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    height: 30px;
    background-color: #1A5F66;
}

.timeline-inner-container {
    width: 90%;
    margin: 0 auto;
    position: relative;
    overflow-x: auto;
}



.timeline-content-row {
    align-items: flex-end;
    flex-wrap: nowrap;
}

.timeline-progressbar-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 33px;
    height: 15px;
    background-color: #2C6165;
}

.timeline-progressbar-status {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 33px;
    height: 15px;
    background-color: #45ADB5;
}

.timeline-states {
    position: relative;
}

    .timeline-states span {
        display: block;
        color: #FFF;
        text-align: center;
        margin: 0 0 13px 0;
        white-space: nowrap;
    }

        .timeline-states span.tootltip-text {
            display: inline;
            vertical-align: text-bottom;
        }

.timeline-activity {
    font-size: 16px;
}

.timeline-states .progresshandle {
    background-color: #FFFFFF;
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50px;
    top: 64%;
    left: 50%;
    transform: translate(-50%,-64%);
    border: 1px solid #000;
    margin: 0px;
}

.timeline-states .delayed {
    background-color: #FFBF00;
}

.timeline-states .Not-Started {
    background-color: red;
}

.timeline-states .partly {
    background-color: #F0EA8C;
}

.timeline-states .exact-time {
    background-color: #9EF982;
}

.incident-container {
    background-color: #FFF;
    padding: 1rem;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
    border-radius: 5px;
}

    .incident-container h3 {
        border-bottom: 1px solid #e6ebf4;
        padding-bottom: 5px;
        text-align: right;
        font-weight: 400;
        color: #7E8897;
        font-size: 1.2rem;
    }

.incident-val-cont {
    display: flex;
}

.count-state span {
    display: block;
}

    .count-state span.value, .count-bar span {
        font-size: 3rem;
    }

    .count-state span.value {
        height: 60px;
    }

.outof, .count-bar span {
    color: #C7D4E6;
}

.color-orange {
    color: #E59438;
}

.color-cyan {
    color: #1BB1CC;
}

.color-green {
    color: #50B55D;
}

.color-purple {
    color: #AE5F94;
}

h4.table-title {
    font-size: 1.2rem;
}

.incident-summary {
    background-color: #FFF;
    padding: 1rem 1rem 2rem 1rem;
    border-radius: 4PX;
    box-shadow: 0 0px 6px rgba(0,0,0,0.25);
}

    .incident-summary .table tr th {
        color: #65758D;
        font-weight: 500;
    }

    .incident-summary .table tr td {
        color: #919191;
    }

.live-feed-container {
    background-color: #FFF;
    padding: 1rem 1rem;
    border-radius: 4PX;
    box-shadow: 0 0px 6px rgba(0,0,0,0.25);
}

    .live-feed-container ul {
        padding: 0;
        margin: 0;
    }

        .live-feed-container ul li {
            list-style-type: none;
            padding: 5px 10px;
            margin-bottom: 1px;
            background-color: #F2F6FB;
            border-radius: 3px;
            padding-right: 30px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .live-feed-container ul li.pinned {
                background-color: #C7D4E6;
                background-image: url('/images/icon-pin.svg');
                background-repeat: no-repeat;
                background-position: right 7px center;
            }

.EventTask {
    cursor: pointer;
}

    .EventTask:hover {
        background-color: azure;
    }

/* .timeline-container:before {
        content: 'NOT YET STARTED';
        position: absolute;
        background-color: rgba(9, 64, 51, 0.81);
        left: 0;
        right: 0;
        top: 0;
        bottom: 0px;
        z-index: 999;
        color: #FFF;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size:1.2rem;
        text-transform: uppercase;
        text-shadow: 3px 3px 3px #000000;
        pointer-events: none;
    } */

.master-menu {
    background-color: #62A2AD;
    box-shadow: 0px 0px 13px rgba(0,0,0,0.25);
    border-radius: 0 0;
    border: none;
    padding: 2rem 1rem;
    margin: 0px;
}

.menu .master-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: calc(100% + 5px) !important;
    top: 100% !important;
}

.master-menu .col-md-3 {
    padding: 0px;
}

.menu .nav-item .master-menu a {
    color: #FFFFFF;
    font-weight: 500;
    padding: 7px 30px;
    transition: all ease 0.5s;
    display: block;
}

    .menu .nav-item .master-menu a:not(.menu-title):hover {
        background-color: #3e7d7d;
        border-radius: 4px 4px;
    }

.settings .master-menu a {
    color: #FFFFFF;
    font-weight: 500;
    padding: 7px 10px;
    transition: all ease 0.5s;
    display: block;
}

    .settings .master-menu a:not(.menu-title):hover {
        background-color: #58949e;
        border-radius: 4px 4px;
    }

.master-menu a.menu-title:hover {
    text-decoration: underline;
}

.menu-title {
    font-size: 1rem;
    font-weight: 600 !important;
    cursor: default;
    text-decoration: underline;
}

.dropdown.login-section a {
    display: flex;
    align-items: center;
    color: #0d3d40;
    font-weight: 400;
    padding: 10px;
    position: relative;
}

    .dropdown.login-section a i {
        margin-right: 10px;
    }

.Timeline-Min-Height {
    min-height: 350px !important;
}

.Timeline-Max-Height {
    max-height: 350px !important;
}

.Timeline-Height {
    height: 350px !important;
}

.customFontSize {
    font-size: 1.2rem;
    padding: 0 !important;
    font-weight: bolder;
}

.save-btn:disabled, .save-btn:disabled:hover {
    background-color: #398E92;
    border-color: #e5e5e5;
    cursor: no-drop;
}

.calendar-tooltip-icon {
    background-position: left 0px center;
    background-repeat: no-repeat;
    padding: 0 15px 0 25px;
    font-size: 0.8rem;
}

.timeLineIcon {
    background-image: url('/images/icon-timeline.svg');
}

.ViewIcon {
    background-image: url('/images/icon-view.svg');
    background-position: left 7px;
}

.PEAPsIcon {
    background-image: url('/images/icon-peaps-checked.svg');
}

.incident-dashboard-listview {
    background-image: url('/images/incident-dashboard-listview.svg');
}

.incident-dashboard {
    background-image: url('/images/incident-dashboard.svg');
}

.calendarView-dashboard {
    background-image: url('/images/calendar.svg');
}

.plain-chkbox .checkbox-container {
    box-shadow: none;
    padding: 9px 9px;
    margin-top: 3px;
    height: 18px;
}

    .plain-chkbox .checkbox-container.checked {
        background-color: transparent;
        color: inherit;
    }

    .plain-chkbox .checkbox-container .checkmark {
        width: 18px;
        height: 18px;
        top: 0px;
        left: 0px;
        background-color: #eaeaea;
    }

    .plain-chkbox .checkbox-container input:checked ~ .checkmark {
        background-color: #398E92;
    }

    .plain-chkbox .checkbox-container .checkmark:after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 11px;
        border: solid #FFFFFF;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.plain-chkbox .checkbox-value {
    padding-left: 10px;
}

.inc-event-container {
    box-shadow: 0px 0px 13px rgba(0,0,0,0.175);
    background-color: #FFF;
    margin-bottom: 45px;
}

.inc-event-name {
    font-weight: 600;
    color: #3D8C9A;
}

.inc-event-container .nav-link {
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 35px;
    margin-right: 20px;
    color: #707070;
}
/*Body Content CSS Ends Here*/

@media all and (-ms-high-contrast:none) {
    .event-add, .event-booked {
        width: 26px;
        height: 26px;
    }

        .event-add img {
            display: inline !important;
            width: 25px !important;
        }
}

.alert-modal-content {
    border-radius: 20px 20px !important;
}

.alert-header {
    color: #398E92;
}

.checkbox-max-height {
    max-height: 150px;
    overflow-y: scroll;
}

.request-allocate-bg {
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 5px;
}

    .request-allocate-bg label {
        font-weight: 600;
        color: #000;
    }

.pldrcntr, .LaypldrCntr {
    position: relative;
}

    .pldrcntr .preloader, .LaypldrCntr .preloader {
        position: absolute;
        left: 0px;
        top: 0px;
        bottom: 0px;
        right: 0px;
        z-index: 99999;
        overflow: visible;
        background: rgba(0,0,0,0.8) url('/images/loader3.gif') no-repeat center center;
    }

.gridIinfiniteScrollLoader {
    height: 30px;
    background-color: #ccc;
    width: 100%;
    text-align: center;
    padding-top: 4px;
}

.border-radius-0 {
    border-radius: 0 !important;
}

div#StewardTrackmap {
    position: absolute !important;
    left: 1.5rem;
    right: 1.5rem;
    top: 1.5rem;
    bottom: 1.5rem;
}

div.TrackMapPosition {
    position: absolute !important;
    left: 1.5rem;
    right: 1.5rem;
    top: 1.5rem;
    bottom: 1.5rem;
}

.Steward-div {
    background-color: rgb(255, 255, 255);
    border: 1px solid #D5D5D5;
    padding: 5px;
    margin: 0 15px;
    color: #4e4e4e;
    font-size: 0.8rem;
}

.user-login-type {
    font-weight: 600;
    cursor: pointer;
    transition: all ease 0.5s;
}

#TrackNotAvailable {
    top: 50px;
}

.import-btn {
    background-image: url('/images/icon-import.svg');
    background-position: 8px 4px;
    padding-left: 35px;
    background-repeat: no-repeat;
    background-size: 1.1rem;
}

.export-btn {
    background-image: url('/images/icon-export.svg');
    background-position: 8px 5px;
    padding-left: 35px;
    background-repeat: no-repeat;
    background-size: 1.1rem;
}

.modal-content .iframe-container {
    min-height: 70vh;
    max-height: 70vh;
}

    .modal-content .iframe-container iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

.absolute-error {
    position: absolute;
}

.white-space-normal {
    white-space: normal !important;
}

.cursor-default {
    cursor: default !important;
}

.cursor-pointer {
    cursor: pointer;
}

.tab-pane thead tr th {
    background: #f6f6f6 !important;
}

.add-hold-zone {
    position: absolute;
    left: 27px;
    top: 62px;
    flex-direction: column;
    display: flex;
    z-index: 9999;
}

    .add-hold-zone a {
        margin-bottom: 5px;
        opacity: 0.7;
    }

        .add-hold-zone a:focus {
            background-color: #fff;
            border-color: #80bdff;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
        }

.Submitted-bg {
    color: #56D782 !important;
}

.Pending-bg {
    /*color: #F37070 !important*/
    color: green !important;
}

.fittoopen-bg {
    /*color: #F37070 !important*/
    color: #F37070 !important;
}

.require-bg {
    color: #c4be02 !important;
}

.default-bg {
    color: black !important;
}

.card-body table.dataTable thead th, table.dataTable tfoot th {
    background-color: transparent !important;
}

.card-body table.table-bordered.dataTable tbody td {
    min-height: 35px !important;
    line-height: 35px;
}


.vendor-menu {
    position: relative !important;
    border-right: 20px solid transparent;
    padding-right: 0;
}

    .vendor-menu > a {
        color: #FFF !important;
        border-right: 1px solid rgba(255, 255, 255, 0.28);
        margin-right: 0 !important;
        padding-right: 20px !important;
    }

.login-section.vendor-menu a {
    margin-right: 10px;
    transition: all ease 0.5s;
    padding-left: 10px;
}

    .login-section.vendor-menu a:hover {
        opacity: 0.75;
    }

.employee-thumb-preview {
    width: 100%;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
}

.incident-thumb-preview {
    width: 100%;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
}

.vendor-steward-allocation .selectize-input.items.not-full.has-options.has-items {
    max-height: 150px;
    overflow-y: auto;
}

.add-template-section {
    background-color: #f3f3f3;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 15px;
    border-radius: 7px;
}

.event-name-date {
    color: #398e92;
    font-weight: 600;
    margin-bottom: 0px;
    margin-left: 10px;
}

.qualified-yes {
    font-weight: 600;
    color: #58cb46;
}

.status-disabled {
    background-color: #398E92 !important;
    border-color: #398E92 !important;
    color: #FFF !important;
}

.link {
    color: #559ddc;
    text-decoration: none;
    font-weight: 600;
}

.btn-inline-filter {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
}



#StewardReportedGrid_wrapper .datatable-toprow,
#StewardCheckinReportGrid_wrapper .datatable-toprow {
    /*justify-content: initial;*/
}

#StewardReportedGrid_wrapper .btn-inline-filter,
#StewardCheckinReportGrid_wrapper .btn-inline-filter {
    justify-content: flex-end;
}


    #StewardReportedGrid_wrapper .btn-inline-filter .btn-primary, #StewardCheckinReportGrid_wrapper .btn-inline-filter .btn-primary {
        background-color: #FFF;
        box-shadow: none;
        border-radius: 25px;
        border-color: #b3b3b3;
        color: #929292;
        font-weight: 600;
    }

        #StewardReportedGrid_wrapper .btn-inline-filter .btn-primary:not(:disabled):not(.disabled).active,
        #StewardReportedGrid_wrapper .btn-inline-filter.btn-primary:not(:disabled):not(.disabled):active,
        #StewardCheckinReportGrid_wrapper .btn-inline-filter .btn-primary:not(:disabled):not(.disabled).active,
        #StewardCheckinReportGrid_wrapper .btn-inline-filter.btn-primary:not(:disabled):not(.disabled):active {
            background-color: #398E92;
            border-color: #2d989e;
            color: #fff;
            box-shadow: 3px 3px 10px rgba(223, 223, 223, 0.58);
        }

    #StewardReportedGrid_wrapper .btn-inline-filter .btn-primary,
    #StewardCheckinReportGrid_wrapper .btn-inline-filter .btn-primary {
        background-color: #FFF;
        box-shadow: none;
        border-radius: 25px;
        border-color: #b3b3b3;
        color: #929292;
        font-weight: 600;
    }


    #StewardReportedGrid_wrapper .btn-inline-filter .btn,
    #StewardCheckinReportGrid_wrapper .btn-inline-filter .btn {
        max-width: 800px;
        height: 30px;
        line-height: 25px;
        min-width: 80px;
        font-size: 12px;
        padding: 0 !important;
    }

.master-zone-map {
    height: 400px;
    width: 100%;
    overflow: hidden;
    padding: 15px;
    margin-top: 19px;
}

.master-hold-zone {
    position: absolute;
    left: 27px;
    top: 81px;
    flex-direction: column;
    display: flex;
    z-index: 9999;
}

    .master-hold-zone a {
        margin-bottom: 5px;
        opacity: 0.7;
    }

        .master-hold-zone a:focus {
            background-color: #fff;
            border-color: #80bdff;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
        }


.extend-search {
    position: absolute;
    width: 45px;
    right: 0;
    top: -1px;
    transition: all ease 0.5s;
    font-size: 15px;
}


    .extend-search button {
        position: absolute;
        right: 0px;
        background-color: transparent;
        border: 1px solid #ececec;
        width: 45px;
        height: 45px;
        padding: 0;
        top: 0px;
        display: none;
    }

    .extend-search input {
        background-color: transparent;
        background-image: url('/images/icon-search.svg');
        background-size: 45%;
        background-repeat: no-repeat;
        background-position: center center;
        transition: all ease 0.5s;
        height: 35px;
    }

.max-search {
    width: 100%;
}

    .max-search button {
        display: block;
    }

    .max-search input {
        background: none;
        background-color: #FFF;
    }

.extend-search button i {
    font-size: 25px;
    margin: 0 auto;
    vertical-align: middle;
    color: #1a6a78;
}


.date .form-control:disabled + div + div {
    cursor: default;
}

.notification-marquee {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 15px;
    right: 15px;
}

    .notification-marquee .row {
        margin-bottom: 1px !important;
    }

    .notification-marquee .pinned-alert {
        background: #525252;
        display: flex;
        justify-content: space-between;
        color: #FFF;
        padding: 5px 15px 5px 10px;
        margin-left: -15px;
        margin-right: -14px;
        font-size: 1rem;
        border-radius: 4px;
        min-height: 34px;
        height: 100%;
    }

.more-pinned-alert {
    align-self: flex-end;
}

.track-legend {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(57, 142, 146, 0.4);
}

.font-weight-600 {
    font-weight: 600;
}

.reported-steward .radiobtn {
    top: 5px;
    left: 10px;
}

.mw-a {
    min-width: auto;
}

.acess-settings-table tr td {
    height: 40px;
}

.section-dropdown {
    width: 300px;
}

.stewards-menu ul {
    padding: 0px;
}

    .stewards-menu ul a {
        padding: 0px 0px 0px 25px;
    }

.stewards-menu > ul {
    padding: 0px;
}

    .stewards-menu > ul ul {
        display: none;
    }

.stewards-menu ul li {
    list-style-type: none;
}

    .stewards-menu ul li a {
        background-color: #f6f6f6;
        display: block;
        margin-bottom: 4px;
        padding: 5px;
        color: #5b5b5b;
        font-weight: 600;
        position: relative;
        padding-left: 10px;
    }

    .stewards-menu ul li li a {
        padding-left: 30px;
    }

    .stewards-menu ul li li li a {
        padding-left: 50px;
    }

    .stewards-menu ul li li li li a {
        padding-left: 70px;
    }

    .stewards-menu ul li a.has-dropdown::before {
        content: '';
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #b5b5b5;
        transition: all ease 0.5s;
        display: inline-block;
        margin-right: 10px;
    }

    .stewards-menu ul li a.has-dropdown.nodropdown::before {
        opacity: 0;
    }

    .stewards-menu ul li a.has-dropdown.open::before {
        transform: rotate(90deg);
    }

    .stewards-menu ul li a:hover, .stewards-menu ul li a.open {
        background-color: #dbdbdb;
    }

.increase-decrease {
    background-color: #38787B;
    display: flex;
    height: 35px;
    align-self: center;
    width: auto;
    padding: 5px;
    border-radius: 4px;
    justify-content: center;
}

    .increase-decrease span {
        display: inline-flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: #FFF;
        cursor: pointer;
        font-size: 25px;
        width: 35px;
    }

        .increase-decrease span.active {
            background-color: #FFF;
            color: #38787B;
        }


.members-view-mode {
    margin: 0;
    padding: 0;
}

    .members-view-mode li {
        float: left;
        margin: 3px 1px 3px 1px;
        background-color: #f7f7f7;
        padding: 0 10px;
        border-radius: 3px;
        width: 32%;
        list-style-position: inside;
    }

.modal-backdrop.fade.show + div {
    /* z-index: 10600;*/
}

#ImageViewer {
    z-index: 10700;
}

    #ImageViewer .modal-dialog {
        max-width: 80vw;
        max-height: 80vh;
        overflow: auto;
    }

    #ImageViewer .close {
        position: absolute;
        right: -9px;
        top: -11px;
        color: #FFF;
        opacity: 1;
        font-weight: normal;
        border-radius: 50px;
        width: 25px;
        height: 25px;
        background-color: #2d989e;
    }

    #ImageViewer .modal-content {
        width: auto;
        margin: 0 auto;
    }

img#imgTag {
    max-width: 80vh;
    max-height: 80vh;
    margin: 0 auto;
    border-radius: 5px;
}

/*table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
    top: unset !important;
}*/

.validate .invalidlist {
    background-color: #f39a9a;
    color: #FFF;
    border-radius: 6px;
    font-size: 12px;
    display: inline-block;
    padding: 1px 6px;
}

    .validate .invalidlist img {
        margin-right: 5px;
        width: 13px;
    }

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 0 !important;
}
/*Full Calendar*/
th.fc-day-header {
    padding: 10px;
    background-color: #f7f7f7;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
}

.fc-unthemed th, .fc-unthemed td {
    border: 1px ridge #f1f1f1;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
    background: #ebf1f6;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
    background: #ebf1f6;
    height: 42px;
    display: flex;
}

.fc-center {
    margin: 0 auto;
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
}

    .fc-center h2 {
        font-weight: 600;
        font-size: 20px;
    }

/* .fc-right {
    position: absolute;
    right: 0px;
    top: 0px;
} */

.fc-button-group button {
    margin: 5px !important;
    background: #1a6a78;
    transition: all ease 0.5s;
    border: none;
}

    .fc-button-group button:hover, .fc-button-group button:focus {
        background-color: #308594 !important;
        box-shadow: 0 0 0 0.2rem rgba(26, 106, 120, 0.23);
    }

.fc-today-button {
    background: #1a6a78 !important;
    border: none;
    text-transform: uppercase;
    transition: all ease 0.5s;
}

.fc-content {
    /* font-size: 13px; */
    color: #FFF;
}

.fc-event {
    background-color: #3da4b6;
}

.fc-day-grid-event {
    margin: 0px;
    border-radius: 0;
}


.fc-event-container {
    position: relative;
}

a.fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end {
    background: transparent;
    /* background: #3da4b6; */
    font-weight: 500;
    padding: 0px;
    height: 82px;
    border-radius: 5px;
    cursor: pointer;
}

a.fc-day-grid-event.fc-h-event {
    transition: transform .5s ease;
}

    a.fc-day-grid-event.fc-h-event:hover {
        -ms-transform: scale(1.025); /* IE 9 */
        -webkit-transform: scale(1.025); /* Safari 3-8 */
        transform: scale(1.025);
        box-shadow: 3px 3px 8px 0px rgba(2, 41, 47, 0.73);
    }

.fc-content {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.fcl-date {
    background: #61c3d4;
    width: 20%;
    display: inline-flex;
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.fcl-EventTime {
    font-size: 0.70rem;
}

.fcl-EventAss, .fcl-dat, .fcl-Status {
    font-size: 0.70rem;
}

.fcl-EventName, .fcl-Organization, .fcl-dat, .fcl-Status, .fcl-EventTime, .fcl-EventAss {
    display: block;
    padding-left: 25%;
}

.ttltip-text {
    cursor: pointer;
    display: inline-block;
}

.fcl-EventName {
    padding-top: 5px;
}

.fc-unthemed td.fc-today {
    background: #e2f2ff !important;
}

.fc-unthemed th, .fc-unthemed td, .fc-unthemed thead, .fc-unthemed tbody, .fc-unthemed .fc-divider, .fc-unthemed .fc-row, .fc-unthemed .fc-content, .fc-unthemed .fc-popover, .fc-unthemed .fc-list-view, .fc-unthemed .fc-list-heading td {
    border-color: rgba(221, 221, 221, 0.31) !important;
}

.fc-day-number {
    padding: 5px 5px 0px 0px !important;
    display: inline-block;
    color: #9a9a9a;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0 !important;
    position: relative;
}

th.fc-day-header.fc-widget-header {
    background: #f9fbfc !important;
    height: 35px;
    line-height: 35px;
}

.table tr td {
    min-height: 30px;
    line-height: 30px;
}

.card-header .SpanClick {
    position: absolute;
    top: 5px;
    right: 40px;
    color: #FFF;
    z-index: 99;
    cursor: pointer;
    font-size: 18px;
}

    .card-header .SpanClick :hover {
        text-decoration: underline;
        text-decoration-color: #FFF;
    }


table.fixedHeader-floating.no-footer {
    top: 87px !important;
}

.pass-container {
    background-color: #FFF;
    padding: 15px;
    border-radius: 4px 4px;
    width: 400px;
    margin-left: auto;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.22);
}

.pass-upload-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #e0e0e0;
    background-image: url('/images/placeholder.png');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f3f3f3;
    height: 100px;
    position: relative;
}

.pass-profile-details {
    padding: 10px 0px;
}

    .pass-profile-details p {
        margin: 0 0 5px 0px;
    }

.pass-profile-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    background-image: url('/images/man-placeholder.png');
    background-position: center;
    background-color: #f3f3f3;
    height: 150px;
}

.card-profile-image {
    max-width: 160px;
}

.pass-image-block {
    border: 1px solid #e0e0e0;
}

    .pass-image-block .pass-image-inner-block {
        border: 1px solid #e0e0e0;
        height: 30px;
        margin: 10px 5px 5px 5px;
        text-align: center;
        width: 100%;
    }

.pass-image-block-row {
    display: flex;
    justify-content: space-around;
}

.pass-image-block-col {
    display: flex;
    width: 18%;
}

.pass-code-block .pass-image-block-col {
    width: 33.1%;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
}

.pass-image-block-col.pass-uplod-image {
    position: relative;
    border: 0px solid #e0e0e0;
    min-height: 100px;
    padding: 10px;
}

.pass-upload-image input, .pass-uplod-image input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
}

.re-request-label {
    padding: 1rem 2rem;
    background-color: #DDDDDD;
}

    .re-request-label label {
        padding-right: 10px;
    }

.pass-profile-details p {
    display: table;
    margin: 0;
    width: 100%;
}

    .pass-profile-details p span {
        display: table-cell;
        vertical-align: top;
    }

        .pass-profile-details p span:first-child {
            width: 50%;
        }

        .pass-profile-details p span:nth-child(2) {
            width: 10px;
        }

#divCertificationStatus .btn {
    max-width: 50%;
    padding: 0.16rem 1rem;
    min-height: 29px;
    display: table-cell;
}

#divEditCertificationStatus .btn {
    max-width: 50%;
    padding: 0 5px;
    display: table-cell;
}

.modal h3.sub-title {
    margin: 15px -10px -10px;
    font-size: 17px;
    border-bottom: 1px solid #f3f3f3;
}

    .modal h3.sub-title span {
        display: inline-block;
        border-bottom: 3px solid #398e91;
        margin-bottom: -2px;
        padding-bottom: 4px;
    }

.cardview-centre {
    height: calc(100vh - 50px);
}

.cardview-centre-box {
    margin: 0 auto;
    background-color: #FFF;
    width: 500px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.22);
    /*position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%,-50%);*/
}

.cardview-centre .login-box {
    padding-top: 0px !important;
}

table.cardview-table {
    width: 100%;
    padding: 5px;
    margin-bottom: 15px;
}

    table.cardview-table tr td {
        padding: 5px 15px;
    }

        table.cardview-table tr td:first-child {
            width: 35%;
        }

        table.cardview-table tr td:nth-child(2) {
            width: 40px;
            text-align: center;
        }

.cardview-centre h4 {
    margin: 0 0 20px 0;
    background: #579ba7;
    color: #FFFF;
    padding: 10px 5px;
    font-weight: 400;
    font-size: 1.3rem;
}

.decline-bg {
    background-color: #f15555;
    color: #FFF;
}

    .decline-bg:hover {
        color: #FFF;
    }

.modal h3.sub-title span {
    display: inline-block;
    border-bottom: 3px solid #398e91;
    margin-bottom: -2px;
    padding-bottom: 4px;
}

.selectize-control .selectize-input.disabled {
    opacity: 0.5;
    background-color: #e9ecef;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 0.5;
}

.Page-CenterText {
    height: 75vh;
    position: relative;
}

    .Page-CenterText h1 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0 !important;
    }

.sub-BackGround {
    background-color: #edf9fd;
}

.accreditation-img {
    width: auto;
    max-width: 500px;
    max-height: 120px;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.43)
}

.minmax-value-header {
    padding: 0 5px;
    align-self: stretch;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #000;
    justify-content: center;
    max-width: 100px;
}

.minmax-value {
    padding: 0 5px;
    align-self: stretch;
    background-color: transparent;
    border: 0px solid #d5d5d5;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #000;
    height: 35px;
    margin-bottom: 8px;
    justify-content: center;
    max-width: 100px;
}

.minmax-value-min {
    color: red;
}

.minmax-value-max {
    color: green;
}

.switchh {
    width: 24px;
    height: 24px;
    background-color: #fcfcfc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #185f63;
    font-size: 13px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.48);
    border: 3px solid #398e92;
    font-weight: 600;
    cursor: pointer;
}

.Onn {
    border-color: red;
}

.disabledtr {
    opacity: 0.35;
}

.duty-start-click {
    background-color: #FFF;
    border: 1px solid #D5D5D5;
    display: block;
    width: 100%;
    padding: 5px 8px;
    cursor: text;
}

.duty-end-click {
    background-color: #FFF;
    border: 1px solid #D5D5D5;
    display: block;
    width: 100%;
    padding: 5px 8px;
    cursor: text;
}

.open-time-container {
    display: flex;
    border: 1px solid transparent;
}

.open-time {
    border: 1px solid #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    position: relative;
}

    .open-time .increase-decrease-container {
        display: flex !important;
        position: absolute;
        right: 0px;
        background-color: #FFF;
        border-radius: 5px;
        box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
        padding: 5px;
        top: calc(100% + 4px);
        z-index: 9999;
    }

.increase-decrease-container .increase-decrease {
    height: 30px;
    width: 50px;
}

.increase-decrease-container .form-control, .increase-decrease-container .btn {
    height: 30px;
    min-width: auto;
    line-height: 14px;
}

.inc-dec-value {
    width: 30px;
    display: inline-flex;
    align-items: center;
    background-color: #38787b;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.col.text-center.middle-text {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
}

#tblStewardMgt.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
    top: 40% !important;
}


.info-icon {
    color: #000;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.Custom-toolTip {
    background-color: transparent;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.12), inset 0 -1px 0 0 #dadce0;
    width: auto !important;
    max-height: 100px;
    max-width: 1000px;
    text-align: left;
    padding: 0px;
    height: auto;
    user-select: none;
}

    .Custom-toolTip.bs-tooltip-top {
        top: -6px !important;
    }

    .Custom-toolTip.tooltip-inner {
        min-width: unset !important;
        background-color: transparent;
    }

    .Custom-toolTip p {
        background-color: #000;
        color: #fff;
        padding: 2px 10px;
        display: block;
        font-size: 12px;
        align-items: center;
        border-radius: 5px;
        width: auto !important;
    }

    .Custom-toolTip:hover p {
        background-color: #000;
        color: #FFF;
    }

    .Custom-toolTip p span {
        height: 20px;
        margin: 0;
        margin-left: 0;
        width: auto !important;
    }


    .Custom-toolTip .arrow::before {
        top: 5px;
    }

.timeline-container .mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-bottom: 15px !important;
}

.timeline-container .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #36a9b5 !important;
}

.AreaFilter {
    height: 50vh;
    overflow: auto;
}

.zone-grid-container .card-body {
    cursor: pointer;
}

.zone-map-container .gm-style .gm-style-iw {
    background-color: #252525 !important;
    top: 0 !important;
    left: 0 !important;
    width: auto;
    height: auto;
    padding: 0px !important;
    display: block !important;
}

    /*style the paragraph tag*/
    .zone-map-container .gm-style .gm-style-iw #google-popup p {
        padding: 10px;
    }


/*style the annoying little arrow at the bottom*/
.zone-map-container .gm-style div div div div div div div div {
    background-color: #252525 !important;
    margin: 0;
    padding: 0;
    top: 0;
    color: #fff;
}

    /*style the link*/
    .zone-map-container .gm-style div div div div div div div div a {
        color: #f1f1f1;
        font-weight: bold;
    }

.zone-map-container .gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 5px;
}

.zone-map-container .gm-style-iw.gm-style-iw-c button img, .zone-map-container .gm-style-iw.gm-style-iw-c button {
    display: none !important;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg,rgb(26, 26, 26) 50%,rgba(255,255,255,0) 51%,rgba(255,255,255,0) 100%);
}

.passes-details {
    height: 50px;
    border: 1px solid #e0e0e0;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

    .passes-details tr td {
        padding: 5px;
        vertical-align: top;
    }

        .passes-details tr td span {
            position: relative;
            display: block;
        }

.label-holder {
    position: absolute;
    padding: 0px;
    left: 0px;
    font-style: normal;
}

.staffpasses-id {
    width: 100%;
    font-size: 20px;
    font-weight: 400;
}

    .staffpasses-id tr td {
        width: 50%;
    }

        .staffpasses-id tr td:first-child {
            text-align: right;
        }

        .staffpasses-id tr td:last-child {
        }

.hologram-qrcode-table {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 10px;
}

    .hologram-qrcode-table tr td {
        width: 50%;
        height: 75px;
        text-align: center;
    }


.dt-export-btn {
    padding-bottom: 4px;
    margin-left: 5px;
    padding-top: 4px;
}

.logout-button-align {
    text-align: left;
    width: 74%;
}

.not-allocated td {
    background-color: #f2e2e2 !important
}

.allocated td {
    background-color: #cdfcad !important
}

.filter-approval td {
    background-color: #FFDBE9 !important
}

#owl-demo .item {
    display: block;
    width: 100%;
    height: auto;
}

.customNavigation {
    display: flex;
    justify-content: center;
}

.date-section ul {
    display: flex;
    width: auto;
    padding: 0;
    margin: auto;
}

    .date-section ul li.active, .date-section ul li:hover {
        background-color: #36a9b5 !important;
        color: #fff;
    }

    .date-section ul li {
        display: inline-block;
        text-transform: uppercase;
        cursor: pointer;
        color: #ccc;
        box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
        margin: 0px 3px;
        height: 25px;
        vertical-align: middle;
        align-items: center;
        background-color: #f0f0f0;
        width: auto !important;
        min-width: 0 !important;
        padding: 6px 10px;
        border-radius: 25px;
        line-height: 0.75rem;
    }

.timeline-content-row {
    cursor: pointer;
}

.toggle-filter {
    cursor: pointer;
}

.filter-panel {
    width: 300px;
    position: fixed;
    top: 93px;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    background-color: #FFF;
    transition: all ease 0.5s;
    box-shadow: 0px 7px 5px rgba(0,0,0,0.5);
    margin-left: -600px;
}

    .filter-panel h3 {
        font-size: 18px;
        font-weight: 500;
        padding: 10px 0px;
        border-bottom: 1px solid #e6e6e6;
    }

.filter-panel-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 99;
    display: none;
}

.show-overlay {
    display: block;
}

.filter-slidein {
    margin-left: 0px;
}

.filter-btn {
    background-image: url('/images/icon-Filter.svg');
    background-position: 10px 7px;
    padding-left: 30px;
    background-repeat: no-repeat;
    margin-left: 10px;
    margin-right: 10px;
}

.fltr-btn {
    border-radius: 7px;
    min-width: 100px;
}

.selectize-dropdown .optgroup-header {
    background: #f5f5f5 !important;
}

.mapinput-control {
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 39px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#pac-input {
    background-color: #fff !important;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    width: 300px;
}

    #pac-input:focus {
        border-color: #4d90fe;
    }

.pac-container {
    font-family: Roboto;
}

#type-selector {
    color: #fff;
    background-color: #4d90fe;
    padding: 5px 11px 0px 11px;
}

    #type-selector label {
        font-family: Roboto;
        font-size: 13px;
        font-weight: 300;
    }

#target {
    width: 345px;
}

#map-input-search input {
    background: url(/images/icon-search.svg);
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 6%;
    padding-left: 40px !important;
}

a.calendar-tooltip-icon.incident-dashboard-listview {
    white-space: nowrap;
}

#inputsearch {
    background: url(/images/icon-search.svg);
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 8%;
    padding-left: 40px !important;
}

.steward-map-position {
    margin-top: 8px;
}

    .steward-map-position p:first-child {
        font-weight: 300;
        font-size: 15px;
        margin: 0 0 5px 0px;
        color: #0d3d40;
    }

    .steward-map-position p:last-child {
        color: #838383;
        margin: 0 0px;
    }

.min-width-150 {
    min-width: 150px;
}

.map-container {
    height: 100%;
    overflow: hidden;
}

#positionGridList td select.StartMinutes, #positionGridList td select.EndMinutes {
    min-width: 47px;
    padding: 0 0 0 5px;
}

#positionGridList .GridDutyStartAction span {
    width: 25px;
}

#positionGridList .GridDutyEndAction span {
    width: 25px;
}

.steward-management-header {
    margin-right: 17px;
}

.steward-management-content {
    height: calc(100vh - 404px);
    overflow-y: auto;
}

#tblStewardMgt, #tblStewardMgt tbody {
    height: 100%;
}

.table-content-placeholder {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.Venue-Zone {
    display: flex;
    background: #f6f6f6;
    justify-content: space-between;
}

    .Venue-Zone a:first-child {
        display: flex;
        width: 100%;
        align-items: center;
    }


    .Venue-Zone span.action-icon {
        margin: 0;
        height: 32px;
        display: inline-flex;
    }

.tbl-access-card {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    width: 340px;
    height: 160px;
    border: 1px solid #CCC;
}

    .tbl-access-card td {
        vertical-align: top;
        padding: 5px;
    }

.id-right-block {
    display: flex;
    flex-direction: column;
}

.id-picture-container {
    width: 120px;
}

.id-picture {
    width: 100%;
    height: 100%;
    padding-bottom: 150px;
    position: relative;
    background-color: #d6d6d6;
}

    .id-picture img {
        display: block;
        opacity: 1;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        /*object-fit: cover;*/
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        border: 1px solid #f3f1f1;
    }

.id-staff-number, .id-agency-name, .id-event-role {
    margin-bottom: 10px;
}

    .id-staff-number h6, .id-agency-name h6, .id-staff-name h6, .id-event-role h6 {
        font-size: 13px;
        margin: 0px 0px 5px 0px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .id-staff-number p, .id-agency-name p, .id-staff-name p span {
        margin: 0px;
    }

.history {
    background-color: #d7d7d7;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #d7d7d7;
}

.inline-header {
    text-transform: uppercase;
    padding-bottom: 5px;
    font-size: 1rem;
    color: #1E827E;
    margin-bottom: 20px;
    border-bottom: 2px solid #3ECCC5;
}

.item-detail-grid-wrapper .col {
    max-width: 20%;
    flex-basis: auto;
    margin-bottom: 20px;
}

.item-detail-grid {
    box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
}

.found-item-img {
    width: 100%;
    height: 150px;
    position: relative;
}

    .found-item-img img {
        display: block;
        opacity: 1;
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

.grid-details {
    margin: 0px;
    padding: 10px 0px;
    flex-wrap: nowrap;
}

.item-detail-grid p {
    margin: 0px;
}

.item-detail-grid .btn {
    min-width: 75px;
    border-radius: 4px;
}

.tab-title span {
    background-color: #4993a0;
    display: inline-block;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    color: #FFF;
    font-size: 17px;
    min-width: 100px;
    text-align: center;
    transition: all ease 0.5s;
}

    .tab-title span:hover {
        background-color: #76aeb8;
    }

    .tab-title span.active {
        background-color: #1a6a78;
    }

.found-item-container, .lost-item-container {
    display: none;
}

.lost-item-vehicle .lost-item-person {
    display: none;
}

.Found-item-vehicle .Found-item-person {
    display: none;
}

.show-lost-found-item {
    display: block;
}

.show-lost-Vehicle-item {
    display: block;
}

.test {
    text-align: center;
    border: none;
    font-size: 19px !important;
    margin-bottom: 0px !important;
    border: none !important;
    background: #f9f9f9;
    padding: 6px 0;
    margin: 0 0 10px 0 !important;
    text-transform: uppercase;
}

.height-in-kg {
    max-width: 35px;
    padding: 0px;
}

.height-in-pounds {
    max-width: 65px;
    padding-left: 0px;
}

.weight-in-feet {
    max-width: 30px;
    padding: 0px;
}

.weight-in-inch {
    max-width: 80px;
    padding: 0px;
}

.weight-in-cm {
    max-width: 40px;
    padding: 0px;
}

.ui-draggable-dragging {
    z-index: 99999;
    background-color: #FFF;
}

.overflow-unset {
    overflow: unset;
}

.task-name, .task-status {
    color: #3D8C9A;
}

.task-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task-status {
    text-align: right;
    text-transform: uppercase;
    text-shadow: 1px 0 1px rgba(142, 140, 140, 0.25);
    font-size: 12px;
}

.work-flow-task-name {
    /*text-transform: uppercase;*/
    text-shadow: 1px 0 1px rgba(142, 140, 140, 0.25);
    overflow: hidden;
}

.work-flow-task-status {
    max-width: 100px;
    text-align: right;
    padding-left: 0;
}

.work-flow-task-description {
    color: #585858;
    font-weight: 400;
}

.work-flow-task-edit {
    max-width: 45px;
    padding-left: 0;
}

.task-summary-container {
    max-width: 20%;
    flex: 0 0 30%;
}


.ddl-color .selectize-input {
    background-color: #358a98 !important;
    color: #FFF;
}

    .ddl-color .selectize-input input::placeholder {
        color: #FFF;
    }

    .ddl-color .selectize-input::after {
        border-color: #FFF transparent transparent transparent !important;
    }

.ddl-color .selectize-dropdown {
    background-color: #FFFFFF !important;
}

.ddl-color .selectize-dropdown, .ddl-color .selectize-input, .ddl-color .selectize-input input {
    color: #383838 !important;
}

    .ddl-color .selectize-dropdown .option:hover {
        background-color: #358a98 !important;
        color: #FFF;
    }

    .ddl-color .selectize-input.has-items > .item {
        color: #FFF;
    }


.ddl-color .selectize-input {
    color: #FFF;
}

    .ddl-color .selectize-input input::placeholder {
        color: #FFF;
    }

    .ddl-color .selectize-input::after {
        border-color: #FFF transparent transparent transparent !important;
    }

    .ddl-color .selectize-dropdown,
    .ddl-color .selectize-input,
    .ddl-color .selectize-input input {
        color: #FFF;
    }

/*Priority Color*/
.low-priority-bg .has-options {
    background-color: #3cca57 !important;
}

.low-priority-bg .selectize-dropdown-content .option:hover {
    background-color: #3cca57 !important;
    color: #FFF;
}

.normal-priority-bg .has-options {
    background-color: #fbc75b !important;
}

.normal-priority-bg .selectize-dropdown-content .option:hover {
    background-color: #fbc75b !important;
    color: #FFF;
}

.high-priority-bg .has-options {
    background-color: #f77475 !important;
}

.high-priority-bg .selectize-dropdown-content .option:hover {
    background-color: #f77475 !important;
    color: #FFF;
}

.urgent-priority-bg .has-options {
    background-color: #c6502d !important;
}

.urgent-priority-bg .selectize-dropdown-content .option:hover {
    background-color: #c6502d !important;
    color: #FFF;
}

.immediate-priority-bg .has-options {
    background-color: #a3283a !important;
}

.immediate-priority-bg .selectize-dropdown-content .option:hover {
    background-color: #a3283a !important;
    color: #FFF;
}


/*Status Color*/
.status-new-bg .has-options {
    background-color: #7998e2 !important;
}

.status-new-bg .selectize-dropdown-content .option:hover {
    background-color: #7998e2 !important;
    color: #FFF;
}

.status-inprogress-bg .has-options {
    background-color: #e7a94b !important;
}

.status-inprogress-bg .selectize-dropdown-content .option:hover {
    background-color: #e7a94b !important;
    color: #FFF;
}

.status-closed-bg .has-options {
    background-color: #61ba4f !important;
}

.status-closed-bg .selectize-dropdown-content .option:hover {
    background-color: #61ba4f !important;
    color: #FFF;
}

.status-hold-bg .has-options {
    background-color: #858a92 !important;
}

.status-hold-bg .selectize-dropdown-content .option:hover {
    background-color: #858a92 !important;
    color: #FFF;
}

.status-cancelled-bg .has-options {
    background-color: #d66448 !important;
}

.status-cancelled-bg .selectize-dropdown-content .option:hover {
    background-color: #d66448 !important;
    color: #FFF;
}

.td-priority {
    position: absolute;
    width: 5px;
    left: 0;
    top: 0;
    bottom: 0px;
    /*height: 300px;*/
}

.td-low-priority {
    background-color: #3cca57;
}

.td-normal-priority {
    background-color: #fbc75b;
}

.td-high-priority {
    background-color: #f77475;
}

.td-urgent-priority {
    background-color: #c6502d;
}

.td-immediate-priority {
    background-color: #a3283a;
}

.lost-found-details {
    padding: 0 0 0 15px;
    margin: 0;
    width: calc(100% - 105px);
}

.lost-found-sub-btn {
    display: flex;
    padding: 0 15px;
    align-items: center;
    margin: 0 !important;
}

.td-Person, .td-Object, .td-Vehicle {
    font-size: 0.9rem;
    text-shadow: 1px 0px 1px rgb(183, 183, 183);
    font-weight: 600 !important;
    white-space: nowrap;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.td-Object {
    color: #A52A2A;
}

.td-Vehicle {
    color: #0000ff;
}

.td-Person {
    color: #ff0000;
}

.progress-container .progress, .progress-container .progress-bar {
    height: 7px;
}

.progress-details {
    font-size: 12px;
    height: 15px;
    line-height: 15px;
}

#AddwfManagement .modal-header h5{
    color: #252525 !important;
    font-size: 1.3rem;
    font-weight: 600;
}
#AddwfManagement .modal-header{
    text-align: center;
    height: 46px;
}

.head-new-color {
    background-color: var(--new-color);
}

.head-feedback-color {
    background-color: var(--feedback-color);
}

.head-reopen-color {
    background-color: var(--reopen-color);
}

.head-inprogress-color {
    background-color: var(--inprogress-color);
}

.head-hold-color {
    background-color: var(--hold-color);
}

.head-resolved-color {
    background-color: var(--resolved-color);
}

.head-closed-color {
    background-color: var(--closed-color);
}

.head-cancelled-color {
    background-color: var(--cancelled-color);
}

.tasklist-description {
    cursor: pointer;
}

.tasklist-description-value {
    display: none;
    white-space: nowrap;
    position: absolute;
    top: -22px;
    background: #FFF;
    box-shadow: 0px 2px 3px rgba(0,0,0,0.5) !important;
    z-index: 999;
    padding: 0 10px;
    border-radius: 5px;
}

.tasklist-description:hover .tasklist-description-value {
    display: block;
}

.tasklist-description-value:after {
    top: 100%;
    left: 7px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 10px;
}

.tasklist-description-value:before {
    content: '';
    position: absolute;
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
    bottom: -8px;
    z-index: -1;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.tasklist-description-value-inner {
    background-color: #FFF;
    margin: 0 -9px;
    padding: 0 10px;
    border-radius: 5px;
}

h2.tableheader {
    margin-top: 0px;
    margin-bottom: 0px;
    color: #FFF;
    background-color: #358a98;
    font-size: 22px;
    font-weight: 400;
    padding: 4px;
}

#dvAccordian h2 {
    color: #FFF;
    font-size: 27px;
    font-weight: 400;
    padding: 12px;
    margin-bottom: 2px;
    margin-top: 2px;
    cursor: pointer;
    background: url('../../Images/icon-right-arrow.png') #000 no-repeat center right 20px;
}

    #dvAccordian h2.active_header {
        background: url(../../Images/icon-down-arrow.png) #0599c1 no-repeat center right 20px;
    }

#dvAccordian .tablecontainer {
    display: none;
}

    #dvAccordian .tablecontainer.showcontent {
        display: block;
    }

#dvAccordian h2.tableheader-title:first-child {
    margin-top: 10px;
}

#dvAccordian h2.tableheader-title {
    background-image: none;
    font-size: 20px;
    margin-top: 15px;
}

.status-container {
    display: flex;
    margin-top: 1%;
    /*margin-left: 3%;*/
    max-height: 25px;
}

    .status-container > .selected {
        border-bottom: 2px solid #398E92;
    }

    .status-container .new-status {
        background-color: #7898e2;
    }

    .status-container .inprogress-status {
        background-color: #e7a94b;
    }

    .status-container .hold-status {
        background-color: #858a92;
    }

    .status-container .closed-status {
        background-color: #61ba4f;
    }

    .status-container .cancelled-status {
        background-color: #d66448;
    }

.groupby-container {
    /*display: flex;*/
}

    .groupby-container > .selected {
        border-bottom: 2px solid #398E92;
    }

.btns {
    background-color: #ff9035;
    background-image: -webkit-linear-gradient(-370deg, #ff5a64 0%, #faa04b 30%, #d2dc69 70%, #0ef49b 100%);
    background-image: -webkit-linear-gradient(350deg, #ff5a64 0%, #faa04b 30%, #d2dc69 70%, #0ef49b 100%);
    background-image: linear-gradient(100deg, #ff5a64 0%, #faa04b 30%, #d2dc69 70%, #0ef49b 100%);
    z-index: 0;
    height: 40px;
    float: none;
    margin: 0 auto;
    width: 900px;
    max-width: 100%;
    border-radius: 40px;
    display: block;
    box-shadow: 0 2px 4px -1px rgba(25, 25, 25, 0.2);
}

    .btns input {
        display: none;
    }

    .btns label {
        display: table;
        float: left;
        padding: 0;
        width: 20%;
        height: 100%;
        margin: 0;
        text-align: center;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

        .btns label:first-child {
            border-left: none;
            border-radius: 40px 0 0 40px;
        }

        .btns label:last-child {
            border-radius: 0 40px 40px 0;
        }

    .btns .btn {
        font-size: 1rem;
        cursor: pointer;
        width: 100%;
        display: table-cell;
        vertical-align: middle;
        font-weight: 300;
        color: #FFF;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
        box-shadow: inset 0 30px 20px -20px rgba(255, 255, 255, 0.15);
        -webkit-transition: color 250ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
        transition: color 250ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    }

        .btns .btn:hover {
            box-shadow: inset 0 30px 30px -20px rgba(50, 50, 50, 0.02);
            -webkit-transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
            transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .btns .btn:after {
            content: '\2714';
            margin-left: -10px;
            display: inline-block;
            -webkit-transform: scale(0);
            transform: scale(0);
            -webkit-transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, -webkit-transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
            transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, -webkit-transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
            transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
            transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
        }

    .btns .first {
        border-radius: 40px 0 0 40px;
    }

    .btns .last {
        border-radius: 0 40px 40px 0;
    }

    .btns input:checked + .btn {
        color: #FFFFFF;
        text-shadow: none;
        background-image: -webkit-linear-gradient( bottom, rgba(25, 25, 25, 0) 65%, rgba(25, 25, 25, 0.08));
        background-image: -webkit-linear-gradient(bottom, rgba(25, 25, 25, 0) 65%, rgba(25, 25, 25, 0.08));
        background-image: linear-gradient(to top, rgba(25, 25, 25, 0) 65%, rgba(25, 25, 25, 0.08));
        box-shadow: inset 0 10px 50px rgba(25, 25, 25, 0.08);
        -webkit-transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 150ms;
        transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 150ms;
    }

        .btns input:checked + .btn:after {
            margin-left: 12px;
            -webkit-transform: scale(1.25);
            transform: scale(1.25);
            -webkit-transition: -webkit-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms, margin 500ms;
            -webkit-transition: margin 500ms, -webkit-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
            transition: margin 500ms, -webkit-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
            transition: transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms, margin 500ms;
            transition: transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms, margin 500ms, -webkit-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
        }

.tr-primary-difference td {
    font-weight: 600;
    overflow: hidden;
}

td.span-priority {
    overflow: hidden;
}

select::-ms-expand {
    display: none;
}

input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.input-group-append img {
    background-color: #FFF;
}

table#stwPositionTempalteDetailsGrid tr th:nth-child(1)::after, table#stwPositionTempalteDetailsGrid tr th:nth-child(1)::before {
    display: none !important;
}

.incident-image-preview {
    /*height: 300px;*/
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
}

.ticket-header-wrapper {
    margin: 10px 0 10px 0;
    border-top: 1px solid #D5D5D5;
    border-bottom: 1px solid #D5D5D5;
}

.ticket-inner-details {
    padding-top: 5px;
    padding-bottom: 5px;
    border-left: 1px solid #D5D5D5;
}

.ticket-title-value {
    font-weight: 600;
    display: flex;
    align-items: center;
}

.title-priority-high {
    background-color: red;
}

.ticket-title-priority {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50px;
}

.ticket-right-col {
    background-color: #F0F0F0;
    padding: 0 10px 0px 10px;
}

.ticket-status-container {
    background-color: #FFF;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.25);
}

.ticket-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D5D5D5;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.ticket-right-col-new {
    /*background-color: #365fe5;*/
    background-color: #7998e2;
}

.ticket-right-col-status {
    padding: 0 5px;
    border-radius: 10px;
    color: #FFF;
    min-width: 50px;
    text-align: center;
    font-weight: 600;
}

.title-priority-medium {
    background-color: #ebd048;
}

.ticket-right-col-resolved {
    /* background-color: #22c122;*/
    background-color: #2F4F4F;
}

.ticket-right-col-closed {
    /* background-color: #22c122;*/
    background-color: #808000;
}

.ticket-right-col-open {
    /* background-color: #22c122;*/
    background-color: #DB7093;
}

.ticket-right-col-feedback {
    /* background-color: #22c122;*/
    background-color: #008080;
}

.ticket-right-col-updatedby-name {
    font-weight: 600;
    margin-left: 10px;
}

.ticket-right-col-process {
    /* background-color: #7998e2;*/
    background-color: #FF8C00;
}

.title-priority-low {
    background-color: #22c122;
}

.ticket-management-wrapper {
    background-color: #F0F0F0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
    margin-top: -1rem;
    margin-left: -17px;
    margin-right: -17px;
}

.ticket-management-wrapper {
    background-color: #F0F0F0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: -1rem;
    margin-top: -1rem;
    margin-left: -17px;
    margin-right: -17px;
}

.ticket-management-container {
    max-width: 250px;
    background-color: #FFF;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.25);
}

.ticket-management-group ul {
    padding: 0;
    margin-bottom: 15px;
}

    .ticket-management-group ul li {
        list-style-type: none;
        line-height: 25px;
    }

        .ticket-management-group ul li a {
            color: inherit;
            display: block;
        }

.ticket-management-filter h4 {
    color: #398E92;
}

.all-ticket-container {
    background-color: #FFF;
    padding: 5px 0px 0px 0px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.25);
}

.all-ticket-header {
    margin: 0;
    padding-bottom: 10px;
}

.all-ticket-number {
    display: flex;
    flex-direction: column;
    max-width: 160px;
}

    .all-ticket-number span {
        height: 30px;
    }

.all-ticket-status.all-ticket-new {
    /*background-color: #36abe5;*/
    background-color: #7998e2;
    margin-left: -16px;
}

.all-ticket-status {
    text-align: center;
    display: flex;
    align-items: center;
    max-width: 120px;
    color: #FFF;
    padding-left: 10px;
    border-radius: 5px;
}

.all-ricket-header-content h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.all-ticet-updatestatus {
    max-width: 230px;
    display: flex;
    justify-content: space-between;
}

    .all-ticet-updatestatus span {
        max-height: 25px;
        padding: 0 10px;
        border-radius: 10px;
        align-items: center;
    }

.all-tickets-daysago {
    background-color: #f0f0f0;
    display: inline-flex;
}

.row.all-ticket-content {
    border-top: 1px solid #D5D5D5;
    margin: 0px;
}

.all-ticket-content-inner-icon {
    max-width: 75px;
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.all-ticket-content-inner {
    display: flex;
    border-left: 1px solid #D5D5D5;
    flex-direction: column;
    padding-top: 5px;
    padding-bottom: 5px;
}

span.all-ticket-cotent-inner-value {
    font-weight: 600;
}

.all-ticket-priority-container {
    display: flex;
    align-items: center;
}

.all-ticket-priority-high {
    background-color: red;
}

.all-ticket-priority {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50px;
}

.all-ticket-content-inner-duedate {
    min-width: 30%;
}

.all-ticket-status.all-ticket-pending {
    background-color: #FF8C00;
    margin-left: -16px;
}

.all-ticket-priority-medium {
    background-color: #e6c104;
}

.all-ticket-status.all-ticket-open {
    background-color: #7998e2;
    margin-left: -16px;
}

.all-ticket-status.all-ticket-feedback {
    background-color: #008080;
    margin-left: -16px;
}

.all-ticket-priority-low {
    background-color: #22c122;
}

.all-ticket-status.all-ticket-closed {
    background-color: #808000;
    margin-left: -16px;
}

.all-ticket-status.all-ticket-Resolved {
    background-color: #2F4F4F;
    margin-left: -16px;
}

.all-ticket-status.all-ticket-Replaced {
    background-color: #FD1C03;
    margin-left: -16px;
}

.all-ticket-status.all-ticket-ReOpen {
    background-color: #DB7093;
    margin-left: -16px;
}

.ticket-plan-block {
    /* box-shadow: 0px 0px 13px rgba(0,0,0,0.175); */
    position: relative;
    /* background-color: #FFF; */
    overflow: hidden;
    height: 70vh;
    min-height: 600px;
    padding: 1rem 1rem 2rem 1rem;
}


/*Added*/
.modal-width-auto {
    max-width: 95vw;
    max-height: 95vh;
    justify-content: center;
}

    .modal-width-auto img {
        width: 100%;
    }

    .modal-width-auto .modal-content {
        width: auto;
    }

    .modal-width-auto .modal-body {
        max-height: 90vh;
    }
/*Added*/
.action-upload {
    margin: 110px 5px 15px 40px;
    display: inline-grid;
    vertical-align: middle;
}

/*View DefectImage*/
.ViewDefectImage {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    .ViewDefectImage:hover {
        opacity: 0.7;
    }

/* The Modal (background) */
.DefectImagmodal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.DefectImagmodal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#DefectImagcaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.DefectImagmodal-content, #DefectImagcaption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0.1)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.DefectImagclose {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .DefectImagclose:hover,
    .DefectImagclose:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

.fcl-date {
    background: #61c3d4;
    width: 20%;
    display: inline-flex;
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.fcl-EventTime {
    font-size: 0.70rem;
}

.fcl-EventAss {
    font-size: 0.70rem;
}

.fcl-EventName, .fcl-Organization, .fcl-EventTime, .fcl-EventAss {
    display: block;
    padding-left: 25%;
}

.fcl-EventName {
    padding-top: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.fc-unthemed td.fc-today {
    background: #e2f2ff !important;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .DefectImagmodal-content {
        width: 100%;
    }
}

.btn-ShowAll {
    min-width: 70px;
    font-size: inherit;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    font-size: inherit;
    border-radius: 0 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
}

.disable-click {
    cursor: not-allowed;
}

    .disable-click a,
    .disable-click input,
    .disable-click button,
    .disable-click select {
        pointer-events: none !important;
    }

.btnstk {
    background-color: #ff9035;
    background-image: -webkit-linear-gradient(-370deg, #ff5a64 0%, #faa04b 30%, #d2dc69 70%, #0ef49b 100%);
    background-image: -webkit-linear-gradient(350deg, #ff5a64 0%, #faa04b 30%, #d2dc69 70%, #0ef49b 100%);
    background-image: linear-gradient(100deg, #ff5a64 0%, #faa04b 30%, #d2dc69 70%, #0ef49b 100%);
    z-index: 0;
    /*height: 40px;*/
    float: none;
    margin: 0 auto;
    /*width: 900px;*/
    max-width: 100%;
    border-radius: 40px;
    display: block;
    box-shadow: 0 2px 4px -1px rgba(25, 25, 25, 0.2);
}

    .btnstk input {
        display: none;
    }

    .btnstk label {
        display: table;
        float: left;
        padding: 0;
        width: 16%;
        height: 100%;
        margin: 0;
        text-align: center;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

        .btnstk label:first-child {
            border-left: none;
            border-radius: 40px 0 0 40px;
        }

        .btnstk label:last-child {
            border-radius: 0 40px 40px 0;
        }

    .btnstk .btn {
        font-size: 1rem;
        cursor: pointer;
        width: 100%;
        display: table-cell;
        vertical-align: middle;
        /*font-weight: 300;*/
        color: #FFF;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
        box-shadow: inset 0 30px 20px -20px rgba(255, 255, 255, 0.15);
        -webkit-transition: color 250ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
        transition: color 250ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    }

        .btnstk .btn:hover {
            box-shadow: inset 0 30px 30px -20px rgba(50, 50, 50, 0.02);
            -webkit-transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
            transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .btnstk .btn:after {
            content: '\2714';
            margin-left: -10px;
            display: inline-block;
            -webkit-transform: scale(0);
            transform: scale(0);
            -webkit-transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, -webkit-transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
            transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, -webkit-transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
            transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
            transition: margin 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 100ms, transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 250ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
        }

    .btnstk .first {
        border-radius: 40px 0 0 40px;
    }

    .btnstk .last {
        border-radius: 0 40px 40px 0;
    }

    .btnstk input:checked + .btn {
        color: #FFFFFF;
        text-shadow: none;
        background-image: -webkit-linear-gradient( bottom, rgba(25, 25, 25, 0) 65%, rgba(25, 25, 25, 0.08));
        background-image: -webkit-linear-gradient(bottom, rgba(25, 25, 25, 0) 65%, rgba(25, 25, 25, 0.08));
        background-image: linear-gradient(to top, rgba(25, 25, 25, 0) 65%, rgba(25, 25, 25, 0.08));
        box-shadow: inset 0 10px 50px rgba(25, 25, 25, 0.08);
        -webkit-transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 150ms;
        transition: color 500ms cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 150ms;
    }

        .btnstk input:checked + .btn:after {
            margin-left: 12px;
            -webkit-transform: scale(1.25);
            transform: scale(1.25);
            -webkit-transition: -webkit-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms, margin 500ms;
            -webkit-transition: margin 500ms, -webkit-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
            transition: margin 500ms, -webkit-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
            transition: transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms, margin 500ms;
            transition: transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms, margin 500ms, -webkit-transform 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 250ms;
        }

.float-right {
    float: right;
}

.is-preferred {
    border: 1px solid darkgreen;
}

.material-icons.match {
    color: darkgreen;
    font-size: 15px;
    transform: translateY(3px);
    cursor: pointer;
}

.material-icons.unmatch {
    color: red;
    font-size: 15px;
    transform: translateY(3px);
    cursor: pointer;
}

.selectize-control.is-invalid {
    background: none !important;
    background-color: #fff !important;
    border: 1px solid #dc3545 !important;
}

.expiredcontract {
    color: #ff8000;
}

.selectize-dropdown {
    z-index: 100 !important;
}

.card-body table.tblQuestionnaire thead th, .card-body table.tblServiceDocument thead th {
    background-color: #f6f6f6 !important;
}
/*Menu changes CSS*/
/*Overrides*/
.primary {
    color: #3d8c9a;
}

#header-section {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(65%, #ffffff), to(#076c7e));
    background: -o-linear-gradient(left, #ffffff 0%, #ffffff 65%, #076c7e 100%);
    background: linear-gradient(to right, #ffffff 0%, #ffffff 65%, #076c7e 100%);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    z-index: 9;
}

    #header-section .navbar,
    #sidebar-section .navbar {
        padding: 0.15rem 0.75rem;
    }

    #header-section .nav-left {
        border-color: #707070 !important;
    }

        #header-section .nav-left .nav-link {
            color: #707070;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-column-gap: 5px;
            -moz-column-gap: 5px;
            column-gap: 5px;
            padding: 0.25rem;
            margin-left: 5px;
        }

            #header-section .nav-left .nav-link .icon {
                font-size: 1.25rem;
            }

            #header-section .nav-left .nav-link:hover, #header-section .nav-left .nav-link:active, #header-section .nav-left .nav-link.active {
                color: #3d8c9a;
                background-color: #f0ffff;
                border-radius: 5px;
            }

        #header-section .nav-left .dropdown-menu.show {
            min-width: 250px;
            padding: 25px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

        #header-section .nav-left .dropdown-menu.show, #header-section .nav-right .dropdown-menu-right.show {
            top: 38px;
            gap: 25px;
            -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
        }

    #header-section form #logout {
        border: none;
        background: none;
        padding: 0;
    }

    #header-section .nav-left .dropdown-menu.show .dropdown-item {
        display: inline-block;
        position: relative;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        padding-left: 0.5rem;
    }

        #header-section .nav-left .dropdown-menu.show .dropdown-item:after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233D8C9A' width='14px' height='10px'%3E%3Cpath d='M8.66.04c-.32.17-.46.53-.32.82.04.08.62.66 1.77 1.8.93.91 1.7 1.68 1.7 1.69 0 .01-2.55.02-5.66.02-5.04 0-5.67 0-5.77.04-.5.21-.5.94 0 1.15.1.04.73.04 5.77.04 3.11 0 5.66.01 5.66.02 0 .02-.78.8-1.74 1.74L8.32 9.08l-.03.16c-.1.47.33.86.8.74.13-.04.29-.2 2.46-2.32a63.16 63.16 0 0 0 2.39-2.4.65.65 0 0 0 0-.55C13.84 4.54 9.32.1 9.18.04a.8.8 0 0 0-.52 0Z'/%3E%3C/svg%3E");
            position: absolute;
            opacity: 0;
            top: auto;
            right: -20px;
            -webkit-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s;
        }

        #header-section .nav-left .dropdown-menu.show .dropdown-item:hover {
            background-color: #ffffff;
            color: #3d8c9a;
        }

            #header-section .nav-left .dropdown-menu.show .dropdown-item:hover:after {
                margin-left: 10px;
                opacity: 1;
                right: 0;
            }

    #header-section .nav-right .nav-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
        padding: 0.25rem 0.5rem;
    }

        #header-section .nav-right .nav-link .icon {
            font-size: 1.25rem;
        }

/*styles*/
.hamburger-icon {
    color: #707070;
    font-size: 1.25rem;
    cursor: pointer;
}

    .hamburger-icon:hover, .hamburger-icon.active {
        color: #3d8c9a;
    }

.alert-layers {
    display: inline-block;
    height: 1em;
    position: relative;
    text-align: center;
    width: 1.25em;
}

    .alert-layers .counter {
        background: #ff6347;
        position: absolute;
        top: -8px;
        border-radius: 5px;
        padding: 2px 3px;
        font-size: 9px;
        right: -4px;
    }

.page-title,
.card-title {
    color: #3d8c9a;
}

.data-content {
    overflow-y: auto;
}

    .data-content > .card {
        margin-bottom: 1rem;
        padding: 5px;
    }

/*main side bar*/
.content-wrapper {
    margin-left: 0px;
    transition: margin .3s ease-in-out;
}

#sidebar-section {
    width: 250px;
    background-color: #ffffff;
    position: fixed;
    left: -250px;
    top: 45px;
    right: auto;
    overflow: hidden auto;
    white-space: nowrap;
    height: 94.2vh;
    border-right: 1px solid #ddd;
    transition: left .3s ease-in-out;
    scrollbar-color: rgba(167, 167, 167, 0.5);
    scrollbar-width: thin;
}

body:not(.msb-x) #sidebar-section {
    left: 0;
}

body:not(.msb-x) .content-wrapper {
    margin-left: 250px;
}

.custom-scrollbar {
    scrollbar-color: rgba(167, 167, 167, 0.5);
    scrollbar-width: thin;
}
    /*width */
    .custom-scrollbar::-webkit-scrollbar,
    #sidebar-section::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    /* Track */
    .custom-scrollbar::-webkit-scrollbar-track,
    #sidebar-section::-webkit-scrollbar-track {
        box-shadow: inset 0 0 2.5px #0000;
        border-radius: 10px;
    }

    /* Handle */
    .custom-scrollbar::-webkit-scrollbar-thumb,
    #sidebar-section::-webkit-scrollbar-thumb {
        background: rgba(167, 167, 167, 0.5);
        border-radius: 10px;
    }

        /* Handle on hover */
        .custom-scrollbar::-webkit-scrollbar-thumb:hover,
        #sidebar-section::-webkit-scrollbar-thumb:hover {
            background: rgba(167, 167, 167, 0.7);
        }

#sidebar-section .navbar {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
}

    #sidebar-section .navbar .nav {
        width: inherit;
    }

#sidebar-section .nav-link {
    color: #707070;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: pre-line;
}

    #sidebar-section .nav-link .icon {
        font-size: 1.2rem;
    }

    #sidebar-section .nav-link span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
        text-transform: capitalize;
    }

    #sidebar-section .nav-link.active {
        border-right: 3px solid #3d8c9a;
        color: #3d8c9a;
    }

#sidebar-section .level-one {
    width: 92%;
    margin-left: 25px;
    border-left: 2px solid #c2c2c2;
}

    #sidebar-section .level-one .dropdown-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 5px;
        white-space: pre-line;
    }

        #sidebar-section .level-one .dropdown-item:hover, #sidebar-section .level-one .dropdown-item:active {
            background-color: #f8f9fa;
            color: #3d8c9a;
        }

        #sidebar-section .level-one .dropdown-item.active {
            border-left: 2px solid #3d8c9a;
            margin-left: -2px;
            background-color: #ffffff;
            color: #3d8c9a;
        }

#sidebar-section .nav-item {
    width: inherit;
}

.icon {
    line-height: 0;
}

@font-face {
    font-family: "menu";
    src: url("/fonts/menu/menu.woff") format("woff"), url("/fonts/menu/menu.svg#menu") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class*=layout-icon-]:before {
    display: inline-block;
    font-family: "menu";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.layout-icon-lost-and-found:before {
    content: '\0041';
}

.layout-icon-bell:before {
    content: '\0042';
    transform: rotate(20deg);
}

.layout-icon-chevron-down:before {
    content: '\0043';
    font-size: 0.6rem;
}

.layout-icon-event:before {
    content: '\0044';
}

.layout-icon-event-creation:before {
    content: '\0045';
}

.layout-icon-event-staffing:before {
    content: '\0046';
}

.layout-icon-external:before {
    content: '\0047';
}

.layout-icon-workflow-management:before {
    content: '\0048';
}

.layout-icon-finance:before {
    content: '\0049';
}

.layout-icon-hamburger:before {
    content: '\004a';
}

.layout-icon-tickets:before {
    content: '\004b';
}

.layout-icon-power:before {
    content: '\004c';
}

.layout-icon-profile:before {
    content: '\004d';
}

.layout-icon-inventory:before {
    content: '\004e';
}

.layout-icon-unlock:before {
    content: '\004f';
}

.layout-icon-internal:before {
    content: '\0050';
}

.layout-icon-agency:before {
    content: '\0051';
}

.layout-icon-reports:before {
    content: '\0052';
}

.layout-icon-venue:before {
    content: '\0053';
}

.layout-icon-suite-management:before {
    content: '\0048';
}

/* Menu Changes End*/

tr.strike-line td:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 1px solid #111;
    width: 100%;
}

.warningbtn {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

    .warningbtn:hover {
        color: #212529;
        background-color: #EAAD10;
        border-color: #ffc107;
    }

.btn-circle {
    width: 25px;
    min-width: 25px;
    height: 25px;
    text-align: center;
    padding: 3px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
    margin: 5px 0px 1px 10px;
}

.badge-icon {
    font-size: 0.4em;
    bottom: 2px;
    position: relative;
    width: 8px;
    border-radius: .25rem;
}

.badge-icon-text {
    font-size: 0.9em;
}

.zone-grid-container .card,
.zone-grid-container .card label {
    cursor: pointer;
}

.txt-submittedOnTimeCom {
    color: #51a736 !important;
}

.txt-submittedOnTimeNonCom {
    color: #f95c0ad6 !important;
}

.txt-notSubmittedOnTimeCom {
    color: #dbdb22fa !important;
}

.txt-notSubmittedOnTimeNonCom {
    color: #f37f93 !important;
}

/* Incident Report Print*/
@page {
    size: A4;
}

@media print {
    #incident_print {
        width: 210mm;
        height: 297mm;
    }

    .print-section {
        height: 40vh;
    }
}

table#incidentGrid {
    width: 100% !important;
}

#incidentGrid tbody td, #incidentGrid td {
    border-bottom: none !important;
    /*border:1px solid red*/
}

.read-permission {
    color: red;
}

.write-permission {
    color: green;
}

.inves-priority {
    position: absolute;
    width: 5px;
    inset: 0;
    border-radius: 5px 0px 0px 5px;
}

.inves-progress {
    display: block;
    text-align: center;
    border-radius: 15px 15px;
    color: #FFF;
    margin: 0 5px;
}

.inves-content {
    min-height: 160px;
    display: grid;
    grid-template-columns: 20% 40% 40%;
}

.inves-comment {
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vr {
    display: inline-block;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: #dee2e6;
}

.progress {
    position: relative;
    height: 27px;
    background: rgb(255, 0, 0);
    background: -moz-linear-gradient(left, rgba(255, 0, 0, 1) 0%, rgba(0, 255, 0, 1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 0, 0, 1)), color-stop(100%, rgba(0, 255, 0, 1)));
    background: -webkit-linear-gradient(left, rgba(255, 0, 0, 1) 0%, rgba(0, 255, 0, 1) 100%);
    background: -o-linear-gradient(left, rgba(255, 0, 0, 1) 0%, rgba(0, 255, 0, 1) 100%);
    background: -ms-linear-gradient(left, rgba(255, 0, 0, 1) 0%, rgba(0, 255, 0, 1) 100%);
    background: linear-gradient(to right, rgba(255, 0, 0, 1) 0%, rgba(0, 255, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#00ff00', GradientType=1);
}

.amount {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    transition: all 0.8s;
    background: #e2dddd;
    width: 0;
}

.staffing-progress:before {
    content: attr(data-amount) "% Complete";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-align: center;
    line-height: 27px;
    color: #000;
    font-weight: 600;
}

.disable-click {
    pointer-events: none;
}

.layout-icon-compliance:before {
    display: inline-block;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.0' fill='%23707070' viewBox='0 0 512 512'%3E%3Cpath d='M204 1.6a40.5 40.5 0 0 0-24.6 18.5l-3.7 5.9h-19.8a233 233 0 0 0-21.4.6c-3.2 1.2-4.5 5.9-4.5 15.8v9.5l-38.2.3c-37.3.3-38.4.4-42.4 2.5a28 28 0 0 0-12.9 12.5l-3 5.3v383l2.2 4.1a28 28 0 0 0 12.5 12.9l5.3 3 131.5.3 131.5.2 10 9.8c5.5 5.3 13 11.4 16.5 13.5a90 90 0 0 0 127.7-40c16-34.6 7.7-76-20.5-102.4a87.5 87.5 0 0 0-43.9-22.6l-9.3-1.7V204c0-146.3.7-134.4-8.5-143.7-8.2-8.1-9.3-8.3-52.2-8.3H300V41.5c0-9.9-.2-10.7-2.5-13-2.4-2.5-2.5-2.5-22.9-2.5h-20.4l-3-5.3c-9-15.9-28.9-24-47.2-19.1zm22.5 17.2c5.7 2.9 10 7.8 13 14.6 1.5 3.3 3.4 6.6 4.3 7.3 1.2.9 6.9 1.2 21 1.3H284v36H146V42h19.3c22.1 0 22.6-.2 25.2-7.9 2.6-8 9.2-14.5 17.5-17.2a33 33 0 0 1 18.5 1.9zM130 77.6c0 9.5.8 12.8 3.9 15.1 1.2 1 20.2 1.2 81.4 1.3h79.8l2.4-2.5c2.3-2.3 2.5-3.1 2.5-13V68h35.6c39 0 40.3.2 43.7 5.9 1.6 2.7 1.7 12.1 1.7 130.9v128l-5.2.7a89.5 89.5 0 0 0-71.7 116.8l2.9 9.3c0 .2-55.9.4-124.2.4-97.4 0-124.8-.3-126.8-1.3-1.3-.7-3.5-2.8-4.7-4.6l-2.3-3.4V77.3l2.3-3.4c4-5.9 3.9-5.9 43-5.9H130v9.6zm275.8 272.9a74 74 0 0 1 49.7 40 63.5 63.5 0 0 1 6.9 31.5 63.5 63.5 0 0 1-8 33.9 56.9 56.9 0 0 1-13.3 18.1 53 53 0 0 1-19.1 13.8A73.4 73.4 0 0 1 315.7 422c0-20.4 6.8-36.6 21.8-51.5a68.5 68.5 0 0 1 32.7-19.5 94.8 94.8 0 0 1 35.6-.5z'/%3E%3Cpath d='M100.2 141.3c-2.1 2.3-2.2 3-2.2 28.8v26.6l2.6 2.4 2.6 2.4h53l2.4-2.8 2.4-2.8v-25.8c0-24.6-.1-26-2.1-28.5l-2-2.6h-27.3c-27.2 0-27.3 0-29.4 2.3zm44.6 28.9-.3 15.3-15.2.3-15.3.3V155h31.1l-.3 15.2zM199.2 141.3c-3 3.2-2.9 7.7.4 10.8l2.6 2.4 58.6.3c32.3.2 60.6 0 63-.3 2.4-.4 5.2-1.5 6.3-2.6 2.6-2.6 2.5-8.3-.1-10.9-2-2-3.3-2-65.3-2h-63.4l-2.1 2.3zM199.2 188.3c-3 3.2-2.9 7.7.4 10.8l2.6 2.4 58.6.3c32.3.2 60.6 0 63-.3 2.4-.4 5.2-1.5 6.3-2.6 2.6-2.6 2.5-8.3-.1-10.9-2-2-3.3-2-65.3-2h-63.4l-2.1 2.3zM100.2 248.3c-2.1 2.3-2.2 3-2.2 28.8v26.6l2.6 2.4 2.6 2.4h53l2.4-2.8 2.4-2.8v-25.8c0-24.6-.1-26-2.1-28.5l-2-2.6h-27.3c-27.2 0-27.3 0-29.4 2.3zm44.6 28.9-.3 15.3-15.2.3-15.3.3V262h31.1l-.3 15.2zM199.2 248.3c-3 3.2-2.9 7.7.4 10.8l2.6 2.4 58.6.3c32.3.2 60.6 0 63-.3 2.4-.4 5.2-1.5 6.3-2.6 2.6-2.6 2.5-8.3-.1-10.9-2-2-3.3-2-65.3-2h-63.4l-2.1 2.3zM199.2 295.3c-3 3.2-2.9 7.7.4 10.8l2.6 2.4 58.6.3c32.3.2 60.6 0 63-.3 2.4-.4 5.2-1.5 6.3-2.6 2.6-2.6 2.5-8.3-.1-10.9-2-2-3.3-2-65.3-2h-63.4l-2.1 2.3zM100.2 355.3c-2.1 2.3-2.2 3-2.2 28.8v26.6l2.6 2.4 2.6 2.4h53l2.4-2.8 2.4-2.8v-25.8c0-24.6-.1-26-2.1-28.5l-2-2.6h-27.3c-27.2 0-27.3 0-29.4 2.3zm44.6 28.9-.3 15.3-15.2.3-15.3.3V369h31.1l-.3 15.2zM199.2 355.3c-3 3.2-2.9 7.7.4 10.8l2.6 2.4 33.6.3c36.6.4 41.4 0 44.3-2.9 2.6-2.6 2.5-8.3-.1-10.9-1.9-1.9-3.3-2-40.3-2h-38.4l-2.1 2.3zM199.2 402.3c-3 3.2-2.9 7.7.4 10.8l2.6 2.4 33.6.3c36.6.4 41.4 0 44.3-2.9 2.6-2.6 2.5-8.3-.1-10.9-1.9-1.9-3.3-2-40.3-2h-38.4l-2.1 2.3zM402.6 412.7l-25.5 25.8-13.3-13.2c-12.4-12.3-14.5-13.7-19-13.4-2.9.2-5.8 4.2-5.8 7.9 0 3.1 1.6 5.1 16.1 19.8 8.9 8.9 17.5 16.8 19.1 17.5 2.4 1 3.5.9 5.8-.2 1.5-.8 15.4-14.3 30.9-30 26.2-26.8 28.1-28.9 28.1-32.2 0-4.6-3.1-7.7-7.6-7.7-3 0-5.8 2.6-28.8 25.7z'/%3E%3C/svg%3E");
    height: 24px;
    width: 21px;
}

.layout-icon-dashboard:before {
    display: inline-block;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 11'%3E%3Cpath fill='%23707070' d='M10.43.05c-.37.13-.68.44-.78.81a1.4 1.4 0 0 0 0 .64c.04.16.12.31.21.43l.07.09-1.1 2.19L7.75 6.4H7.6c-.08 0-.22.01-.3.04-.15.03-.16.03-.2 0l-.8-.9-.8-.92c-.05-.05-.05-.05.02-.21.16-.45.06-.92-.28-1.26-.6-.6-1.56-.42-1.92.34a.79.79 0 0 0-.1.43c-.02.3.05.53.2.76l.07.1-1.03 1.81-1.04 1.82-.16-.01a1.23 1.23 0 0 0-1.24.95c-.12.6.27 1.23.88 1.4a1.2 1.2 0 0 0 1.45-.85c.03-.1.04-.19.03-.36a1.05 1.05 0 0 0-.2-.61l-.07-.12L3.14 7l1.04-1.82h.2c.11 0 .26-.02.34-.04.13-.04.14-.04.17 0a84.04 84.04 0 0 0 1.64 1.87l-.05.18a.8.8 0 0 0-.07.4c0 .28.03.4.17.62a1.2 1.2 0 1 0 1.94-1.38l-.06-.07 1.1-2.19 1.1-2.2.1.02c.53.04 1.1-.41 1.21-.96a1.21 1.21 0 0 0-.87-1.4 1.34 1.34 0 0 0-.67.02Zm.58.8c.1.07.2.22.2.33a.5.5 0 0 1-.12.28.52.52 0 0 1-.3.13.43.43 0 0 1-.33-.2c-.05-.08-.06-.12-.05-.23.03-.3.33-.46.6-.3ZM4.56 3.64c.3.14.32.54.03.7-.08.05-.12.05-.22.05-.21-.02-.34-.15-.36-.36-.02-.3.27-.52.55-.39Zm3.27 3.64a.4.4 0 0 1-.05.67c-.37.2-.76-.28-.49-.6.1-.11.2-.15.34-.14a.3.3 0 0 1 .2.07ZM1.37 9.24c.26.12.3.5.07.67a.4.4 0 0 1-.6-.14c-.05-.13-.06-.2 0-.32a.32.32 0 0 1 .2-.22.38.38 0 0 1 .33 0Z'/%3E%3C/svg%3E");
    height: 20px;
    width: 20px;
}

.layout-icon-permissions:before {
    display: inline-block;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.0' viewBox='0 0 512 512'%3E%3Cpath fill='%23707070' d='M339 1.1a155.7 155.7 0 0 0-129.9 104.4c-6.7 19.9-7.6 26-7.6 50.5 0 23.9.9 29.7 7.3 49.4l3.5 10.8-105.1 105.2A7952.3 7952.3 0 0 0 1 428.8c-1.5 3.1 1.6 69.2 3.6 74 2.2 5.4 4.5 5.8 42.1 7.6 30.2 1.5 34.5 1.6 37 .2 1.5-.8 8.5-7.2 15.5-14.4l12.8-12.9V431h23.8c13 0 25.3-.4 27.2-1 4.9-1.4 31.7-28.1 33-33 .5-1.9 1-14.2 1-27.3V346h52.4l23.2-23.2 23.3-23.1 9.7 3.2c17.3 5.8 25.4 7.2 44.8 7.8 24.1.8 37.9-1.3 59.3-8.8a156.2 156.2 0 0 0 93.6-95.4 157 157 0 0 0-3.2-110A156 156 0 0 0 339 1.1zm39.1 21.5a135 135 0 0 1 20 261.4 123.5 123.5 0 0 1-43.1 6.4c-18.2-.1-31.2-2.6-49.2-9.5-8.1-3.1-11.5-4-14-3.5-2.6.5-8.2 5.5-27.3 24.6l-24 24h-28.2c-19.7 0-29 .4-30.8 1.2-5.2 2.4-5.5 4.3-5.5 35v28.3l-9.7 9.7-9.8 9.8h-28.3c-29.4 0-31.1.2-34.4 4.4-1.6 1.9-1.8 5.1-1.8 31.1v29l-8.3 8.3-8.4 8.3-25.9-1.3-25.9-1.3-1.3-25.9-1.3-26L127.5 330c92.5-92.5 106.6-107 107.1-110 .4-2.6-.5-6.1-3.5-13.9a125.5 125.5 0 0 1-9.5-49.1c0-17.6 1.6-28.3 6.4-43.1a135.5 135.5 0 0 1 106.5-91.3c11.3-2 32.2-1.9 43.6 0z'/%3E%3Cpath fill='%23707070' d='M373.5 85.6a48.2 48.2 0 0 0-42.5 41.2 48 48 0 1 0 51-41.1c-3-.2-6.8-.3-8.5-.1zm14.7 22.4a28.5 28.5 0 0 1 17.8 25.5c0 9.7-6.4 20-15.4 24.8a32.6 32.6 0 0 1-24.2 0 31 31 0 0 1-12.7-12.7 32.4 32.4 0 0 1 0-24.1 27.8 27.8 0 0 1 34.5-13.5zM437.5 188.9c-8.5 3.5-7.5 17 1.3 19.3 4.1 1.1 9.5-1.3 11.1-4.8 2.6-5.7.2-12.5-5-14.3-3.7-1.3-4.6-1.3-7.4-.2zM417.5 212.6c-1.6.8-4.6 3-6.5 4.8a87 87 0 0 1-32 17.7c-6.6 2.1-9.5 2.4-24.8 2.5-15.7 0-17.5.2-20 2.1-5.9 4.4-4.9 13.3 2 17 4.9 2.5 31.2 2.5 42.2-.1a110 110 0 0 0 48.4-25.5c4.7-4.6 5.2-5.5 5.2-9.4 0-4.7-2.3-8.1-6.7-9.8-3.3-1.2-4.3-1.1-7.8.7z'/%3E%3C/svg%3E");
    height: 24px;
    width: 21px;
}

.icon-fullscreen:before {
    display: inline-block;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.0' viewBox='0 0 512 512'%3E%3Cpath d='M6.3 1.6C-.3 4.9 0 1 0 93c0 74.9.2 83.5 1.6 86.6 2.8 5.9 5.5 6.6 22.9 6.2 14.7-.3 15.5-.4 17.9-2.7 1.4-1.4 3-4.1 3.6-6 .6-2.2 1-28.1 1-66.9V47h63.3c38.7 0 64.6-.4 66.8-1 1.9-.6 4.6-2.2 6-3.6 2.3-2.4 2.4-3.2 2.7-17.9.4-17.4-.3-20.1-6.2-22.9C176.5.2 168 0 92.8 0 19.2 0 9.1.2 6.3 1.6zM332.2 1.7c-5.7 2.8-6.4 5.5-6 22.8.3 14.7.4 15.5 2.7 17.9 1.4 1.4 4.1 3 6 3.6 2.2.6 28.1 1 66.9 1H465v63.2c0 38.8.4 64.7 1 66.9.6 1.9 2.2 4.6 3.6 6 2.4 2.3 3.2 2.4 17.9 2.7 17.4.4 20.1-.3 22.9-6.2 1.4-3.1 1.6-11.7 1.6-86.6 0-92.2.3-88.2-6.5-91.4C502.6.2 492.7 0 418.8 0c-74.9 0-83.6.2-86.6 1.7zM5.9 327.5c-6.1 3.4-5.9.2-5.9 91.5 0 92.2-.3 88.2 6.5 91.4 2.9 1.4 12.8 1.6 86.5 1.6 74.9 0 83.5-.2 86.6-1.6 5.9-2.8 6.6-5.5 6.2-22.9-.3-14.7-.4-15.5-2.7-17.9-1.4-1.4-4.1-3-6-3.6-2.2-.6-28.1-1-66.8-1H47v-63.3c0-38.7-.4-64.6-1-66.8-.6-1.9-2.2-4.6-3.6-6-2.5-2.3-3.2-2.4-18.2-2.6-12.3-.2-16.3 0-18.3 1.2zM472.1 327.3c-1.3.6-3.4 2.5-4.5 4-2.1 2.8-2.1 3.6-2.4 68.3l-.3 65.4h-63.2c-38.7 0-64.6.4-66.8 1-1.9.6-4.6 2.2-6 3.6-2.3 2.4-2.4 3.2-2.7 17.9-.4 17.4.3 20.1 6.2 22.9 3.1 1.4 11.7 1.6 86.6 1.6 73.7 0 83.6-.2 86.5-1.6 6.8-3.2 6.5.8 6.5-91.4 0-91.6.2-88.3-6.1-91.5a101 101 0 0 0-33.8-.2z'/%3E%3C/svg%3E");
    height: 24px;
    width: 21px;
}

.icon-fullscreen-exit:before {
    display: inline-block;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.0' viewBox='0 0 512 512'%3E%3Cpath d='M146.5 1.4c-6.8 2.9-6.5-.5-6.7 72.3l-.3 65.8-65.8.3c-73 .2-69.4-.1-72.3 6.9a86.6 86.6 0 0 0 .2 32.9C4.8 186.3.2 186 93 186c73.2 0 84.5-.2 87-1.5 6.3-3.2 6 .8 6-91.5 0-92.8.3-88.2-6.4-91.4a89.8 89.8 0 0 0-33.1-.2zM332.2 1.7C325.7 4.9 326 .4 326 93c0 73.2.2 84.5 1.5 87 3.2 6.3-.8 6 91.5 6 92.8 0 88.2.3 91.4-6.4 2.1-4.5 2.3-28 .2-32.9-2.9-7 .7-6.7-72.3-6.9l-65.8-.3-.3-65.8c-.2-73 .1-69.4-6.9-72.3a85.7 85.7 0 0 0-33.1.3zM5.9 327.5c-4.7 2.6-5.9 6.9-5.9 21.4 0 14.5 1 18.6 5.3 21.4 2.4 1.5 8.5 1.7 68.4 1.9l65.8.3.3 65.8c.2 73-.1 69.4 6.9 72.3a86.6 86.6 0 0 0 32.9-.2c6.7-3.2 6.4 1.4 6.4-91.4 0-92.3.3-88.3-6-91.5-4.2-2.2-170.1-2.2-174.1 0zM331.8 327.6c-6 3.2-5.8-.5-5.8 91.4 0 92.8-.3 88.2 6.4 91.4 4.5 2.1 28 2.3 32.9.2 7-2.9 6.7.7 6.9-72.3l.3-65.8 65.8-.3c73-.2 69.4.1 72.3-6.9a86.6 86.6 0 0 0-.2-32.9c-3.2-6.7 1.5-6.4-91.6-6.4-72.6.1-84.7.3-87 1.6z'/%3E%3C/svg%3E");
    height: 20px;
    width: 20px;
}

.icon-lock,
.icon-unlock {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 0;
    color: #707070;
}
.icon-unlock::before {
    display: inline-block;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' fill='%23ffffff' viewBox='0 0 330 330'%3E%3Cpath d='M15 160a15 15 0 0 0 15-15V85c0-30.33 24.67-55 55-55s55 24.67 55 55v45h-25a15 15 0 0 0-15 15v170a15 15 0 0 0 15 15h200a15 15 0 0 0 15-15V145a15 15 0 0 0-15-15H170V85c0-46.87-38.13-85-85-85S0 38.13 0 85v60a15 15 0 0 0 15 15z'/%3E%3C/svg%3E");
    height: 30px;
    background: #398e92;
    width: 30px;
    padding: 7px;
    border-radius: 50%;
}
.icon-lock::before {
    display: inline-block;
    content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 330 330" fill="%23ffffff"%3E%3Cpath d="M65 330h200a15 15 0 0 0 15-15V145a15 15 0 0 0-15-15h-15V85c0-46.87-38.13-85-85-85S80 38.13 80 85v45H65a15 15 0 0 0-15 15v170a15 15 0 0 0 15 15zm45-245c0-30.33 24.67-55 55-55s55 24.67 55 55v45H110V85z"/%3E%3C/svg%3E');
    height: 30px;
    background: #398e92;
    width: 30px;
    padding: 6px;
    border-radius: 50%;
}
.nav-pills .nav-link {
    color: #3d8c9a;
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        background-color: #3d8c9a;
    }

    
.filter-div .form-check {
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.filter-div .form-check input[type=radio] + .form-check-label,
.filter-div .form-check input[type=checkbox] + .form-check-label{
    cursor: pointer;
}

.filter-div .form-check input[type=radio]:checked + .form-check-label,
.filter-div .form-check input[type=checkbox]:checked + .form-check-label {
    color: rgb(var(--primary-color));
    border-bottom: 3px solid rgb(var(--primary-color));
}

.Bom-cost {
    display: inline-block;
    background: #1B7E84;
    padding: 5px 15px;
    margin-right: 20px;
    color: #FFF;
    border-radius: 5px;
    font-size: 0.9rem;
}

.stats-counter {
    text-align: center;
}

    .stats-counter h2 {
        color: #3d8c9a;
        font-weight: 600;
    }

.chart-header {
    color: #3d8c9a;
    margin: 0;
    font-weight: 600;
}

.EventWizardACL a.disabled img, .EventWizardACL :disabled + span, input:disabled + span {
    opacity: 0.5;
    cursor: not-allowed !important;
}

/*.EventWizardACL .disabledItineraryChecklist {
    opacity: 0.5
}*/
.badge-site-primary {
    color: #3d8c9a;
    background: azure;
    border: 2px solid #3d8c9a;
}

.eventNotes {
    background: url(/images/Notes.png) repeat-y;
    width: 780px;
    height: 300px;
    /* font: normal 14px verdana;*/
    line-height: 25px;
    padding: 2px 10px;
    border: solid 1px #ddd;
}

#tblMultiDayEvents>tbody>tr.disable-event {
    background: #d5d5d5;
}

#tblMultiDayEvents>tbody>tr.disable-event>td:not(:last-child){
    background: transparent !important;
}

#tblMultiDayEvents.table>tbody#tblMultiDayEventsItems>tr.start-cls>td:not(:last-child),
#tblMultiDayEvents>tbody>tr.main-cls>td:not(:last-child),
#tblMultiDayEvents>tbody>tr.end-cls>td:not(:last-child) {
    background-color: #94d3cd54 !important;
    /* border-left: 3px solid #656565; */
}

.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));
        background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
    }

    /* :not(:required) hides these rules from IE9 and below */
    .loading:not(:required) {
        /* hide "loading..." text */
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
    }

        .loading:not(:required):after {
            content: '';
            display: block;
            font-size: 10px;
            width: 1em;
            height: 1em;
            margin-top: -0.5em;
            -webkit-animation: spinner 150ms infinite linear;
            -moz-animation: spinner 150ms infinite linear;
            -ms-animation: spinner 150ms infinite linear;
            -o-animation: spinner 150ms infinite linear;
            animation: spinner 150ms infinite linear;
            border-radius: 0.5em;
            -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
            box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
        }

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.content-loader {
    position: absolute;
    inset: 0px;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,0.7) no-repeat center center;
    z-index: 10;
}

    .content-loader:before {
        content: '';
        width: 48px;
        height: 48px;
        border: 5px solid #fff;
        border-bottom-color: transparent;
        border-radius: 50%;
        display: inline-block;
        box-sizing: border-box;
        animation: rotation 1s linear infinite;
    }

.col-standard {
    background: #ECF9FF !important;
}

.col-exbitor {
    background: #FFFBEB !important;
}

.col-nfp {
    background: #E4EFE7 !important;
}

.col-deleted {
    background: #EB4A4A !important;
    color: white !important;
}

.col-removed-space {
    background: #e925259c !important;
    color: white !important;
}

.col-deleted-select {
    color: white !important;
}

.col-removed-select{
    color: white !important;
}

.drp-select {
    border: none !important;
    background: none !important;
    border: 0 !important;
    outline: none !important;
}
.drp-select option{
    direction: rtl;
}

.pop-select {
    border: none !important;
    background: none !important;
    border: 0 !important;
    outline: none !important;
}

.eventSpaceTable-border {
    border-bottom: 0.5px solid #d5cece47 !important;
}

.eventApplybtn {
    min-width: 80px;
    border-radius: 5px;
}

.eventSpaceDelete-div {
    width: 100%; 
    height: 100%;
}

.eventSpaceDelete-label {
    width: 150px;
    line-height: 20px;
}

.eventSpaceDelete-img {
    position: absolute;
    bottom: 2px;
    right: 2px;
}
.dataTable,
.dataTables_scrollHeadInner,
.dataTables_scrollBody {
  min-width:  100%!important;
}


.m-h-50 {
    height: calc(50vh - 80px);
    min-height: 620px;
    max-height: 100%;
}

.food-item-main {
    display: flex;
    gap: 14px;
    flex-direction: column;
    height: 81%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0.75rem 0;
}

.wine-item-main {
    display: flex;
    gap: 14px;
    flex-direction: column;
    height: 94%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0.75rem 0;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.w-150 {
    max-width: 125px !important;
    text-overflow: ellipsis;
    overflow: hidden;
}

.btn-group-toggle .btn-outline-primary:first-child {
  border-radius: 0.25rem 0 0 0.25rem !important;
}

.btn-group-toggle .btn-outline-primary {
  color: #398e92;
  border-color: #398e92;
  cursor: pointer;
}

.btn-group-toggle .btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-group-toggle .btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle,
.btn-group-toggle .btn-outline-primary:hover {
    color: #fff;
    background-color: #398e92;
    border-color: #398e92;
}

.notification-popup .checkbox-collapse-container{
    padding: .5rem !important;
}

.ck-powered-by-balloon{
    display: none !important;
}
.ck-balloon-panel_visible{
    z-index: 10501 !important;
}
.custom-control-input:checked~.custom-control-label::before{
    border-color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}
.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,
.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{
    background-color: rgba(var(--primary-color), .5);
}

.custom-control.custom-radio .custom-control-label,
.custom-control.custom-checkbox .custom-control-label
{
    cursor: pointer;
}