@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --bg-primary: #013161;
    --green-color: #00ae2f;
}

body {
    font-family: "Outfit", sans-serif;
}

.btn-primary {
    background-color: var(--bg-primary) !important;
}

.color-primary {
    color: var(--green-color) !important;
}

.icon-btn {
    --bs-btn-padding-y: .25rem;
    --bs-btn-padding-x: .5rem;
    --bs-btn-font-size: .75rem;
}

.section-heading {
    color: var(--bg-primary);
}

.hnd-element {
    display: none !important;
}

#signUpForm {
    background-color: #fff;
    margin: 0px auto;
    padding: 40px;
    box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
    border-radius: 0;
}

img {
    max-width: 100%;
}

#signUpForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: .9em;
}

    #signUpForm .form-header .stepIndicator {
        position: relative;
        flex: 1;
        padding-bottom: 30px;
        font-size: 16px;
    }

        #signUpForm .form-header .stepIndicator.active {
            font-weight: 600;
        }

        #signUpForm .form-header .stepIndicator.finish {
            font-weight: 600;
            color: #013161;
        }

        #signUpForm .form-header .stepIndicator.active::before {
            content: "\f00c";
            line-height: 16px;
            font-size: 12px;
            color: #Fff;
        }

        #signUpForm .form-header .stepIndicator::before {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            z-index: 9;
            width: 20px;
            height: 20px;
            background-color: rgb(141 141 141 / 100%);
            border-radius: 50%;
            border: 3px solid #ecf5f4;
            font-family: var(--fa-style-family-classic);
        }

        #signUpForm .form-header .stepIndicator.active::before {
            background-color: #08b811;
            border: 3px solid #d5f9f6;
        }

        #signUpForm .form-header .stepIndicator.finish::before {
            background-color: #013161;
            border: 3px solid #a1c9f1;
        }

        #signUpForm .form-header .stepIndicator::after {
            content: "";
            position: absolute;
            left: -50%;
            bottom: 8px;
            width: 100%;
            height: 3px;
            background-color: #f3f3f3;
        }

        #signUpForm .form-header .stepIndicator.active::after {
            background-color: #a1c9f1;
        }

        #signUpForm .form-header .stepIndicator.finish::after {
            background-color: #013161;
        }

        #signUpForm .form-header .stepIndicator:nth-child(1).active:after {
            display: none;
        }

#signUpForm input[type="text"],
#signUpForm input[type="password"],
#signUpForm input[type="email"],
#signUpForm input[type="date"],
#signUpForm input[type="number"],
#signUpForm textarea,
#signUpForm select {
    width: 100%;
    font-size: 1em;
    border: 1px solid #666666 !important;
    border-radius: 5px;
    min-height: 48px;
}

#signUpForm input:focus {
    border: 1px solid #013161;
    outline: 0;
}

#signUpForm .form-control.invalid {
    border: 1px solid #ffaba5;
}

#signUpForm .step {
    display: none;
}

#signUpForm .form-footer {
    overflow: auto;
    gap: 20px;
}

    #signUpForm .form-footer button {
        background-color: #013161;
        border: 1px solid #013161 !important;
        color: #ffffff;
        border: none;
        padding: 13px 30px;
        font-size: 1em;
        cursor: pointer;
        border-radius: 5px;
        flex: 1;
        margin-top: 5px;
    }

.btn-blue {
    background-color: #fff !important;
    color: #013161 !important;
    border: 1px solid #013161 !important;
    border: none;
    padding: 13px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin-top: 5px;
}

h4.detail-heading {
    color: var(--bg-primary);
    padding-bottom: 15px;
    border-bottom: 1px solid #bbbbbb;
}

#signUpForm .form-footer button:hover {
    opacity: 0.8;
}

.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
    z-index: 99 !important;
}

#signUpForm .form-footer #prevBtn, #signUpForm .form-footer #save {
    background-color: #fff;
    color: #013161;
}

#signUpForm .form-footer #nextBtn.addi-btn {
    background-color: #fff;
    color: var(--green-color) !important;
    border-color: var(--green-color) !important;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    padding: 0.8rem .75rem;
}

.form-floating > label {
    padding: 0.8rem .75rem;
    color: #818181;
}

.date-wrapper {
    position: relative;
}

.form-group label {
    font-weight: 600;
}

#signUpForm {
    position: relative;
}

#overlay {
    position: absolute;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(0,0,0,0.6);
    bottom: 0;
    display: none;
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

span.date-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    pointer-events: none;
}

div.dt-container div.dt-paging .page-item.active button.page-link {
    background: #013161;
    border: #013161;
}

div.dt-container div.dt-length {
    text-align: left !important;
}

.selectpicker {
    height: 48px;
}

.bootstrap-select .dropdown-toggle .filter-option {
    float: none !important;
    height: auto !important;
    position: unset !important;
}

.bootstrap-select button {
    height: 48px;
    border: 1px solid #000;
}

.bootstrap-select > .dropdown-toggle:after {
    content: "\f078";
    font-family: var(--fa-style-family-classic);
    font-weight: 600;
    font-size: 11px;
    color: #343a40;
    border: 0 !important;
}

.claim-header {
    background: var(--green-color);
    padding: 10px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    margin-bottom: 15px;
}

.claims-info-next {
    border: 2px solid #d3c2c2;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.claim-header h5 {
    margin: 0;
    color: #fff;
}

.claims-info-next .claim-body {
    padding: 15px 30px;
}

    .claims-info-next .claim-body ul {
        list-style: none;
        padding: 0;
    }

        .claims-info-next .claim-body ul li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 40px;
        }

            .claims-info-next .claim-body ul li i {
                position: absolute;
                left: 0;
                top: 7px;
                color: var(--green-color);
            }




.filter-box > * {
    flex: 0 0 60%;
}

.filter-box {
    width: 250px;
}

    .filter-box > label {
        flex: 0 0 40%;
    }

section.main {
    padding-bottom: 60px;
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0px 0px 19px 5px #ffffff;
}

.select2 {
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
}

.select2-container .select2-selection--single {
    height: 48px !important;
}

    .select2-container .select2-selection--single .select2-selection__rendered {
        padding-top: 10px;
    }

.select2-search--dropdown .select2-search__field {
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #212529 !important;
    padding-left: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    position: absolute;
    content: '\f078';
    width: 10px;
    height: 10px;
    top: 16px;
    right: 15px;
    font-family: 'FontAwesome';
    font-size: 11px;
}

.select2 span.select2-selection.select2-selection--single {
    border-color: #6d6d6d;
}

div.dt-container div.dt-length label:after {
    position: absolute;
    content: ":";
}

div#claimListtbl_wrapper .dt-length {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

div.dt-container div.dt-length select {
    margin-left: 10px;
}

.swal-text {
    text-align: center;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #1967d2 !important;
}

.left-image {
    height: auto !important;
    position: sticky;
    top: 100px;
}

.form-group input[name="EmployeeWorkTimeOnInjuryDate"] {
    border: 1px solid #666666;
}

.ui-timepicker-standard {
    border: 1px solid #6d6d6d !important;
    font-family: 'FontAwesome' !important;
    font-size: 1em !important;
}

.ui-timepicker-standard .ui-state-hover {
    background-color: #1967d2 !important;
}

.time-wrapper, .time-wrapper2 {
    position: relative;
}

.btnMarkReview {
    margin-left: 2px;
}

.btn-download {
    margin-left: 10px;
}

.datepicker th.datepicker-switch {
    background: var(--bg-primary);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 9px;
    cursor: pointer !important;
}

.datepicker thead th.prev, .datepicker thead th.next {
    background: var(--bg-primary) !important;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
}

    .datepicker th.datepicker-switch:hover, .datepicker thead th.prev:hover, .datepicker thead th.next:hover {
        background: var(--bg-primary) !important;
        opacity: 0.8;
    }
.modal-header.mapModel-header {
    justify-content: space-between;
}
.left-image span a {
    text-decoration: none;
    display:block;margin-top:10px
}

.left-image span i {
    width: 30px;
    height: 30px;
    background: var(--bg-primary);
    color: #fff;
    font-size:14px;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 20px;
    display:inline-block
}
@media (min-width:768px) {
    /*.form-group input[name="EmployeeWorkTimeOnInjuryDate"] {
        width: 50% !important;
    }*/
    .time-wrapper {
        width: 50% !important;
    }
}

@media (max-width:1199px) {
    .left-image {
        display: none;
    }
}

@media(max-width:767px) {

    .filter-box {
        width: 100%;
    }
    

    .filter-box > label {
        width: 50%;
    }

    .dt-length label {
        width: 40% !important;
    }

    .dt-length select {
        width: 60% !important;
        padding: 7px 2.25rem 8px .75rem;
        margin: 0 !important;
    }

    div.dt-container div.dt-search {
        margin-top: 6px;
    }

        div.dt-container div.dt-search label {
            width: 40%;
        }

        div.dt-container div.dt-search input {
            margin-left: 0 !important;
            width: 60% !important;
            padding: 7px 2.25rem 8px .75rem;
        }

    table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
        position: relative;
        padding-bottom: 15px;
    }

        table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
            position: absolute;
            bottom: 5px;
        }


    #signUpForm {
        padding: 20px;
    }

        #signUpForm .form-header .stepIndicator {
            font-size: 12px;
        }

    .left-image {
        display: none;
    }

    div#example_wrapper > .row {
        display: flex !important;
        flex-direction: column;
    }

        div#example_wrapper > .row > div {
            flex: 0 0 100%;
        }

    div.dt-container div.dt-length, div.dt-container div.dt-search {
        text-align: left !important;
    }

    #signUpForm .form-footer div button {
        width: 100%;
        font-size: 14px;
    }

    #signUpForm .form-footer div {
        flex: 0 0 100%;
    }

    #signUpForm .form-footer {
        flex-direction: column;
    }
}

@media (max-width:538px) {
    #signUpForm .form-footer {
        gap: 0;
    }
}
