

/* Fonts S */
    @font-face {
        font-family: 'Calicanto';
        src: url('../fonts/Calicanto-Bold.woff2') format('woff2'),
            url('../fonts/Calicanto-Bold.woff') format('woff');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Calicanto';
        src: url('../fonts/Calicanto-Medium.woff2') format('woff2'),
            url('../fonts/Calicanto-Medium.woff') format('woff');
        font-weight: 500;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Calicanto';
        src: url('../fonts/Calicanto-SemiBold.woff2') format('woff2'),
            url('../fonts/Calicanto-SemiBold.woff') format('woff');
        font-weight: 600;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Calicanto';
        src: url('Calicanto-Regular.woff2') format('woff2'),
            url('Calicanto-Regular.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }
/* Fonts E */

:root {
    --primary-fonts: 'Figtree', sans-serif;
    --secondary-fonts: 'Calicanto', sans-serif;

    --primary-color: rgba(115, 41, 36, 1);
    --secondary-color: rgba(18, 18, 18, 1);
    --content-color: rgba(0, 0, 0, 1);
    --accent-color: rgba(126, 126, 126, 1);
    --border-color: rgba(233, 234, 235, 1);

    --btn-primary-color: rgba(115, 41, 36, 1);
    --btn-primary-color-hover: rgb(102 32 27);

    --btn-secondary-color: transparent;
    --btn-secondary-color-hover: rgba(115, 41, 36, 1);

    --btn-tertiary-color: rgba(255, 243, 240, 1);
    --btn-tertiary-color-hover: rgba(255, 243, 240, 1);
}

/* Scrollbar S */
    @media (min-width: 1023.99px) {
        /* ::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
            border-radius: 10px;
            background-color: #F5F5F5; 
        }*/
        ::-webkit-scrollbar {
            width: 5px;
            height: 5px;
            border-radius: 10px;
            /* background-color: #F5F5F5; */
        }
        ::-webkit-scrollbar-thumb {
            border-radius: 10px;
            -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
            background-color: var(--primary-color);
        }
    }
/* Scrollbar E */

/* Global Styles S */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    html {
        font-size: 16px; /* 1rem = 16px */
    }
    html, body {
        font-family: var(--primary-fonts);
    }
    body, body p {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--content-color);
    }
    p {
        margin-bottom: 0px;
    }
    p + p {
        margin-top: 0.9375rem;
    }
    h1, h2, h3, h4, h5, h6 {
        color: var(--secondary-color);
        margin-bottom: 0px;
        margin-top: 0px;
        line-height: 1.2;
        font-weight: 700;
    }
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.875rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.25rem;
    }
    h5 {
        font-size: 1rem;
    }
    h6 {
        font-size: 0.875rem;
    }
    ul, ol {
        padding-left: 0px;
        margin-bottom: 0px;
        list-style-type: none;
    }
    a {
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    a:hover {
        text-decoration: none;
    }
    img {
        max-width: 100%;
        display: block;
    }

    .section-gap-padding {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .top-gap-padding {
        padding-top: 5rem;
    }
    .bottom-gap-padding {
        padding-bottom: 5rem;
    }
    .section-gap-padding-half {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .top-gap-padding-half {
        padding-top: 2.5rem;
    }
    .bottom-gap-padding-half {
        padding-bottom: 2.5rem;
    }
    @media (max-width: 991.98px) {
        .section-gap-padding {
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
        }
        .top-gap-padding {
            padding-top: 2.5rem;
        }
        .bottom-gap-padding {
            padding-bottom: 2.5rem;
        }
        .section-gap-padding-half {
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
        }
        .top-gap-padding-half {
            padding-top: 1.25rem;
        }
        .bottom-gap-padding-half {
            padding-bottom: 1.25rem;
        }
    }

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

    .font-primary {color: var(--primary-color) !important;}
    .font-secondary {color: var(--secondary-color) !important;}
    .font-accent {color: var(--accent-color) !important;}
    .font-red {color: rgba(216, 35, 42, 1) !important;}
    .font-green {color: green !important;}
    .font-medium {font-weight: 500 !important;}
    .font-semibold {font-weight: 600 !important;}
    .font-bold {font-weight: 700 !important;}

    .oneline-ellipsis {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        display: block;
    }
    .twoline-ellipsis {
        display: block;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .full-width {
        width: 100% !important;
    }
    .mt-10 {margin-top: 10px !important;}
    .mt-15 {margin-top: 15px !important;}
    .mt-20 {margin-top: 20px !important;}
    .mt-5 {margin-top: 5px !important;}
    .mb-0 {margin-bottom: 0px !important;}
    .mb-10 {margin-bottom: 10px !important;}
    .mb-20 {margin-bottom: 20px !important;}
    .d-block {display: block !important;}
    .text-decoration-underline {text-decoration: underline !important;}
    .font-size-18 {font-size: 18px !important;}

    @media (min-width: 1199.99px) {
        .hidden-xl {
            display: none !important;
        }
    }
    @media (min-width: 991.99px) and (max-width: 1199.98px) {
        .hidden-lg {
            display: none !important;
        }
    }
    @media (min-width: 767.99px) and (max-width: 991.98px) {
        .hidden-md {
            display: none !important;
        }
    }
    @media (min-width: 575.99px) and (max-width: 767.98px) {
        .hidden-sm {
            display: none !important;
        }
    }
    @media (max-width: 575.98px) {
        .hidden-xs {
            display: none !important;
        }
    }
/* Global Styles E */

/* Container & Row S */
    .container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
    @media (min-width: 575.99px) {
        .container {
            max-width: 540px;
        }
    }
    @media (min-width: 767.99px) {
        .container {
            max-width: 720px;
        }
    }
    @media (min-width: 991.99px) {
        .container {
            max-width: 960px;
        }
    }
    @media (min-width: 1199.99px) {
        .container {
            max-width: 1140px;
        }
    }
    @media (min-width: 1359.99px) {
        .container {
            max-width: 1340px;
        }
    }
    .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -10px;
        margin-left: -10px;
    }
    [class^="col-"], [class*=" col-"] { position: relative; width: 100%; padding-right: 10px; padding-left: 10px; } .col { flex: 1 0 0%; } .col-auto { flex: 0 0 auto; width: auto; max-width: none; } .col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } .col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } .col-3 { flex: 0 0 25%; max-width: 25%; } .col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } .col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } .col-6 { flex: 0 0 50%; max-width: 50%; } .col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } .col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } .col-9 { flex: 0 0 75%; max-width: 75%; } .col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } .col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } .col-12 { flex: 0 0 100%; max-width: 100%; } @media (min-width: 576px) { .col-sm { flex: 1 0 0%; } .col-sm-auto { flex: 0 0 auto; width: auto; max-width: none; } .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } .col-sm-3 { flex: 0 0 25%; max-width: 25%; } .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } .col-sm-6 { flex: 0 0 50%; max-width: 50%; } .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } .col-sm-9 { flex: 0 0 75%; max-width: 75%; } .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } .col-sm-12 { flex: 0 0 100%; max-width: 100%; } } @media (min-width: 768px) { .col-md { flex: 1 0 0%; } .col-md-auto { flex: 0 0 auto; width: auto; max-width: none; } .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } .col-md-3 { flex: 0 0 25%; max-width: 25%; } .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } .col-md-6 { flex: 0 0 50%; max-width: 50%; } .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } .col-md-9 { flex: 0 0 75%; max-width: 75%; } .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } .col-md-12 { flex: 0 0 100%; max-width: 100%; } } @media (min-width: 992px) { .col-lg { flex: 1 0 0%; } .col-lg-auto { flex: 0 0 auto; width: auto; max-width: none; } .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } .col-lg-3 { flex: 0 0 25%; max-width: 25%; } .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } .col-lg-6 { flex: 0 0 50%; max-width: 50%; } .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } .col-lg-9 { flex: 0 0 75%; max-width: 75%; } .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } .col-lg-12 { flex: 0 0 100%; max-width: 100%; } } @media (min-width: 1200px) { .col-xl { flex: 1 0 0%; } .col-xl-auto { flex: 0 0 auto; width: auto; max-width: none; } .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } .col-xl-3 { flex: 0 0 25%; max-width: 25%; } .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } .col-xl-6 { flex: 0 0 50%; max-width: 50%; } .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } .col-xl-9 { flex: 0 0 75%; max-width: 75%; } .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } .col-xl-12 { flex: 0 0 100%; max-width: 100%; } } @media (min-width: 1400px) { .col-xxl { flex: 1 0 0%; } .col-xxl-auto { flex: 0 0 auto; width: auto; max-width: none; } .col-xxl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; } .col-xxl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; } .col-xxl-3 { flex: 0 0 25%; max-width: 25%; } .col-xxl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } .col-xxl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } .col-xxl-6 { flex: 0 0 50%; max-width: 50%; } .col-xxl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } .col-xxl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; } .col-xxl-9 { flex: 0 0 75%; max-width: 75%; } .col-xxl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; } .col-xxl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; } .col-xxl-12 { flex: 0 0 100%; max-width: 100%; } } 
/* Container & Row E */

/* Forms S */
    .form-group {
        margin-bottom: 15px;
        position: relative;
    }
    .form-group :is(label.error, span.error) {
        color: red;
        position: absolute;
        bottom: -20px;
        left: 0px;
        line-height: normal;
        font-size: 14px;
    }
    .form-label { display: inline-block; margin-bottom: 0.5rem; font-weight: 500; }
    .form-control { display: block; width: 100%; padding: 18px 18px; font-size: 1rem; line-height: 1.5; color: #212529; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(18, 18, 18, 0.1); border-radius: 10px; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; box-shadow: none;}
    .form-control:focus { color: #212529; background-color: #fff; border-color: var(--primary-color); outline: 0; }
    .form-control::placeholder { color: #6c757d; opacity: 1; }
    input.form-control {height: 56px;}
    .form-text { display: block; margin-top: 0.25rem; font-size: 0.875em; color: #6c757d; }

    /* Select S */
    .form-select { display: block; width: 100%; padding: 0.375rem 2.25rem 0.375rem 0.75rem; font-size: 1rem; line-height: 1.5; color: #212529; background-color: #fff; border: 1px solid rgba(18, 18, 18, 0.1); border-radius: 0.25rem; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    .form-select:focus { border-color: #86b7fe; outline: 0; box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25); }
    /* Select E */

    /* Checks & Radios S */
    .form-check { display: block; min-height: 1.5rem; }
    .form-check-input { width: 1em; height: 1em; margin-top: 0.25em; vertical-align: top; background-color: #fff; border: 1px solid rgba(18, 18, 18, 0.1); border-radius: 0.25em; appearance: none; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .form-check-input:checked { background-color: #0d6efd; border-color: #0d6efd; }
    .form-check-label { margin-bottom: 0; font-weight: 400; }
    .form-check-input:checked[type=checkbox] {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");}
    /* Checks & Radios E */

    /* Input Group S */
    .input-group { position: relative; display: flex; flex-wrap: wrap; align-items: stretch; width: 100%; }
    .input-group > .form-control, .input-group > .form-select { position: relative; flex: 1 1 auto; width: 1%; min-width: 0; margin-bottom: 0; }
    .input-group-text { display: flex; align-items: center; padding: 0.375rem 0.75rem; margin-bottom: 0; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #212529; text-align: center; white-space: nowrap; background-color: #e9ecef; border: 1px solid rgba(18, 18, 18, 0.1); border-radius: 0.25rem; }
    /* Input Group E */

    /* Floating Labels S */
    .form-floating { position: relative; }
    .form-floating > .form-control, .form-floating > .form-select { height: calc(3.5rem + 2px); padding: 1rem 0.75rem; }
    .form-floating > label { position: absolute; top: 0; left: 0; height: 100%; padding: 1rem 0.75rem; pointer-events: none; border: 1px solid transparent; transform-origin: 0 0; transition: color 0.1s ease-in-out, transform 0.1s ease-in-out; }
    .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select:focus ~ label, .form-floating > .form-select:not([value=""]):not([value="default"]) ~ label { transform: scale(.85) translateY(-0.5rem) translateX(0.15rem); color: #495057; }
    /* Floating Labels E */

    /* Range S */
    .form-range { width: 100%; height: 1.5rem; background-color: transparent; appearance: none; }
    .form-range::-webkit-slider-thumb { width: 1rem; height: 1rem; background: #0d6efd; border: 0; border-radius: 1rem; cursor: pointer; appearance: none; }
    .form-range::-moz-range-thumb { width: 1rem; height: 1rem; background: #0d6efd; border: 0; border-radius: 1rem; cursor: pointer; }
    .form-range::-ms-thumb { width: 1rem; height: 1rem; background: #0d6efd; border: 0; border-radius: 1rem; cursor: pointer; }
    /* Range E */

    .form-group .label {
        font-weight: 500;
        letter-spacing: -0.3px;
        display: block;
        font-size: 16px;
        margin-bottom: 5px;
    }
    .float-form-group {
        margin-bottom: 25px;
    }
    .float-form-group .label {
        color: var(--accent-color);
        font-size: 18px;
        line-height: normal;
        background-color: #FFFFFF;
        display: inline-block;
        padding: 5px;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translate(0px, -50%);
        transition: 0.3s;
    }
    .float-form-group .form-control {
        border-radius: 80px;
        border: 1px solid rgba(217, 217, 217, 1);
        padding: 16px;
        font-size: 18px;
        color: rgba(35, 35, 35, 1);
    }
    .float-form-group .form-control:focus,
    .float-form-group.floated .form-control {
        border-color: var(--primary-color);
        box-shadow: unset;
    }
    .float-form-group.floated .label {
        top: calc(50% - 30px);
        font-size: 14px;
        color: var(--primary-color);
    }
    .float-form-group.form-group-phone .label {
        left: 65px;
    }
    .float-form-group.form-group-phone .prefix {
        position: absolute;
        left: 0;
        top: 1px;
        font-size: 18px;
        height: calc(100% - 1px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 15px;
        /*border-right: 1px solid rgba(217, 217, 217, 1);*/
        color: var(--accent-color);
    }
    .float-form-group.form-group-phone .prefix::before {
        content: '';
        border-right: 1px solid rgba(217, 217, 217, 1);
        top: 10px;
        right: 0;
        height: calc(100% - 20px);
        position: absolute;
    }
    .float-form-group.form-group-phone .form-control {
        padding-left: 70px;
    }

    .form-check {
        font-size: 16px;
        position: relative;
    }
    .form-check input {
        position: absolute;
        left: 0;
        width: 100%;
        margin: 0;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        visibility: hidden;
    }
    .form-check .form-check-label {
        cursor: pointer;
        position: relative;
        padding-left: 30px;
        display: block;
    }
    .form-check .form-check-label::before {
        content: '';
        position: absolute;
        left: 0px;
        top: 2px;
        width: 20px;
        height: 20px;
        border: 2px solid rgba(217, 217, 217, 1);
    }
    .form-check .form-check-label::after {
        content: '✓';
        position: absolute;
        left: 0px;
        top: 2px;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        opacity: 0;
    }
    .form-check .form-check-label a {
        text-decoration: underline;
    }
    .form-check input:checked ~ .form-check-label::before {
        border-color: var(--primary-color);
        background-color: var(--primary-color);
    }
    .form-check input:checked ~ .form-check-label::after {
        opacity: 1;
    }
/* Forms E */

/* Buttons S */
    .btn {
        display: inline-block;
        font-family: var(--primary-fonts);
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        text-align: center;
        text-decoration: none;
        vertical-align: middle;
        cursor: pointer;
        padding: 1rem 0.75rem;
        border: 1px solid;
        border-radius: 2.5rem;
        transition: background-color 0.15s, border-color 0.15s;
    }
    .btn:disabled, .btn.disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }
    .btn-primary {
        color: #fff;
        background-color: var(--btn-primary-color);
        border-color: var(--btn-primary-color);
    }
    .btn-primary:hover, .btn-primary:focus {
        background-color: var(--btn-primary-color-hover);
        border-color: var(--btn-primary-color-hover);
    }
    .btn-secondary {
        color: var(--btn-primary-color);
        background-color: var(--btn-secondary-color);
        border-color: #fff;
    }
    .btn-secondary:hover, .btn-secondary:focus {
        color: #fff;
        background-color: var(--btn-secondary-color-hover);
        border-color: var(--btn-secondary-color-hover);
    }
    .btn-tertiary {
        color: var(--primary-color);
        background-color: var(--btn-tertiary-color);
        border-color: var(--btn-tertiary-color);
    }
    .btn-tertiary:hover, .btn-tertiary:focus {
        background-color: var(--btn-tertiary-color-hover);
        border-color: var(--btn-tertiary-color-hover);
    }

    .btn-icon-block {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
    }
/* Buttons E */

/* Dropdown S */
    .dropdown {
        position: relative;
    }
    .dropdown-toggle {
        cursor: pointer;
        user-select: none;
    }
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
        min-width: 10rem;
        padding: 0.5rem 0;
        margin: 0.125rem 0 0;
        font-size: 1rem;
        color: #212529;
        text-align: left;
        list-style: none;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid rgba(0,0,0,.15);
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
    }
    .dropdown-menu.show {
        display: block;
    }
    .dropdown-item {
        display: block;
        width: 100%;
        padding: 0.375rem 1rem;
        clear: both;
        font-weight: 400;
        color: #212529;
        text-align: inherit;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        cursor: pointer;
        transition: background 0.15s, color 0.15s;
    }
    .dropdown-item:hover, .dropdown-item:focus {
        color: #fff;
        background-color: #732924;
    }
    .dropdown-divider {
        height: 0;
        margin: 0.5rem 0;
        overflow: hidden;
        border-top: 1px solid #e9ecef;
    }
/* Dropdown E */

/* Slim Select S */
    .ss-content {
        padding: 0;
        /* z-index: 100; */
    }
    .form-group .ss-main {
        padding: 10px 15px;
        border-radius: 10px;
        border: 1px solid var(--secondary-color);
        color: var(--secondary-color);
        letter-spacing: -0.3px;
        font-weight: 500;
        display: flex;
        cursor: pointer;
    }
    .ss-main:focus,
    .form-group .ss-main:focus {
        box-shadow: none;
    }
    .form-group .ss-main.ss-open-below {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    .form-group .ss-main .ss-arrow {
        margin-left: 8px;
        width: 20px;
        aspect-ratio: 1 / 1;
    }

    .ss-content.form-control.ss-open-below {
        border: 1px solid var(--secondary-color);
        border-top-color: var(--border-color);
        border-radius: 0px 0px 10px 10px;
    }
    .ss-content.form-control .ss-search input:focus {
        box-shadow: none;
    }
    .ss-content.form-control .ss-list .ss-option.ss-highlighted, 
    .ss-content.form-control .ss-list .ss-option:not(.ss-disabled).ss-selected,
    .ss-content.form-control .ss-list .ss-option:hover {
        background: var(--primary-color);
        color: #fff;
    }
    .ss-content.form-control .ss-list .ss-option.ss-disabled {
        background-color: var(--ss-disabled-color) !important;
        display: none;
    }
    .ss-main .ss-values .ss-value {
        background-color: var(--primary-color);
    }
/* Slim Select E */

/* Modal S */
    html.is-popup-open, html.is-popup-open body {
        overflow: hidden;
    }
    .custom-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55);
        display: none;
        /* align-items: center;
        justify-content: center; */
        z-index: 999;
        padding: 50px 0px;
    }
    .custom-modal {
        background: #fff;
        border-radius: 20px;
        width: calc(100% - 30px);
        max-width: 500px;
        margin: auto;
        padding: 0px;
        box-shadow: 0px 4px 44px -7px rgba(0, 0, 0, 0.25);
        position: relative;
    }
    
    .close-modal {
        position: absolute;
        top: 35px;
        right: 20px;
        font-size: 30px;
        line-height: 1;
        color: #fff;
        cursor: pointer;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: rgba(126, 126, 126, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 2px;
        transition: 0.3s;
    }
    .close-modal:hover {
        background-color: var(--primary-color);
    }
    .modal-wrap {
        display: flex;
        flex-direction: column;
        max-height: 100%;
        /* min-height: 550px; */
    }
    .modal-wrap :is(.modal-header, .modal-footer) {
        flex: 0 0 auto;
    }
    .modal-wrap .modal-body {
        /* flex-grow: 1; */
        /* max-height: 580px; */
        flex: 1 1 auto;
        overflow-y: auto;
    }
    .modal-wrap :is(.modal-header, .modal-body, .modal-footer) {
        padding: 26px 20px;
    }
    .modal-header .title-block {
        width: calc(100% - 0px);
        padding-right: 30px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        position: relative;
    }
    .modal-header .title-block .icon {
        width: 50px;
    }
    .modal-header .title-block .title {
        width: calc(100% - 60px);
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2;
        display: block;
        color: var(--secondary-color);
    }
    .modal-header .title-block .close-modal {
        top: 0px;
        right: 0;
    }
    .modal-header .title-block::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -25px;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #732924 0%, rgba(115, 41, 36, 0) 100%);
    }
    .modal-footer .btn-secondary {
        border-color: var(--primary-color);
    }
    .modal-footer .foot-btn-sc .btn {
        height: 48px;
        padding: 10px 0.75rem;
    }
    .modal-footer .foot-btn-sc {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    @media (min-width: 767.99px) {
        .custom-modal {
            animation: modalSlideDown 0.4s ease-out;
            transform: translateY(-30px);
            opacity: 0;
            animation-fill-mode: forwards;
        }
    }
    @media (max-width: 767.98px) {
        .custom-modal-overlay {
            padding: 0;
        }
        .custom-modal {
            animation: fadeIn 0.4s ease-out;
            width: 100%;
            max-width: 100%;
            border-radius: 0;
        }
        .modal-wrap :is(.modal-header, .modal-body, .modal-footer) {
            padding: 15px 15px;
        }
        .modal-wrap .modal-header {
            height: 60px;
        }
        .modal-wrap .modal-footer {
            border-top: 1px solid var(--border-color);
        }
        .modal-header .title-block::before {
            bottom: -15px;
        }
        .modal-wrap {
            height: 100%;
        }
        .close-modal {
            width: 25px;
            height: 25px;
        }
        .modal-footer .foot-btn-sc {
            flex-direction: row-reverse;
        }
        .modal-footer .btn-sc .btn {
            padding: 12px 10px;
        }
    }

    @keyframes modalSlideDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
/* Modal E */