/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");

/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --body-font: "Geist", sans-serif;
    --heading-font: "Geist", sans-serif;
    /* ========================= Theme Color Start ============================= */
    /* Base Color */
    --base-h: 253;
    --base-s: 72%;
    --base-l: 54%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
    --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
    --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
    --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
    --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
    --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
    --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
    --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
    --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
    --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
    --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
    --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);
    /* Base Two Color */
    --base-two-h: 290;
    --base-two-s: 66%;
    --base-two-l: 45%;
    --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);
    --base-two-d-100: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.1);
    --base-two-d-200: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.2);
    --base-two-d-300: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.3);
    --base-two-d-400: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.4);
    --base-two-d-500: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.5);
    --base-two-d-600: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.6);
    --base-two-d-700: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.7);
    --base-two-d-800: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.8);
    --base-two-d-900: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.9);
    --base-two-d-1000: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 1);
    --base-two-l-100: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.1);
    --base-two-l-200: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.2);
    --base-two-l-300: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.3);
    --base-two-l-400: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.4);
    --base-two-l-500: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.5);
    --base-two-l-600: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.6);
    --base-two-l-700: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.7);
    --base-two-l-800: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.8);
    --base-two-l-900: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.9);
    --base-two-l-1000: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 1);
    /* ========================= Theme Color End ============================= */
    /* ========================= Color Variables Start =========================== */
    --white: 0 0% 100%;
    --body-color: 213 27% 84%;
    --text-color: 215 20% 65%;
    --heading-color: 0 0% 100%;
    --dark: 221 39% 11%;
    --black: 0 0% 0%;
    --border-color: 240 1% 19%;
    --section-bg: 250 9% 13%;
    --background-color: 240 10% 4%;
    --gr-color: linear-gradient(45deg, hsl(var(--base)) 0%, hsl(var(--base-two)) 50%, hsl(var(--base-l-300)) 100%);
    --gr-color-l-100: linear-gradient(45deg, hsl(var(--base)/0.1) 0%, hsl(var(--base-two)/0.1) 50%, hsl(var(--base-l-300)/0.1) 100%);
    /* ================================ Box Shadow Start =============================== */
    --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) / 0.3);
    --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) / 0.92);
    --box-shadow: 0px 2px 15px hsl(var(--black) / 0.05);
    /* ================================ Box Shadow End =============================== */
    /* ============================== Bootstrap Modifier Start ============================== */
    /* Primary Color */
    --primary-h: 238;
    --primary-s: 100%;
    --primary-l: 40%;
    --primary: var(--primary-h) var(--primary-s) var(--primary-l);
    --primary-d-100: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.1);
    --primary-d-200: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.2);
    --primary-d-300: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.3);
    --primary-d-400: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.4);
    --primary-d-500: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.5);
    --primary-l-100: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
    --primary-l-200: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
    --primary-l-300: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
    --primary-l-400: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
    --primary-l-500: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
    /* Secondary Color */
    --secondary-h: 208;
    --secondary-s: 7%;
    --secondary-l: 46%;
    --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
    --secondary-d-100: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.1);
    --secondary-d-200: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.2);
    --secondary-d-300: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.3);
    --secondary-d-400: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.4);
    --secondary-d-500: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.5);
    --secondary-l-100: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
    --secondary-l-200: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
    --secondary-l-300: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
    --secondary-l-400: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
    --secondary-l-500: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
    /* Success Color */
    --success-h: 144;
    --success-s: 100%;
    --success-l: 39%;
    --success: var(--success-h) var(--success-s) var(--success-l);
    --success-d-100: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.1);
    --success-d-200: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.2);
    --success-d-300: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.3);
    --success-d-400: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.4);
    --success-d-500: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.5);
    --success-l-100: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.1);
    --success-l-200: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.2);
    --success-l-300: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.3);
    --success-l-400: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.4);
    --success-l-500: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.5);
    /* Danger Color */
    --danger-h: 0;
    --danger-s: 100%;
    --danger-l: 63%;
    --danger: var(--danger-h) var(--danger-s) var(--danger-l);
    --danger-d-100: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.1);
    --danger-d-200: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.2);
    --danger-d-300: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.3);
    --danger-d-400: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.4);
    --danger-d-500: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.5);
    --danger-l-100: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.1);
    --danger-l-200: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.2);
    --danger-l-300: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.3);
    --danger-l-400: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.4);
    --danger-l-500: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.5);
    /* Warning Color */
    --warning-h: 40;
    --warning-s: 100%;
    --warning-l: 60%;
    --warning: var(--warning-h) var(--warning-s) var(--warning-l);
    --warning-d-100: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.1);
    --warning-d-200: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.2);
    --warning-d-300: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.3);
    --warning-d-400: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.4);
    --warning-d-500: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.5);
    --warning-l-100: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
    --warning-l-200: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
    --warning-l-300: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
    --warning-l-400: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
    --warning-l-500: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
    /* Info Color */
    --info-h: 196;
    --info-s: 77%;
    --info-l: 55%;
    --info: var(--info-h) var(--info-s) var(--info-l);
    --info-d-100: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.1);
    --info-d-200: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.2);
    --info-d-300: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.3);
    --info-d-400: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.4);
    --info-d-500: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.5);
    --info-l-100: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.1);
    --info-l-200: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.2);
    --info-l-300: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.3);
    --info-l-400: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.4);
    --info-l-500: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.5);
    /* ============================== Bootstrap Modifier End ============================== */
}

/* ========================= Css Variables End =========================== */
/* Fully Fit image Css */
.fit-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ============================= Display Flex Css Start ============================= */
.flex-wrap,
.form--radio,
.form--check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ============================= Display Flex Css End ============================= */
/* ===================== Font Size For responsive devices Start =================== */
.fs-10 {
    font-size: 0.625rem;
}

.fs-11 {
    font-size: 0.6875rem;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-13 {
    font-size: 0.8125rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-15 {
    font-size: 0.9375rem;
}

.fs-16 {
    font-size: 1rem;
}

@media screen and (max-width: 1199px) {
    .fs-16 {
        font-size: 0.9375rem;
    }
}

.fs-17 {
    font-size: 1.0625rem;
}

@media screen and (max-width: 1199px) {
    .fs-17 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-17 {
        font-size: 0.9375rem;
    }
}

.fs-18 {
    font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
    .fs-18 {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-18 {
        font-size: 1rem;
    }
}

.fs-20 {
    font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
    .fs-20 {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-20 {
        font-size: 1.0625rem;
    }
}

/* ===================== Font Size For responsive devices End =================== */
/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: hsl(var(--background-color));
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: hsl(var(--body-color));
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 4rem;
}

@media screen and (max-width: 1399px) {
    h1 {
        font-size: 3.375rem;
    }
}

@media screen and (max-width: 1199px) {
    h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.625rem;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 2rem;
    }
}

h2 {
    font-size: 2.5rem;
}

@media screen and (max-width: 1399px) {
    h2 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 1199px) {
    h2 {
        font-size: 2.125rem;
    }
}

@media screen and (max-width: 991px) {
    h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 575px) {
    h2 {
        font-size: 1.5rem;
    }
}

h3 {
    font-size: 2.25rem;
}

@media screen and (max-width: 1399px) {
    h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1199px) {
    h3 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 991px) {
    h3 {
        font-size: 1.625rem;
    }
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 575px) {
    h3 {
        font-size: 1.25rem;
    }
}

h4 {
    font-size: 1.5rem;
}

@media screen and (max-width: 1399px) {
    h4 {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 1199px) {
    h4 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 991px) {
    h4 {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 575px) {
    h4 {
        font-size: 1.0625rem;
    }
}

h5 {
    font-size: 1.25rem;
}

@media screen and (max-width: 1199px) {
    h5 {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    h5 {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    h5 {
        font-size: 1rem;
    }
}

h6 {
    font-size: 1.125rem;
}

@media screen and (max-width: 1199px) {
    h6 {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 991px) {
    h6 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    h6 {
        font-size: 0.875rem;
    }
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: inherit;
}

a {
    display: inline-block;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    text-decoration: none;
    color: hsl(var(--info));
}

a:hover {
    color: hsl(var(--base));
}

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-select:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dashboard-body h1,
.dashboard-body h2,
.dashboard-body h3,
.dashboard-body h4,
.dashboard-body h5,
.dashboard-body h6 {
    font-family: var(--body-font);
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
    .col-xsm-6 {
        width: 50%;
    }
}

/* Section Background */
.section-bg {
    background-color: hsl(var(--section-bg));
}

.text-muted {
    color: hsl(var(--white)/0.6) !important;
}

/* Bg Image Css */
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Hide Scroll bar Css For Custom Modal */
.scroll-hide {
    position: absolute;
    overflow-y: hidden;
    padding-right: 17px;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .scroll-hide {
        padding-right: 0;
    }
}

.scroll-hide-sm {
    position: absolute;
    overflow-y: hidden;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
}

/* Overlay Start */
.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.body-overlay.show {
    visibility: visible;
    opacity: 1;
}

.gradient-text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--base-d-200))), to(hsl(var(--base))));
    background-image: linear-gradient(180deg, hsl(var(--base-d-200)) 0%, hsl(var(--base)) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.gradient-text::-moz-selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

.gradient-text::selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.sidebar-overlay.show {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}

/* Overlay End */
/* ================================= Custom Classes Css End =========================== */
/* ====================== Section Heading ==================== */
.section-heading {
    --margin-top: 12px;
    --font-size: 18px;
    text-align: center;
    position: relative;
    margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
    .section-heading {
        --margin-top: 12px;
        --font-size: 16px;
        width: 100%;
    }
}

.section-heading__desc {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--font-size);
    margin-top: var(--margin-top);
}

.section-heading.style-left {
    text-align: left;
}

.section-heading.style-left .section-heading__desc {
    margin-left: 0;
}

body:not(:has(.banner-section)) main {
    padding-top: var(--header-h);
}

body:not(:has(.banner-section)) .header {
    background-color: hsl(var(--white)/0.05);
    border-bottom: 1px solid hsl(var(--white)/0.05);
}

/* ====================== Section Heading End ==================== */
/* ================================= Background Color Css Start =========================== */
.bg--base {
    background-color: hsl(var(--base)) !important;
}

.bg--primary {
    background-color: hsl(var(--primary)) !important;
}

.bg--secondary {
    background-color: hsl(var(--secondary)) !important;
}

.bg--success {
    background-color: hsl(var(--success)) !important;
}

.bg--danger {
    background-color: hsl(var(--danger)) !important;
}

.bg--warning {
    background-color: hsl(var(--warning)) !important;
}

.bg--info {
    background-color: hsl(var(--info)) !important;
}

.bg--gr {
    background: var(--gr-color);
}

/* ================================= Background Color Css End =========================== */
/* ================================= Color Css Start =========================== */
.text--base {
    color: hsl(var(--base)) !important;
}

.text--color {
    color: hsl(var(--body-color)) !important;
}

.text--primary {
    color: hsl(var(--primary)) !important;
}

.text--secondary {
    color: hsl(var(--secondary)) !important;
}

.text--success {
    color: hsl(var(--success)) !important;
}

.text--danger {
    color: hsl(var(--danger)) !important;
}

.text--warning {
    color: hsl(var(--warning)) !important;
}

.text--info {
    color: hsl(var(--info)) !important;
}

.text--dark {
    color: hsl(var(--dark)) !important;
}

/* ================================= Color Css End =========================== */
.py-120 {
    padding-block: 120px;
}

@media screen and (max-width: 991px) {
    .py-120 {
        padding-block: 80px;
    }
}

@media screen and (max-width: 424px) {
    .py-120 {
        padding-block: 60px;
    }
}

.pt-120 {
    padding-top: 120px;
}

@media screen and (max-width: 991px) {
    .pt-120 {
        padding-top: 80px;
    }
}

@media screen and (max-width: 424px) {
    .pt-120 {
        padding-top: 60px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

@media screen and (max-width: 991px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 424px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

.py-60 {
    padding-block: 60px;
}

@media screen and (max-width: 991px) {
    .py-60 {
        padding-block: 40px;
    }
}

@media screen and (max-width: 424px) {
    .py-60 {
        padding-block: 30px;
    }
}

.pt-60 {
    padding-top: 60px;
}

@media screen and (max-width: 991px) {
    .pt-60 {
        padding-top: 40px;
    }
}

@media screen and (max-width: 424px) {
    .pt-60 {
        padding-top: 30px;
    }
}

.pb-60 {
    padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
    .pb-60 {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 424px) {
    .pb-60 {
        padding-bottom: 30px;
    }
}

.my-120 {
    margin-block: 120px;
}

@media screen and (max-width: 991px) {
    .my-120 {
        margin-block: 80px;
    }
}

@media screen and (max-width: 424px) {
    .my-120 {
        margin-block: 60px;
    }
}

.mt-120 {
    margin-top: 120px;
}

@media screen and (max-width: 991px) {
    .mt-120 {
        margin-top: 80px;
    }
}

@media screen and (max-width: 424px) {
    .mt-120 {
        margin-top: 60px;
    }
}

.mb-120 {
    margin-bottom: 120px;
}

@media screen and (max-width: 991px) {
    .mb-120 {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 424px) {
    .mb-120 {
        margin-bottom: 60px;
    }
}

.my-60 {
    margin-block: 60px;
}

@media screen and (max-width: 991px) {
    .my-60 {
        margin-block: 40px;
    }
}

@media screen and (max-width: 424px) {
    .my-60 {
        margin-block: 30px;
    }
}

.mt-60 {
    margin-top: 60px;
}

@media screen and (max-width: 991px) {
    .mt-60 {
        margin-top: 40px;
    }
}

@media screen and (max-width: 424px) {
    .mt-60 {
        margin-top: 30px;
    }
}

.mb-60 {
    margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
    .mb-60 {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 424px) {
    .mb-60 {
        margin-bottom: 30px;
    }
}

/* ================================= Border Color Css Start =========================== */
.border--base {
    border-color: hsl(var(--base)) !important;
}

.border--primary {
    border-color: hsl(var(--primary)) !important;
}

.border--secondary {
    border-color: hsl(var(--secondary)) !important;
}

.border--success {
    border-color: hsl(var(--success)) !important;
}

.border--danger {
    border-color: hsl(var(--danger)) !important;
}

.border--warning {
    border-color: hsl(var(--warning)) !important;
}

.border--info {
    border-color: hsl(var(--info)) !important;
}

/* ================================= Border Color Css End =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion .accordion-item {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid hsl(var(--border-color)/0.4);
    background-color: hsl(var(--background-color));
    color: hsl(var(--body-color));
}

.custom--accordion .accordion-item:not(:last-child) {
    margin-bottom: 8px;
}

.custom--accordion .accordion-header {
    line-height: 1.2;
}

.custom--accordion .accordion-body {
    padding: 20px;
    background-color: hsl(var(--background-color));
}

@media screen and (max-width: 1199px) {
    .custom--accordion .accordion-body {
        padding: 16px;
    }
}

.custom--accordion .accordion-body:has(.track-data-list) {
    padding: 0;
}

.custom--accordion .accordion-button {
    background: hsl(var(--background-color));
    color: var(--heading-color);
    font-size: 1.25rem;
    padding: 20px;
    padding-right: 36px;
    font-weight: 700;
    font-family: var(--body-font);
}

@media screen and (max-width: 1399px) {
    .custom--accordion .accordion-button {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 1199px) {
    .custom--accordion .accordion-button {
        padding: 16px;
        padding-right: 36px;
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-button {
        font-size: 1rem;
        line-height: 1.4;
    }
}

.custom--accordion .accordion-button::after {
    background-image: none;
}

.custom--accordion .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed) {
    background-color: hsl(var(--section-bg)) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
}

.custom--accordion .accordion-button[aria-expanded=true]::after,
.custom--accordion .accordion-button[aria-expanded=false]::after {
    font-family: "font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    height: unset;
    width: unset;
    content: "\f078";
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
    top: 50% !important;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    font-size: 1rem;
    color: hsl(var(--heading-color));
}

.custom--accordion .accordion-button[aria-expanded=false]::after {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
    color: hsl(var(--heading-color)/0.5);
}

/* ================================= Accordion Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: none;
    background-color: none;
    border-color: none;
}

.pill {
    border-radius: 32px !important;
}

.btn {
    color: hsl(var(--white)) !important;
    font-weight: 700;
    padding: 15px 26px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    display: inline-block !important;
    font-size: 0.9375rem;
    line-height: 1.3;
}

@media screen and (max-width: 767px) {
    .btn {
        padding: 11px 20px;
    }
}

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

.btn:active {
    top: 1px;
}

.btn--lg {
    padding: 19px 30px;
    font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
    .btn--lg {
        padding: 17px 20px;
        font-size: 1rem;
    }
}

.btn--md {
    padding: 10px 22px;
}

@media screen and (max-width: 767px) {
    .btn--md {
        padding: 10px 16px;
        font-size: 1rem;
    }
}

.btn--sm {
    padding: 9px 16px;
    font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
    .btn--sm {
        padding: 6px 12px;
    }
}

.btn--white {
    background: hsl(var(--white));
    color: hsl(var(--dark)) !important;
}

.btn--white:has(.icon) {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.btn--white:has(.icon) .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.btn--white:hover,
.btn--white:focus,
.btn--white:focus-visible {
    opacity: 0.9;
    background: hsl(var(--white)) !important;
}

.btn--primary {
    background-color: hsl(var(--primary)) !important;
    border-color: hsl(var(--primary)) !important;
}

.btn--primary:hover,
.btn--primary:focus,
.btn--primary:focus-visible {
    background-color: hsl(var(--primary-d-200)) !important;
    border: 1px solid hsl(var(--primary-d-200)) !important;
}

.btn-outline--primary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--primary)) !important;
    color: hsl(var(--primary)) !important;
}

.btn-outline--primary:hover,
.btn-outline--primary:focus,
.btn-outline--primary:focus-visible {
    background-color: hsl(var(--primary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base {
    background-color: hsl(var(--base)) !important;
    border-color: hsl(var(--base)) !important;
}

.btn--base:hover,
.btn--base:focus,
.btn--base:focus-visible {
    background-color: hsl(var(--base-d-200)) !important;
    border: 1px solid hsl(var(--base-d-200)) !important;
}

.btn-outline--base {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base)) !important;
    color: hsl(var(--base)) !important;
}

.btn-outline--base.active,
.btn-outline--base:hover,
.btn-outline--base:focus,
.btn-outline--base:focus-visible {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base-two {
    background-color: hsl(var(--base-two)) !important;
    border-color: hsl(var(--base-two)) !important;
}

.btn--base-two:hover,
.btn--base-two:focus,
.btn--base-two:focus-visible {
    background-color: hsl(var(--base-two-d-200)) !important;
    border: 1px solid hsl(var(--base-two-d-200)) !important;
}

.btn-outline--base-two {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base-two)) !important;
    color: hsl(var(--base-two)) !important;
}

.btn-outline--base-two.active,
.btn-outline--base-two:hover,
.btn-outline--base-two:focus,
.btn-outline--base-two:focus-visible {
    background-color: hsl(var(--base-two)) !important;
    color: hsl(var(--white)) !important;
}

.btn--secondary {
    background-color: hsl(var(--secondary)) !important;
    border-color: hsl(var(--secondary)) !important;
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:focus-visible {
    background-color: hsl(var(--secondary-d-200)) !important;
    border: 1px solid hsl(var(--secondary-d-200)) !important;
}

.btn-outline--secondary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--secondary)) !important;
    color: hsl(var(--secondary)) !important;
}

.btn-outline--secondary.active,
.btn-outline--secondary:hover,
.btn-outline--secondary:focus,
.btn-outline--secondary:focus-visible {
    background-color: hsl(var(--secondary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--danger {
    background-color: hsl(var(--danger)) !important;
    border-color: hsl(var(--danger)) !important;
}

.btn--danger:hover,
.btn--danger:focus,
.btn--danger:focus-visible {
    background-color: hsl(var(--danger-d-200)) !important;
    border: 1px solid hsl(var(--danger-d-200)) !important;
}

.btn-outline--danger {
    background-color: transparent !important;
    border: 1px solid hsl(var(--danger)) !important;
    color: hsl(var(--danger)) !important;
}

.btn-outline--danger.active,
.btn-outline--danger:hover,
.btn-outline--danger:focus,
.btn-outline--danger:focus-visible {
    background-color: hsl(var(--danger)) !important;
    color: hsl(var(--white)) !important;
}

.btn--warning {
    background-color: hsl(var(--warning)) !important;
    border-color: hsl(var(--warning)) !important;
}

.btn--warning:hover,
.btn--warning:focus,
.btn--warning:focus-visible {
    background-color: hsl(var(--warning-d-200)) !important;
    border: 1px solid hsl(var(--warning-d-200)) !important;
}

.btn-outline--warning {
    background-color: transparent !important;
    border: 1px solid hsl(var(--warning)) !important;
    color: hsl(var(--warning)) !important;
}

.btn-outline--warning.active,
.btn-outline--warning:hover,
.btn-outline--warning:focus,
.btn-outline--warning:focus-visible {
    background-color: hsl(var(--warning)) !important;
    color: hsl(var(--white)) !important;
}

.btn--info {
    background-color: hsl(var(--info)) !important;
    border-color: hsl(var(--info)) !important;
}

.btn--info:hover,
.btn--info:focus,
.btn--info:focus-visible {
    background-color: hsl(var(--info-d-200)) !important;
    border: 1px solid hsl(var(--info-d-200)) !important;
}

.btn-outline--info {
    background-color: transparent !important;
    border: 1px solid hsl(var(--info)) !important;
    color: hsl(var(--info)) !important;
}

.btn-outline--info.active,
.btn-outline--info:hover,
.btn-outline--info:focus,
.btn-outline--info:focus-visible {
    background-color: hsl(var(--info)) !important;
    color: hsl(var(--white)) !important;
}

.btn--dark {
    background-color: hsl(var(--dark)) !important;
    border-color: hsl(var(--dark)) !important;
}

.btn--dark:hover,
.btn--dark:focus,
.btn--dark:focus-visible {
    background-color: hsl(var(--dark-d-200)) !important;
    border: 1px solid hsl(var(--dark-d-200)) !important;
}

.btn-outline--dark {
    background-color: transparent !important;
    border: 1px solid hsl(var(--dark)) !important;
    color: hsl(var(--dark)) !important;
}

.btn-outline--dark.active,
.btn-outline--dark:hover,
.btn-outline--dark:focus,
.btn-outline--dark:focus-visible {
    background-color: hsl(var(--dark)) !important;
    color: hsl(var(--white)) !important;
}

.btn--success {
    background-color: hsl(var(--success)) !important;
    border-color: hsl(var(--success)) !important;
}

.btn--success:hover,
.btn--success:focus,
.btn--success:focus-visible {
    background-color: hsl(var(--success-d-200)) !important;
    border: 1px solid hsl(var(--success-d-200)) !important;
}

.btn-outline--success {
    background-color: transparent !important;
    border: 1px solid hsl(var(--success)) !important;
    color: hsl(var(--success)) !important;
}

.btn-outline--success.active,
.btn-outline--success:hover,
.btn-outline--success:focus,
.btn-outline--success:focus-visible {
    background-color: hsl(var(--success)) !important;
    color: hsl(var(--white)) !important;
}

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.custom--card {
    border-radius: 20px;
    background-color: hsl(var(--section-bg));
    border: 0;
    --inner-p: 24px;
    padding: var(--inner-p);
}

@media screen and (max-width: 575px) {
    .custom--card {
        --inner-p: 16px;
    }
}

.custom--card .card-header {
    background-color: hsl(var(--section-bg));
    padding: 0;
    border: 0;
    padding-bottom: var(--inner-p);
}

.custom--card .card-title {
    margin-bottom: 0;
}

.custom--card .card-body {
    background-color: hsl(var(--section-bg));
    padding: 0;
}

.custom--card .card-footer {
    background-color: transparent;
    border: 0;
    padding: 0;
    padding-top: var(--inner-p);
}

/* ================================= Card Css End =========================== */
/* ================================= Form Css Start =========================== */
/* Form Label */
.form--label {
    margin-bottom: 6px;
    color: hsl(var(--heading-color));
    font-weight: 500;
    line-height: 140%;
    font-size: 14px;
}

.form-group {
    margin-bottom: 1rem;
}

/* Form Select */
.select {
    color: hsl(var(--black)/0.6) !important;
}

.select:focus {
    border-color: hsl(var(--base));
    color: hsl(var(--black)) !important;
}

.select option {
    background-color: hsl(var(--black));
    color: hsl(var(--white));
}

/* Form Select End */
/* Form Control Start */
.form--control {
    border-radius: 8px;
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;
    border: 1px solid hsl(var(--border-color));
    color: hsl(var(--white)) !important;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .form--control {
        padding: 11px 20px;
    }
}

.form--control.lg-style {
    padding: 19px 20px;
}

@media screen and (max-width: 767px) {
    .form--control.lg-style {
        padding: 15px 20px;
    }
}

.form--control {
    --file-line-height: 46px;
}

.form--control.md-style {
    padding: 11px 20px;
    --file-line-height: 46px;
}

@media screen and (max-width: 767px) {
    .form--control.md-style {
        padding: 8px 16px;
    }
}

.form--control.sm-style {
    padding: 9px 16px;
    font-size: 0.875rem;
    --file-line-height: 40px;
    --file-margin-left: 6px;
}

@media screen and (max-width: 767px) {
    .form--control.sm-style {
        padding: 7px 16px;
        --file-line-height: 35px;
    }
}

.form--control::-webkit-input-placeholder {
    color: hsl(var(--body-color));
}

.form--control::-moz-placeholder {
    color: hsl(var(--body-color));
}

.form--control:-ms-input-placeholder {
    color: hsl(var(--body-color));
}

.form--control::-ms-input-placeholder {
    color: hsl(var(--body-color));
}

.form--control::placeholder {
    color: hsl(var(--body-color));
}

.form--control:focus {
    -webkit-box-shadow: 0px 1px 2px 0px hsl(var(--base)/0.2), 0px 0px 0px 4px hsl(var(--base)/0.2) !important;
    box-shadow: 0px 1px 2px 0px hsl(var(--base)/0.2), 0px 0px 0px 4px hsl(var(--base)/0.2) !important;
    border-color: hsl(var(--base));
}

.form--control:disabled,
.form--control[readonly] {
    background-color: hsl(var(--white)/0.1) !important;
    opacity: 1;
}

.form--control[type=password] {
    color: hsl(var(--black)/0.5);
}

.form--control[type=password]:focus {
    color: hsl(var(--black));
}

.form--control[type=file] {
    line-height: var(--file-line-height);
    position: relative;
    padding: 0;
}

.form--control[type=file]::-webkit-file-upload-button {
    border: 1px solid hsl(var(--black)/0.08);
    padding: 3px;
    border-radius: 4px;
    background-color: hsl(var(--base)) !important;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: var(--file-margin-left);
    color: hsl(var(--static-white)) !important;
}

.form--control[type=file]::file-selector-button {
    border: 1px solid hsl(var(--black)/0.08);
    padding: 3px;
    border-radius: 4px;
    background-color: hsl(var(--base)) !important;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: var(--file-margin-left);
    color: hsl(var(--static-white)) !important;
}

@media screen and (max-width: 767px) {
    .form--control[type=file]::-webkit-file-upload-button {
        padding: 2px;
        font-size: 0.875rem;
        line-height: 20px;
    }

    .form--control[type=file]::file-selector-button {
        padding: 2px;
        font-size: 0.875rem;
        line-height: 20px;
    }
}

.form--control[type=file]::-webkit-file-upload-button:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--black));
}

.form--control[type=file]::file-selector-button:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--black));
}

/* Form Control End */
textarea.form--control {
    height: 150px;
}

@media screen and (max-width: 1199px) {
    textarea.form--control {
        height: 120px;
    }
}

@media screen and (max-width: 991px) {
    textarea.form--control {
        height: 100px;
    }
}

@media screen and (max-width: 767px) {
    textarea.form--control {
        height: 80px;
    }
}

/* Autofill Css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: hsl(var(--white)) !important;
    caret-color: hsl(var(--white));
}

/* Autofill Css End */
/* input group */
.input--group {
    position: relative;
}

/* Show Hide Password */
input#your-password,
input#confirm-password {
    padding-right: 50px;
}

.password-show-hide {
    position: absolute;
    right: 20px;
    z-index: 5;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: hsl(var(--white)/0.4);
}

/* --------------- Number Arrow None --------------------- */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

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

/* Custom Checkbox Design */
.form--check a {
    display: inline;
}

.form--check .form-check-input {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    box-shadow: none !important;
    border: 0;
    position: relative;
    border-radius: 4px;
    width: 16px;
    height: 16px;
    border: 1px solid hsl(var(--white)/0.2);
    cursor: pointer;
}

.form--check .form-check-input:checked {
    background-color: hsl(var(--base)) !important;
    border-color: hsl(var(--base)) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form--check .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.form--check .form-check-input:checked::before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: hsl(var(--white));
    font-size: 0.6875rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.form--check .form-check-label {
    font-weight: 600;
    width: calc(100% - 16px);
    padding-left: 12px;
    cursor: pointer;
    font-size: 0.875rem;
}

@media screen and (max-width: 424px) {
    .form--check label {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 424px) {
    .form--check a {
        font-size: 0.9375rem;
    }
}

/* Custom Radio Design */
.form--radio .form-check-input {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid hsl(var(--black)/0.2);
    position: relative;
    background-color: transparent;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.form--radio .form-check-input:active {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}

.form--radio .form-check-input:checked {
    background-color: transparent;
    border-color: hsl(var(--base));
}

.form--radio .form-check-input:checked[type=radio] {
    background-image: none;
}

.form--radio .form-check-input:checked::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background-color: hsl(var(--base));
    border-radius: 50%;
    z-index: 999;
}

.form--radio .form-check-label {
    font-weight: 600;
    width: calc(100% - 16px);
    padding-left: 12px;
    cursor: pointer;
    font-size: 0.875rem;
}

/*  Custom Switch Design */
.form--switch .form-check-input {
    border-radius: 3px;
    background-image: none;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background-color: hsl(var(--white)/0.2) !important;
    margin-left: 0;
    margin-bottom: 5px;
    border-radius: 40px;
    width: 48px;
    height: 24px;
    cursor: pointer;
}

.form--switch .form-check-input:focus {
    border-radius: 40px;
    background-image: none;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.form--switch .form-check-input::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: hsl(var(--white));
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 2px;
    left: 2px;
    border-radius: 50%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.form--switch .form-check-input:checked {
    background-color: hsl(var(--base)) !important;
}

.form--switch .form-check-input:checked::before {
    left: calc(100% - 24px);
    background-color: hsl(var(--white)) !important;
}

.form--switch .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.form--switch .form-check-label {
    width: calc(100% - 14px);
    padding-left: 5px;
    cursor: pointer;
}

/*  Custom Switch End Design */
/* ================================= Form Css End =========================== */
/* --======================Custom Input group Start ======================*/
.input-group {
    border-radius: 8px;
    border: 1px solid hsl(var(--border-color));
    overflow: hidden;
}

.input-group .form--control {
    border-width: 0px !important;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.input-group-text {
    border-width: 0px;
    background-color: transparent;
    position: relative;
    color: hsl(var(--white));
}

.input-group:focus-within {
    border: 1px solid hsl(var(--base));
    -webkit-box-shadow: 0px 1px 2px 0px hsl(var(--base)/0.2), 0px 0px 0px 4px hsl(var(--base)/0.2) !important;
    box-shadow: 0px 1px 2px 0px hsl(var(--base)/0.2), 0px 0px 0px 4px hsl(var(--base)/0.2) !important;
    border-color: hsl(var(--base));
}

.input-group .form--control[readonly] {
    background: hsl(var(--black)/0.3) !important;
}

.input-group .form--control[readonly]:focus {
    border-color: hsl(var(--black)/0.3);
}

.input-group .form--control:focus {
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    background-color: transparent !important;
}

.input-group:has(.form--control[readonly]) {
    background: hsl(var(--black)/0.3) !important;
}

.input-group:has(.form--control[readonly]):focus-within {
    border-color: hsl(var(--black)/0.4) !important;
}

/* --======================Custom Input group End ======================*/
/* ================================= Modal Css Start =========================== */
.custom--modal .select2+.select2-container {
    background: hsl(var(--section-bg));
    border: 0;
}

.custom--modal .modal-header {
    border-bottom: 1px solid hsl(var(--border-color)/0.5);
    padding: 16px;
}

.custom--modal .input-group {
    background-color: hsl(var(--section-bg)) !important;
}

.custom--modal .input-group .form--control {
    background-color: transparent !important;
}

.custom--modal .modal-content {
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--section-bg));
    border-radius: 20px;
    overflow: hidden;
    border: 0;
}

.custom--modal .modal-body {
    padding: 16px;
}

.custom--modal .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px;
    border-top: 1px solid hsl(var(--border-color)/0.5);
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.modal .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out !important;
    transition: -webkit-transform 0.3s ease-out !important;
    transition: transform 0.3s ease-out !important;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out !important;
    -webkit-transform: scale(0.9) !important;
    transform: scale(0.9) !important;
}

.modal.show .modal-dialog {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}

.modal-dialog-scrollable .modal-content {
    min-height: 500px;
}

.custom--modal .modal-title {
    letter-spacing: 1px;
}



.custom--modal .btn--close.btn--secondary {
    border-color: hsl(var(--secondary-d-400));
    background-color: hsl(var(--secondary-d-400));
}

.custom--modal .btn--close.btn--secondary:hover,
.custom--modal .btn--close.btn--secondary:focus,
.custom--modal .btn--close.btn--secondary:focus-visible {
    border-color: hsl(var(--secondary)) !important;
    background-color: hsl(var(--secondary)) !important;
}


.btn--close {
    --size: 24px;
    width: var(--size);
    height: var(--size);
    padding: 0px !important;
    background: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn--close::after {
    content: "\f00d";
    font-size: calc(var(--size) * 0.5);
    font-family: "Line Awesome Free";
    font-weight: 900;
}

.btn--close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn--close.btn--sm {
    --size: 40px;
}

.btn--close.btn--lg {
    --size: 56px;
}

@media screen and (max-width: 575px) {
    .btn--close.btn--lg {
        --size: 50px;
    }
}

.btn--close.btn--xl {
    --size: 64px;
}

@media screen and (max-width: 575px) {
    .btn--close.btn--xl {
        --size: 58px;
    }
}



.qr-modal .modal-dialog {
    max-width: 540px;
}

.qr-modal-thumb {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    background-color: hsl(var(--section-bg));
    border-radius: 20px;
}

@media screen and (max-width: 767px) {
    .qr-modal-thumb {
        max-width: 300px;
    }
}

@media screen and (max-width: 575px) {
    .qr-modal-thumb {
        max-width: 280px;
    }
}

@media screen and (max-width: 424px) {
    .qr-modal-thumb {
        max-width: 220px;
    }
}

.qr-modal-note {
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
}

.qr-modal-form .title {
    color: hsl(var(--body-color));
    margin-bottom: 8px;
}

.qr-modal-form .number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}

.qr-modal-form span {
    text-align: center;
    width: 100%;
    border: 1px solid hsl(var(--border-color));
    height: 50px;
    border-radius: 4px;
    display: grid;
    place-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(var(--dark));
}

@media screen and (max-width: 575px) {
    .qr-modal-form span {
        height: 36px;
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 424px) {
    .qr-modal-form span {
        font-size: 1rem;
    }
}

.qr-modal .modal-footer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.qr-modal .modal-footer .btn {
    background-color: hsl(var(--base)/0.05) !important;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-inline: 16px;
}

@media screen and (max-width: 575px) {
    .qr-modal .modal-footer .btn {
        width: 100%;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}

.qr-modal .modal-footer .btn:hover {
    background-color: hsl(var(--base)) !important;
}

/* ================================= Modal Css End =========================== */


/* ================================= Pagination Css Start =========================== */
.pagination-wrapper {
    margin-top: 32px;
}

.pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

.pagination .page-item.disabled .page-link {
    background-color: hsl(var(--section-bg));
    color: hsl(var(--body-color));
    border-color: hsl(var(--section-bg));
}

.pagination .page-item .page-link {
    --size: 40px;
    border: 0;
    margin: 0 5px;
    border-radius: 8px;
    height: var(--size);
    width: var(--size);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: hsl(var(--white) / .1);
    color: hsl(var(--white));
    font-weight: 500;
    padding: 0;
    font-size: 0.875rem;
}

@media screen and (max-width: 1199px) {
    .pagination .page-item .page-link {
        --size: 32px;
    }
}

.pagination .page-item .page-link:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.pagination .page-item .page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ================================= Pagination Css End =========================== */

/* ================================= Table Css Start =========================== */
.customer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
}

@media screen and (max-width: 575px) {
    .customer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        text-align: right;
    }
}

.customer__thumb {
    --size: 32px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.customer__name {
    font-weight: 600;
    color: hsl(var(--heading-color));
}

.table {
    margin: 0;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0px 0px;
    border-radius: 12px;
    overflow: hidden;
}

.table thead tr th {
    background-color: #404042;
    text-align: left;
    padding: 12px 24px;
    color: hsl(var(--body-color));
    font-weight: 700;
    border-bottom: 0;
    max-width: 220px;
    font-size: 0.875rem;
    border: 0;
}

.table thead tr th:not(:first-child) {
    border-left: 0;
}

.table thead tr th:first-child {
    text-align: left;
}

.table thead tr th:last-child {
    text-align: right;
}

.table tbody {
    border: 0 !important;
    background-color: hsl(var(--section-bg)/5);
}

.table tbody tr:nth-child(even) {
    background-color: hsl(var(--white)/0.03);
}

.table tbody tr:last-child {
    border-bottom: 0;
}

.table tbody tr:last-child td {
    border-bottom: 0;
}

.table tbody tr:last-child td:first-child {
    border-radius: 0px 0 0 6px;
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0px 6px 0;
}

.table tbody tr:last-child td:last-child {
    border-bottom: 0 !important;
}

.table tbody tr td {
    text-align: left;
    vertical-align: middle;
    padding: 14px 16px;
    border-width: 1px;
    border: 0;
    color: hsl(var(--body-color));
    max-width: 220px;
    font-size: 0.875rem;
    border-bottom: 1px solid hsl(var(--white)/0.1);
    background-color: transparent;
}

.table tbody tr td::before {
    content: attr(data-label);
    color: hsl(var(--heading-color));
    font-weight: 600;
    font-size: 0.875rem;
    display: none;
    width: 45% !important;
    text-align: left;
}

.table tbody tr td:first-child {
    text-align: left;
}

.table tbody tr td:last-child {
    text-align: right;
}

@media screen and (max-width: 1399px) {
    .table-responsive--md tr td {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 991px) {
    .table-responsive--md thead {
        display: none;
    }

    .table-responsive--md tbody .form--check {
        display: none;
    }

    .table-responsive--md tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--md tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--md tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--md tbody tr {
        display: block;
    }

    .table-responsive--md tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--white) / .1);
    }

    .table-responsive--md tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--white)/0.1);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--md tbody tr td:last-child {
        border: none;
    }

    .table-responsive--md tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--md tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 1499px) {
    .table-responsive--lg tr td {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 1199px) {
    .table-responsive--lg thead {
        display: none;
    }

    .table-responsive--lg tbody .form--check {
        display: none;
    }

    .table-responsive--lg tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--lg tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--lg tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--lg tbody tr {
        display: block;
    }

    .table-responsive--lg tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--white) / .1);
    }

    .table-responsive--lg tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--white)/0.1);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--lg tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--lg tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 1399px) {
    .table-responsive--xl tr td {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 1399px) {
    .table-responsive--xl thead {
        display: none;
    }

    .table-responsive--xl tbody .form--check {
        display: none;
    }

    .table-responsive--xl tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--xl tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--xl tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--xl tbody tr {
        display: block;
    }

    .table-responsive--xl tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--white) / .1);
    }

    .table-responsive--xl tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--white)/0.1);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--xl tbody tr td:last-child {
        border: none;
    }

    .table-responsive--xl tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--xl tbody tr td::before {
        display: block;
    }
}

@media (max-width: 1599px) {
    .table-responsive--xxl thead {
        display: none;
    }

    .table-responsive--xxl tbody .form--check {
        display: none;
    }

    .table-responsive--xxl tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--xxl tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--xxl tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--xxl tbody tr {
        display: block;
    }

    .table-responsive--xxl tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--white) / .1);
    }

    .table-responsive--xxl tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--white)/0.1);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--xxl tbody tr td:last-child {
        border: none;
    }

    .table-responsive--xxl tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--xxl tbody tr td::before {
        display: block;
    }
}

/* ================================= Table Css End =========================== */
.table tbody tr td:has(.empty-message) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.table tbody tr td:has(.empty-message)::before {
    display: none;
}

.empty-message {
    text-align: center;
    min-height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.empty-message-icon {
    max-width: 150px;
    width: 100%;
}

.empty-message-text {
    color: hsl(var(--black)/0.3);
    font-weight: 500;
}

.dashboard-search-form {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.dashboard-search-form-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: hsl(var(--white));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dashboard-search-form-icon svg {
    width: 20px;
    height: 20px;
}

.dashboard-search-form .form--control {
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid hsl(var(--white)/0.1);
    background: hsl(var(--section-bg));
}

.dashboard-search-form .form--control::-webkit-input-placeholder {
    color: hsl(var(--body-color));
}

.dashboard-search-form .form--control::-moz-placeholder {
    color: hsl(var(--body-color));
}

.dashboard-search-form .form--control:-ms-input-placeholder {
    color: hsl(var(--body-color));
}

.dashboard-search-form .form--control::-ms-input-placeholder {
    color: hsl(var(--body-color));
}

.dashboard-search-form .form--control::placeholder {
    color: hsl(var(--body-color));
}

/* ================================= Tab Css Start =========================== */
.custom--tab {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 32px !important;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-bottom: 0;
    position: relative;
    gap: 6px;
}

@media screen and (max-width: 1199px) {
    .custom--tab {
        margin-bottom: 24px !important;
    }
}

.custom--tab.setting-tab {
    margin-bottom: 0 !important;
    gap: 16px;
}

@media screen and (max-width: 1199px) {
    .custom--tab.setting-tab {
        gap: 12px;
    }
}

.custom--tab.setting-tab .nav-item .nav-link {
    padding: 16px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    gap: 10px;
}

@media screen and (max-width: 1199px) {
    .custom--tab.setting-tab .nav-item .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        gap: 6px;
    }

    .custom--tab.setting-tab .nav-item .nav-link svg {
        height: 18px;
        width: 18px;
    }
}

@media screen and (max-width: 575px) {
    .custom--tab.setting-tab .nav-item .nav-link {
        padding: 12px 12px;
        font-size: 0.875rem;
    }

    .custom--tab.setting-tab .nav-item .nav-link svg {
        height: 16px;
        width: 16px;
    }
}

.custom--tab .nav-item {
    border-bottom: 0;
}

.custom--tab .nav-item .nav-link {
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
    background: hsl(var(--base)/0.15);
    border: 0;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    border-radius: 16px;
    border: 0;
    line-height: 1;
    font-size: 1.125rem;
    color: hsl(var(--base)/0.7);
}

.custom--tab .nav-item .nav-link.active {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.custom--tab .nav-item .nav-link.active:hover {
    color: hsl(var(--white));
}

.custom--tab .nav-item .nav-link:hover {
    color: hsl(var(--base));
}

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
    padding: 4px 12px;
    border-radius: 24px;
    border: 1px solid hsl(var(--badge-color));
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 120%;
    color: hsl(var(--badge-color));
    background-color: hsl(var(--badge-color)/0.1);
}

.badge--base {
    --badge-color: var(--base);
}

.badge--primary {
    --badge-color: var(--primary);
}

.badge--secondary {
    --badge-color: var(--secondary);
}

.badge--success {
    --badge-color: var(--success);
}

.badge--danger {
    --badge-color: var(--danger);
}

.badge--warning {
    --badge-color: var(--warning);
}

.badge--info {
    --badge-color: var(--info);
}

.badge--dark {
    --badge-color: var(--black);
    border: 1px solid hsl(var(--white) / .2);
    color: hsl(var(--white) / .65);
}

/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
    margin-bottom: 0;
    background-color: hsl(var(--alert-color)/0.03);
    border: 1px solid hsl(var(--alert-color)/0.2);
    font-weight: 400;
    padding: 20px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

@media screen and (max-width: 991px) {
    .alert {
        padding: 16px;
    }
}

@media screen and (max-width: 575px) {
    .alert {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.alert__icon {
    line-height: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 0.75rem;
    height: 20px;
    width: 20px;
    display: grid;
    place-content: center;
    background: hsl(var(--alert-color));
    color: hsl(var(--white));
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 3px hsl(var(--white)), 0 0 0 6px hsl(var(--alert-color)/0.5), 0 0 0 9px hsl(var(--white)), 0 0 0 12px hsl(var(--alert-color)/0.15);
    box-shadow: 0 0 0 3px hsl(var(--white)), 0 0 0 6px hsl(var(--alert-color)/0.5), 0 0 0 9px hsl(var(--white)), 0 0 0 12px hsl(var(--alert-color)/0.15);
    margin: 6px;
}

.alert__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width: 575px) {
    .alert__content {
        width: 100%;
        margin-top: 6px;
    }
}

.alert__title {
    font-size: 1rem;
    color: hsl(var(--heading-color));
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 6px;
}

.alert__desc {
    color: hsl(var(--body-color));
    display: block;
    font-size: 0.9375rem;
}

@media screen and (max-width: 424px) {
    .alert__desc {
        font-size: 0.875rem;
    }
}

.alert__link {
    position: relative;
}

.header .btn-close {
    background: transparent;
    color: hsl(var(--white));
    font-size: 1.25rem;
    opacity: 1;
}

.alert .btn-close {
    background: transparent;
    padding: 0;
    color: hsl(var(--alert-color));
    font-size: 1.25rem;
    top: 16px;
    right: 16px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media screen and (max-width: 991px) {
    .alert .btn-close {
        top: 10px;
        right: 10px;
    }
}

.alert--base {
    --alert-color: var(--base);
}

.alert--primary {
    --alert-color: var(--primary);
}

.alert--success {
    --alert-color: var(--success);
}

.alert--info {
    --alert-color: var(--info);
}

.alert--danger {
    --alert-color: var(--danger);
}

.alert--warning {
    --alert-color: var(--warning);
}

.alert--secondary {
    --alert-color: var(--secondary);
}

/* ====================================== Alert Css End =============================== */
.payment-system-list {
    --thumb-width: 80px;
    --thumb-height: 32px;
    --radio-size: 20px;
    border-radius: 5px;
    height: 100%;
}

.payment-system-list.is-scrollable {
    max-height: min(420px, 70vh);
    overflow-x: auto;
    padding-block: 4px;
}

.payment-system-list::-webkit-scrollbar {
    width: 5px;
}

.payment-system-list::-webkit-scrollbar-thumb {
    background-color: hsl(var(--base));
    border-radius: 10px;
}

.modal .table-search {
    max-width: 100%;
    background-color: hsl(var(--section-bg));
    border: 0;
}

.modal .table-search .icon {
    background-color: hsl(var(--base)/0.1);
    color: hsl(var(--base));
}

.payment-item {
    width: 100%;
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 500;
}

.payment-item:not(:last-child) {
    border-bottom: 1px solid hsl(var(--border-color));
}

.payment-item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.payment-item__check {
    width: var(--radio-size);
    height: var(--radio-size);
    border: 1px solid hsl(var(--base));
    display: inline-block;
    border-radius: 100%;
}

.payment-item__name {
    padding-left: 10px;
    width: calc(100% - var(--radio-size));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 500;
    color: hsl(var(--heading-color));
}

.payment-item__thumb {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: right;
    padding-left: 10px;
    flex-shrink: 0;
}

.payment-item__thumb img {
    max-width: var(--thumb-width);
    max-height: var(--thumb-height);
    -o-object-fit: cover;
    object-fit: cover;
}

.payment-item__thumb:has(.text) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.payment-item__btn {
    font-size: 0.875rem;
    color: hsl(var(--success));
    font-weight: 600;
}

.payment-item__check {
    border: 1px solid hsl(var(--border-color));
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
    border: 6px solid hsl(var(--base));
}

.dashboard-body:has(.payment-info) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.card:has(.payment-info) {
    overflow: hidden;
    padding: 0;
}

.card:has(.payment-info) .card-header {
    border-bottom: 1px solid hsl(var(--border-color));
}

.card:has(.payment-info) .card-header,
.card:has(.payment-info) .card-body {
    padding: 32px;
}

@media screen and (max-width: 575px) {

    .card:has(.payment-info) .card-header,
    .card:has(.payment-info) .card-body {
        padding: 16px;
    }
}

.payment-info-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16px;
}

.payment-info-top .icon {
    max-width: 60px;
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.payment-info-top .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.payment-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.25rem;
    gap: 12px;
}

@media screen and (max-width: 1599px) {
    .payment-info-item {
        font-size: 1rem;
    }
}

@media screen and (max-width: 424px) {
    .payment-info-item {
        font-size: 0.875rem;
    }
}

.payment-info-item:not(:last-child) {
    margin-bottom: 12px;
}

.payment-info-item .desc {
    font-weight: 500;
    color: hsl(var(--heading-color));
}

.payment-info-item.total {
    padding-top: 12px;
    border-top: 1px dashed hsl(var(--border-color));
}

.payment-info-item.total .desc {
    font-weight: 700;
}

.payment-balance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 24px;
    padding: 16px;
    border-radius: 12px;
    background: hsl(var(--base)/0.05);
    color: hsl(var(--base));
}

.payment-balance .title {
    font-weight: 500;
}

.payment-balance .amount {
    font-size: 1.25rem;
    font-weight: 700;
}

@media screen and (max-width: 1599px) {
    .payment-balance .amount {
        font-size: 1rem;
    }
}

@media screen and (max-width: 424px) {
    .payment-balance .amount {
        font-size: 0.875rem;
    }
}

/* ================================= preload Css Start =========================== */
.preloader {
    position: fixed;
    z-index: 999999;
    background-color: hsl(var(--black));
    width: 100%;
    height: 100%;
}

.loader-p {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader-p:before,
.loader-p:after {
    content: "";
    border: 1em solid hsl(var(--base));
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader-p:before {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes loader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/* ================================= preload Css End ===========================  */
/* ============= Header Start Here ======================= */
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand.logo img {
    max-width: 164px;
}

@media screen and (max-width: 991px) {
    .navbar-brand.logo img {
        max-width: 140px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: hsl(var(--background-color)/0.1);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    padding-block: 16px;
    border-bottom: 1px solid hsl(var(--white)/0.1);
}

.header .navbar {
    position: unset;
}

.header.fixed-header {
    position: fixed;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    top: 0px;
    padding-block: 16px;
    -webkit-animation: slide-down 0.8s;
    animation: slide-down 0.8s;
    width: 100%;
    background-color: hsl(var(--background-color)) !important;
}

@media screen and (max-width: 1199px) {
    .header .offcanvas {
        min-height: 100vh;
    }
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.navbar {
    padding: 0 !important;
}

/* ========================= Desktop Device Start ========================= */
@media (min-width: 1200px) {
    .header .nav-menu {
        padding-top: 0;
        padding-bottom: 0;
    }

    .header .nav-menu .nav-item {
        padding-right: 12px;
    }

    .header .nav-menu .nav-item:last-child {
        padding-right: 0;
    }

    .header .nav-menu .nav-item.active .nav-link {
        color: hsl(var(--white)) !important;
        background-color: hsl(var(--white)/0.18);
    }

    .header .nav-menu .nav-item:hover .nav-link {
        color: hsl(var(--white)) !important;
        background-color: hsl(var(--white)/0.18);
    }

    .header .nav-menu .nav-item:hover .header-dropdown {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1) !important;
        transform: scale(1) !important;
    }

    .header .nav-menu .nav-item .nav-link {
        color: hsl(var(--white)/0.6) !important;
        position: relative;
        cursor: pointer;
        font-size: 0.9375rem;
        padding: 6px 12px;
        font-weight: 500;
        border-radius: 6px;
    }
}

/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
@media screen and (max-width: 1199px) {
    .header {
        padding-block: 20px;
        border-bottom: 1px solid hsl(var(--black)/0.05);
    }

    .header .nav-menu .nav-item {
        text-align: left;
        display: block;
        position: relative;
        margin: 0;
    }

    .header .nav-menu .nav-item:hover .nav-link .nav-item__icon {
        -webkit-transform: rotate(0deg) !important;
        transform: rotate(0deg) !important;
    }

    .header .nav-menu .header-dropdown {
        position: static !important;
        display: none !important;
    }

    .header .nav-menu .header-dropdown.show {
        display: block !important;
    }

    .header .nav-item:first-child {
        border-bottom: none;
    }

    .header .nav-item:not(:last-child) {
        margin-bottom: 16px !important;
    }

    .header .nav-item.active .nav-link {
        color: hsl(var(--white));
    }

    .header .nav-item .nav-link {
        padding: 0 !important;
        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: 0 !important;
        color: hsl(var(--white)/0.75);
        font-size: 1rem;
    }

    .header .nav-item .nav-link.show[aria-expanded=true] {
        color: hsl(var(--base)) !important;
    }

    .header .nav-item .nav-link.show[aria-expanded=true] i {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.header .navbar-toggler.header-button {
    border-color: transparent;
    color: hsl(var(--white));
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
    width: auto;
    font-size: 2.125rem;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-left: 10px;
}

@media screen and (max-width: 575px) {
    .header .navbar-toggler.header-button {
        font-size: 2rem;
    }
}

.header .navbar-toggler.header-button:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.header .navbar-toggler.header-button[aria-expanded=true] i::before {
    content: "\f00d";
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 16px;
    padding-left: 48px;
}

@media screen and (max-width: 1399px) {
    .header-right {
        gap: 12px;
        padding-left: 24px;
    }
}

.header-right .btn {
    border-width: 2px !important;
}

.header-right .btn:has(.icon) {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.header-right .btn:has(.icon) .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 1199px) {
    .lang-box {
        margin-right: 0;
        display: inline-block;
        padding: 7px 20px;
        border-radius: 6px;
        border: 1px solid hsl(var(--border-color));
    }
}

.lang-box-btn {
    color: hsl(var(--white));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lang-box-btn.show .icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.lang-box-btn .text {
    color: hsl(var(--white));
    font-size: 0.9375rem;
    line-height: 140%;
}

.lang-box-btn .icon {
    color: hsl(var(--white));
    font-size: 0.75rem;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.lang-box-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 6px 10px;
    font-size: 1rem;
    color: hsl(var(--heading-color));
    font-weight: 600;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
    border-radius: 6px;
}

.lang-box-link:hover {
    background-color: hsl(var(--white)/0.05);
    color: hsl(var(--white));
}

.lang-box-link .thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.lang-box-link .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 1199px) {
    .lang-box .dropdown-menu {
        left: 0 !important;
        right: auto !important;
    }
}

.dropdown-menu {
    padding: 12px;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #373636;
    border-radius: 12px;
    display: unset !important;
    visibility: hidden;
    opacity: 0;
    position: absolute !important;
    border: 1px solid hsl(var(--black)/0.1);
}

.dropdown-menu.show {
    visibility: visible;
    opacity: 1;
}

.header .offcanvas-header {
    background-color: hsl(var(--white)/0.05);
}

.header .offcanvas {
    background-color: hsl(var(--section-bg));
}

.header .btn-close {
    -webkit-box-shadow: none;
    box-shadow: none;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.header-auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

@media screen and (max-width: 1199px) {
    .header-auth {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 12px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 16px;
        border-top: 1px solid hsl(var(--border-color)/0.4);
    }
}

.header-auth-item {
    position: relative;
}

.header-auth-item-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.header-auth-balance {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.header-auth-balance .btn {
    color: hsl(var(--white)) !important;
    pointer-events: none;
}


.header-auth-dropdown .dropdown__profile {
    --size: 40px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: block;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .header-auth-dropdown .dropdown__profile {
        --size: 32px;
    }
}

.header-auth-dropdown .dropdown-menu {
    width: 220px;
    padding: 0;
    background-color: #373636;
    overflow: hidden;
    right: 0 !important;
    left: auto !important;
}

.header-auth-dropdown .dropdown-menu .dropdown-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid hsl(var(--border-color)/0.4);
    padding: 6px 12px;
    background-color: hsl(var(--section-bg)/0.6);
}

.header-auth-dropdown .dropdown-menu .dropdown-profile .thumb {
    --size: 32px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header-auth-dropdown .dropdown-menu .dropdown-profile .name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: hsl(var(--heading-color));
}

.header-auth-dropdown .dropdown-item {
    padding: 0;
}

.header-auth-dropdown .dropdown-item:hover,
.header-auth-dropdown .dropdown-item:active {
    color: hsl(var(--heading-color));
    background-color: hsl(var(--section-bg)/0.3);
}

.header-auth-dropdown .dropdown-link {
    width: 100%;
    padding: 10px 12px;
    color: hsl(var(--body-color));
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    -webkit-transition: all linear 0.15s;
    transition: all linear 0.15s;
}

/* ================================= Header Css End =========================== */
/* ================ Top Header Start Here ================ */
.header-top {
    background-color: hsl(var(--black));
    border-bottom: 1px solid hsl(var(--white)/0.2);
    padding: 10px 0px;
    position: relative;
}

.header-top .social-list.style-two .social-list__link flex-center {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
}

.top-header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .top-header-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-list__item {
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
}

.contact-list__item:last-child {
    padding-right: 0;
    margin-right: 0;
}

.contact-list__item:last-child::before {
    display: none;
}

.contact-list__item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 15px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: hsl(var(--white)/0.4);
}

.contact-list__item-icon {
    font-size: 0.75rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.contact-list__link {
    color: hsl(var(--white));
    font-weight: 400;
    font-family: var(--body-font);
}

.contact-list__link:hover .contact-list__link-icon {
    color: hsl(var(--white));
}

/* Login Registration */
.login-registration-list {
    margin: 0 -10px;
    padding-right: 20px;
}

@media screen and (max-width: 991px) {
    .login-registration-list {
        padding-right: 0;
    }
}

.login-registration-list__item {
    color: hsl(var(--white));
    padding: 0 10px;
    position: relative;
}

.login-registration-list__item:last-child::before {
    display: none;
}

.login-registration-list__item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 12px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: hsl(var(--white)/0.5);
}

.login-registration-list__icon {
    color: hsl(var(--base));
    margin-right: 10px;
    font-size: 1rem;
}

.login-registration-list__link {
    color: hsl(var(--white));
    font-weight: 400;
    font-family: var(--body-font);
}

@media screen and (max-width: 575px) {
    .login-registration-list__link {
        font-size: 0.9375rem;
    }
}

.login-registration-list__link:hover {
    color: hsl(var(--base));
}

.login-registration-list__link:hover .login-registration-list__icon {
    color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
    .login-registration-list__link:hover {
        color: hsl(var(--base));
    }
}

/* Language Box */
.language-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.language-box .select {
    color: hsl(var(--white));
    background-color: transparent;
    border: 1px solid hsl(var(--white)/0.4);
    padding: 5px 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 5px;
}

.language-box .select option {
    background-color: hsl(var(--black));
}

/* ================ Top Header End Here ================ */
/* ========================= Footer CSS Start ============================= */
.footer {
    background: -webkit-gradient(linear, left bottom, left top, from(#5b3e821f), to(#0000)), #141317;
    background: linear-gradient(0deg, #5b3e821f, #0000), #141317;
    margin-top: auto;
}

.footer-top {
    padding: 60px 0;
}

@media screen and (max-width: 991px) {
    .footer-top {
        padding: 40px 0;
    }
}

.footer-top-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px 16px;
    margin-top: 24px;
}

.footer-bottom {
    padding: 12px 0;
    text-align: center;
    border: 1px solid hsl(var(--white)/0.05);
}

.footer-bottom__text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff7e;
}

.footer-item__logo img {
    max-width: 164px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 991px) {
    .footer-item__logo img {
        max-width: 140px;
    }
}

.footer-item__email {
    font-size: 1rem;
    margin-top: 12px;
    color: hsl(var(--white)/0.6);
}

@media screen and (max-width: 767px) {
    .footer-item__email {
        font-size: 0.875rem;
    }
}

.footer-item__email a {
    color: inherit;
}

.footer-item__title {
    position: relative;
    margin-bottom: 18px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--body-font);
    line-height: 1;
}

.footer-item__desc {
    font-weight: 400;
    line-height: 150%;
    color: #ffffff8f;
}

@media screen and (max-width: 767px) {
    .footer-item__desc {
        font-size: 0.875rem;
    }
}

.footer-menu__item:not(:last-child) {
    margin-bottom: 16px;
}

.footer-menu__link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 150%;
    color: #8b8b8b;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1;
}

@media (max-width: 767px) {

    .footer-menu__link,
    .footer-item__title {
        font-size: 0.875rem;
    }

    .footer-item__title {
        margin-bottom: 12px;
    }

    .footer-menu__item:not(:last-child) {
        margin-bottom: 12px;
    }
}

@media (max-width: 575px) {
    .footer-menu__link {
        font-size: 0.75rem;
    }

    .footer-menu__item:not(:last-child) {
        margin-bottom: 8px;
    }
}

.footer-menu__link:hover,
.footer-menu__link:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: hsl(var(--white));
}

.footer-info .label {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff7e;
}

.footer-info .value {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
    color: hsl(var(--gray-l-500));
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.footer-block__title {
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-item-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px 32px;
    margin-bottom: 32px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* ===================== Scroll to Top Start ================================= */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: hsl(var(--white));
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: hsl(var(--base));
}

.scroll-top:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base-d-100));
}

.scroll-top.show {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* ===================== Scroll to Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
::-moz-selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

::selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ========================= Social Icon CSS Start ======================== */
.footer .social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.footer .social-list__link {
    --size: 40px;
    width: calc(var(--size));
    height: var(--size);
    border-radius: 50%;
    border: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: calc(var(--size) * 0.5);
    color: hsl(var(--base));
    background: hsl(var(--base) / 0.1);
}

@media screen and (max-width: 767px) {
    .footer .social-list__link {
        --size: 36px;
    }
}

@media screen and (max-width: 575px) {
    .footer .social-list__link {
        --size: 32px;
    }
}

.footer .social-list__link:hover,
.footer .social-list__link:focus {
    color: hsl(var(--white));
    background: hsl(var(--base));
}

/* ========================= Social Icon CSS End ========================== */
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
    position: relative;
    z-index: 1;
    padding: 155px 0 70px;
    background-color: #ddd;
}

@media screen and (max-width: 991px) {
    .breadcrumb {
        padding: 115px 0 60px;
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        padding: 105px 0 40px;
    }
}

.breadcrumb::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--white)/0.1);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.breadcrumb__wrapper {
    text-align: center;
}

.breadcrumb__title {
    margin-bottom: 10px;
    color: hsl(var(--black));
}

.breadcrumb__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.breadcrumb__item {
    color: hsl(var(--black));
    padding: 0 5px;
    font-weight: 400;
    font-size: 1rem;
}

.breadcrumb__item-text {
    color: hsl(var(--base));
}

.breadcrumb__link {
    color: hsl(var(--black));
    font-weight: 500;
}

.breadcrumb__link:hover {
    color: hsl(var(--base));
}

/* ====================== Breadcrumb Css End ==================== */
/* ================================= Start Rating Css Start =========================== */
.rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.rating__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
}

.rating__text {
    color: hsl(var(--warning));
    font-size: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rating .count {
    color: var(--Heading-Text, #111827);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

/* ================================= Start Rating Css End =========================== */
.blog-sidebar-wrapper {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

/* ================== Sidebar Box & Title =================== */
.blog-sidebar {
    background-color: hsl(var(--white)/0.03);
    padding: 20px;
    border-radius: 8px;
}

@media screen and (max-width: 575px) {
    .blog-sidebar {
        padding: 16px;
    }
}

.blog-sidebar__title {
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
    .blog-sidebar__title {
        margin-bottom: 16px;
    }
}

/* ======================== Latest Blog Css========================  */
.latest-blog {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid hsl(var(--border-color)/0.4);
    background: hsl(var(--section-bg)/0.2);
}

.latest-blog:not(:last-child) {
    margin-bottom: 16px;
}

.latest-blog__thumb a {
    display: block;
}

.latest-blog__content {
    padding: 16px;
    padding-top: 24px;
}

@media screen and (max-width: 575px) {
    .latest-blog__content {
        padding: 12px;
        padding-top: 16px;
    }
}

.latest-blog__title {
    margin-bottom: 12px;
    color: hsl(var(--heading-color));
    font-weight: 700;
}

@media screen and (max-width: 575px) {
    .latest-blog__title {
        font-size: 0.875rem;
    }
}

.latest-blog__title a {
    color: inherit;
}

.latest-blog__title a:hover {
    color: hsl(var(--base));
}

.latest-blog__desc {
    color: hsl(var(--body-color));
    font-size: 0.875rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.latest-blog__date {
    color: hsl(var(--base));
    font-size: 0.875rem;
    font-weight: 600;
}

/* ========================= Latest Blog Css End ===================*/
/* =========================== Banner Section Start Here ========================= */
.banner-section {
    position: relative;
    z-index: 2;
    --this-p: 80px;
    padding-block: calc(var(--header-h) + var(--this-p)) var(--this-p);
}

@media screen and (max-width: 767px) {
    .banner-section {
        --this-p: 60px;
    }
}

.banner-section::after {
    content: "";
    position: absolute;
    height: 70%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, hsl(var(--black)/0.2)), to(hsl(var(--background-color)/0.75)));
    background: linear-gradient(transparent 0%, hsl(var(--black)/0.2) 50%, hsl(var(--background-color)/0.75) 100%);
    z-index: -1;
}

.hero-grid-canvas {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

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

.banner-content__title {
    font-size: 5.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1;
    max-width: 1000px;
    margin-inline: auto;
}

@media screen and (max-width: 1399px) {
    .banner-content__title {
        font-size: 4rem;
        max-width: 820px;
    }
}

@media screen and (max-width: 1399px) {
    .banner-content__title {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__title {
        font-size: 2.625rem;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 575px) {
    .banner-content__title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
}

@media screen and (max-width: 424px) {
    .banner-content__title {
        font-size: 1.75rem;
    }
}

.banner-content__desc {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 720px;
    margin-inline: auto;
}

@media screen and (max-width: 1399px) {
    .banner-content__desc {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__desc {
        font-size: 1rem;
        margin-bottom: 32px;
    }
}

.banner-form {
    max-width: 800px;
    width: 100%;
    margin-inline: auto;
}

.banner-form-wrapper {
    --this-bg: 220 5% 12%;
    padding: 24px;
    background: hsl(var(--this-bg));
    border-radius: 16px;
    border: 2px solid hsl(var(--black));
}

@media screen and (max-width: 991px) {
    .banner-form-wrapper {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .banner-form-wrapper {
        padding: 16px;
    }
}

.banner-form-area {
    background-color: hsl(var(--white)/0.03);
    border-radius: 12px;
    border: 1px solid hsl(var(--white)/0.05);
}

.banner-form-input {
    width: 100%;
    min-height: 160px;
    padding: 16px;
    border: none;
    color: hsl(var(--white));
    border-radius: inherit;
    background-color: transparent;
    font-size: 1rem;
    font-weight: 400;
    line-height: 150%;
    scrollbar-width: none;
    outline: none;
}

.banner-form-title {
    padding-inline: 16px;
    padding-top: 16px;
    background-color: transparent;
    border: 0;
    outline: 0;
    color: hsl(var(--white));
    font-size: 1.125rem;
    display: none;
}

.banner-form-title.show {
    display: block;
}

.banner-form-btn {
    font-size: 0.9125rem;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    color: hsl(var(--white)/0.8);
    background-color: hsl(var(--white)/0.1);
    border: 1px solid hsl(var(--white)/0.2);
    padding: 6px 16px;
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    margin: 4px;
}

.banner-form-btn:hover {
    background-color: hsl(var(--white)/0.15);
    border: 1px solid hsl(var(--white)/0.3);
}

.banner-form-btn:hover::before {
    background-color: hsl(var(--white)/0.05);
}

.banner-form-btn::before {
    content: "";
    position: absolute;
    height: calc(100% + 9px);
    width: calc(100% + 9px);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid hsl(var(--white)/0.15);
    border-radius: inherit;
}


.banner-form-btn::after {
    content: "";
    position: absolute;
    height: calc(100% + 15px);
    width: calc(100% + 15px);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid hsl(var(--white)/0.1);
    border-radius: inherit;
}

.banner-form-btn {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.banner-form-btn:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    -webkit-box-shadow: 0px 0px 30px 0px hsl(var(--base));
    box-shadow: 0px 0px 30px 0px hsl(var(--base));
}

.gradient-color {
    background: var(--gr-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.form-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 12px;
}

@media screen and (max-width: 991px) {
    .form-selector {
        flex-direction: column;
    }
}

.form-selector-dropdown {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width: 767px) {
    .form-selector-dropdown {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 100%;
    }
}

.form-selector-dropdown .dropdown-menu {
    -webkit-transition: unset;
    transition: unset;
    background: #242527;
    border: 1px solid hsl(var(--white)/0.05);
    right: 0 !important;
    left: auto;
}

.form-selector-dropdown .dropdown-menu.show {
    display: flex !important;
    flex-direction: column;
}

.form-selector-dropdown .dropdown-menu .dropdown-search .input--group {
    border-radius: 6px;
}

.form-selector-dropdown .dropdown-menu .dropdown-search .form--control {
    padding: 8px 12px;
    font-size: 0.875rem;
}

.form-selector-dropdown .dropdown-menu__header {
    padding: 12px 16px;
    border-bottom: 1px solid hsl(var(--white)/0.05);
    gap: 8px;
    position: relative;
}

.form-selector-dropdown .dropdown-menu__body {
    padding: 16px;
    max-height: 460px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--white)/0.05) hsl(var(--white)/0.1);
}

.form-selector-dropdown .dropdown-menu__title {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--white));
    margin-bottom: 8px;
}

.form-selector-dropdown .dropdown-menu__close {
    --size: 20px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: calc(var(--size) * 0.5);
    color: hsl(var(--white));
    background-color: hsl(var(--white)/0.05);
    position: absolute;
    top: 12px;
    right: 12px;
}

.form-selector-dropdown .dropdown-menu__close:hover,
.form-selector-dropdown .dropdown-menu__close:focus {
    color: hsl(var(--white));
    background-color: hsl(var(--white)/0.1);
}

.form-selector-btn {
    display: block;
    padding: 4px 8px;
    background-color: #1f1f1f;
    border-radius: 12px;
    border: 2px solid hsl(var(--white)/0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    cursor: pointer;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.form-selector-btn:focus,
.form-selector-btn:hover,
.form-selector-btn:active,
.form-selector-btn:focus-visible,
.form-selector-btn:focus-within {
    -webkit-box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px hsl(var(--base)/0.3), 0 4px 6px -4px hsl(var(--base)/0.3);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px hsl(var(--base)/0.3), 0 4px 6px -4px hsl(var(--base)/0.3);
    border-color: hsl(var(--base));
    background-color: hsl(var(--base)/0.1);
}

.form-selector-btn .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: hsl(var(--white));
}

.form-selector-btn .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
}

.form-selector-btn .title {
    color: hsl(var(--white));
    font-weight: 600;
    font-size: 0.875rem;
}

.form-selector-btn .subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    color: hsl(var(--success));
}

.dropdown-menu:has(.prompt-list) {
    width: 100%;
    padding: 0;
}

.prompt-list-item {
    cursor: pointer;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
    padding: 8px;
}

.prompt-list-item:not(:last-child) {
    border-bottom: 1px solid hsl(var(--white)/0.1);
}

.prompt-list-item .credit {
    color: hsl(var(--white));
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.prompt-list-item .text {
    font-size: 0.875rem;
    color: hsl(var(--white)/0.6);
}

.banner-form-thumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4px;
}

.banner-form-thumbs:has(img) {
    padding-inline: 16px;
    padding-top: 16px;
}

.banner-form-thumbs-img {
    background-color: hsl(var(--this-bg));
    height: 64px;
    width: 96px;
    border: 1px solid hsl(var(--white)/0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6px;
}

.banner-form-thumbs .remove-btn {
    position: absolute;
    height: 24px;
    width: 24px;
    background-color: #505050;
    top: 4px;
    right: 4px;
    color: hsl(var(--white));
    border-radius: 50%;
    font-size: 14px;
    display: grid;
    place-content: center;
}

.size-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 14px;
}

.size-list-list-item {
    cursor: pointer;
}

.size-list-item__screen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: hsl(var(--white)/0.6);
    background-color: hsl(var(--white)/0.05);
    border-radius: 12px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.size-list-item__screen:hover {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

.size-list-item__text {
    width: 100%;
    color: hsl(var(--white));
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-top: 4px;
    white-space: nowrap;
}

/* =========================== Banner Section End Here ========================= */
.statistics-wrapper {
    --count: 4;
    --gap: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--gap);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.statistics-item {
    width: calc(100% / var(--count) - (var(--gap) - var(--gap) / var(--count)));
    padding: 32px;
    border-radius: 12px;
    background: linear-gradient(161deg, hsl(var(--white)/0.15) 0%, transparent 57%, hsl(var(--white)/0.15) 100%) padding-box;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.statistics-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: calc(100% - 2px);
    width: calc(100% - 2px);
    background-color: hsl(var(--black) / 0.3);
    z-index: -1;
    border-radius: 10px;
}

@media screen and (max-width: 1199px) {
    .statistics-item {
        padding: 24px;
    }
}

@media screen and (max-width: 991px) {
    .statistics-item {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .statistics-item {
        width: calc(50% - var(--gap) / 2);
        text-align: center;
        padding: 16px;
    }
}

.statistics-item-count {
    font-weight: 700;
    color: hsl(var(--heading-color));
    margin-bottom: 6px;
}

.statistics-item-title {
    color: hsl(var(--body-color)/0.6);
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .statistics-item-title {
        font-size: 14px;
    }
}

.how-work-section {
    background: radial-gradient(ellipse 85% 65% at 8% 8%, hsl(var(--base-two)/0.15), transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, transparent, transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, transparent, transparent 62%), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    background: radial-gradient(ellipse 85% 65% at 8% 8%, hsl(var(--base-two)/0.15), transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, transparent, transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, transparent, transparent 62%), linear-gradient(180deg, transparent 0%, transparent 100%);
}

.how-work-item {
    --inner-p: 20px;
    border-radius: 12px;
    background: hsl(var(--white)/0.03);
    padding: var(--inner-p);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
}

.how-work-item:not(:last-child) {
    margin-bottom: 16px;
}

@media screen and (max-width: 1399px) {
    .how-work-item {
        --inner-p: 16px;
    }
}

.how-work-item-count {
    --size: 42px;
    --icon-size: 18px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    border: 2px solid hsl(var(--base));
    color: hsl(var(--base));
    font-size: var(--icon-size);
    display: grid;
    place-items: center;
    margin-bottom: var(--inner-p);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 1399px) {
    .how-work-item-count {
        --size: 36px;
        --icon-size: 16px;
    }
}

.how-work-item-title {
    font-family: var(--body-font);
    margin-bottom: 10px;
}

.how-work-item-desc {
    font-weight: 500;
    font-size: 0.875rem;
}

.feature-section {
    position: relative;
    z-index: 1;
}

.feature-section-shape {
    max-width: 720px;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
}

.feature-item {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid hsl(var(--white)/0.05);
    background-color: hsl(var(--white)/0.05);
    height: 100%;
}

@media screen and (max-width: 1199px) {
    .feature-item {
        padding: 24px;
    }
}

@media screen and (max-width: 991px) {
    .feature-item {
        padding: 20px;
        border-radius: 12px;
    }
}

.feature-item-title {
    margin-bottom: 12px;
}

@media screen and (max-width: 991px) {
    .feature-item-title {
        margin-bottom: 6px;
    }
}

.feature-item-desc {
    margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
    .feature-item-desc {
        margin-bottom: 16px;
        font-size: 0.875rem;
    }
}

/* ========================= Gallary Showcase CSS Start ====================== */
.gallary-showcase-layout:not(:has(.empty-card)) {
    --column-width: 330px;
    -webkit-columns: 3 var(--column-width);
    -moz-columns: 3 var(--column-width);
    columns: 3 var(--column-width);
    -webkit-column-gap: 0px;
    -moz-column-gap: 0px;
    column-gap: 0px;
    position: relative;
    margin-bottom: 0px;
    margin-inline: -8px;
}

@media screen and (max-width: 991px) {
    .gallary-showcase-layout:not(:has(.empty-card)) {
        --column-width: 250px;
    }
}

@media screen and (max-width: 575px) {
    .gallary-showcase-layout:not(:has(.empty-card)) {
        --column-width: 200px;
    }
}

@media screen and (max-width: 424px) {
    .gallary-showcase-layout:not(:has(.empty-card)) {
        --column-width: 150px;
    }
}

.gallary-showcase-card {
    --gap: 8px;
    padding: var(--gap);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    isolation: isolate;
}

@media screen and (max-width: 575px) {
    .gallary-showcase-card {
        border-radius: 8px;
    }
}

.gallary-showcase-card__thumb {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .gallary-showcase-card__thumb {
        border-radius: 8px;
    }
}

.gallary-showcase-card__thumb::after {
    content: "";
    width: calc(100% - var(--gap) * 2);
    height: calc(100% - var(--gap) * 2);
    display: inline-block;
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: inherit;
    z-index: 1;
}

.gallary-showcase-card__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallary-showcase-card__content {
    width: calc(100% - var(--gap) * 2);
    height: calc(100% - var(--gap) * 2);
    position: absolute;
    inset: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    gap: 20px;
    padding: 20px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    border-radius: inherit;
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--black)/0.7)), to(hsl(var(--black)/0.7)));
    background-image: linear-gradient(hsl(var(--black)/0.7), hsl(var(--black)/0.7));
    z-index: 2;
}

.gallary-showcase-card__content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
}

.gallary-showcase-card__content-bottom .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.gallary-showcase-card__content-bottom .btn--download,
.gallary-showcase-card__content-bottom .btn--fav {
    width: 56px;
    height: 40px;
    padding: 0px;
    color: hsl(var(--white)) !important;
    border: 1px solid hsl(var(--base));
}

.gallary-showcase-card__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.gallary-showcase-card__user-thumb {
    --size: 24px;
    width: var(--size);
    height: var(--size);
    display: block;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.gallary-showcase-card__user-name {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--body-font);
    color: hsl(var(--white));
}

.gallary-showcase-card__desc {
    --line-clamp: 3;
    color: hsl(var(--white));
    font-size: 1rem;
    font-weight: 300;
    line-height: 140%;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp);
    -webkit-box-orient: vertical;
}

.gallary-showcase-card.shorter .gallary-showcase-card__desc {
    --line-clamp: 2;
}

@media screen and (min-width: 1200px) {
    .gallary-showcase-card:hover .gallary-showcase-card__content {
        opacity: 1;
        visibility: visible;
    }
}

/* ========================= Gallary Showcase CSS End ======================== */
.faq-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 1032px;
    height: 1032px;
    border-radius: 100%;
    opacity: 0.56;
    background: conic-gradient(from 90deg at 50% 50%, #2A3B55 0deg, #1F2E26 54deg, #1A1D23 108deg, hsl(var(--base)/0.3) 162deg, #2B3C5C 208.8deg, #1A1D23 270deg, #2B4D4C 306deg, #2A3B55 360deg);
    -webkit-filter: blur(267px);
    filter: blur(267px);
    z-index: -1;
}

@-moz-document url-prefix() {
    .faq-section::before {
        opacity: 0.4;
    }
}

.faq-cta {
    --inner-p: 40px;
    --inner-gap: 32px;
    --title-size: 32px;
    text-align: center;
}

@media screen and (max-width: 1399px) {
    .faq-cta {
        --title-size: 28px;
        --inner-p: 32px;
        --inner-gap: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .faq-cta {
        --title-size: 24px;
    }
}

@media screen and (max-width: 991px) {
    .faq-cta {
        --inner-p: 24px;
        --inner-gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    .faq-cta {
        --title-size: 20px;
    }
}

@media screen and (max-width: 575px) {
    .faq-cta {
        --inner-p: 16px;
    }
}

.faq-cta-wrapper {
    padding: var(--inner-p);
    border-radius: 8px;
    border: 1px solid hsl(var(--border-color)/0.4);
    background: hsl(var(--section-bg)/0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.faq-cta-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: conic-gradient(from 90deg at 50% 50%, #2A3B55 0deg, #1F2E26 54deg, #1A1D23 108deg, hsl(var(--base)/0.3) 162deg, #2B3C5C 208.8deg, #1A1D23 270deg, #2B4D4C 306deg, #2A3B55 360deg);
    -webkit-filter: blur(140px);
    filter: blur(140px);
}

@-moz-document url-prefix() {
    .faq-cta-wrapper::before {
        opacity: 0.4;
    }
}

.faq-cta-thumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: var(--inner-gap);
    --img-size: 48px;
}

@media screen and (max-width: 575px) {
    .faq-cta-thumbs {
        --img-size: 40px;
    }
}

.faq-cta-thumbs img {
    border-radius: 50%;
    border: 2px solid hsl(var(--white));
    width: var(--img-size);
    height: var(--img-size);
    -o-object-fit: cover;
    object-fit: cover;
}

.faq-cta-thumbs img.center-image {
    --img-size: 56px;
    position: relative;
    z-index: 1;
    margin-inline: -16px;
}

@media screen and (max-width: 575px) {
    .faq-cta-thumbs img.center-image {
        --img-size: 44px;
        margin-inline: -12px;
    }
}

.faq-cta-title {
    font-size: var(--title-size);
    color: hsl(var(--heading-color));
}

.faq-cta-desc {
    color: hsl(var(--heading-color));
    margin-bottom: var(--inner-gap);
}

/* ================================ Testimonials Section Css Start ============================= */
.testimonials {
    position: relative;
    background: radial-gradient(ellipse 85% 65% at 8% 8%, transparent, transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, hsl(var(--warning)/0.05), transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, hsl(var(--base)/0.15), transparent 62%), -webkit-gradient(linear, left top, left bottom, from(hsl(var(--section-bg)/0.5)), to(transparent));
    background: radial-gradient(ellipse 85% 65% at 8% 8%, transparent, transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, hsl(var(--warning)/0.05), transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, hsl(var(--base)/0.15), transparent 62%), linear-gradient(180deg, hsl(var(--section-bg)/0.5) 0%, transparent 100%);
}

.testimonial-slider {
    position: relative;
}

.testimonial-item {
    --inner-p: 24px;
    padding: var(--inner-p);
    border-radius: 12px;
    background: hsl(var(--white)/0.03);
    height: 100%;
}

@media screen and (max-width: 1399px) {
    .testimonial-item {
        margin-bottom: 8px;
        --inner-p: 16px;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-item {
        margin-block: 0px;
    }
}

.testimonial-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: var(--inner-p);
}

.testimonial-item__auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.testimonial-item__auth-thumb {
    --size: 32px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-item__auth-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-item__auth-name {
    font-weight: 700;
    color: hsl(var(--heading-color));
}

.testimonial-item__quote {
    font-size: 2rem;
    color: hsl(var(--base));
}

.testimonial-item__rate {
    --icon-color: 45, 86%, 62%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.testimonial-item__rate .icon {
    font-size: 0.875rem;
    color: hsl(var(--icon-color));
}

.testimonial-item__desc {
    color: hsl(var(--heading-color));
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 14px;
}

.testimonial-item__info {
    color: hsl(var(--heading-color));
    font-size: 0.875rem;
    font-weight: 700;
}

.testimonial-slider-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* ================================ Testimonials Section Css End ============================= */
.cta-wrapper {
    background-color: hsl(var(--white)/0.03);
    padding: 60px 50px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .cta-wrapper {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 575px) {
    .cta-wrapper {
        padding: 32px 24px;
    }
}

.cta-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 1032px;
    height: 1032px;
    border-radius: 100%;
    opacity: 0.56;
    background: conic-gradient(from 90deg at 50% 50%, #2A3B55 0deg, #1F2E26 54deg, #1A1D23 108deg, hsl(var(--base)/0.3) 162deg, #2B3C5C 208.8deg, #1A1D23 270deg, #2B4D4C 306deg, #2A3B55 360deg);
    -webkit-filter: blur(267px);
    filter: blur(267px);
    z-index: -1;
}

@-moz-document url-prefix() {
    .cta-wrapper::before {
        opacity: 0.4;
    }
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta-content__title {
    margin-bottom: 12px;
}

.cta-content__desc {
    color: hsl(var(--white)/0.6);
    margin-bottom: 40px;
}

.cta-content__link {
    color: hsl(var(--white)/0.6);
    text-decoration: underline;
}

.cta-content__note {
    color: hsl(var(--white)/0.6);
}

.cta-content__button {
    margin-bottom: 24px;
}

/* ================================= Blog Section Css Start Here ============================= */
.blog-item {
    border-radius: 8px;
    border: 1px solid hsl(var(--border-color)/0.4);
    background: hsl(var(--section-bg)/0.2);
    overflow: hidden;
    --inner-p: 16px;
    height: 100%;
}

@media screen and (max-width: 575px) {
    .blog-item {
        --inner-p: 12px;
    }
}

.blog-item__thumb .link {
    display: block;
}

.blog-item__content {
    padding: calc(var(--inner-p) * 2) var(--inner-p) var(--inner-p);
}

.blog-item__title {
    font-family: var(--body-font);
    font-weight: 700;
}

.blog-item__title .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.blog-item__title .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 1.125rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.blog-item__desc {
    font-weight: 500;
    line-height: 1.3;
    margin-block: 12px;
}

.blog-item__date {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--base));
}

/* ================================= Blog Section Css End Here ================================= */
.pricing-section {
    position: relative;
    z-index: 1;
}

.pricing-section-shape {
    max-width: 720px;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
    top: 0;
    right: 0;
}

.pricing-select__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 424px) {
    .pricing-select__wrapper {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.pricing-select__wrapper .text {
    font-size: 14px;
    color: hsl(var(--base-two));
}

.pricing-select__note {
    text-align: right;
    font-size: 14px;
    color: hsl(var(--base));
    margin-top: 4px;
    margin-top: 4px;
}

@media screen and (max-width: 424px) {
    .pricing-select__note {
        text-align: left;
    }
}

.pricing-card {
    padding: 24px 24px 40px;
    border: 1px solid hsl(var(--white)/0.05);
    border-radius: 8px;
    background-color: hsl(var(--white)/0.03);
    height: 100%;
}

.pricing-card.base-style {
    border: 1px solid hsl(var(--base)/0.4);
    background: hsl(var(--base)/0.05);
    position: relative;
}

.pricing-card.base-style::after {
    content: "STANDERD";
    position: absolute;
    padding: 4px 12px;
    border-radius: 8px;
    background: -webkit-gradient(linear, left top, right top, from(hsl(var(--base-l-100))), to(hsl(var(--base-l-600))));
    background: linear-gradient(90deg, hsl(var(--base-l-100)) 0%, hsl(var(--base-l-600)) 100%);
    color: hsl(var(--white));
    font-size: 12px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 2.4px;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.pricing-card.base-style .pricing-list__item {
    border-color: hsl(var(--base)/0.4);
}

.pricing-card.base-style .pricing-list__item .info {
    color: hsl(var(--base));
}

.pricing-card__top {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card__title {
    line-height: 1.5;
    font-weight: 500;
    color: hsl(var(--white));
    margin-bottom: 2px;
}

.pricing-card__for {
    margin-bottom: 24px;
    font-size: 16px;
    color: hsl(var(--white));
}

.pricing-card-pricing {
    margin-bottom: 20px;
    height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pricing-card-pricing__amount {
    color: hsl(var(--white));
    font-weight: 600;
    margin-bottom: 2px;
}

.pricing-card-pricing__amount span {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.pricing-card-pricing__note {
    font-size: 12px;
    color: hsl(var(--base-two));
}


.pricing-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-list__item .icon {
    flex-shrink: 0;
    color: hsl(var(--success));
}

.pricing-list__item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid hsl(var(--white)/0.05);
}

.pricing-list__item .text {
    font-size: 16px;
    color: hsl(var(--white));
    font-weight: 400;
}

.pricing-list__item .info {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    color: hsl(var(--text-color)/0.6);
    cursor: pointer;
}

.active-plan {
    border: 1px solid hsl(var(--base));
    background-color: hsl(var(--base) / 0.05);
    position: relative;
    overflow: hidden;
}

.active-plan .pricing-card__title {
    margin-top: 32px;
}

.active-plan-duration {
    position: absolute;
    top: 0;
    left: 0;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    width: 100%;
    text-align: center;
    padding: 6px;
    font-size: 0.875rem;
}

/* ========================= View Details CSS Start ========================= */
.view-details {
    background: radial-gradient(ellipse 85% 65% at 8% 8%, hsl(var(--base-two)/0.15), transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, transparent, transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, transparent, transparent 62%), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    background: radial-gradient(ellipse 85% 65% at 8% 8%, hsl(var(--base-two)/0.15), transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, transparent, transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, transparent, transparent 62%), linear-gradient(180deg, transparent 0%, transparent 100%);
}

.view-details-card {
    aspect-ratio: 1/0.6041666667;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 12px;
    background-color: hsl(var(--white)/0.03);
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .view-details-card {
        aspect-ratio: unset;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.view-details-card-preview {
    width: 60%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: hsl(var(--black)/0.1);
}

@media screen and (max-width: 1199px) {
    .view-details-card-preview {
        width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .view-details-card-preview {
        width: 100%;
        aspect-ratio: 1/0.75;
    }
}

.view-details-card-preview__img {
    width: 100%;
    height: 100%;
    background-color: hsl(var(--section-bg)/0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.view-details-card-preview__img img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}

.view-details-card-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

@media screen and (max-width: 1199px) {
    .view-details-card-content {
        padding: 16px;
        gap: 24px;
    }
}

@media screen and (max-width: 575px) {
    .view-details-card-content {
        gap: 16px;
    }
}

.view-details-card-content__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-y: auto;
    margin-inline: -24px;
    padding-inline: 24px;
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--white)/0.1) transparent;
}

@media screen and (max-width: 1199px) {
    .view-details-card-content__body__body {
        margin-inline: -16px;
        padding-inline: 16px;
    }
}

.view-details-card-content__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
}

.view-details-card-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.view-details-card-user__thumb {
    --size: 44px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 1199px) {
    .view-details-card-user__thumb {
        --size: 36px;
    }
}

.view-details-card-user__content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.view-details-card-user__name {
    font-size: clamp(1.125rem, 1.0937rem + 0.1564vw, 1.25rem);
    font-weight: 500;
    color: hsl(var(--white));
    line-height: 120%;
}

.view-details-card-engine .label {
    color: hsl(var(--white));
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.108px;
    display: block;
}

.view-details-card-engine .value {
    color: transparent;
    background: hsl(var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 140%;
}

.view-details-card-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.view-details-card-info .label,
.view-details-card-info .value {
    color: hsl(var(--white));
    font-size: 1rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.108px;
}

.view-details-card-info .label {
    text-align: left;
}

.view-details-card-info .value {
    text-align: right;
}

.view-details-card-slider {
    --slick-slide-gap: 0px !important;
    height: 100%;
}

.view-details-card-slider__slide {
    height: 100%;
}

.view-details-card-slider .slick-list,
.view-details-card-slider .slick-track {
    height: 100%;
}

.view-details-card-slider .slick-arrow {
    --size: 52px;
    width: var(--size);
    height: var(--size);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: calc(var(--size) * 0.2307692308);
    color: hsl(var(--white));
    font-size: calc(var(--size) * 0.4615384615);
    background-color: hsl(var(--gray-two)/0.7);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    border: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

@media screen and (max-width: 1199px) {
    .view-details-card-slider .slick-arrow {
        --size: 40px;
    }
}

@media screen and (max-width: 575px) {
    .view-details-card-slider .slick-arrow {
        --size: 32px;
    }
}

.view-details-card-slider .slick-arrow.slick-prev {
    left: calc(var(--slick-slide-gap) + 12px);
}

.view-details-card-slider .slick-arrow.slick-next {
    right: calc(var(--slick-slide-gap) + 12px);
}

.view-details-card-slider .slick-arrow:hover,
.view-details-card-slider .slick-arrow:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: hsl(var(--gray-three));
}

.view-details-card__title {
    font-weight: 400;
    margin-bottom: 24px;
    color: hsl(var(--white));
    letter-spacing: 2px;
}

@media screen and (max-width: 1199px) {
    .view-details-card__title {
        margin-bottom: 16px;
    }
}

.view-details-card__prompt {
    font-size: 0.875rem;
    line-height: 150%;
    color: hsl(var(--white));
}

.view-details-card__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.view-details-card__action>* {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.view-details-card__btn {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: hsl(var(--white)/0.1);
    color: hsl(var(--white));
    text-align: center;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.108px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.view-details-card__btn svg {
    width: 1em;
    height: 1em;
}

.view-details-card__btn:hover,
.view-details-card__btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: hsl(var(--white));
    background-color: hsl(var(--white)/0.2);
}

.view-details-card__block:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid hsl(var(--white)/0.1);
}

.view-details-card .toggle-content {
    padding: 16px;
    border-radius: 12px;
    background-color: hsl(var(--white)/0.03);
    margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
    .view-details-card .toggle-content {
        margin-bottom: 16px;
    }
}

.toggle-content__btn {
    color: hsl(var(--white));
}

/* ========================= View Details CSS End =========================== */
/* ================================= Dashboard Fulid Sidebar Css Start =========================== */
.dashboard .sidebar-logo {
    margin-bottom: 16px;
}

.dashboard .sidebar-logo img {
    max-width: 164px;
}

.dashboard .sidebar-menu {
    padding: 24px;
    height: 100vh;
    background-color: hsl(var(--white));
    overflow-y: auto;
    z-index: 999;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    width: var(--side-w);
    border-right: 1px solid hsl(var(--border-color));
    border-radius: 0;
    position: fixed;
    left: 0;
    top: 0;
}

.dashboard .sidebar-menu .dropdown-menu {
    left: 0 !important;
    right: auto !important;
}

.dashboard .sidebar-menu::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.dashboard .sidebar-menu::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black)/0.15);
}

.dashboard .sidebar-menu.show-sidebar {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 1199px) {
    .dashboard .sidebar-menu {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        z-index: 9992;
        border-radius: 0;
    }
}

.dashboard .sidebar-menu__close {
    position: absolute;
    top: 8px;
    right: 16px;
    color: hsl(var(--body-color));
    font-size: 1.25rem;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    cursor: pointer;
    z-index: 9;
}

.dashboard .sidebar-menu__close:active {
    top: 14px;
}

.dashboard .sidebar-menu__close:hover,
.dashboard .sidebar-menu__close:focus {
    background-color: hsl(var(--white));
    border-color: hsl(var(--white));
    color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__item.active>a {
    background: var(--gr-color);
    color: hsl(var(--white));
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a {
    color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 18px;
    color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__item.has-dropdown>a:after {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    right: 16px;
    top: 14px;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
    color: hsl(var(--body-color));
    font-size: 0.875rem;
}

.dashboard .sidebar-menu-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 14px 24px;
    width: 100%;
    color: hsl(var(--body-color)/0.8);
    font-weight: 500;
    border-radius: 12px;
    line-height: 1;
    gap: 12px;
}

.dashboard .sidebar-menu-list__link.log-out {
    background-color: hsl(var(--danger)/0.15);
    color: hsl(var(--danger));
}

.dashboard .sidebar-menu-list__link.log-out:hover {
    background-color: hsl(var(--danger));
    color: hsl(var(--white));
}

.dashboard .sidebar-menu-list__link:hover {
    background-color: hsl(var(--section-bg));
    color: hsl(var(--heading-color));
}

.dashboard .sidebar-menu-list__link.active {
    color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__link .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dashboard .sidebar-submenu {
    display: none;
}

.dashboard .sidebar-submenu.open-submenu {
    display: block;
}

.dashboard .sidebar-submenu-list {
    padding: 5px 0;
}

.dashboard .sidebar-submenu-list__item {
    margin-bottom: 6px;
}

.dashboard .sidebar-submenu-list__item.active>a {
    color: hsl(var(--base));
    background-color: hsl(var(--base)/0.06);
}

.dashboard .sidebar-submenu-list__link {
    padding: 12px 15px;
    display: block;
    color: hsl(var(--body-color));
    color: #6b717e;
    font-weight: 500;
    font-size: 0.9375rem;
    margin-left: 20px;
    border-radius: 5px;
    position: relative;
    padding-left: 25px;
}

.dashboard .sidebar-submenu-list__link::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid hsl(var(--black)/0.4);
    border-radius: 50%;
}

.dashboard .sidebar-submenu-list__link:hover {
    background-color: hsl(var(--base)/0.04);
}

.dashboard .sidebar-submenu-list__link .icon {
    margin-right: 8px;
    font-size: 0.9375rem;
    text-align: center;
    border-radius: 4px;
}

/* ================================= Dashboard Fulid Sidebar Css End =========================== */
/* ======================  Plugin Customization Start  ======================*/
/* ======================  Select2 Start  ======================*/
.select2-wrapper {
    --s-height: 40px;
    --select-border: hsl(var(--border-color));
    --select-bg: var(--white);
    --select-shadow: none;
    --border-radius: 8px;
    --font-size: 1rem;
    --font-weight: 400;
    --select-width: 100%;
    --select-color: hsl(var(--heading-color));
    --arrow-color: hsl(var(--border-color));
}

.select2-group {
    position: relative;
}

.select2-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.select2-group .select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    padding-left: 36px;
}

.selection {
    display: block;
}

.select2 .dropdown-wrapper {
    display: none;
}

.select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    border: 1px solid var(--select-border);
    background: var(--select-bg);
    border-radius: var(--border-radius);
    min-height: var(--s-height);
    padding-inline: 4px;
    -webkit-box-shadow: var(--select-shadow);
    box-shadow: var(--select-shadow);
}

.select2-container--default.select2-container--focus :is(.select2-selection--multiple, .select2-selection--single),
.select2-container--default.select2-container--open :is(.select2-selection--multiple, .select2-selection--single) {
    border-color: hsl(var(--base));
}

.select2-dropdown {
    border: 1px solid hsl(var(--white)/0.2) !important;
    min-width: 140px;
    border-radius: var(--border-radius, 8px) !important;
    margin-top: 4px !important;
    background-color: hsl(var(--section-bg));
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--white)/0.05) !important;
    color: hsl(var(--heading-color)) !important;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: hsl(var(--white)/0.05) !important;
    color: hsl(var(--heading-color)) !important;
}

.select2-results__option {
    padding: 6px 10px;
    color: hsl(var(--white));
    font-size: var(--font-size);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: hsl(var(--gray-color)/0.1);
    border: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--white));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: var(--s-height);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--arrow-color) transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--arrow-color) transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: var(--s-height);
    font-size: var(--font-size);
    color: var(--select-color);
    font-weight: var(--font-weight);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 6px;
    padding-right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--select-border);
    outline: 0;
    border-radius: var(--border-radius);
    padding: 6px 16px;
    font-size: var(--font-size);
    color: hsl(var(--white));
    background-color: hsl(var(--black));
}

.select2-container:has(.select2-selection--multiple, .select2-selection--single) {
    width: var(--select-width) !important;
}

.img-flag-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.img-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.select2-results__options::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: hsl(var(--select-border));
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: hsl(var(--white)/0.2);
}

/* ======================  Select2 End  ======================*/
/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider {
    margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-initialized.slick-slider .slick-slide {
    height: auto;
    padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide>div {
    height: 100%;
}

.slick-arrow {
    --size: 40px;
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    width: var(--size);
    height: var(--size);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    background-color: hsl(var(--white));
    color: hsl(var(--black));
    font-size: 16px;
    -webkit-filter: drop-shadow(0px 8px 16px hsl(var(--black)/0.08)) drop-shadow(0px 0px 4px hsl(var(--black)/0.04));
    filter: drop-shadow(0px 8px 16px hsl(var(--black)/0.08)) drop-shadow(0px 0px 4px hsl(var(--black)/0.04));
}

@media screen and (max-width: 991px) {
    .slick-arrow {
        width: 36px;
        height: 36px;
    }
}

@media screen and (max-width: 575px) {
    .slick-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
}

.slick-arrow:hover {
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.slick-next {
    right: -20px;
}

@media screen and (max-width: 991px) {
    .slick-next {
        right: -10px;
    }
}

@media screen and (max-width: 575px) {
    .slick-next {
        right: 0px;
    }
}

.slick-prev {
    left: -20px;
}

@media screen and (max-width: 991px) {
    .slick-prev {
        left: -10px;
    }
}

@media screen and (max-width: 575px) {
    .slick-prev {
        left: 0px;
    }
}

/* Dots Css Start */
.slick-dots {
    text-align: center;
    padding-top: 20px;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    border: none;
    background-color: hsl(var(--black)/0.06);
    color: hsl(var(--heading-color));
    margin: 0 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    text-indent: -9999px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.slick-dots li.slick-active button {
    background: hsl(var(--base));
    width: 48px;
    border-radius: 24px;
    color: hsl(var(--base));
}

/* ================= Slick Arrow & Dots css Start ================ */
/* ======================  Plugin Customization End  ======================*/
/* ======================  Pages Design Start  ======================*/
/* =========================================== Blog Details Css Start ==============================*/
.blog-details {
    padding: 16px 20px;
    background: hsl(var(--white)/0.03);
    border-radius: 12px;
}

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

.blog-details__date {
    display: block;
    color: var(--body-color);
    margin-bottom: 12px;
}

.blog-details__title {
    margin-bottom: 16px;
    max-width: 720px;
    width: 100%;
}

.blog-share {
    margin-bottom: 32px;
}

.blog-share .social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-share .social-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 0.875rem;
    width: auto;
    height: auto;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--white)/0.75);
    border: 1px solid hsl(var(--white)/0.1);
    border-radius: 6px;
}

.blog-share .social-list__link:hover {
    color: hsl(var(--black)) !important;
    border-color: hsl(var(--white)/0.2);
    background-color: hsl(var(--white));
}

.blog-details__thumb {
    overflow: hidden;
    margin-bottom: 32px;
}

.blog-details__thumb img {
    border-radius: 12px;
}

.content-item :is(h4, h5, h6) {
    font-family: var(--body-font);
}

.blog-sidebar-wrapper {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.quote-text {
    background-color: hsl(var(--base)/0.1);
    padding: 30px 20px;
    border-radius: 5px;
    border-left: 3px solid hsl(var(--base));
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .quote-text {
        padding: 25px 15px;
    }
}

/* ========================================== Blog Details Css End ======================================*/
.contact-section {
    background: radial-gradient(ellipse 85% 65% at 8% 8%, hsl(var(--base-two)/0.15), transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, transparent, transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, transparent, transparent 62%), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    background: radial-gradient(ellipse 85% 65% at 8% 8%, hsl(var(--base-two)/0.15), transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, transparent, transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, transparent, transparent 62%), linear-gradient(180deg, transparent 0%, transparent 100%);
}

.contact-widget {
    text-align: center;
    position: relative;
    --icon-wh: 64px;
    background-color: hsl(var(--white)/0.05);
    padding: 24px;
    border-radius: 12px;
}

.contact-widget .icon {
    height: var(--icon-wh);
    width: var(--icon-wh);
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-radius: 50%;
    font-size: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.contact-widget .title {
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (max-width: 1399px) {
    .contact-widget .title {
        margin-bottom: 16px;
    }
}

.contact-info__item {
    color: hsl(var(--body-color));
    display: block;
}

@media screen and (max-width: 1199px) {
    .contact-info__item {
        font-size: 0.875rem;
    }
}

.contact-map iframe {
    min-height: 400px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

@media screen and (max-width: 575px) {
    .contact-map iframe {
        min-height: 320px;
    }
}

.contact-heading {
    margin-bottom: 32px;
}

@media screen and (max-width: 1399px) {
    .contact-heading {
        margin-bottom: 24px;
    }
}

.contact-heading .title {
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-heading .desc {
    font-size: 18px;
    font-weight: 500;
}

@media screen and (max-width: 1399px) {
    .contact-heading .desc {
        font-size: 1rem;
    }
}

.contact-form {
    padding: 24px;
    background-color: hsl(var(--white)/0.03);
    border-radius: 12px;
}

.contact-form .form--control:focus {
    background-color: hsl(var(--base)/0.03);
}

/* =========================================== Account Css Start =========================*/
.account-section {
    overflow: hidden;
    background: radial-gradient(ellipse 85% 65% at 8% 8%, hsl(var(--base-two)/0.15), transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, transparent, transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, transparent, transparent 62%), -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    background: radial-gradient(ellipse 85% 65% at 8% 8%, hsl(var(--base-two)/0.15), transparent 60%), radial-gradient(ellipse 75% 60% at 75% 35%, hsl(var(--base)/0.15), transparent 62%), radial-gradient(ellipse 70% 60% at 15% 80%, transparent, transparent 62%), radial-gradient(ellipse 70% 60% at 92% 92%, transparent, transparent 62%), linear-gradient(180deg, transparent 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

.account-section-shape {
    max-width: 720px;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
    top: 0;
    right: 0;
}

.account-left {
    height: 100%;
}

.account-heading {
    text-align: center;
    margin-bottom: 32px;
}

.account-heading__title {
    margin-bottom: 12px;
}

.account-heading__text {
    font-weight: 500;
}

.account-wrapper {
    border-radius: 12px;
    background-color: hsl(var(--white)/0.03);
    overflow: hidden;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.account-form {
    padding: 24px;
}

.account-form .form--label {
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.account-form .form-group {
    margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
    .account-form .form-group {
        margin-bottom: 16px;
    }
}

.account-form .form--control {
    background-color: transparent;
}

.social-auth__title {
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-auth__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: hsl(var(--border-color));
    z-index: -1;
}

.social-auth__title .text {
    display: inline-block;
    padding-inline: 8px;
    background-color: #0d0d12;
    font-weight: 500;
}

.social-auth__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.social-auth__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    padding: 9px 16px;
    border-radius: 8px;
    border: 1px solid hsl(var(--border-color));
    background-color: transparent;
}

.social-auth__link:hover {
    background-color: hsl(var(--section-bg)/0.3);
}

.social-auth__link img {
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.social-auth__link .text {
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--heading-color));
}

/* ============================================ Account Css End ====================================*/
/* ================================= Dashboard Css Start =========================== */
.dashboard {
    position: relative;
    --inner-p: 24px;
    --side-w: 310px;
    background-color: hsl(var(--section-bg));
}

@media screen and (max-width: 575px) {
    .dashboard {
        --inner-p: 16px;
    }
}

.dashboard__right {
    width: calc(100% - var(--side-w));
    margin-left: var(--side-w);
}

@media screen and (max-width: 1199px) {
    .dashboard__right {
        width: 100%;
        margin-left: 0;
    }
}

.dashboard-header {
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: hsl(var(--white));
    padding-block: 16px;
}

.dashboard-header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.dashboard-header-left .dropdown-menu {
    left: 0 !important;
    right: auto !important;
}

@media screen and (max-width: 1199px) {
    .dashboard-header-right .dropdown-menu {
        right: 0 !important;
        left: auto !important;
    }
}

.user-info {
    position: relative;
    z-index: 1;
    border-radius: 32px;
}

.user-info-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.user-info-thumb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.user-info-content .name {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--heading-color));
    line-height: 1.2;
}

.user-info-arrow {
    color: hsl(var(--border-color));
}

.user-dropdown .dropdown-menu {
    max-width: 240px;
    width: 100%;
    padding-block: 6px;
    padding-inline: 0;
}

.user-dropdown .devide {
    border-top: 1px solid hsl(var(--border-color)/0.5);
    margin-block: 6px;
}

.user-dropdown-link {
    padding: 12px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    color: hsl(var(--body-color));
    font-weight: 500;
    line-height: 1;
}

.notification-icon,
.navigation-bar {
    color: hsl(var(--body-color));
    position: relative;
    height: 48px;
    width: 48px;
    display: grid;
    place-content: center;
    background-color: hsl(var(--section-bg));
    border-radius: 50%;
    font-size: 20px;
}

.notification-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #EB4E3D;
    color: hsl(var(--white));
    border-radius: 32px;
    line-height: 1;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 6px;
}

.notification-dropdown {
    width: 300px;
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 991px) {
    .notification-dropdown {
        width: 220px;
        height: 380px;
    }
}

.notification-dropdown-header {
    padding: 16px;
    border-bottom: 1px solid hsl(var(--border-color)/0.5);
}

.notification-dropdown-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
}

.notification-dropdown-footer {
    padding: 16px 12px;
    text-align: center;
    border-top: 1px solid hsl(var(--border-color)/0.5);
}

.notification-dropdown-footer .link {
    color: hsl(var(--base));
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
}

.notification-item {
    padding: 16px;
}

.notification-item:not(:last-child) {
    border-bottom: 1px solid hsl(var(--border-color)/0.5);
}

.notification-item .title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: hsl(var(--dark));
}

.notification-item .desc {
    font-size: 0.875rem;
    color: hsl(var(--body-color));
}

.notification-item .time {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--base));
}

.dashboard-body {
    position: relative;
    min-height: calc(100vh - (var(--dh-h) + 1px));
    padding-block: var(--inner-p);
}

/* ======================  Pages Design End  ======================*/
/*# sourceMappingURL=main.css.map */




label.required:after {
    content: '*';
    color: #DC3545 !important;
    margin-left: 2px;
}

.error-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: fit-content;
    text-align: center;
}

.error-btn .icon svg {
    width: 20px;
    height: 20px;
    fill: hsl(var(--dark));
    transition: all 0.3s;
}

.error-btn:hover .icon svg {
    fill: hsl(var(--dark)) !important;
}

.error .description,
.error .title {
    color: hsl(var(--white));
}

.error .title {
    margin-top: 45px;
    margin-bottom: 20px;
}


/* custom */
.footer-contact-menu__item-icon {
    width: 20px;
    color: hsl(var(--base));
    font-size: 1.25rem;
}

.footer-contact-menu__item-content {
    width: calc(100% - 20px);
    padding-left: 15px;
}

.footer-contact-menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.2;
    align-items: center;
}

.footer-contact-menu__item-content p,
.footer-contact-menu__item-content p a {
    font-weight: 700;
    color: #8b8b8b;
}

.footer__single ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.pricing-billing-priod {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    gap: 12px;
}

.pricing-billing-priod__label {
    color: hsl(var(--white));
}

@media (max-width: 991px) {
    .pricing-billing-priod {
        margin-bottom: 32px;
    }
}

.topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.topbar .search-form {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 300px;
}

@media screen and (max-width: 575px) {
    .topbar {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .topbar .search-form {
        width: 100%;
        max-width: 100%;
    }
}


.list-group--custom {
    border-radius: 0px;
}

.list-group--custom .list-group-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: transparent;
    color: hsl(var(--white));
    border-color: transparent;
    padding: 0;
}

.list-group--custom .list-group-item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom-color: hsl(var(--border-color));
}

.list-group--custom .list-group-item strong {
    font-weight: 600;
    color: hsl(var(--white));
}



/* new custom */




.gallary-details-card-slider {
    --slide-gap: 0px !important;
    height: 100%;
}

.gallary-details-card-slider__slide {
    height: 100%;
}

.gallary-details-card-slider__slide img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallary-details-card-slider .slick-list,
.gallary-details-card-slider .slick-track {
    height: 100%;
}

.gallary-details-card-slider .slick-arrow {
    --size: 52px;
    width: var(--size);
    height: var(--size);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: calc(var(--size) * 0.2307692308);
    color: hsl(var(--white));
    font-size: calc(var(--size) * 0.4615384615);
    background-color: hsl(var(--gray-two)/0.7);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    border: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.gallary-details-card-slider .slick-arrow.slick-prev {
    left: calc(var(--slide-gap) + 12px);
}

.gallary-details-card-slider .slick-arrow.slick-next {
    right: calc(var(--slide-gap) + 12px);
}

.gallary-details-card-slider .slick-arrow:hover,
.gallary-details-card-slider .slick-arrow:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: hsl(var(--gray-three));
}

.gallary-details-card-loader {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gallary-details-card-loader__text {
    font-weight: 600;
    font-style: italic;
    color: hsl(var(--white));
    font-size: 0.875rem;
    margin-top: 60px;
}

@media screen and (max-width: 991px) {
    .gallary-details-card-loader__text {
        margin-top: 40px;
    }
}

@media screen and (max-width: 575px) {
    .gallary-details-card-loader__text {
        margin-top: 30px;
    }
}

@media screen and (max-width: 424px) {
    .gallary-details-card-loader__text {
        margin-top: 24px;
    }
}

@media screen and (max-width: 374px) {
    .gallary-details-card-loader__text {
        margin-top: 16px;
    }
}

.gallary-details-card-loader .sparkle {
    --size: 300px;
    width: var(--size);
    height: var(--size);
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 1199px) {
    .gallary-details-card-loader .sparkle {
        --size: 250px;
    }
}

@media screen and (max-width: 575px) {
    .gallary-details-card-loader .sparkle {
        --size: 200px;
        margin-top: 16px;
    }
}

@media screen and (max-width: 424px) {
    .gallary-details-card-loader .sparkle {
        --size: 150px;
    }
}

@media screen and (max-width: 374px) {
    .gallary-details-card-loader .sparkle {
        --size: 120px;
    }
}



.gallary-details-card-loader .sparkle .path {
    fill: url(#starGradient);
    stroke: url(#starGradient);
    -webkit-transform-origin: center;
    transform-origin: center;
    transform-box: fill-box;
    color: hsl(var(--base));
    -webkit-animation: path 1.5s ease 0.5s infinite;
    animation: path 1.5s ease 0.5s infinite;
}

.gallary-details-card-loader .sparkle .path:nth-child(1) {
    --scale_path_1: 1.25;
}

.gallary-details-card-loader .sparkle .path:nth-child(2) {
    --scale_path_2: 1.25;
}

.gallary-details-card-loader .sparkle .path:nth-child(3) {
    --scale_path_3: 1.25;
}

@-webkit-keyframes path {

    0%,
    34%,
    71%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    17% {
        -webkit-transform: scale(var(--scale_path_1, 1));
        transform: scale(var(--scale_path_1, 1));
    }

    49% {
        -webkit-transform: scale(var(--scale_path_2, 1));
        transform: scale(var(--scale_path_2, 1));
    }

    83% {
        -webkit-transform: scale(var(--scale_path_3, 1));
        transform: scale(var(--scale_path_3, 1));
    }
}

@keyframes path {

    0%,
    34%,
    71%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    17% {
        -webkit-transform: scale(var(--scale_path_1, 1));
        transform: scale(var(--scale_path_1, 1));
    }

    49% {
        -webkit-transform: scale(var(--scale_path_2, 1));
        transform: scale(var(--scale_path_2, 1));
    }

    83% {
        -webkit-transform: scale(var(--scale_path_3, 1));
        transform: scale(var(--scale_path_3, 1));
    }
}

.copy-btn__success-text {
    display: none;
    color: hsl(var(--white));
}

.copy-btn.copied .copy-btn__text {
    display: none;
}

.copy-btn.copied .copy-btn__success-text {
    display: inline-block;
}


.auth-user-pic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px 24px;
    margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
    .auth-user-pic {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 16px;
    }
}

.auth-user-pic__thumb {
    --size: 80px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.auth-user-pic__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}


.error-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: fit-content;
    text-align: center;
}

.error-btn .icon svg {
    width: 20px;
    height: 20px;
    fill: hsl(var(--base));
    transition: all 0.3s;
}

.error-btn:hover .icon svg {
    fill: hsl(var(--white)) !important;
}

.error .description,
.error .title {
    color: hsl(var(--white));
}

.error .title {
    margin-top: 45px;
    margin-bottom: 20px;
}

.empty-card {
    max-width: 400px;
    margin-inline: auto;
    text-align: center;
}

.empty-card__icon {
    color: hsl(var(--white)/0.8);
    margin-bottom: 24px;
}

.empty-card__icon svg {
    --size: 80px;
    width: var(--size);
    height: var(--size);
}

@media screen and (max-width: 575px) {
    .empty-card__icon svg {
        --size: 60px;
    }
}

.empty-card__title {
    color: hsl(var(--white)/0.8);
}

@media screen and (max-width: 575px) {
    .empty-card__title {
        font-size: 0.875rem;
    }
}

.missionary-view-layout:has(.empty-card) {
    columns: unset !important;
}