@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

body {
    background-color: #F5F8FB;
    font-family: 'Inter', sans-serif;
}

* {
    outline: none !important;
}

input {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 34, 65, 0.22);
    border-radius: 11px;
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 300;
    color: #333;
    transition: 0.3s;
}

textarea {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 34, 65, 0.22);
    border-radius: 11px;
    display: block;
    width: 100%;
    height: 110px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 300;
    color: #333;
    resize: none;
    transition: 0.3s;
}

.input_elem {
    margin-bottom: 28px;
}

    .input_elem.gap {
        padding: 20px 0;
    }

.input_elem__label {
    margin: 0;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: flex-end;
    color: #1B1C1E;
}

    .input_elem__label span {
        color: #F80000;
    }

.input_elem_controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -12px;
    margin-bottom: 45px;
}

.button {
    background: none;
    display: inline-flex;
    margin: 0;
    padding: 0;
    border: none;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none !important;
    border-radius: 11px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    min-width: 195px;
    height: 52px;
    cursor: pointer;
}

    .button:hover {
        opacity: .8;
    }

    .button.bordered {
        background: transparent;
        border: 1px solid;
    }

        .button.bordered:hover {
            opacity: .5;
        }

        .button.bordered.white {
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
        }

            .button.bordered.white:hover {
                background: #fff;
                color: #333;
                opacity: 1;
            }

::placeholder {
    color: #c7c7c7;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #c7c7c7;
}

::-ms-input-placeholder {
    color: #c7c7c7;
}

:focus::-webkit-input-placeholder {
    color: transparent !important;
}

:focus::-moz-placeholder {
    color: transparent !important;
}

:focus:-ms-input-placeholder {
    color: transparent !important;
}

:focus:-moz-placeholder {
    color: transparent !important;
}


.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 17px;
    width: 17px;
    border: 2px solid #1B1C1E;
    margin-left: 0 !important;
}

.control_custom:hover input ~ .checkmark {
    background-color: #f2f2f2;
}

.control_custom input:checked ~ .checkmark {
    background-color: #045cb2;
    border-color: #045cb2;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.control_custom input:checked ~ .checkmark:after {
    display: block;
}

.control_custom .checkmark:after {
    left: 4px;
    top: 0.5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

input:focus {
    border: 1px solid rgba(0, 34, 65, 0.4);
}

.login_no_account {
    display: none;
}

.input_elem__pass {
    position: relative;
}

.pass_toggle {
    background-image: url(../img/eye_clocse.svg);
    width: 18px;
    height: 19px;
    display: block;
    position: absolute;
    z-index: 10;
    cursor: pointer;
    top: calc(50% - 1px);
    right: 16px;
    transform: translateY(-50%);
}

    .pass_toggle.active {
        background-image: url(../img/eye_open.svg);
    }

.invalid input,
.invalid textarea {
    border-color: red;
}

.valid input,
.valid textarea {
    border-color: green;
}

.text-center {
    text-align: center;
}

.control_custom {
    display: block;
    position: relative;
    padding-left: 27px;
    margin-bottom: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: flex-end;
    color: #1B1C1E;
    gap: 5px;
}

    .control_custom input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.tail-select .select-label {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 34, 65, 0.22);
    border-radius: 11px;
    display: flex;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 300;
    color: #333;
    align-items: center;
    transition: 0.3s;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    padding-right: 30px;
}

.tail-select {
    width: 100%;
    font-family: inherit;
}

    .tail-select.active .select-label {
        box-shadow: none;
        border-color: #045cb2;
    }

    .tail-select .select-dropdown ul li.dropdown-option:hover {
        background-color: #f2f2f2;
    }

.log_reg--register .text-center {
    margin-top: 30px;
}

.tail-select .select-label .label-inner {
    color: #303030;
    font-family: inherit;
    padding: 0;
}

.control_custom.invalid .checkmark {
    border-color: red;
}

[data-field-error] {
    display: none;
}

.container-fluid {
    padding: 0 20px;
}

.invalid .tail-select .select-label {
    border-color: red;
}

.valid .tail-select .select-label {
    border-color: green;
}

.checkbox_area_scrollable {
    max-height: 240px;
    overflow: auto;
    background: #FFFFFF;
    /* shadow */
    box-shadow: -5px 0px 4px rgba(129, 136, 203, 0.08), 5px 5px 15px rgba(129, 136, 203, 0.08);
    border-radius: 0px 0px 11px 11px;
    padding: 14px 0;
}

    .checkbox_area_scrollable .control_custom {
        padding: 12px 26px;
        padding-left: 40px;
        transition: 0.3s;
    }

        .checkbox_area_scrollable .control_custom .checkmark {
            left: 15px;
            top: 16px;
            border-color: #1B1C1E;
        }

        .checkbox_area_scrollable .control_custom input:checked ~ .checkmark {
            border-color: #1B1C1E;
            background-color: #1B1C1E;
        }

            .checkbox_area_scrollable .control_custom input:checked ~ .checkmark::after {
                left: 4px;
            }

    .checkbox_area_scrollable::-webkit-scrollbar {
        width: 4px;
    }

    .checkbox_area_scrollable::-webkit-scrollbar-track {
        box-shadow: none;
        background-color: #fff;
        border-radius: 10px;
    }

    .checkbox_area_scrollable::-webkit-scrollbar-thumb {
        background: rgba(0, 34, 65, 0.1);
        border-radius: 10px;
    }

    .checkbox_area_scrollable .control_custom.checked {
        background: #F5F8FB;
    }

.control_custom input[type=radio] ~ .checkmark {
    border-radius: 50%;
}

.control_custom input[type=radio]:checked ~ .checkmark {
    background: #fff;
    border-width: 6px;
}

    .control_custom input[type=radio]:checked ~ .checkmark::after {
        display: none;
    }

.user_role_select .control_custom input:checked ~ .checkmark {
    border-color: #1B1C1E;
}

.radio_group {
    display: flex;
    align-items: flex-start;
    gap: 10px 35px;
    flex-wrap: wrap;
}

    .radio_group.column {
        flex-direction: column;
    }

.input_elem .radio_group {
    margin-bottom: 42px;
}

.input_note {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    display: flex;
    align-items: flex-end;
    color: #013769;
    padding-top: 8px;
    width: 100%;
}

.button.secondary {
    background-color: #01A84A;
}

.tail-select .select-dropdown ul li.dropdown-option.selected {
    color: #045cb2;
}

.invalid .checkmark {
    border-color: red;
}

.select {
    display: none;
}

table.data_table {
    width: 100%;
    text-align: left;
    border-spacing: 0;
}

    table.data_table thead tr:nth-child(1) td:nth-child(1)::after, table.data_table thead tr:nth-child(1) td.sort::after {
        content: '';
        background-image: url(../img/table_sort.svg);
        width: 18px;
        height: 18px;
        vertical-align: middle;
        margin-left: 5px;
        cursor: pointer;
        display: none;
    }

.sorted-asc::after, .sorted-desc::after {
    display: inline-block !important;
}

#records_table thead tr:nth-child(1) td:nth-child(1)::after {
    display: none;
}

.sorted-asc::after {
    transform: rotate(180deg);
}

table.data_table thead td {
    border: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    /* or 150% */
    /* typography/1 */
    color: #013769;
    padding: 10px;
    vertical-align: bottom;
    border-bottom: 1px solid #013769;
    padding-top: 0;
    background: #fff;
    position: sticky;
    top: 0;
    padding-top: 20px;
    text-align: right;
    z-index: 100;
}

table.data_table thead tr {
}

table.data_table thead td:nth-child(1) {
    padding-left: 0;
}

table.data_table thead td:last-child {
    padding-right: 0;
}

table.data_table tbody td {
    padding: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    /* identical to box height, or 150% */
    /* typography/low */
    color: rgba(0, 34, 65, 0.6);
    border-bottom: 1px solid rgba(1, 82, 156, 0.2);
    text-align: right;
}

    table.data_table tbody td:nth-child(1) {
        padding-left: 0;
    }

table.data_table.align_left td {
    text-align: left;
}

table.data_table tbody td a {
    color: #045CB2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

    table.data_table tbody td a:hover {
        text-decoration: underline;
    }

table.data_table td:nth-child(1),
table.data_table td:nth-child(2) {
    text-align: left;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.tab_item {
    display: none;
}

.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

    .modal.open {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
        pointer-events: all;
    }

.modal-bg {
    position: absolute;
    background: teal;
    width: 100%;
    height: 100%;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #FFFFFF;
    box-shadow: 5px 5px 15px rgba(129, 136, 203, 0.08), -5px 0px 4px rgba(129, 136, 203, 0.08);
    border-radius: 15px;
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    outline: none;
    appearance: none;
    color: red;
    background: none;
    border: 0px;
    font-weight: bold;
    cursor: pointer;
}

.modal {
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.modal_header {
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-bottom: 1px solid rgba(1, 82, 156, 0.26);
}

    .modal_header h2 {
        margin: 0;
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #013769;
    }

.modal_footer {
    padding: 30px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(1, 82, 156, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

    .modal_footer .button {
        min-width: 125px;
        padding: 0 24px;
    }

        .modal_footer .button.modal-exit {
            margin-left: 0;
        }

.modal_body {
    padding: 30px;
    padding-top: 25px;
}

.select_discount_wrp > div {
    display: flex;
    align-items: center;
}

.select_discount_wrp {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .select_discount_wrp > div > p {
        width: 120px;
        flex: none;
        margin: 0;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }

.modal-exit {
    cursor: pointer;
    flex: none;
    margin-left: 10px;
}

    .modal-exit img {
        transition: 0.3s;
        transform-origin: center;
    }

    .modal-exit:hover img {
        transform: rotate(180deg);
    }

.text_modal .modal-container {
    border: 1px solid rgba(1, 82, 156, 0.26);
    box-shadow: -5px 0px 4px rgba(129, 136, 203, 0.08), 5px 5px 15px rgba(129, 136, 203, 0.08);
    border-radius: 15px;
    max-width: 440px;
}

.text_modal .modal_header {
    padding: 0;
    border: none;
    padding: 20px;
    padding-bottom: -0;
}

.text_modal .modal_body {
    padding: 20px;
}

.default_list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1B1C1E;
}

    .default_list li {
        margin-bottom: 5px;
    }

.modal_body > p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    max-width: 400px;
}

.inline_input {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

    .inline_input input {
        width: auto;
        min-width: 1px;
    }

    .inline_input p {
        flex: none;
    }

.loading_screen {
    pointer-events: none;
    font-size: 0px;
    position: relative;
}

    .loading_screen::before {
        content: '';
        display: block;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: 56px;
        background-image: url(../img/loading.gif);
    }

.toast {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 15px;
    margin-bottom: 5px;
}

.toast-error {
    background-color: red;
    color: #fff
}

.toast-success {
    background-color: green;
    color: #fff;
}

.toast-show {
    opacity: 1;
}

.toast-container {
    position: fixed;
    z-index: 1000;
}

.toast-container-top {
    top: 10px;
    right: 10px;
}

.toast-container-bottom {
    bottom: 10px;
    left: 10px;
}

.loader-line {
    width: 100%;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}

    .loader-line.animation_stop {
        opacity: 0;
    }

    .loader-line:before {
        content: "";
        position: absolute;
        left: -50%;
        height: 3px;
        width: 40%;
        background-color: #045cb2;
        -webkit-animation: lineAnim 1s linear infinite;
        -moz-animation: lineAnim 1s linear infinite;
        animation: lineAnim 2s linear infinite;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
    }

@keyframes lineAnim {
    0% {
        left: -40%;
    }

    50% {
        left: 20%;
        width: 80%;
    }

    100% {
        left: 100%;
        width: 100%;
    }
}

.checkbox_area_scrollable > p {
    padding: 0 15px;
}

#program_setup_form textarea {
    height: 160px;
}

.disabled_link {
    pointer-events: none;
    opacity: .7;
}

.loading_line:empty {
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%);
    background-size: 1000px 640px;
    position: relative;
    width: 40px;
    min-height: 20px;
    display: inline-block;
    z-index: 0;
}

.dashboard_swiper .swiper-wrapper:empty {
    animation-duration: 1.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #fafafa 8%, #ededed 38%, #fafafa 54%);
    background-size: 1000px 640px;
    position: relative;
    width: 300px;
    min-height: 359px;
    display: inline-block;
    z-index: 0;
}

#add_location {
    display: none;
}

    #add_location.allow_create {
        display: flex;
    }

.save_user_profile[disabled="true"] {
    pointer-events: none;
    opacity: .7;
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

.dot.green {
    background: #00c17c;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-right: 5px;
}

    .dot.red {
        background: #f80000;
    }

    .dot.yellow {
        background: #ffe500;
        border: 1px solid #c1c1c1;
    }

    .dot.orange {
        background: #ff9d00;
        border: 1px solid #c1c1c1;
    }

.info_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
    top: -5px;
    border: 1px solid #045CB2;
}

    .info_icon::before {
        content: 'i';
        font-style: normal;
        font-size: 12px;
        font-weight: bold;
        padding-top: 2px;
    }
.tooltip {
    display: none;
    position: absolute;
    background-color: #013769;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1;
    top: -30px;
    left: 0;
    z-index: 10000;
  }
  [data-title] {
    position: relative;
  }



@media screen and (max-width: 767px) {
    .input_elem__label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    input {
        height: 45px;
    }

    .control_custom {
        font-size: 14px;
    }

    .input_elem_controls {
        margin-bottom: 30px;
    }

    .log_reg__section form .button {
        min-width: 200px;
    }

    .button {
        height: 45px;
    }
}
