/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Exo:ital,wght@0,100..900;1,100..900&display=swap");

/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --heading-font: "Exo 2", sans-serif;
    --body-font: "Exo", sans-serif;
    /* ========================= Theme Color Start ============================= */
    --base-h: 355;
    --base-s: 87%;
    --base-l: 58%;
    --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);
    /* ========================= Theme Color End ============================= */
    /* ========================= Color Variables Start =========================== */
    --white: 0 0% 100%;
    --body-color: 0 0% 100%;
    --body-bg: 0 0% 0%;
    --heading-color: 0 0% 100%;
    --black: 0 0% 0%;
    --border-color: 0 0% 88%;
    --section-bg: 240 4% 16%;
    /* ================================ Box Shadow Start =============================== */
    --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: 0;
    --secondary-s: 1%;
    --secondary-l: 29%;
    --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: 135;
    --success-s: 59%;
    --success-l: 49%;
    --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: 96%;
    --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: 43;
    --warning-s: 97%;
    --warning-l: 54%;
    --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: 211;
    --info-s: 100%;
    --info-l: 50%;
    --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 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-align,
.action-buttons {
    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 ============================= */
/* ============================= Positioning Css Class Start ===================== */
.pa-extend,
.alert__link::before {
    position: absolute;
    content: "";
}

.top-center-extend,
.accordion .accordion-button[aria-expanded=true]::after,
.accordion .accordion-button[aria-expanded=false]::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.left-center-extend {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.top-left-center-extend {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ============================= Positioning Css Class 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(--body-bg));
    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;
}

.container-fluid {
    max-width: 1800px;
}

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 0 20px 0;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    font-weight: 700;
}

@media screen and (max-width: 767px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 15px 0;
    }
}

h1 {
    font-size: 3.75rem;
}

@media screen and (max-width: 1399px) {
    h1 {
        font-size: 3.125rem;
    }
}

@media screen and (max-width: 1199px) {
    h1 {
        font-size: 2.8125rem;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.1875rem;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 1.875rem;
    }
}

h2 {
    font-size: 2.5rem;
}

@media screen and (max-width: 1399px) {
    h2 {
        font-size: 2.8125rem;
    }
}

@media screen and (max-width: 1199px) {
    h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 991px) {
    h2 {
        font-size: 2.1875rem;
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 575px) {
    h2 {
        font-size: 1.5625rem;
    }
}

h3 {
    font-size: 1.875rem;
}

@media screen and (max-width: 1399px) {
    h3 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 1199px) {
    h3 {
        font-size: 1.5625rem;
    }
}

@media screen and (max-width: 991px) {
    h3 {
        font-size: 1.4375rem;
    }
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: 1.375rem;
    }
}

@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.3125rem;
    }
}

@media screen and (max-width: 1199px) {
    h4 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 991px) {
    h4 {
        font-size: 1.1875rem;
    }
}

@media screen and (max-width: 767px) {
    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: 1399px) {
    h5 {
        font-size: 1.1875rem;
    }
}

@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;
    }
}

@media screen and (max-width: 575px) {
    h5 {
        font-size: 1rem;
    }
}

h6 {
    font-size: 1rem;
}

@media screen and (max-width: 1399px) {
    h6 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1199px) {
    h6 {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 991px) {
    h6 {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    h6 {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 575px) {
    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.3s;
    transition: 0.3s;
    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;
}

/* ================================= 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);
}

.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;
}

/* ================================= Custom Classes Css End =========================== */
/* ======================  Swiper Section Start  ======================*/
.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 40%;
    width: 60px;
    height: 60px;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    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(--black));
    background-color: hsl(var(--white));
    border-radius: 50%;
    font-size: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 1199px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media screen and (max-width: 991px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.swiper-button-next i,
.swiper-button-prev i {
    margin-top: 4px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

/* ======================  Swiper Section End  ======================*/
/* ======================  Price Range Section Start  ======================*/
.range-slider {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    clear: both;
}

.range-slider-box .sliderr {
    height: 12px;
    background-color: hsl(var(--white));
    position: relative;
    border-radius: 30px;
}

.range-slider-box .sliderr .progresss {
    height: 100%;
    position: absolute;
    left: 0%;
    right: 0%;
    background-color: hsl(var(--base));
    border-radius: 30px;
}

.range-slider-box .range-input {
    position: relative;
}

.range-slider-box .range-input input {
    position: absolute;
    top: -12px;
    height: 12px;
    width: 100%;
    background: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    pointer-events: none;
    border-radius: 0px !important;
}

.range-input input::-webkit-slider-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsl(var(--white));
    border: 5px solid hsl(var(--base));
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: auto;
    appearance: none;
}

.slider-box {
    padding-bottom: 4px;
    margin-bottom: 10px;
}

.range-slider-box .range-input input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    z-index: 1;
}

.range-slider-box .range-input input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    pointer-events: auto;
    z-index: 1;
}

.price-input h6 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--body-font);
    color: hsl(var(--white)/0.6);
}

/* ======================  Price Range Section End  ======================*/
/* ======================  Filter Section Start  ======================*/
.filter__wrap {
    position: relative;
}

.filter__main {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 11;
    background-color: hsl(var(--white));
    width: 500px;
    padding: 16px;
    border-radius: 8px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.filter__main.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.filter__close {
    font-size: 18px;
    cursor: pointer;
    color: hsl(var(--heading-color));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.filter__close:hover {
    color: hsl(var(--danger));
}

.filter__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: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.filter__topbar h5 {
    margin-bottom: 0;
}

.filter__topbar a {
    font-size: 14px;
    font-weight: 500;
}

.filter__card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.filter__form {
    border: 1px solid hsl(var(--black)/0.08);
    border-radius: 8px;
    padding: 18px;
    max-height: 230px;
    overflow-y: auto;
}

.filter__form::-webkit-scrollbar {
    width: 4px;
}

.filter__form::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px hsl(var(--white));
    box-shadow: inset 0 0 5px hsl(var(--white));
    border-radius: 20px;
}

.filter__form::-webkit-scrollbar-thumb {
    background: hsl(var(--base)/0.7);
    border-radius: 20px;
}

.filter__form::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--base));
}

.filter__form .form-check {
    margin-bottom: 18px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.filter__form .form-check:last-child {
    margin-bottom: 0;
}

/* ======================  Filter Section 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--base {
    background-color: hsl(var(--base)) !important;
}

/* ================================= Background Color Css End =========================== */
/* ================================= Color Css Start =========================== */
.text--base {
    color: hsl(var(--base)) !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;
}

/* ================================= Color Css End =========================== */
/* ================================= Margin Css Start =========================== */
.my-120 {
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .my-120 {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .my-120 {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

.mt-120 {
    margin-top: 60px;
}

@media (min-width: 576px) {
    .mt-120 {
        margin-top: 80px;
    }
}

@media (min-width: 992px) {
    .mt-120 {
        margin-top: 120px;
    }
}

.mb-120 {
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .mb-120 {
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .mb-120 {
        margin-bottom: 120px;
    }
}

.my-60 {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .my-60 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .my-60 {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

.mt-60 {
    margin-top: 30px;
}

@media (min-width: 576px) {
    .mt-60 {
        margin-top: 40px;
    }
}

@media (min-width: 992px) {
    .mt-60 {
        margin-top: 60px;
    }
}

.mb-60 {
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .mb-60 {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .mb-60 {
        margin-bottom: 60px;
    }
}

/* ================================= Margin Css End =========================== */
/* ================================= Padding Css Start =========================== */
.py-120 {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 576px) {
    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .py-120 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.pt-120 {
    padding-top: 60px;
}

@media (min-width: 576px) {
    .pt-120 {
        padding-top: 80px;
    }
}

@media (min-width: 992px) {
    .pt-120 {
        padding-top: 120px;
    }
}

.pb-120 {
    padding-bottom: 60px;
}

@media (min-width: 576px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .pb-120 {
        padding-bottom: 120px;
    }
}

.py-60 {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 576px) {
    .py-60 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .py-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.pt-60 {
    padding-top: 30px;
}

@media (min-width: 576px) {
    .pt-60 {
        padding-top: 40px;
    }
}

@media (min-width: 992px) {
    .pt-60 {
        padding-top: 60px;
    }
}

.pb-60 {
    padding-bottom: 30px;
}

@media (min-width: 576px) {
    .pb-60 {
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .pb-60 {
        padding-bottom: 60px;
    }
}

/* ================================= Padding Css End =========================== */
/* ================================= 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 ============================= */
.accordion .accordion-item {
    border: 1px solid hsl(var(--black)/0.09);
    background-color: transparent !important;
    border-radius: 10px;
    overflow: hidden;
}

.accordion .accordion-item:not(:last-child) {
    margin-bottom: 10px;
}

.accordion .accordion-header {
    line-height: 1;
}

.accordion .accordion-body {
    padding: 20px;
    padding-top: 2px;
    background-color: #2B2B2B;
    color: hsl(var(--white) / 0.6);
}

.accordion .accordion-body .text {
    max-width: 100%;
}

@media screen and (max-width: 575px) {
    .accordion .accordion-body .text {
        max-width: 100%;
    }
}

.accordion:first-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.accordion:last-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.accordion .accordion-button {
    background-color: #2B2B2B;
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 400;
    padding: 20px;
}

@media screen and (max-width: 575px) {
    .accordion .accordion-button {
        padding: 16px;
        padding-right: 30px;
        font-size: 16px;
        line-height: 1.3;
    }
}

.accordion .accordion-button::after {
    background-image: none;
}

.accordion .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed) {
    color: hsl(var(--white));
    background-color: #2B2B2B !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    color: #8D8D8D;
}

.accordion .accordion-button[aria-expanded=true]::after,
.accordion .accordion-button[aria-expanded=false]::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00d";
    display: inline-block;
    position: absolute;
    right: 15px;
    height: unset;
    color: #8D8D8D;
}

.accordion .accordion-button[aria-expanded=false]::after {
    content: "\f067";
    color: hsl(var(--base));
}

/* ================================= 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: 40px !important;
}

.btn {
    color: hsl(var(--white));
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    font-family: var(--heading-font);
    text-transform: uppercase;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}

@media screen and (max-width: 1199px) {
    .btn {
        font-size: 14px;
        border-radius: 8px;
        padding: 14px 26px;
        font-weight: 600;
    }
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn--sm {
    padding: 7px 18px;
    font-weight: 600;
    font-size: 0.75rem;
}

.btn--base {
    background-color: hsl(var(--base));
}

.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:hover,
.btn-outline--base:focus .btn-outline--base:focus-visible {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.btn--primary {
    background-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--secondary {
    background-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: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;
}

.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: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;
}

.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: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;
}

.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:hover,
.btn-outline--info:focus .btn-outline--info:focus-visible {
    background-color: hsl(var(--info)) !important;
    color: hsl(var(--white)) !important;
}

.btn--white {
    background-color: hsl(var(--white)) !important;
}

.btn--white:hover,
.btn--white:focus .btn--white:focus-visible {
    background-color: hsl(var(--white-d-200)) !important;
    border: 1px solid hsl(var(--white-d-200)) !important;
}

.btn-outline--white {
    background-color: transparent !important;
    border: 1px solid hsl(var(--white)) !important;
    color: hsl(var(--white)) !important;
}

.btn-outline--white:hover,
.btn-outline--white:focus .btn-outline--white:focus-visible {
    background-color: hsl(var(--white)) !important;
    color: hsl(var(--white)) !important;
}

.btn--white:hover,
.btn--white:focus,
.btn--white:focus-visible {
    background-color: hsl(var(--white)) !important;
    border: 1px solid hsl(var(--white)) !important;
}

.btn-outline--white:hover,
.btn-outline--white:focus,
.btn-outline--white:focus-visible {
    color: hsl(var(--black)) !important;
}

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.card {
    border-radius: 5px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    background-color: hsl(var(--white));
    border: transparent;
}

.card-header {
    padding: 12px 24px;
    background-color: transparent;
    border-bottom: 1px solid hsl(var(--black)/0.06);
}

.card-title {
    margin-bottom: 0;
}

.card-body {
    background-color: hsl(var(--white));
    padding: 24px;
    border-radius: 5px;
}

.card-footer {
    padding: 12px 24px;
    background-color: transparent;
    border-top: 1px solid hsl(var(--black)/0.06);
}

/* ================================= Card Css End =========================== */
/* ================================= Form Css Start =========================== */
/* Form Label */
.form-label {
    margin-bottom: 6px;
    font-size: 15px;
    color: hsl(var(--white));
    font-weight: 500;
}

label.required:after {
    content: "*";
    color: hsl(var(--danger)) !important;
    margin-left: 2px;
}

.form-group {
    margin-bottom: 1rem;
}

/* Form Select */
.form-select {
    color: hsl(var(--white)) !important;
    padding: 12px 18px;
    border: 1px solid hsl(var(--white)/0.1);
}

.form-select:focus {
    border-color: hsl(var(--white)/0.2);
    color: hsl(var(--white)) !important;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-select option {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
}

/* Form Select End */
/* Form Control Start */
.form-control {
    border-radius: 8px;
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 16px;
    background-color: hsl(var(--section-bg));
    border: 1px solid transparent;
    color: hsl(var(--white));
    line-height: 1;
}

.form-control::-webkit-input-placeholder {
    color: hsl(var(--white)/0.6);
    font-size: 16px;
}

.form-control::-moz-placeholder {
    color: hsl(var(--white)/0.6);
    font-size: 16px;
}

.form-control:-ms-input-placeholder {
    color: hsl(var(--white)/0.6);
    font-size: 16px;
}

.form-control::-ms-input-placeholder {
    color: hsl(var(--white)/0.6);
    font-size: 16px;
}

.form-control::placeholder {
    color: hsl(var(--white)/0.6);
    font-size: 16px;
}

.form-control:focus {
    background-color: hsl(var(--section-bg));
    border-color: hsl(var(--white)/0.1);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: hsl(var(--white)/0.2);
    opacity: 1;
    border: 0;
}

.form-control[type=password] {
    color: hsl(var(--white)/0.5);
}

.form-control[type=password]:focus {
    color: hsl(var(--white));
}

.form-control[type=file] {
    line-height: 50px;
    padding: 0;
    position: relative;
}

.form-control[type=file]::-webkit-file-upload-button {
    border: 1px solid hsl(var(--white)/0.08);
    padding: 4px 6px;
    border-radius: 0.2em;
    background-color: hsl(var(--base)) !important;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 15px;
    color: hsl(var(--white)) !important;
}

.form-control[type=file]::file-selector-button {
    border: 1px solid hsl(var(--white)/0.08);
    padding: 4px 6px;
    border-radius: 0.2em;
    background-color: hsl(var(--base)) !important;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 15px;
    color: hsl(var(--white)) !important;
}

.form-control[type=file]::-webkit-file-upload-button:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

.form-control[type=file]::file-selector-button:hover {
    background-color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
}

/* Form Control End */
textarea.form-control {
    height: 130px;
}

/* 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 */
.password__field {
    position: relative;
    z-index: 1;
}

.password__field input {
    padding-right: 50px !important;
}

.password-show-hide {
    position: absolute;
    right: 24px;
    z-index: 3;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--white)/0.6);
    line-height: 1;
}

.password-show-hide .open-eye-icon {
    display: none;
}

/* --------------- 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 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    padding-left: 0;
}

.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: 3px;
    width: 16px;
    height: 16px;
    border: 1px solid hsl(var(--white)/0.2);
    cursor: pointer;
    margin-left: 0;
    margin-top: 0;
}

.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 6 Free";
    font-weight: 900;
    color: hsl(var(--white));
    font-size: 11px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.form-check .form-check-label {
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Custom Radio Design */
.form-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    padding-left: 0;
}

.form-radio .form-check-input {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid hsl(var(--white)/0.2);
    position: relative;
    background-color: transparent;
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin-left: 0;
    margin-top: 0;
}

.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: 10px;
    height: 10px;
    background-color: hsl(var(--base));
    border-radius: 50%;
    z-index: 999;
}

.form-radio .form-check-label {
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*  Custom Switch Design */
.form-switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    padding-left: 0;
}

.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-top: 0;
    border-radius: 40px;
    width: 54px;
    height: 28px;
    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: 22px;
    height: 22px;
    background-color: hsl(var(--white));
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 4px;
    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% - 26px);
    background-color: hsl(var(--white)) !important;
}

.form-switch .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.form-switch .form-check-label {
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*  Custom Switch End Design */
/* ================================= Form Css End =========================== */
/* --======================Custom Input group Start ======================*/
.input-group {
    border-radius: 5px;
    border: 1px solid hsl(var(--white)/0.1);
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group .form-control {
    border-width: 0px !important;
    padding-right: 10px;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.input-group .form-control:focus {
    border: none !important;
}

.input-group .input-group-text+.form-control {
    padding-right: 20px;
    padding-left: 10px;
}

.input-group:focus-within {
    border: 1px solid hsl(var(--white)/0.2);
}

.input-group .input-group-text {
    padding: 13px;
    border-width: 0px;
    border-radius: 5px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.input-group .form-control[readonly] {
    background: hsl(var(--white)/0.3) !important;
}

.input-group .form-control[readonly]:focus {
    border-color: hsl(var(--white)/0.3);
}

.input-group:has(.form-control[readonly]) {
    background: hsl(var(--white)/0.3) !important;
}

.input-group:has(.form-control[readonly]):focus-within {
    border-color: hsl(var(--white)/0.4) !important;
}

/* --======================Custom Input group End ======================*/
/* ================================= Modal Css Start =========================== */
.modal-header {
    border-bottom: none;
    padding: 24px;
}

@media screen and (max-width: 575px) {
    .modal-header {
        padding: 24px 16px;
    }
}

.modal-header .modal-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: hsl(var(--base));
}

.modal-header .close {
    font-size: 30px;
    line-height: 1;
    color: hsl(var(--danger));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.modal-header .close:hover {
    color: hsl(var(--danger));
}

.modal .modal-dialog {
    max-width: 1500px;
}

.modal-content {
    border-radius: 20px !important;
    background-color: #2A2A2A;
}

.modal-body {
    padding: 0 24px;
}

@media screen and (max-width: 575px) {
    .modal-body {
        padding: 0 16px;
    }
}

.modal-footer {
    padding: 24px;
    border-top: none;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width: 575px) {
    .modal-footer {
        padding: 24px 16px;
    }
}

.modal-backdrop {
    background-color: hsl(var(--black)/0.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.modal-backdrop.show {
    opacity: 1;
}

/* ================================= Modal Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 32px;
}

.pagination .page-item.active .page-link {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
}

.pagination .page-item.disabled .page-link {
    color: #9C9C9C;
    opacity: 0.6;
}

.pagination .page-item .page-link {
    border: none;
    border-radius: 4px;
    height: 30px;
    width: 30px;
    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: #2B2B2B;
    font-size: 20px;
    font-weight: 400;
    padding: 0;
    color: #9C9C9C;
}

.pagination .page-item .page-link:hover {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
}

.pagination .page-item .page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ================================= Pagination Css End =========================== */
/* ================================= Table Css Start =========================== */
.table>:not(caption)>*>* {
    background-color: transparent;
    box-shadow: none;
}

.table {
    margin: 0;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0px 0px;
}

.table thead tr th {
    text-align: center;
    padding: 26px 20px;
    color: hsl(var(--white));
    font-family: var(--heading-font);
    font-weight: 600;
    border-bottom: 0;
    max-width: 170px;
    font-size: 14px;
    border: 1px solid hsl(var(--white)/0.28);
    background-color: transparent;
}

@media screen and (max-width: 1199px) {
    .table thead tr th {
        padding: 18px 10px;
        font-size: 14px;
    }
}

.table thead tr th:not(:first-child) {
    border-left: 0;
}

.table thead tr th:first-child {
    border-radius: 20px 0 0 0;
}

.table thead tr th:last-child {
    border-radius: 0 20px 0 0;
}

.table tbody {
    border: 0 !important;
    background-color: transparent;
}

.table tbody tr {
    border-bottom: 1px solid hsl(var(--white)/0.28);
}

.table tbody tr:last-child {
    border-bottom: 0;
}

.table tbody tr:last-child td {
    border-bottom: 1px solid hsl(var(--white)/0.28);
}

.table tbody tr:last-child td:first-child {
    border-radius: 0px 0 0 20px;
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0px 20px 0;
}

.table tbody tr td {
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    border-width: 1px;
    border: 0;
    font-family: var(--body-font);
    color: hsl(var(--white));
    font-weight: 400;
    max-width: 170px;
    font-size: 16px;
    border-bottom: 1px solid hsl(var(--white)/0.28);
    border-right: 1px solid hsl(var(--white)/0.28);
}

.table tbody tr td::before {
    content: attr(data-label);
    font-family: var(--heading-font);
    font-size: 15px;
    color: hsl(var(--white));
    font-weight: 500;
    display: none;
    width: 45% !important;
    text-align: left;
}

.table tbody tr td:first-child {
    border-left: 1px solid hsl(var(--white)/0.28);
}

.table tbody tr td:last-child {
    border-right: 1px solid hsl(var(--white)/0.28);
}

@media screen and (max-width: 767px) {
    .table--responsive--sm thead {
        display: none;
    }

    .table--responsive--sm tbody tr {
        display: block;
    }

    .table--responsive--sm tbody tr:last-child td {
        border-bottom: 0;
    }

    .table--responsive--sm 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: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.8);
        max-width: unset;
    }

    .table--responsive--sm tbody tr td:last-child {
        border: none;
    }

    .table--responsive--sm tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table--responsive--sm tbody tr td::before {
        display: block;
        font-size: 14px;
        color: hsl(var(--black)/0.7);
    }
}

@media screen and (max-width: 767px) {
    .table--responsive--sm tbody tr td {
        border: 0;
    }
}

@media screen and (max-width: 991px) {
    .table--responsive--md thead {
        display: none;
    }

    .table--responsive--md tbody tr {
        display: block;
    }

    .table--responsive--md tbody tr:nth-child(even) {
        background-color: hsl(var(--black)/0.02);
    }

    .table--responsive--md tbody tr:last-child td {
        border-bottom: 0;
    }

    .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: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.08);
        max-width: unset;
    }

    .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;
        font-size: 14px;
        color: hsl(var(--black)/0.7);
    }
}

@media screen and (max-width: 991px) {
    .table--responsive--md tbody tr td {
        border: none;
    }
}

@media screen and (max-width: 1199px) {
    .table--responsive--lg thead {
        display: none;
    }

    .table--responsive--lg tbody tr {
        display: block;
    }

    .table--responsive--lg tbody tr:nth-child(even) {
        background-color: hsl(var(--black)/0.02);
    }

    .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: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.08);
        max-width: unset;
    }

    .table--responsive--lg tbody tr td:last-child {
        border: none;
    }

    .table--responsive--lg tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table--responsive--lg tbody tr td::before {
        display: block;
        font-size: 14px;
        color: hsl(var(--black)/0.7);
    }
}

@media screen and (max-width: 1199px) {
    .table--responsive--lg tbody tr td {
        border: 0;
    }
}

@media screen and (max-width: 1399px) {
    .table--responsive--xl thead {
        display: none;
    }

    .table--responsive--xl tbody tr {
        display: block;
    }

    .table--responsive--xl tbody tr:last-child td {
        border-bottom: 0;
    }

    .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: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.08);
        max-width: unset;
    }

    .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;
        font-size: 14px;
        color: hsl(var(--black)/0.7);
    }
}

@media screen and (max-width: 1399px) {
    .table--responsive--xl tbody tr td {
        border: 0;
    }
}

/* ================================= Table Css End =========================== */
/* ================================= Tab Css Start =========================== */
.custom--tab {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 40px;
}

.custom--tab .nav-item {
    border-bottom: 0;
    padding: 5px;
}

.custom--tab .nav-item .nav-link {
    color: hsl(var(--heading-color));
    padding: 8px 25px;
    background-color: transparent !important;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 1px solid hsl(var(--black)/0.08) !important;
}

@media screen and (max-width: 1199px) {
    .custom--tab .nav-item .nav-link {
        padding: 12px 15px;
    }
}

.custom--tab .nav-item .nav-link.active {
    color: hsl(var(--white));
    background-color: hsl(var(--base-d-200)) !important;
    border: 1px solid transparent !important;
}

.custom--tab .nav-item .nav-link.active:hover {
    color: hsl(var(--white));
}

.custom--tab .nav-item .nav-link:hover {
    color: hsl(var(--base));
}

.custom--tab .nav-item #pills-disabled-tab.nav-link {
    background-color: hsl(var(--black)/0.04) !important;
    color: hsl(var(--heading-color)/0.6);
}

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
    font-size: 0.75rem;
    border-radius: 5px;
    padding: 8px 10px;
    font-weight: 500;
    position: relative;
    text-align: center;
}

.badge--base {
    background-color: hsl(var(--base)/0.15) !important;
    color: hsl(var(--base)) !important;
}

.badge--primary {
    background-color: hsl(var(--primary)/0.15) !important;
    color: hsl(var(--primary)) !important;
}

.badge--secondary {
    background-color: hsl(var(--secondary)/0.15) !important;
    color: hsl(var(--secondary)) !important;
}

.badge--success {
    background-color: hsl(var(--success)/0.15) !important;
    color: hsl(var(--success)) !important;
}

.badge--danger {
    background-color: hsl(var(--danger)/0.15) !important;
    color: hsl(var(--danger)) !important;
}

.badge--warning {
    background-color: hsl(var(--warning)/0.15) !important;
    color: hsl(var(--warning)) !important;
}

.badge--info {
    background-color: hsl(var(--info)/0.15) !important;
    color: hsl(var(--info)) !important;
}

/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
    margin-bottom: 0;
    background-color: hsl(var(--white)) / 0.1;
    font-weight: 400;
    padding: 17px 24px;
    border-radius: 5px;
}

@media screen and (max-width: 991px) {
    .alert {
        padding: 16px;
    }
}

@media screen and (max-width: 575px) {
    .alert {
        padding: 12px;
    }
}

.alert__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.alert__content {
    width: calc(100% - 24px);
    padding-left: 32px;
}

@media screen and (max-width: 991px) {
    .alert__content {
        padding-left: 16px;
    }
}

@media screen and (max-width: 575px) {
    .alert__content {
        padding-left: 0;
        width: 100%;
        margin-top: 6px;
    }
}

.alert__title {
    font-size: 16px;
    color: hsl(var(--base-two)/0.8);
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 6px;
}

.alert__desc {
    color: hsl(var(--base-two)/0.5);
    display: block;
    line-height: 1.375;
}

@media screen and (max-width: 424px) {
    .alert__desc {
        font-size: 13px;
    }
}

.alert__link {
    position: relative;
}

.alert__link:hover::before {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.alert__link::before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: hsl(var(--base));
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.alert--base {
    border-color: hsl(var(--base)/0.6);
    color: hsl(var(--base));
}

.alert--base .alert__icon {
    color: hsl(var(--base));
}

.alert--primary {
    border-color: hsl(var(--primary)/0.6);
    color: hsl(var(--primary));
}

.alert--primary .alert__icon {
    color: hsl(var(--primary));
}

.alert--success {
    border-color: hsl(var(--success)/0.6);
    color: hsl(var(--success));
}

.alert--success .alert__icon {
    color: hsl(var(--success));
}

.alert--info {
    border-color: hsl(var(--info)/0.6);
    color: hsl(var(--info));
}

.alert--info .alert__icon {
    color: hsl(var(--info));
}

.alert--danger {
    border-color: hsl(var(--danger)/0.6);
    color: hsl(var(--danger));
}

.alert--danger .alert__icon {
    color: hsl(var(--danger));
}

.alert--warning {
    border-color: hsl(var(--warning)/0.6);
    color: hsl(var(--warning));
}

.alert--warning .alert__icon {
    color: hsl(var(--warning));
}

.alert--secondary {
    border-color: hsl(var(--secondary)/0.6);
    color: hsl(var(--secondary));
}

.alert--secondary .alert__icon {
    color: hsl(var(--secondary));
}

/* ====================================== Alert Css End =============================== */
/* ======================  Dropdown Section Start  ======================*/
.dropdown-menu {
    padding: 8px;
    color: hsl(var(--white));
    background-color: hsl(var(--secondary));
    border: none;
    border-radius: 8px;
}

.dropdown-item {
    padding: 8px 12px;
    color: hsl(var(--white));
    border-radius: 8px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
}

.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-left: 6px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    vertical-align: 3px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.dropdown-toggle[aria-expanded=true]::after {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    vertical-align: -1px;
}

/* ======================  Dropdown Section End  ======================*/
/* ================================= Preloader Css Start =========================== */
.preloader {
    position: fixed;
    z-index: 999999;
    background-color: hsl(var(--body-bg));
    width: 100%;
    height: 100%;
    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;
}

.preloader .loader__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 30px;
    background: radial-gradient(circle closest-side, hsl(var(--base)) 94%, transparent) right/calc(200% - 1em) 100%;
    -webkit-animation: loader__circle 1s infinite alternate linear;
    animation: loader__circle 1s infinite alternate linear;
}

@media screen and (max-width: 575px) {
    .preloader .loader__text {
        font-size: 1.875rem;
    }
}

.preloader .loader__text::before {
    content: attr(data-text);
    line-height: 1em;
    color: transparent;
    background: inherit;
    background-image: radial-gradient(circle closest-side, hsl(var(--white)) 94%, hsl(var(--white)/0.2));
    -webkit-background-clip: text;
    background-clip: text;
}

@-webkit-keyframes loader__circle {
    100% {
        background-position: left;
    }
}

@keyframes loader__circle {
    100% {
        background-position: left;
    }
}

/* ================================= Preloader Css End ===========================  */
/* ======================  Offcanvas Section Start  ======================*/
.offcanvas__area {
    position: fixed !important;
    left: -100%;
    height: 100%;
    width: 18.75rem;
    padding: 1.25rem;
    padding-right: 0 !important;
    background-color: hsl(var(--black));
    border-right: 0.0625rem solid hsl(var(--white)/0.06);
    z-index: 15 !important;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    visibility: hidden;
    top: 0;
    overflow: hidden;
}

.offcanvas__area.active {
    left: 0;
    visibility: visible;
}

.offcanvas__area .offcanvas__topbar {
    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;
    gap: 1.25rem;
    margin-right: 1.25rem;
    margin-bottom: 2.5rem;
}

.offcanvas__area .offcanvas__topbar a img {
    width: 180px;
}

.offcanvas__area .offcanvas__topbar .menu__close {
    cursor: pointer;
    color: hsl(var(--white));
    font-size: 28px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.offcanvas__area .offcanvas__topbar .menu__close:hover {
    color: hsl(var(--danger));
}

.offcanvas__area .offcanvas__main {
    overflow-y: auto;
    height: 100%;
    scrollbar-width: thin;
    padding-right: 1.25rem;
    padding-bottom: 3.75rem;
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li {
    margin-bottom: 0.375rem;
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a {
    display: block;
    font-size: 1rem;
    color: hsl(var(--heading-color));
    background-color: hsl(var(--heading-color)/0.06);
    border: 1px solid hsl(var(--white)/0.04);
    padding: 0.75rem 1.25rem;
    border-radius: 0.3125rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-backdrop-filter: blur(0.625rem);
    backdrop-filter: blur(0.625rem);
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a:hover,
.offcanvas__area .offcanvas__main .offcanvas__menu ul li a.active {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--black)/0.3);
    -webkit-backdrop-filter: blur(1.25rem);
    backdrop-filter: blur(1.25rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 12;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ======================  Offcanvas Section End  ======================*/
/* ======================  Header Start Here  ======================*/
.header__area {
    background-color: hsl(var(--black));
    background-image: -webkit-gradient(linear, left top, right top, from(hsl(var(--black))), color-stop(hsl(var(--base)/0.2)), color-stop(hsl(var(--black))), color-stop(hsl(var(--black))), color-stop(hsl(var(--black))), color-stop(hsl(var(--black))), color-stop(hsl(var(--black))), to(hsl(var(--black))));
    background-image: linear-gradient(to right, hsl(var(--black)), hsl(var(--base)/0.2), hsl(var(--black)), hsl(var(--black)), hsl(var(--black)), hsl(var(--black)), hsl(var(--black)), hsl(var(--black)));
    padding: 20px 0;
    border-bottom: gray;
    border-width: 0px 0px 2px;
    border-style: solid;
    top: 0;
    position: sticky;
    z-index: 1000;
}

.header__area .header__main {
    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: 1.25rem;
}

.header__area .header__main .menu__open {
    font-size: 1.375rem;
    color: hsl(var(--heading-color));
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: none;
}

@media screen and (max-width: 991px) {
    .header__area .header__main .menu__open {
        display: block;
    }
}

.header__area .header__main .menu__open:hover {
    color: hsl(var(--base));
}

.header__area .header__logo a {
    display: block;
    width: 100%;
}

.header__area .header__logo a img {
    max-width: 230px;
    width: 100%;
}

@media screen and (max-width: 1399px) {
    .header__area .header__logo a img {
        max-width: 180px;
    }
}

@media screen and (max-width: 1199px) {
    .header__area .header__logo a img {
        max-width: 140px;
    }
}

@media screen and (max-width: 991px) {
    .header__area .header__menu {
        display: none;
    }
}

.header__area .header__menu ul {
    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: 1.875rem;
}

@media screen and (max-width: 1199px) {
    .header__area .header__menu ul {
        gap: 1.25rem;
    }
}

.header__area .header__menu ul li a {
    color: hsl(var(--white)/0.6);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--heading-font);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 1399px) {
    .header__area .header__menu ul li a {
        font-size: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .header__area .header__menu ul li a {
        font-size: 16px;
    }
}

.header__area .header__menu ul li a:hover,
.header__area .header__menu ul li a.active {
    color: hsl(var(--base));
}

.header__area .header__widgets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 1199px) {
    .header__area .header__widgets {
        gap: 8px;
    }
}

@media screen and (max-width: 991px) {
    .header__area .header__widgets {
        display: none;
    }
}

.header__area .header__widgets .dropdown-toggle img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 1199px) {
    .header__area .header__widgets .dropdown-toggle img {
        width: 44px;
        height: 44px;
    }
}

.header__area .header__widgets .btn {
    color: hsl(var(--black)) !important;
}

.balance__btn {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.balance__btn .btn {
    font-size: 18px;
    padding: 14px 12px;
    height: 56px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.balance__btn .btn img {
    width: 40px;
}

.balance__btn i {
    font-size: 20px;
    color: hsl(var(--black));
}

.balance__btn span {
    font-size: 12px;
    font-weight: 600;
    color: hsl(var(--white));
}

.balance__btn p {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: hsl(var(--white));
}

.balance__btn .btn--info i {
    color: hsl(var(--white));
}

/* ======================  Header End Here  ======================*/
/* ======================  Footer Section Start  ======================*/
.footer__area {
    padding: 32px 0;
    margin-top: auto;
    background-color: #070707;
}

.footer__area--buy-coin {
    margin-top: 90px;
}

.footer__logo a {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.footer__logo a img {
    width: 100%;
    max-width: 230px;
}

@media screen and (max-width: 1199px) {
    .footer__logo a img {
        max-width: 190px;
    }
}

@media screen and (max-width: 767px) {
    .footer__logo a img {
        max-width: 150px;
    }
}

.footer__logo {
    margin-bottom: 24px;
}

.footer__single h4 {
    font-size: 16px;
    margin-bottom: 28px;
}

.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;
    gap: 12px;
}

.footer__single ul li a {
    color: hsl(var(--white));
    font-size: 16px;
    font-weight: 400;
    font-family: var(--heading-font);
}

.footer__single ul li a:hover {
    color: hsl(var(--base));
}

@media screen and (max-width: 991px) {
    .footer__about {
        text-align: center;
    }

    .footer__about .social__icon {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/* ======================  Footer Section End  ======================*/
/* ===================== Scroll to Top Start ================================= */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: hsl(var(--white));
    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;
    gap: 8px;
    padding: 11px 16px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: hsl(var(--base-d-200));
}

@media screen and (max-width: 991px) {
    .scroll-top {
        font-size: 14px;
        padding: 10px 14px;
    }
}

.scroll-top i {
    font-size: 14px;
}

.scroll-top:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base));
}

.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 Section Start  ======================*/
.social__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.social__icon li a {
    font-size: 24px;
    color: hsl(var(--white));
}

.social__icon li a:hover {
    color: hsl(var(--base));
}

/* ======================  Social Icon Section End  ======================*/
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 32px 34px;
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        padding: 32px 20px;
    }
}

.breadcrumb__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

@media screen and (max-width: 767px) {
    .breadcrumb__list {
        gap: 8px;
    }
}

.breadcrumb__item {
    color: hsl(var(--white)/0.6);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .breadcrumb__item {
        font-size: 14px;
    }
}

.breadcrumb__item .active {
    color: hsl(var(--base));
}

.breadcrumb__item a {
    color: hsl(var(--white)/0.6);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .breadcrumb__item a {
        font-size: 14px;
    }
}

.breadcrumb__item i {
    font-size: 14px;
}

/* ====================== Breadcrumb Css End ==================== */
/* ======================  Select2 Section Start  ======================*/
.select2.select2-container {
    width: 100% !important;
}

.select2.select2-container .selection {
    width: 100%;
}

.select2-container--default .select2-selection--single {
    background-color: #3C3C3C;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 8px;
    height: auto;
    padding: 14px 30px 14px 14px;
}

.select2-dropdown {
    z-index: 1070;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 0;
    padding-right: 0;
    line-height: normal;
    color: hsl(var(--heading-color));
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    color: hsl(var(--heading-color));
    font-weight: 900;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-dropdown {
    background-color: #3C3C3C;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 8px;
    overflow: hidden;
}

.select2-search--dropdown {
    padding: 6px;
}

.select2-search--dropdown .select2-search__field {
    padding: 8px 12px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: 1px solid hsl(var(--black)/0.1);
    background-color: #3C3C3C;
}

.select2-results__option {
    padding: 10px 14px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    background-color: transparent;
    border-bottom: 1px solid hsl(var(--black)/0.08);
}

.select2-results__option:last-child {
    border-bottom: none;
}

.select2-container--default .select2-results>.select2-results__options {
    scrollbar-width: thin;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white));
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--base)/0.1);
    border-color: hsl(var(--base)/0.1);
}

.select2-results__option.select2-results__message {
    text-align: center;
}

/* ======================  Select2 Section End  ======================*/
/* ======================  Hero Section Start  ======================*/
.hero__area {
    padding-top: 24px;
    padding-bottom: 180px;
    background-position: bottom center;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .hero__area {
        padding-bottom: 150px;
    }
}

@media screen and (max-width: 767px) {
    .hero__area {
        padding-bottom: 110px;
    }
}

.hero__area .back__btn {
    padding-bottom: 40px;
}

.hero { position: relative; }

.hero__thumb {
  position: absolute;
  right: 13%;
  bottom: 2px;
  z-index: -2;
  pointer-events: none;
  user-select: none;

  width: clamp(500px, 28vw, 400px);
  overflow: hidden;
}

.hero__thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  position: static;
}

@media (max-width: 1645px) {
  .hero__thumb { width: clamp(220px, 22vw, 290px); right: 6%; }
}
@media (max-width: 991px) {
  .hero__thumb { width: 220px; right: 2%; }
}
@media (max-width: 767px) {
  .hero__thumb { display: none; }
}

.hero__single {
    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;
}

.hero__single>span {
    background-color: #FFFCC9;
    border-radius: 40px;
    color: hsl(var(--base));
    padding: 10px 12px;
    padding-bottom: 7px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    line-height: 1;
}

@media screen and (max-width: 1199px) {
    .hero__single>span {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .hero__single>span {
        font-size: 12px;
    }
}

.hero__single>span i {
    font-size: 18px;
    margin-top: -3px;
}

@media screen and (max-width: 991px) {
    .hero__single>span i {
        font-size: 16px;
        margin-top: -2px;
    }
}

@media screen and (max-width: 767px) {
    .hero__single>span i {
        font-size: 14px;
        margin-top: -2px;
    }
}

.hero__single h2 span {
    font-size: 20px;
    font-weight: 600;
    color: hsl(var(--base));
}

@media screen and (max-width: 1199px) {
    .hero__single h2 span {
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    .hero__single h2 span {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .hero__single h2 span {
        font-size: 12px;
    }
}

@font-face {
  font-family: "LoL";
  src: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/webfonts/League.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LoL-Inline";
  src: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/webfonts/League-Inline.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LoL-ThinInline";
  src: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/webfonts/League-ThinInline.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.hero__title {
    font-family: var(--body-font);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero__subtitle {
    font-family: var(--body-font);
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: lowercase;
    color: hsl(var(--body-color));
    letter-spacing: 0.5px;
}

.hero__main-title {
    font-family: var(--body-font);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: hsl(var(--heading-color));
    letter-spacing: 2px;
}

.hero__subtitle-end {
    font-family: var(--body-font);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    color: hsl(var(--body-color));
    letter-spacing: 1px;
}

@media screen and (max-width: 1199px) {
    .hero__main-title {
        font-size: 2rem;
    }
    .hero__subtitle {
        font-size: 1rem;
    }
    .hero__subtitle-end {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    .hero__main-title {
        font-size: 1.75rem;
    }
    .hero__subtitle {
        font-size: 0.9375rem;
    }
    .hero__subtitle-end {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .hero__main-title {
        font-size: 1.5rem;
    }
    .hero__subtitle {
        font-size: 0.875rem;
    }
    .hero__subtitle-end {
        font-size: 0.9375rem;
    }
}

.hero__single h2 {
    font-family: "Exo", sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 10px;
    text-align: center;
    display: block;
    line-height: 1.2;
    color: hsl(var(--heading-color));
}

.hero__single h2 .hero__text-red {
    color: hsl(var(--base)) !important;
    display: inline;
    font-family: "Exo", sans-serif !important;
    font-size: 60px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
}

.hero__tagline__wrapper {
    position: relative;
    display: inline-block;
}

.hero__tagline {
    font-family: 'LoL', sans-serif;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    color: hsl(var(--body-color));
    letter-spacing: 1px;
    margin-bottom: 19px;
    margin-top: 4px;
    line-height: 1.4;
    position: relative;
}

.hero__tagline__s {
    position: relative;
    display: inline-block;
}

.hero__tagline__badge {
    position: absolute;
    top: -3px;
    right: -12px;
    color: hsl(var(--base));
    font-size: 0.4em;
    line-height: 1;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .hero__tagline {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 991px) {
    .hero__tagline {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
}

@media screen and (max-width: 767px) {
    .hero__tagline {
        font-size: 1.75rem;
        letter-spacing: 0.5px;
    }
}

@media screen and (max-width: 575px) {
    .hero__tagline {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1199px) {
    .hero__single h2 {
        font-size: 48px;
    }
    .hero__single h2 .hero__text-red {
        font-size: 48px !important;
    }
}

@media screen and (max-width: 991px) {
    .hero__single h2 {
        font-size: 36px;
    }
    .hero__single h2 .hero__text-red {
        font-size: 36px !important;
    }
}

@media screen and (max-width: 767px) {
    .hero__single h2 {
        font-size: 29px;
    }
    .hero__single h2 .hero__text-red {
        font-size: 29px !important;
    }
}

@media screen and (max-width: 575px) {
    .hero__single h2 {
        font-size: 24px;
    }
    .hero__single h2 .hero__text-red {
        font-size: 24px !important;
    }
}

.hero__process {
    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: 24px;
}

@media screen and (max-width: 1199px) {
    .hero__process {
        gap: 18px;
    }
}

@media screen and (max-width: 767px) {
    .hero__process {
        gap: 10px;
    }
}

.hero__process :nth-child(1) {
    background-color: hsl(var(--base));
    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;
    border-radius: 16px;
    padding: 14px 63px;
    font-size: 16px;
    font-weight: 700;
    gap: 4px;
}
.hero__process :nth-child(3) {
    background-color: hsl(var(--base));
    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;
    border-radius: 16px;
    padding: 14px 50px;
    font-size: 16px;
    font-weight: 700;
    gap: 4px;
}
.hero__process :nth-child(5) {
    background-color: hsl(var(--base));
    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;
    border-radius: 16px;
    padding: 14px 55px;
    font-size: 16px;
    font-weight: 700;
    gap: 4px;
}

@media screen and (max-width: 1199px) {
    .hero__process :nth-child(1) {
        padding: 12px 48px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 991px) {
    .hero__process :nth-child(1) {
        font-size: 14px;
        padding: 12px 36px;
    }
}

@media screen and (max-width: 767px) {
    .hero__process :nth-child(1) {
        font-size: 12px;
        padding: 10px 25px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 1199px) {
    .hero__process :nth-child(3) {
        padding: 12px 35px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 991px) {
    .hero__process :nth-child(3) {
        font-size: 14px;
        padding: 12px 25px;
    }
}

@media screen and (max-width: 767px) {
    .hero__process :nth-child(3) {
        font-size: 12px;
        padding: 10px 16px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 1199px) {
    .hero__process :nth-child(5) {
        padding: 12px 40px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 991px) {
    .hero__process :nth-child(5) {
        font-size: 14px;
        padding: 12px 29px;
    }
}

@media screen and (max-width: 767px) {
    .hero__process :nth-child(5) {
        font-size: 12px;
        padding: 10px 19px;
        border-radius: 8px;
    }
}

.hero__process>i {
    font-size: 26px;
}

@media screen and (max-width: 1199px) {
    .hero__process>i {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .hero__process>i {
        font-size: 14px;
    }
}

.hero__process > span > i { font-size: 20px;padding:0px !important; }

@media screen and (max-width: 1199px) {
    .hero__process > span > i {
        font-size: 16px;
        padding:0px !important;
    }
}

.hero__single ul {
    margin-top: 37px;
    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;
    background-color: hsl(var(--white));
    border-radius: 40px;
    padding: 11px 18px;
}

@media screen and (max-width: 991px) {
    .hero__single ul {
        padding: 8px 15px;
    }
}

@media screen and (max-width: 767px) {
    .hero__single ul {
        margin-top: 20px;
    }
}

.hero__single ul li {
    color: hsl(var(--black));
    font-size: 16px;
    font-weight: 600;
    margin-bottom: -3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

@media screen and (max-width: 991px) {
    .hero__single ul li {
        font-size: 12px;
    }
}

.hero__single ul li i {
    margin-top: -3px;
}

.hero__single ul li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid hsl(var(--black)/0.1);
}

/* ======================  Hero Section End  ======================*/
/* ======================  Mode Section Start  ======================*/
.mode__area {
    padding: 80px 0px;
}

@media screen and (max-width: 991px) {
    .mode__area {
        padding: 60px 0;
    }
}

.mode__title h4 {
    font-weight: 400;
    margin-bottom: 20px;
}

.mode__title p {
    font-size: 20px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.mode__title {
    margin-bottom: 20px;
}

.mode__radio .form-check-label {
    background-color: transparent;
    padding: 16px;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.mode__radio .form-check-label:has(.form-check-input:checked) {
    background-color: hsl(var(--base)/0.2);
}

.mode__single {
    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;
    gap: 20px;
    width: 100%;
}

@media screen and (max-width: 575px) {
    .mode__single {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.mode__radio__left strong {
    font-size: 16px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.mode__radio__left strong i {
    font-size: 14px;
}

.mode__radio__left span {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white)/0.6);
    margin-bottom: 8px;
    display: block;
}

.mode__radio__left a {
    color: hsl(var(--base));
    font-size: 16px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.mode__radio__left a i {
    margin-bottom: -1px;
    font-size: 14px;
}

.mode__radio__left a:hover {
    color: hsl(var(--white));
}

.mode__radio__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    white-space: nowrap;
}

.mode__radio__right strong {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    display: inline-block;
}

.mode__radio__right .infinity-symbol {
    font-size: 180%;
    position: relative;
    top: 3px;
}

.mode__radio__right span {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white)/0.6);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.mode__radio__right span i {
    font-size: 14px;
}

.mode__review__single {
    background-color: hsl(var(--section-bg));
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.mode__review__single p {
    color: hsl(var(--white)/0.6);
    font-size: 14px;
    font-weight: 400;
}

.mode__review__topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.mode__review__topbar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.mode__review__topbar h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mode__review__topbar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

.mode__review__topbar ul li {
    color: hsl(var(--white)/0.8);
    font-size: 16px;
}

.mode__review__single:nth-child(2) {
    opacity: 0.8;
}

.mode__review__single:last-child {
    opacity: 0.6;
}

.mode__review__more p {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #767676;
}

.mode__review__more p a {
    color: #767676;
    margin-left: 4px;
    text-decoration: underline;
}

.mode__review__more p a:hover {
    color: hsl(var(--base));
}

.mode__left {
    max-width: 95%;
}

@media screen and (max-width: 991px) {
    .mode__left {
        max-width: 100%;
        margin-bottom: 32px;
    }
}

.mode__type {
    margin-top: 48px;
    margin-bottom: 28px;
    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: 8px;
}

.mode__type .form-check-label {
    padding: 16px 25px;
    background-color: hsl(var(--section-bg));
    border-radius: 60px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white)/0.6);
}

@media screen and (max-width: 575px) {
    .mode__type .form-check-label {
        padding: 10px 21px;
        font-size: 14px;
    }
}

.mode__type .form-check-input:checked~.form-check-label {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
}

.mode__payment {
    background-color: hsl(var(--section-bg));
    border-radius: 20px;
    padding: 30px;
}

.mode__payment>h3 {
    color: hsl(var(--base));
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.mode__payment__topbar {
    margin-bottom: 16px;
    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: 20px;
}

.mode__payment__topbar a {
    font-size: 20px;
    line-height: 1;
    color: hsl(var(--white));
}

.mode__payment__topbar h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
}

.mode__payment__topbar h4 span {
    font-weight: 700;
}

.mode__payment__topbar img {
    width: 70px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media screen and (max-width: 575px) {
    .mode__payment__topbar img {
        width: 50px;
    }
}

.mode__payment__info ul li {
    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: 20px;
}

.mode__payment__info ul li h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.mode__payment__info ul li {
    padding: 16px 0;
    border-bottom: 1px solid hsl(var(--white)/0.15);
}

.mode__payment__info ul li:last-child {
    border-bottom: none;
}

.mode__payment__info ul li span {
    font-size: 19px;
    font-weight: 400;
}

.quantity {
    max-width: 130px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}

.quantity input {
    width: 100%;
    text-align: center;
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white));
}

.mode__payment__discount {
    margin-top: 16px;
}

.mode__payment__discount a {
    color: hsl(var(--white));
    font-size: 16px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.mode__payment__discount a:hover {
    color: hsl(var(--base));
}

.mode__payment__topbar a:hover {
    color: hsl(var(--base));
}

.mode__review {
    position: sticky;
    top: 200px;
}

.mode__payment__btn .btn::after {
    position: absolute;
    left: 10%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: calc(100% + 2px);
    z-index: -1;
    content: "";
    background-image: url(../images/double-arrow.png);
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mode__payment__btn .btn:hover::after {
    left: 15%;
}

/* ======================  Mode Section End  ======================*/
/* ======================  Team Section Start  ======================*/
.team__area {
    padding-bottom: 80px;
}

.section__topbar {
    margin-bottom: 32px;
}

.section__topbar h4 {
    font-size: 24px;
    font-weight: 600;
    color: hsl(var(--base));
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section__topbar p {
    margin-bottom: 32px;
    color: hsl(var(--white)/0.6);
}

.search__box {
    position: relative;
    z-index: 1;
}

.search__box input {
    padding-left: 50px;
}

.search__box span {
    position: absolute;
    left: 20px;
    top: 52%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    color: hsl(var(--white)/0.6);
}

.section__topbar ul {
    margin-top: 32px;
    background-color: hsl(var(--white));
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
}

.section__topbar ul li {
    color: hsl(var(--black));
    font-size: 14px;
    font-weight: 600;
    margin-bottom: -3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.section__topbar ul li i {
    margin-top: -3px;
}

.section__topbar ul li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px 14px;
    border-right: 1px solid hsl(var(--black)/0.1);
}

.team__card {
    background-color: #2B2B2B;
    border-radius: 16px;
    overflow: hidden;
}

.team__topbar {
    padding: 32px;
    padding-bottom: 16px;
}

@media screen and (max-width: 1199px) {
    .team__topbar {
        padding: 24px;
    }
}

.team__online {
    margin-bottom: 24px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.team__online i {
    font-size: 8px;
    margin-top: -1px;
}

.team__topbar h4 {
    font-size: 24px;
    font-weight: 700;
    color: hsl(var(--white));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1;
    margin-bottom: 24px;
}

.team__topbar h4 .text--warning {
    font-size: 14px;
    font-weight: 600;
}

.total__review {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
}

.tag__line {
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--white)/0.6);
    margin-bottom: 24px;
}

.team__topbar p {
    font-size: 16px;
    font-weight: 500;
}

.team__member {
    background-color: #414141;
    padding: 24px;
}

@media screen and (max-width: 1199px) {
    .team__member {
        padding: 16px;
    }
}

.team__member__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.team__member__info img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media screen and (max-width: 1199px) {
    .team__member__info img {
        width: 70px;
        height: 70px;
    }
}

.team__member__info h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
}

.team__member__info p {
    font-size: 14px;
    font-weight: 500;
}

.team__member__widgets {
    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: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.team__member__widgets h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.team__member__widgets h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.team__member__info::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 85px;
    height: 3px;
    content: "";
    background-color: hsl(var(--base));
}

.team__member__btn .btn {
    font-weight: 500;
}

.team__bottombar {
    max-width: 680px;
    text-align: center;
    margin-inline: auto;
    margin-top: 60px;
}

@media screen and (max-width: 1199px) {
    .team__bottombar {
        max-width: 570px;
    }
}

.team__bottombar p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
    .team__bottombar p {
        font-size: 16px;
    }
}

.team__bottombar p a {
    color: hsl(var(--base));
    margin-left: 5px;
}

.team__bottombar p a i {
    margin-left: 5px;
}

.team__bottombar p>i {
    margin-right: 5px;
}

.team__bottombar p a:hover {
    color: hsl(var(--white));
}

.team__area.booking__team {
    padding-top: 80px;
}

@media screen and (max-width: 1199px) {
    .team__area.booking__team {
        padding-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .team__area.booking__team {
        padding-top: 20px;
    }
}

/* ======================  Team Section End  ======================*/
/* ======================  Facility Section Start  ======================*/
.facility__title {
    margin-bottom: 36px;
    padding-top: 48px;
    border-top: 1px solid #464646;
}

.facility__title h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: hsl(var(--base));
}

.facility__single span {
    width: 72px;
    height: 72px;
    background-color: hsl(var(--white)/0.1);
    border-radius: 50%;
    color: hsl(var(--white));
    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;
    font-size: 24px;
    margin-bottom: 16px;
}

.facility__single h4 {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.facility__single p {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white)/0.6);
}

.facility__single {
    margin-top: 36px;
}

@media screen and (max-width: 991px) {
    .facility__single {
        margin-top: 10px;
    }
}

.facility__area .team__bottombar {
    margin-top: 60px;
}

/* ======================  Facility Section End  ======================*/
/* ======================  FAQ Section Start  ======================*/
.faq__area {
    padding-top: 60px;
    padding-bottom: 140px;
}

.faq__title {
    margin-bottom: 32px;
    padding-top: 48px;
    border-top: 1px solid #464646;
}

.faq__title h2 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
    color: hsl(var(--base));
}

/* ======================  FAQ Section End  ======================*/
/* ======================  Popup Section Start  ======================*/
.membar__card {
    border: 1px solid #5C5C5C;
    border-radius: 16px;
    overflow: hidden;
    background-color: #414141;
}

.membar__card:hover .member__details {
    opacity: 1;
    visibility: visible;
}

.member__topbar {
    position: relative;
    z-index: 1;
}

.member__wr {
    padding: 24px;
    background-color: #2B2B2B;
}

.member__details {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--black)/0.8);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    padding: 24px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.member__details .btn {
    border-radius: 0;
    font-size: 23px;
    font-weight: 400;
}

.membar__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px;
}

@media screen and (max-width: 1399px) {
    .membar__info {
        gap: 10px;
    }
}

.membar__info img {
    border-radius: 100px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 165px;
    border-width: 3px;
    border-style: solid;
    border-color: hsl(var(--base));
    height: 165px;
}

@media screen and (max-width: 1399px) {
    .membar__info img {
        max-width: 110px;
        border-radius: 100px;
        max-height: 110px;
    }
}

.membar__info h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 14px;
}

@media screen and (max-width: 1399px) {
    .membar__info h4 {
        font-size: 20px;
    }
}

.membar__info p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 1399px) {
    .membar__info p {
        font-size: 14px;
    }
}

.membar__info p span {
    font-weight: 600;
    margin-right: 4px;
}

.membar__info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.membar__info ul li {
    font-size: 16px;
    font-weight: 500;
    color: hsl(var(--white));
}

@media screen and (max-width: 1399px) {
    .membar__info ul li {
        font-size: 14px;
    }
}

.membar__info ul li span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid hsl(var(--base));
    position: relative;
    z-index: 1;
    margin-right: 4px;
}

.membar__info ul li span::after {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    content: "";
    background-color: hsl(var(--base));
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.member__bottombar {
    padding: 24px;
    border-top: 1px solid hsl(var(--base));
    padding-top: 17px;
}

.member__price h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .member__price h5 {
        font-size: 18px;
    }
}

.member__price h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .member__price h6 {
        font-size: 18px;
    }
}

.member__price {
    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: 10px;
    margin-bottom: 18px;
}

.member__desc {
    padding: 24px;
    min-height: 10rem;
}

.member__desc span {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    color: hsl(var(--white)/0.6);
    line-height: 1;
}

.member__desc p {
    font-weight: 500;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popup__datetime {
    margin-bottom: 30px;
}

.popup__datetime__title {
    margin-bottom: 17px;
}

.popup__datetime__title h4 {
    font-size: 16px;
    font-weight: 500;
    color: hsl(var(--base));
    line-height: 1;
}

.popup__datetime__form input {
    background-color: #3C3C3C;
}

.popup__topbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1399px) {
    .popup__topbar {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .popup__topbar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 575px) {
    .popup__topbar {
        grid-template-columns: repeat(1, 1fr);
    }
}

.popup__single>label {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white)/0.6);
    margin-bottom: 10px;
    display: block;
}

@media screen and (max-width: 1399px) {
    .popup__single>label {
        font-size: 14px;
    }
}

.popup__toolbar {
    background-color: #3C3C3C;
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 13px;
}

.popup__toolbar li:not(:last-child) {
    border-right: 1px solid hsl(var(--white)/0.2);
    margin-right: 0px;
    padding-right: 8px;
}

@media screen and (max-width: 767px) {
    .popup__toolbar li:not(:last-child) {
        margin-right: 6px;
        padding-right: 6px;
    }
}

.popup__toolbar li a img {
    width: auto;
    height: 22px;
}

.popup__topbar .search__box input {
    background-color: #3C3C3C;
}

.popup__topbar .dropdown {
    background-color: #3C3C3C;
    border-radius: 8px;
    padding: 15px;
}

.popup__topbar .dropdown-toggle {
    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;
    width: 100%;
}

.popup__topbar .dropdown:has(.champion__user) {
    padding: 14px;
}

.champion__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    color: hsl(var(--white)/0.6);
    text-transform: capitalize;
}

.champion__user img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.dropdown-item:has(.champion__user):hover .champion__user {
    color: hsl(var(--white));
}

.champion__search {
    margin-bottom: 8px;
}

.champion__list {
    max-height: 300px;
    overflow-y: auto;
}

.champion__list::-webkit-scrollbar {
    width: 6px;
}

.champion__list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px hsl(var(--base)/0.2);
    box-shadow: inset 0 0 5px hsl(var(--base)/0.2);
}

.champion__list::-webkit-scrollbar-thumb {
    background: hsl(var(--base)/0.7);
}

.champion__list::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--base));
}

/* ======================  Popup Section End  ======================*/
/* ======================  Testimonials Section Start  ======================*/
.testimonial__card {
    padding: 24px 48px;
    border-radius: 20px;
    background-color: #0D1318CC;
    border: 1px solid hsl(var(--base)/0.16);
}

@media screen and (max-width: 1399px) {
    .testimonial__card {
        padding: 24px 30px;
    }
}

.testimonial__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.testimonial__stars p {
    font-size: 12px;
    font-weight: 400;
    color: hsl(var(--white)/0.8);
}

.testimonial__stars ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.testimonial__stars ul li {
    font-size: 16px;
}

.testimonial__content img {
    width: 48px;
    height: 48px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid hsl(var(--base)/0.2);
    margin-bottom: 16px;
}

.testimonial__content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.testimonial__content p {
    font-size: 18px;
    font-weight: 400;
    color: hsl(var(--white)/0.7);
}

@media screen and (max-width: 1199px) {
    .testimonial__content p {
        font-size: 16px;
    }
}

/* ======================  Testimonials Section End  ======================*/
/* ======================  Buy Coin Section Start  ======================*/
.coin__method {
    background-color: transparent;
    border-right: 1px solid hsl(var(--warning)/0.3);
    height: 100%;
}

.coin__method__title h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
    .coin__method__title h4 {
        font-size: 20px;
    }
}

.coin__method__title {
    padding: 32px 44px;
}

.coin__method__wrap .form-check-input[type=radio] {
    border-radius: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.coin__method__wrap .form-radio .form-check-input {
    border: 4px solid hsl(var(--warning));
}

.coin__method__wrap .form-radio .form-check-input:checked::before {
    width: 15px;
    height: 15px;
    background-color: hsl(var(--white));
    border-radius: 0;
    z-index: 999;
    border: 1px solid hsl(var(--base));
}

.coin__method__wrap .form-radio {
    padding: 40px;
    gap: 32px;
}

@media screen and (max-width: 767px) {
    .coin__method__wrap .form-radio {
        padding: 16px 24px;
        gap: 16px;
    }
}

.coin__method__wrap .form-radio:has(.form-check-input:checked) {
    background-image: -webkit-gradient(linear, left top, right top, from(hsl(var(--base)/0.3)), to(transparent));
    background-image: linear-gradient(to right, hsl(var(--base)/0.3), transparent);
}

.coin__select {
    padding: 32px 44px;
}

@media screen and (max-width: 1399px) {
    .coin__select {
        padding: 32px;
    }
}

.coin__select__title h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
    .coin__select__title h4 {
        font-size: 20px;
    }
}

.coin__select__title {
    margin-bottom: 32px;
}

.coin__select__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

@media screen and (max-width: 1399px) {
    .coin__select__wrap {
        gap: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .coin__select__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 575px) {
    .coin__select__wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

.coin__select__content {
    border: 1px solid hsl(var(--warning)/0.8);
    border-radius: 11px;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.coin__select__content img {
    width: auto;
    display: block;
    margin: 40px auto;
    height: 70px;
}

.coin__quantity {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.coin__bonus {
    display: block;
}

.coin__bonus {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    color: hsl(var(--base));
}

.coin__select__wrap .form-check-input {
    display: none;
}

.coin__select__wrap .form-check-label {
    width: 100%;
}

.coin__select__wrap .coin__select__content .btn {
    margin-bottom: -20px;
    border-radius: 8px;
}

.coin__select__wrap .form-radio:has(.form-check-input:checked) .coin__select__content {
    background-color: hsl(var(--warning)/0.1);
}

/* ======================  Buy Coin Section End  ======================*/
/* ======================  Order Details Section Start  ======================*/
.order__details {
    background-color: transparent;
    padding-top: 64px;
    padding-bottom: 40px;
}

.order__title h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
    .order__title h3 {
        font-size: 20px;
    }
}

.order__title {
    margin-bottom: 48px;
}

@media screen and (max-width: 1199px) {
    .order__title {
        margin-bottom: 30px;
    }
}

.order__img {
    padding: 32px;
    border-radius: 18px;
    border: 2px solid hsl(var(--warning));
    text-align: center;
    margin-bottom: 40px;
}

.order__img img {
    max-width: 220px;
    margin-bottom: 20px;
}

.order__img h4 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 14px;
}

@media screen and (max-width: 1199px) {
    .order__img h4 {
        font-size: 30px;
    }
}

.order__img p {
    font-size: 20px;
    font-weight: 600;
    color: hsl(var(--base));
}

@media screen and (max-width: 1199px) {
    .order__img p {
        font-size: 16px;
    }
}

.order__details__left {
    padding: 0 50px;
    border-right: 1px solid #5E50264D;
}

@media screen and (max-width: 991px) {
    .order__details__left {
        padding: 0;
        margin-bottom: 40px;
        border-right: none;
    }
}

.order__info ul li {
    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: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: hsl(var(--white)/0.8);
    font-size: 20px;
    font-weight: 600;
}

@media screen and (max-width: 1199px) {
    .order__info ul li {
        font-size: 16px;
    }
}

.order__info ul li span {
    font-weight: 600;
}

.border__info {
    border-bottom: 1px solid #5E50264D;
}

.order__wrap {
    padding: 0 24px;
}

@media screen and (max-width: 991px) {
    .order__wrap {
        padding: 0;
    }
}

.order__btn__blk {
    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: 24px;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid #5E50264D;
}

@media screen and (max-width: 991px) {
    .order__btn__blk {
        margin-top: 40px;
        padding-top: 40px;
    }
}

.order__btn__blk .btn {
    border-radius: 8px;
    font-weight: 400;
}

.order__form__single {
    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;
    white-space: nowrap;
    gap: 10px;
}

.order__form__single label {
    width: 40%;
    font-size: 20px;
    font-weight: 500;
    color: hsl(var(--white)/0.8);
}

@media screen and (max-width: 1199px) {
    .order__form__single label {
        font-size: 16px;
    }
}

.order__form__single .form-control {
    background-color: hsl(var(--warning)/0.04);
    border: 1px solid hsl(var(--warning)/0.4);
}

.order__form__single .select2-container--default .select2-selection--single {
    background-color: hsl(var(--warning)/0.04);
    border: 1px solid hsl(var(--warning)/0.4);
    padding: 16px 30px 16px 14px;
}

.order__form__check .form-check {
    gap: 12px;
}

.order__form__check .form-check .form-check-input {
    background-color: hsl(var(--warning)/0.04);
    border-radius: 0;
    width: 32px;
    height: 32px;
    border: 1px solid hsl(var(--warning)/0.4);
}

@media screen and (max-width: 1199px) {
    .order__form__check .form-check .form-check-input {
        width: 24px;
        height: 24px;
    }
}

.order__form__check .form-check .form-check-label {
    font-size: 20px;
    color: hsl(var(--white)/0.8);
}

@media screen and (max-width: 1199px) {
    .order__form__check .form-check .form-check-label {
        font-size: 16px;
    }
}

.order__form__check .form-check .form-check-input:checked::before {
    font-size: 20px;
}

@media screen and (max-width: 1199px) {
    .order__form__check .form-check .form-check-input:checked::before {
        font-size: 16px;
    }
}

.order__confirmation img {
    max-width: 100px;
    margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
    .order__confirmation img {
        margin-bottom: 20px;
    }
}

.order__confirmation p {
    font-size: 20px;
    font-weight: 400;
    color: hsl(var(--white)/0.8);
    margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
    .order__confirmation p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.order__confirmation .btn {
    font-weight: 400;
    color: hsl(var(--white)) !important;
    border-radius: 8px;
}

/* ======================  Order Details Section End  ======================*/
/* ======================  Dashboard Section Start  ======================*/
.dashboard__area {
    position: relative;
    max-width: 1800px;
    width: 100%;
    margin-inline: auto;
}

.dashboard__sidebar {
    display:flex;
    flex-direction:column;
    position: fixed;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 14;
    background-color: hsl(var(--white)/0.1);
    padding: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.dashboard__sidebar .dashboard__menu:last-child{
    margin-top:auto;
}

@media screen and (max-width: 991px) {
    .dashboard__sidebar {
        left: -100%;
        background-color: hsl(var(--section-bg));
    }

    .dashboard__sidebar.active {
        left: 0;
    }
}

.dashboard__header {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 20px;
}

@media screen and (max-width: 991px) {
    .dashboard__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.dashboard__header a img {
    max-width: 160px;
}

.sidebar__menu {
    font-size: 24px;
    cursor: pointer;
    color: hsl(var(--white));
}

.dashboard__wrapper {
    padding: 32px;
    padding-left: 232px;
}

@media screen and (max-width: 1399px) {
    .dashboard__wrapper {
        padding: 32px;
        padding-left: 232px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard__wrapper {
        padding: 24px;
        padding-left: 224px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard__wrapper {
        padding: 16px;
        padding-left: 16px;
    }
}

.membership__wrapper {
    background-color: #2A2A2A;
    padding: 32px;
    border-radius: 20px;
}

.membership__wrapper>h2 {
    color: hsl(var(--base));
    font-size: 26px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid hsl(var(--white) / 0.2);
    padding-bottom: 20px;
    width: 100%;
    text-transform: uppercase;
}

.membership__wrapper>h2 span {
    width: 100px;
    height: 40px;
    background-color: hsl(var(--info));
    color: hsl(var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.membership__body>h3 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
}

.membership__redeem h4 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.membership__redeem p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: hsl(var(--white) / 0.8);
}

.membership__redeem p i {
    width: 22px;
    height: 22px;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: 0 0 auto;
}

.membership__redeem {
    margin-bottom: 24px;
}

.membership__redeem:last-child {
    margin-bottom: 0;
}

.membership__redeem .btn {
    margin-top: 16px;
    border: 1px solid #565656 !important;
    font-size: 16px;
    color: hsl(var(--white)) !important;
    border-radius: 4px;
    padding: 16px;
}

.membership__redeem .btn-outline--base:hover,
.membership__redeem .btn-outline--base:focus,
.membership__redeem .btn-outline--base:focus-visible {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
    border-color: hsl(var(--base)) !important;
}

.dashboard__logo {
    margin-bottom: 32px;
}

.dashboard__logo a img {
    width: 100%;
}

.dashboard__profile {
    text-align: center;
    margin-bottom: 32px;
}

.dashboard__profile img {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.dashboard__profile h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.dashboard__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.dashboard__menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: hsl(var(--white));
    font-size: 16px;
    font-weight: 400;
}

.dashboard__menu ul li a i {
    width: 20px;
}

.dashboard__menu ul li a:hover,
.dashboard__menu ul li a.active {
    color: hsl(var(--base));
}

.dashboard__min {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.dashboard__min h3 {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.dm__btn {
    border: 1px solid #929292;
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white));
    border-radius: 40px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dm__btn i {
    font-size: 14px;
}

.dashboard__card {
    background-color: hsl(var(--base)/0.2);
    border-radius: 20px;
    padding: 16px;
}

@media screen and (max-width: 767px) {
    .dashboard__card {
        border-radius: 8px;
    }
}

.dashboard__card span {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: hsl(var(--base));
    margin-bottom: 16px;
}

.dashboard__card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.dashboard__card p {
    font-size: 16px;
    font-weight: 400;
}

.progress,
.progress-stacked {
    height: 12px;
    background-color: hsl(var(--white) / 0.15);
    border-radius: 30px;
}

.progress-bar {
    background-color: #CDCDCD;
    border-radius: 30px;
}

.dashboard__card .progress {
    margin-top: 16px;
}

.dashboard__home {
    background-color: hsl(var(--section-bg));
    padding: 32px;
    border-radius: 20px;
    margin-top: 24px;
}

@media screen and (max-width: 991px) {
    .dashboard__home {
        padding: 24px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard__home {
        padding: 24px 16px;
    }
}

.upcoming__wrap {
    background-color: #3C3C3F;
    padding: 17px 24px;
    border-radius: 20px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    margin-bottom: 45px;
}

.upcoming__single h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

.upcoming__single p {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white) / 0.6);
    margin-bottom: 8px;
}

.upcoming__single h5 {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white) / 0.6);
    margin-bottom: 8px;
    font-family: var(--body-font);
}

.upcoming__single a {
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    color: hsl(var(--base));
}

.upcoming__single a:hover {
    color: hsl(var(--white));
}

.upcoming__single {
    max-width: 520px;
    width: 100%;
    flex: 0 0 auto;
    border-right: 1px solid #DFDFDF;
    margin-right: 24px;
    padding-right: 10px;
}

.upcoming__single:last-child {
    border-right: none;
    margin-right: 0;
}

.past__seassion__wr {
    background-color: #27272A;
    padding: 32px;
    border-radius: 20px;
    margin-top: 40px;
}

.part__session__title {
    margin-bottom: 24px;
}

.part__session__title h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 1;
}

.past__session {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.past__session__single {
    background-color: hsl(var(--white) / 0.1);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.past__session__btn .btn {
    font-size: 13px;
    padding: 14px 14px;
}

.past__session__btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.past__session__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.past__session__img {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.past__session__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.past__session__content {
    flex: 0 0 auto;
}

.past__session__content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1;
}

.past__session__content ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.past__session__content ul li {
    line-height: 1;
    color: #8B8B8B;
    font-size: 14px;
    font-weight: 400;
}

.past__session__content ul li span {
    color: hsl(var(--white));
}

.past__session__widgets {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 16px;
    border-left: 1px solid hsl(var(--white) / 0.2);
    padding-left: 32px;
    margin-left: 20px;
    padding-block: 16px;
}

.common__note {
    position: relative;
}

.common__note>i {
    line-height: 1;
    width: 40px;
    height: 40px;
    border: 1px solid #797979;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #DADADA;
}

.note__content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    z-index: 2;
    background-color: #D9D9D9;
    padding: 10px 16px;
    border-radius: 6px;
    width: 100%;
    min-width: max-content;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.note__content::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #D9D9D9 transparent;
}

.note__close {
    color: #8F8F8F;
    width: 20px;
    height: 20px;
    transition: 0.3s;
    margin-left: auto;
    cursor: pointer;
    margin-right: -10px;
    margin-top: -5px;
    font-size: 26px;
    line-height: 1;
}

.note__close:hover {
    color: hsl(var(--danger));
}

.note__content.active {
    opacity: 1;
    visibility: visible;
}

.note__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 13px;
}

.note__content span {
    color: #2F2F2F;
    font-size: 17px;
    font-weight: 500;
    max-width: 290px;
}

.note__btn .btn {
    padding: 14px 40px;
    font-size: 13px;
}

.note__btn .btn-outline--secondary {
    border: 1px solid #ADADAD !important;
    color: #282828 !important;
}

.note__btn .btn-outline--secondary:hover,
.note__btn .btn-outline--secondary:focus,
.note__btn .btn-outline--secondary:focus-visible {
    border-color: #282828 !important;
    background-color: #282828 !important;
    color: hsl(var(--white)) !important;
}

@media screen and (max-width: 767px) {
    .note__content span {
        font-size: 12px;
        max-width: 190px;
    }

    .note__btn .btn {
        padding: 10px 24px;
        font-size: 12px;
        border-radius: 6px;
    }

}

@media screen and (max-width: 575px) {
    .past__session__left {
        flex-direction: column;
        width: 100%;
    }

    .past__session__widgets {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        padding-block: 0;
        padding-top: 10px;
        border-top: 1px solid hsl(var(--white) / 0.2);
        width: 100%;
        justify-content: center;
    }

    .past__session__btn {
        justify-content: center;
        width: 100%;
    }

    .note__content span {
        font-size: 12px;
        max-width: 200px;
    }

    .note__btn .btn {
        padding: 10px 24px;
        font-size: 12px;
        border-radius: 6px;
    }
}

.past__payment__wrap {
    background-color: #3C3C3F;
    padding: 17px 24px;
    border-radius: 20px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    margin-bottom: 45px;
}

.past__payment__single h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.past__payment__single h4 img {
    width: 40px;
}

.past__payment__single h4 span {
    width: 72px;
    height: 32px;
    background-color: hsl(var(--info));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.past__payment__single p {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white) / 0.6);
    margin-bottom: 8px;
}

.past__payment__single h5 {
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white) / 0.6);
    margin-bottom: 8px;
    font-family: var(--body-font);
}

.past__payment__single a {
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    color: hsl(var(--base));
}

.past__payment__single a:hover {
    color: hsl(var(--white));
}

.past__payment__single {
    max-width: 300px;
    width: 100%;
    flex: 0 0 auto;
    border-right: 1px solid #DFDFDF;
    margin-right: 24px;
    padding-right: 10px;
}

.past__payment__single:last-child {
    border-right: none;
    margin-right: 0;
}

.see__all__session {
    margin-top: 24px;
}

.see__all__session a {
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    gap: 8px;
    color: hsl(var(--base));
}

.see__all__session a:hover {
    color: hsl(var(--white));
}

.dash__customer {
    background-color: #27272A;
    padding: 32px;
    border-radius: 20px;
}

.dash__customer__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.dash__customer__topbar a {
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(var(--white));
}

.dash__customer__topbar a:hover {
    color: hsl(var(--base));
}

.dash__customer__profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dash__customer__profile img {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 50%;
}

.dash__customer__profile h4 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.dash__customer__content .btn {
    color: hsl(var(--black));
    margin-top: 40px;
    border-radius: 8px;
}

.dash__customer__content ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash__customer__content ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 700;
    color: hsl(var(--white) / 0.6);
}

.dash__customer__content ul li span {
    color: hsl(var(--white));
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.coaches__title {
    margin-bottom: 24px;
}

.coaches__title h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    color: hsl(var(--base));
    text-transform: uppercase;
}

.coaches__wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.coaches__single {
    background-color: hsl(var(--white) / 0.1);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.coaches__single .btn {
    font-size: 13px;
    padding: 14px 16px;
}

.coaches__pr a {
    color: hsl(var(--white));
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.coaches__pr a:hover {
    color: hsl(var(--base));
}

.coaches__pr h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

.coaches__pr h4 img {
    flex: 0 0 auto;
    width: 30px;
}

.coin__add {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.coin__add__content h4 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: hsl(var(--base));
}

.coin__add__content p {
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.coin__add__content p img {
    flex: 0 0 auto;
    width: 28px;
}

.coin__add .btn {
    padding: 16px 18px;
    padding-left: 60px;
}

.coin__add .btn::after {
    left: 6%;
}

.coin__add .btn:hover::after {
    left: 8%;
}

.order__active {
    margin-bottom: 24px;
}

.order__active .badge {
    font-size: 20px;
    font-weight: 500;
    margin-top: 8px;
}

@media screen and (max-width: 1199px) {
    .order__active .badge {
        font-size: 16px;
    }
}

.order__active .form-switch .form-check-input:checked {
    background-color: hsl(var(--success)) !important;
}

.order__active .form-switch .form-check-label {
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: hsl(var(--success));
}

@media screen and (max-width: 1199px) {
    .order__active .form-switch .form-check-label {
        font-size: 16px;
    }
}

.order__active .form-switch .form-check-label i {
    font-size: 8px;
}

.order__list__title h3 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.order__list__title {
    margin-bottom: 24px;
}

.order__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: 24px;
}

.order__single {
    background-color: hsl(var(--white)/0.1);
    padding: 16px;
    border-radius: 8px;
    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: 10px;
}

.action__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.action__btn button {
    width: 40px;
    height: 40px;
    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;
    font-size: 18px;
}

.btn__success {
    background-color: hsl(var(--success)/0.1);
    color: hsl(var(--success));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn__success:hover {
    background-color: hsl(var(--success));
    color: hsl(var(--white));
}

.btn__danger {
    background-color: hsl(var(--danger)/0.1);
    color: hsl(var(--danger));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn__danger:hover {
    background-color: hsl(var(--danger));
    color: hsl(var(--white));
}

.order__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.order__user img {
    width: 34px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.order__user h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.order__left a {
    font-size: 16px;
    font-weight: 500;
    color: hsl(var(--white));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.order__left a:hover {
    color: hsl(var(--base));
}

.order__left a i {
    font-size: 14px;
    line-height: 1;
    margin-top: 2px;
}

.stats__card {
    padding: 32px;
    border-radius: 20px;
    background-color: hsl(var(--section-bg));
}

@media screen and (max-width: 991px) {
    .stats__card {
        padding: 24px;
    }
}

@media screen and (max-width: 575px) {
    .stats__card {
        padding: 24px 16px;
    }
}

.stats__card>h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.states__single {
    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: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: hsl(var(--white)/0.1);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.states__single span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: hsl(var(--white)/0.1);
    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-bottom: 8px;
}

.states__single h4 {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 0;
}

.states__single h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.states__single:last-child {
    margin-bottom: 0;
}

.dashboard__rules {
    background-color: hsl(var(--section-bg));
    padding: 32px;
    border-radius: 20px;
}

@media screen and (max-width: 991px) {
    .dashboard__rules {
        padding: 24px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard__rules {
        padding: 24px 16px;
    }
}

.dashboard__rules h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.dashboard__rules ul {
    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;
}

.dashboard__rules ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.dashboard__rules ul li i {
    width: 18px;
    height: 18px;
    background-color: hsl(var(--success));
    color: hsl(var(--section-bg));
    border-radius: 50%;
    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;
    font-size: 12px;
    line-height: 5px;
}

.dashboard__rules p {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
}

.total__widgets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.total__widgets__single {
    background-color: hsl(var(--white)/0.1);
    border-radius: 8px;
    padding: 16px;
}

.total__widgets__single span {
    width: 40px;
    height: 40px;
    background-color: hsl(var(--white)/0.1);
    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;
    border-radius: 50%;
    margin-bottom: 8px;
}

.total__widgets__single h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.total__widgets__single h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.manual__content {
    padding: 32px;
    border-radius: 20px;
    background-color: hsl(var(--section-bg));
}

@media screen and (max-width: 1199px) {
    .manual__content {
        padding: 24px;
    }
}

@media screen and (max-width: 575px) {
    .manual__content {
        padding: 24px 16px;
    }
}

.manual__content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
    .manual__content h3 {
        font-size: 20px;
    }
}

.manual__content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media screen and (max-width: 1199px) {
    .manual__content h4 {
        font-size: 18px;
    }
}

.manual__content p {
    font-size: 20px;
    font-weight: 500;
    color: hsl(var(--white)/0.6);
    margin-bottom: 24px;
}

@media screen and (max-width: 1399px) {
    .manual__content p {
        font-size: 18px;
    }
}

@media screen and (max-width: 1199px) {
    .manual__content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .manual__content p {
        font-size: 14px;
    }
}

.manual__content p:last-child {
    margin-bottom: 0;
}

.manual__wrap {
    margin-top: 24px;
}

.manual__wrap .nav {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 24px;
}

@media screen and (max-width: 767px) {
    .manual__wrap .nav {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.manual__wrap .nav a,
.manual__wrap .nav button {
    text-align: start;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
    .manual__wrap .nav a,
    .manual__wrap .nav button {
        margin-bottom: 10px;
        font-size: 14px;
    }
}

.manual__wrap .nav a span,
.manual__wrap .nav button span {
    width: 18px;
    height: 18px;
    background-color: hsl(var(--base));
    border-radius: 50%;
    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(--section-bg));
    font-size: 12px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.manual__wrap .nav a:last-child,
.manual__wrap .nav button:last-child {
    margin-bottom: 0;
}

.manual__wrap .nav a.active,
.manual__wrap .nav a:hover,
.manual__wrap .nav button.active,
.manual__wrap .nav button:hover {
    color: hsl(var(--base));
    background-color: transparent !important;
}

.manual__wrap .nav a:focus,
.manual__wrap .nav a:focus-visible,
.manual__wrap .nav button:focus,
.manual__wrap .nav button:focus-visible {
    background-color: transparent !important;
    outline: none;
    box-shadow: none;
}

.setting__wrap {
    padding: 32px;
    border-radius: 20px;
    background-color: hsl(var(--section-bg));
    margin-top: 24px;
}

@media screen and (max-width: 991px) {
    .setting__wrap {
        padding: 24px;
    }
}

@media screen and (max-width: 575px) {
    .setting__wrap {
        padding: 24px 16px;
    }
}

.setting__title h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.setting__profile {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 150px;
}

.setting__profile img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.setting__profile label {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 40px;
    height: 40px;
    background-color: hsl(var(--white));
    border-radius: 50%;
    color: hsl(var(--black));
    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;
    border: 2px solid hsl(var(--black));
    font-size: 20px;
    cursor: pointer;
}

.setting__form label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: hsl(var(--white)/0.6);
    margin-bottom: 8px;
}

.setting__form .form-control {
    background-color: hsl(var(--white)/0.1);
}

.setting__form .form-control:focus {
    background-color: hsl(var(--white)/0.15);
}

.setting__form .select2-container--default .select2-selection--single {
    background-color: hsl(var(--white)/0.1);
}

.setting__player {
    margin-top: 24px;
}

.setting__player>h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.dashboard__wrapper .membar__info img {
    width: 115px;
    height: 115px;
}

@media screen and (max-width: 767px) {
    .manual__inner {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}

@media screen and (max-width: 991px) {
    .dashboard__min h3 {
        font-size: 20px;
    }

    .upcoming__single {
        max-width: 320px;
    }

    .part__session__title h3 {
        font-size: 22px;
    }

    .past__seassion__wr {
        padding: 20px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard__min h3 {
        font-size: 16px;
    }

    .dm__btn {
        font-size: 14px;
    }

    .part__session__title h3 {
        font-size: 18px;
    }

    .dash__customer {
        padding: 18px;
        border-radius: 12px;
    }

    .dash__customer__profile img {
        width: 40px;
        height: 40px;
    }

    .dash__customer__profile {
        gap: 8px;
    }

    .dash__customer__profile h4 {
        font-size: 16px;
    }

    .dash__customer__content ul li {
        font-size: 14px;
    }

    .dash__customer__content ul {
        gap: 16px;
    }

    .dash__customer__topbar a {
        font-size: 14px;
    }

    .dash__customer__content .btn {
        margin-top: 20px;
    }
}

/* ======================  Dashboard Section End  ======================*/
/* ======================  Waiting Section Start  ======================*/
.waiting__area {
    padding: 40px 0;
}

.waiting__topbar {
    margin-bottom: 50px;
    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: 20px;
}

.waiting__topbar a {
    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;
    text-align: center;
    color: hsl(var(--white)/0.6);
    font-size: 16px;
    font-weight: 700;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
}

.waiting__topbar a i {
    font-size: 20px;
}

.waiting__topbar a.active {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

.waiting__topbar span {
    font-size: 20px;
}

.waiting__wrap {
    background-color: hsl(var(--section-bg));
    padding: 24px;
    border-radius: 20px;
}

@media screen and (max-width: 991px) {
    .waiting__wrap {
        padding: 24px;
    }
}

@media screen and (max-width: 575px) {
    .waiting__wrap {
        padding: 24px 16px;
    }
}

.waiting__title {
    text-align: center;
    margin-bottom: 24px;
}

.waiting__title h3 {
    font-size: 24px;
    font-weight: 600;
    color: hsl(var(--base));
    margin-bottom: 16px;
    text-transform: uppercase;
}

@media screen and (max-width: 575px) {
    .waiting__title h3 {
        font-size: 20px;
    }
}

.waiting__title h4 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

@media screen and (max-width: 575px) {
    .waiting__title h4 {
        font-size: 20px;
    }
}

.waiting__search {
    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;
    text-align: center;
    gap: 32px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.waiting__search__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.waiting__search__single p {
    font-size: 28px;
    font-weight: 700;
    color: hsl(var(--white)/0.6);
}

.waiting__search__single span {
    width: 125px;
    height: 125px;
    background-color: hsl(var(--white));
    color: hsl(var(--section-bg));
    border-radius: 50%;
    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;
    font-size: 70px;
}

@media screen and (max-width: 575px) {
    .waiting__search__single span {
        width: 90px;
        height: 90px;
        font-size: 56px;
    }
}

.waiting__time {
    margin-bottom: 0px;
}

.waiting__time span {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1;
}

.waiting__time p {
    font-size: 16px;
    font-weight: 500;
    color: hsl(var(--white)/0.6);
}

.waiting__game {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

@media screen and (max-width: 575px) {
    .waiting__game {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.waiting__game img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 134px;
    border-radius: 16px;
}

.waiting__game h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.waiting__game ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.waiting__game ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: hsl(var(--white)/0.6);
}

.waiting__details {
    margin-bottom: 15px;
}

.waiting__details ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.waiting__details ul li {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: hsl(var(--white)/0.6);
}

@media screen and (max-width: 575px) {
    .waiting__details ul li {
        font-size: 12px;
    }
}

.waiting__details ul li span {
    color: hsl(var(--white));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.waiting__wrapper {
    background-color: hsl(var(--base)/0.2);
    border-radius: 20px;
    padding: 16px;
    margin-top: 16px;
}

.waiting__cost__topbar {
    margin-bottom: 16px;
    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: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cost__tier {
    font-size: 12px;
    font-weight: 600;
    color: hsl(var(--white)/0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.cost__tier img {
    width: 22px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.tier__current {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: hsl(var(--base));
    text-transform: uppercase;
}

.tier__badge {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
    padding: 7px 14px;
    border-radius: 4px;
    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;
}

.tier__badge.bg--info,
.tier__badge.bg--warning,
.tier__badge.bg--base {
    color: hsl(var(--white)) !important;
}

.tier__badge i {
    width: 16px;
    height: 16px;
    background-color: hsl(var(--base));
    border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: anchor-center;
    -ms-flex-align: anchor-center;
    align-items: anchor-center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 5px;
    margin-right: -21px;
}

.waiting__cost__info h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.waiting__cost__info p {
    font-size: 16px;
    font-weight: 400;
}

.waiting__cost__update {
    padding: 16px 0;
}

.tier__badge.update {
    background-color: hsl(var(--warning));
    flex: 0 0 auto;
    color: hsl(var(--white)) !important;
}

.tier__current .text-white {
    font-size: 14px;
    margin-left: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.waitting__card {
    background-color: #414141;
    width: 100%;
    height: 100%;
    padding: 24px;
    border-radius: 16px;
    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;
    gap: 28px;
    text-align: center;
    min-height: 33rem;
}

.waitting__card h3 {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0;
    font-style: italic;
}

.waitting__card span i {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: hsl(var(--base));
    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;
    font-size: 44px;
    color: #414141;
    border: 14px solid #414141;
}

.waitting__card span {
    position: relative;
    z-index: 1;
    border: 2px solid hsl(var(--base)/0.3);
    border-radius: 50%;
}

.waitting__card span::after {
    position: absolute;
    left: -2px;
    top: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    content: "";
    z-index: 1;
    border-left: 2px solid hsl(var(--base));
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: customAni 3s linear 0s infinite normal none;
    animation: customAni 3s linear 0s infinite normal none;
}

@-webkit-keyframes customAni {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes customAni {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.found__teammate {
    background-color: hsl(var(--base));
    text-align: center;
    padding: 10px 12px;
}

.found__teammate h4 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 400;
}

@media screen and (max-width: 575px) {
    .found__teammate h4 {
        font-size: 20px;
    }
}

.chat__box {
    background-color: hsl(var(--section-bg));
    padding: 24px 32px;
    border-radius: 20px;
}

@media screen and (max-width: 991px) {
    .chat__box {
        padding: 24px;
    }
}

@media screen and (max-width: 575px) {
    .chat__box {
        padding: 24px 16px;
    }
}

.chat__title {
    margin-bottom: 24px;
}

.chat__title h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {
    .chat__title h3 {
        font-size: 30px;
    }
}

.chat__topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid hsl(var(--white)/0.1);
}

.chat__topbar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media screen and (max-width: 767px) {
    .chat__topbar img {
        width: 50px;
        height: 50px;
    }
}

.chat__topbar h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.chat__topbar p {
    font-size: 14px;
    font-weight: 400;
    color: #848484;
}

.chat__bottombar {
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.chat__bottombar .form-control {
    border-radius: 16px;
    padding: 25px 70px 25px 70px;
    background-color: #3F3F3F;
}

.chat__user {
    position: absolute;
    left: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.chat__bottombar button {
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    background-color: hsl(var(--base));
    width: 40px;
    height: 40px;
    border-radius: 12px;
    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-transition: 0.3s;
    transition: 0.3s;
}

.chat__bottombar button:hover {
    background-color: hsl(var(--base-d-200));
}

.chat__date {
    text-align: center;
}

.chat__date span {
    color: #848484;
    font-size: 12px;
    font-weight: 400;
}

.chat__message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 4px;
}

.chat__message img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.chat__message__wrap {
    padding: 12px;
    border-radius: 16px;
    background-color: hsl(var(--base)/0.2);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.chat__message__wrap p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .chat__message__wrap p {
        font-size: 16px;
    }
}

@media screen and (max-width: 575px) {
    .chat__message__wrap p {
        font-size: 14px;
    }
}

.chat__message__wrap p a {
    color: hsl(var(--white));
    font-weight: 700;
}

.chat__message__wrap p a:hover {
    color: hsl(var(--base));
}

.chat__message__wrap p:last-child {
    margin-bottom: 0;
}

.chat__message__wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    list-style: decimal;
    padding-left: 30px;
}

.chat__message__wrap ul li {
    font-size: 20px;
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    .chat__message__wrap ul li {
        font-size: 16px;
    }
}

@media screen and (max-width: 575px) {
    .chat__message__wrap ul li {
        font-size: 14px;
    }
}

.chat__bot span {
    font-size: 14px;
    font-weight: 400;
    color: #848484;
}

.chat__bot {
    display: block;
    margin-bottom: 4px;
    padding-left: 10px;
}

.chat__message__time {
    display: block;
    margin-top: 4px;
    padding-left: 10px;
}

.chat__message__time span {
    font-size: 14px;
    font-weight: 400;
    color: #848484;
}

.chat__message.right-side {
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: end;
}

.chat__message.right-side .chat__message__wrap {
    background-color: hsl(var(--base));
    margin-left: auto;
}

.chat__message.user-reply .chat__message__wrap {
    background-color: #3F3F3F;
}

.chat__main {
    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;
    padding: 16px 8px;
    max-height: 45rem;
    min-height: 45rem;
    overflow-y: auto;
}

.chat__main::-webkit-scrollbar {
    width: 6px;
}

.chat__main::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px hsl(var(--white) / 0.2);
    box-shadow: inset 0 0 5px hsl(var(--white) / 0.2);
    border-radius: 20px;
}

.chat__main::-webkit-scrollbar-thumb {
    background: hsl(var(--base)/0.7);
    border-radius: 20px;
}

.chat__main::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--base));
}

@media screen and (max-width: 1200px) {
    .chat__main {
        gap: 16px;
        padding: 20px 0;
        max-height: 23rem;
        min-height: 23rem;
    }
}

@media screen and (max-width: 767px) {
    .chat__main {
        gap: 16px;
        padding: 20px 0;
        max-height: 30rem;
        min-height: 30rem;
    }
}


.message__coin {
    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-bottom: 24px;
}

.message__coin h4 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 575px) {
    .message__coin h4 {
        font-size: 14px;
    }
}

.message__coin h4 img {
    width: 50px;
    height: 50px;
}

@media screen and (max-width: 575px) {
    .message__coin h4 img {
        width: 40px;
        height: 40px;
    }
}

.message__coin h4 span {
    font-weight: 700;
}

.message__coin a {
    color: hsl(var(--white));
    font-size: 24px;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .message__coin a {
        font-size: 20px;
    }
}

.message__qantity {
    margin-bottom: 24px;
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.message__qantity h4 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 575px) {
    .message__qantity h4 {
        font-size: 14px;
    }
}

.message__qantity .quantity button {
    width: 48px;
    height: 48px;
    background-color: #27272A;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 50%;
    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;
}

@media screen and (max-width: 767px) {
    .message__qantity .quantity button {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

.message__qantity .quantity {
    max-width: 180px;
    gap: 8px;
}

@media screen and (max-width: 767px) {
    .message__qantity .quantity {
        max-width: 150px;
    }
}

.message__btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

@media screen and (max-width: 575px) {
    .message__btn {
        grid-template-columns: 1fr;
    }
}

.message__btn .btn {
    border-radius: 8px;
}

/* ======================  Waiting Section End  ======================*/


/* ======================  Auth Section Start  ======================*/

.modal.auth__modal .modal-dialog {
    max-width: 650px;
}

.auth__topbar {
    text-align: center;
    margin-bottom: 50px;
}

.auth__topbar h4 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

.auth__topbar p {
    font-size: 20px;
    color: hsl(var(--body-color) / 0.8);
}

.auth__form .form-label {
    margin-bottom: 8px;
    font-size: 16px;
    color: hsl(var(--white) / 0.6);
}

.auth__form .form-control {
    background-color: hsl(var(--white) / 0.1);
}

.auth__form .form-control::-webkit-input-placeholder {
    color: hsl(var(--white));
}

.auth__forgot {
    text-align: end;
}

.auth__forgot a {
    font-size: 18px;
    font-weight: 500;
    color: hsl(var(--white));
}

.auth__forgot a:hover {
    color: hsl(var(--base));
}

.auth__or {
    text-align: center;
}

.auth__or__sp {
    margin-bottom: 13px;
    position: relative;
    z-index: 1;
}

.auth__or__sp span {
    font-size: 16px;
    font-weight: 500;
    background-color: #2A2A2A;
    padding: 0 11px;
}

.auth__or__sp::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    width: 100%;
    height: 1px;
    background-color: #9D9D9D;
    content: "";
}

.auth__or p {
    font-weight: 500;
}

.auth__social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.auth__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 53px;
    background-color: hsl(var(--white) / 0.1);
    border-radius: 8px;
    gap: 8px;
    color: hsl(var(--white));
    font-size: 16px;
    font-weight: 500;
}

.auth__social a img {
    flex: 0 0 auto;
    width: 20px;
}

.auth__social a:hover {
    background-color: hsl(var(--white) / 0.2);
    transform: translateY(-2px);
}

.auth__btn .btn {
    color: hsl(var(--black)) !important;
    padding: 18px 32px;
    border-radius: 8px;
}

.auth__policy .form-check .form-check-input {
    border-radius: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #D8D8D8;
}

.auth__policy .form-check .form-check-input:checked::before {
    font-size: 14px;
}

.auth__policy .form-check .form-check-label {
    font-weight: 400;
    font-size: 14px;
    color: hsl(var(--white) / 0.8);
    line-height: 1;
}

.auth__policy .form-check .form-check-label a {
    color: hsl(var(--white) / 0.8);
    text-decoration: underline;
}

.auth__policy .form-check .form-check-label a:hover {
    color: hsl(var(--base));
}

@media screen and (max-width: 575px) {
    .auth__topbar h4 {
        font-size: 24px;
    }

    .auth__topbar p {
        font-size: 16px;
    }

    .auth__topbar {
        margin-bottom: 30px;
    }

    .auth__social {
        gap: 10px;
    }
}

/* ======================  Auth Section End  ======================*/


/* ======================  Tutorial Section Start  ======================*/
.tutorial__title {
    margin-bottom: 32px;
}

.tutorial__area {
    padding-top: 0px;
    margin-bottom: 60px;
}

.tutorial__title h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    color: hsl(var(--base));
}

.tutorial__single {
    background-color: #27272A;
    padding: 16px;
    border-radius: 20px;
    height: 100%;
}

.tutorial__single span {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: hsl(var(--base));
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .tutorial__area {
        padding-top: 60px;
    }
}

@media screen and (max-width: 575px) {
    .tutorial__single span {
        font-size: 26px;
    }

    .tutorial__single {
        border-radius: 10px;
    }
}

.tutorial__single h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

.tutorial__single p {
    color: hsl(var(--white) / 0.6);
}

/* ======================  Tutorial Section End  ======================*/


/* ======================  Membership Section Start  ======================*/
.membership__area {
    padding-top: 50px;
    padding-bottom: 80px;
}

.membership__topbar {
    text-align: center;
    max-width: 875px;
    margin-inline: auto;
    margin-bottom: 60px;
}

.membership__topbar h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 26px;
    line-height: 1;
    text-transform: uppercase;
    color: hsl(var(--base));
}

.membership__topbar p {
    font-size: 20px;
    font-weight: 400;
    color: hsl(var(--white) / 0.8);
}

.membership__card {
    position: relative;
    z-index: 1;
    background-color: #27272A;
    padding: 24px;
    border-radius: 12px;
}

.membership__card__topbar {
    background-color: #383838;
    padding: 28px;
    padding-bottom: 18px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.membership__card__topbar span {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.membership__card__topbar h4 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
}

.membership__card__topbar p {
    font-size: 14px;
    font-weight: 400;
    color: hsl(var(--white) / 0.6);
}

.membership__content {
    margin-bottom: 40px;
}

.membership__content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.membership__content ul li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    font-weight: 400;
    color: hsl(var(--white) / 0.6);
}

.membership__content ul li i {
    width: 22px;
    height: 22px;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    flex: 0 0 auto;
}

.membership__badge {
    position: absolute;
    right: 30px;
    top: 12px;
    color: hsl(var(--black));
    padding: 4px 18px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    z-index: 1;
    text-transform: uppercase;
}

.membership__area .g-4,
.membership__area .gx-4 {
    --bs-gutter-x: 5rem;
}

@media screen and (max-width: 1400px) {
    .membership__card__topbar h4 {
        font-size: 30px;
    }
}

@media screen and (max-width: 575px) {
    .membership__card__topbar {
        padding: 18px;
    }

    .membership__card {
        padding: 14px;
    }

    .membership__card__topbar h4 {
        font-size: 28px;
    }

    .membership__card__topbar span {
        font-size: 16px;
    }

    .membership__topbar h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .membership__topbar p {
        font-size: 14px;
    }

    .membership__wrapper>h2 {
        font-size: 22px;
    }

    .membership__wrapper>h2 span {
        width: 70px;
        height: 34px;
    }

    .membership__body>h3 {
        font-size: 24px;
    }

    .membership__wrapper {
        padding: 24px;
        border-radius: 12px;
    }
}

/* ======================  Membership Section End  ======================*/


/* ======================  Back Section Start  ======================*/
.back__area {
    padding-top: 24px;
}

.back__btn a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(var(--base));
}

.back__btn a i {
    font-size: 16px;
}

.back__btn a:hover {
    color: hsl(var(--base));
}

/* ======================  Back Section End  ======================*/


/* ======================  Refer Section Start  ======================*/
.refer__area {
    padding-top: 48px;
    padding-bottom: 28px;
}

.refer__content {
    max-width: 80%;
}

.refer__content h2 {
    font-size: 52px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.refer__content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.refer__content p {
    font-size: 20px;
    font-weight: 400;
    color: hsl(var(--white) / 0.8);
}

.refer__info {
    background-color: hsl(var(--white) / 0.09);
    border-radius: 13px;
    padding: 13px;
    padding-top: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.refer__info h5 {
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--white) / 0.7);
    margin-bottom: 8px;
}

.refer__info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.refer__info::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    content: "";
    background-image: linear-gradient(to top, hsl(var(--base)) 10%, transparent 80%);
    transition: 0.3s;
}

.refer__info:hover::after {
    height: 100%;
}

.refer__form {
    background-color: hsl(var(--white) / 0.09);
    border-radius: 13px;
    padding: 16px 22px;
}

.refer__form h4 {
    font-size: 32px;
    font-weight: 500;
    color: hsl(var(--white) / 0.7);
    margin-bottom: 10px;
}

.refer__form__main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.refer__form__main button {
    flex: 0 0 auto;
}

.refer__form__main input {
    border-radius: 12px;
}

.refer__request {
    background-color: hsl(var(--white) / 0.09);
    border-radius: 13px;
    padding: 30px 22px;
}

.refer__request h4 {
    font-size: 32px;
    font-weight: 500;
    color: hsl(var(--white) / 0.7);
    margin-bottom: 10px;
}

.refer__request p {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.refer__request .btn {
    color: hsl(var(--base)) !important;
    background-color: hsl(var(--white) / 0.16) !important;
}

.refer__box {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, hsl(var(--base)), hsl(var(--white)));
    border-radius: 13px;
}

.refer__sp img {
    width: 100%;
    user-select: none;
    pointer-events: none;
}


@media screen and (max-width: 1199px) {
    .refer__content {
        max-width: 100%;
    }

    .refer__content p {
        font-size: 16px;
    }

    .refer__content h4 {
        font-size: 18px;
    }

    .refer__content h2 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .refer__form h4 {
        font-size: 22px;
    }

    .refer__request h4 {
        font-size: 22px;
    }

    .refer__request p {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .refer__content h2 {
        font-size: 30px;
    }

    .refer__content h4 {
        font-size: 16px;
    }

    .refer__content p {
        font-size: 14px;
    }
}

/* ======================  Refer Section End  ======================*/


/* ======================  Step Section Start  ======================*/
.step__area {
    padding-top: 80px;
    padding-bottom: 120px;
}

.step__title {
    text-align: center;
    margin-bottom: 40px;
}

.step__title span {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: hsl(var(--base));
    line-height: 1;
    margin-bottom: 24px;
}

.step__title h2 {
    line-height: 1;
    margin-bottom: 0;
    font-size: 52px;
    font-weight: 600;
    text-transform: uppercase;
}

.step__area .tutorial__single p {
    font-size: 14px;
}


@media screen and (max-width: 1199px) {
    .step__title span {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .step__title h2 {
        font-size: 40px;
    }

    .tutorial__single span {
        font-size: 30px;
    }

    .tutorial__single h4 {
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    .step__area {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .step__title h2 {
        font-size: 26px;
    }

    .step__title span {
        font-size: 18px;
        margin-bottom: 14px;
    }
}

/* ======================  Step Section End  ======================*/


/* ======================  Current Tier Modal Section Start  ======================*/
.current__title {
    font-size: 26px;
    font-weight: 700;
    color: hsl(var(--base));
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.current__title span {
    width: 106px;
    height: 40px;
    color: hsl(var(--white));
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.current__modal h4 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1;
}

.current__modal h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.current__modal ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.current__modal ul li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    font-weight: 400;
    color: hsl(var(--white) / 0.6);
}

.current__modal ul li i {
    width: 22px;
    height: 22px;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    flex: 0 0 auto;
}

.current__update {
    margin-top: 27px;
    background-color: #383838;
    padding: 18px 22px;
    border-radius: 12px;
}

.current__update h6 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: hsl(var(--base));
    margin-bottom: 10px;
}

.current__update a {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: hsl(var(--black));
    background-color: hsl(var(--warning));
    line-height: 1;
    padding: 10px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.current__update a i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--white));
    border-radius: 50%;
    font-size: 14px;
}


@media screen and (max-width: 575px) {
    .current__title {
        font-size: 18px;
    }

    .current__title span {
        width: 70px;
        height: 32px;
        font-size: 14px;
    }

    .current__modal h4 {
        font-size: 16px;
    }
}

/* ======================  Current Tier Modal Section End  ======================*/


/* ======================  Booking Section Start  ======================*/
.booking__step a {
    color: hsl(var(--white));
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    border-bottom: 2px solid hsl(var(--base));
    line-height: 1;
    padding-bottom: 8px;
}

.booking__step a i {
    font-size: 20px;
}

.booking__step {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.booking__step span {
    font-size: 18px;
    line-height: 1;
}

.booking__wrap {
    background-color: #27272A;
    padding: 32px 40px;
    border-radius: 20px;
}

.booking__title {
    margin-bottom: 20px;
}

.booking__title h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

.booking__save {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.booking__date {
    cursor: pointer;
    transition: 0.3s;
}

.booking__date:hover {
    background-color: hsl(var(--white) / 0.08);
}

.booking__date.active {
    background-color: hsl(var(--success) / 0.5);
}

.booking__table .table {
    min-width: 700px;
}

@media screen and (max-width: 1199px) {
    .booking__wrap {
        padding: 24px 20px;
    }

    .booking__title h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 575px) {
    .booking__step a {
        font-size: 12px;
    }

    .booking__step a i {
        font-size: 16px;
    }

    .booking__step {
        gap: 10px;
        margin-bottom: 24px;
    }

    .booking__step span {
        font-size: 16px;
    }
}

/* ======================  Booking Section End  ======================*/


/* ======================  Schedult Modal Section Start  ======================*/
.schedule__title {
    margin-bottom: 20px;
}

.schedule__title h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.schedule__modal .modal-content {
    background-color: #575757;
}

.schedule__modal .table thead tr th {
    padding: 12px 8px;
    min-width: 117px;
}

.schedule__modal .table thead tr th:first-child {
    border-radius: 0;
}

.schedule__modal .table thead tr th:last-child {
    border-radius: 0;
}

.schedule__modal .table tbody tr td {
    text-align: left;
    padding: 10px;
    padding-bottom: 40px;
}

.schedule__modal .table tbody tr:last-child td:first-child {
    border-radius: 0;
}

.schedule__modal .table tbody tr:last-child td:last-child {
    border-radius: 0;
}

.schedule__time {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

.schedule__time__single label {
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    background-color: hsl(var(--white) / 0.1);
    border-radius: 50px;
    line-height: 1;
    cursor: pointer;
}

.schedule__time__single:has(input:checked) label {
    background-color: hsl(var(--base));
}

.confirm__schedule {
    margin-top: 24px;
}

.confirm__schedule .btn {
    border-radius: 8px;
}

.schedult__right {
    border-left: 1px solid hsl(var(--white) / 0.2);
    padding-left: 24px;
    margin-left: 24px;
}

.schedule__modal .membar__info {
    background-color: #2B2B2B;
    padding: 24px;
    border-radius: 16px;
}

.schedule__modal .swiper-button-next,
.schedule__modal .swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.schedule__modal .disabled {
    color: hsl(var(--white) / 0.3);
}

.schedule__modal .available {
    background-color: hsl(var(--white) / 0.12);
    cursor: pointer;
    transition: 0.3s;
}

.schedule__modal .available:hover {
    background-color: hsl(var(--white) / 0.3);
}

.schedule__modal .available.selected {
    background-color: hsl(var(--base)) !important;
}

.set__modal .modal-dialog {
    max-width: 1200px;
}

.set__schudule__title {
    margin-bottom: 32px;
    text-align: center;
}

.set__schudule__title h4 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: hsl(var(--base));
    line-height: 1;
}

.date__wrap .table {
    min-width: 600px;
}

@media screen and (max-width: 991px) {
    .schedult__right {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 32px;
    }
}

@media screen and (max-width: 575px) {
    .set__schudule__title h4 {
        font-size: 22px;
    }
}

/* ======================  Schedult Modal Section End  ======================*/

.coupon__container {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.tip_popup{
    z-index: 1080; width: 320px;
}

#tipModal .modal-title {
    margin-bottom: 20px;
}

.btn--empty{
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

.btn--empty:hover{
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

.white1{
    color:hsl(var(--white)) !important;
}

.ourred{
    color: hsl(var(--base));
}

.methods{
    max-width: 70%;
}

.decor-gradient{
  position: absolute;
  width: 40%;
  height: 900px;
  top: 500px;
  right: 0px;

  background: radial-gradient(ellipse farthest-corner at 100% 0%,
    hsl(var(--base) / 0.35) 0%,
    hsl(var(--black) / 0.85) 55%,
    hsl(var(--black)) 75% 100%
  );
  opacity: .6;

  pointer-events: none;
  z-index: 0;
}

@media screen and (max-width:1119px){
    .decor-gradient{
        width:0px;
        height:0px;
    }
}

.testimonials_header {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 60px 0;
  background:
    radial-gradient(140% 120% at 10% 0%, rgba(0,0,0,.35), transparent 60%),
    linear-gradient(110deg, #5b0d18 0%, #b32332 45%, #e63f42 100%);
  display: flex;
  align-items: center;
}

.testimonials_header::after {
  --cut-left: 56px;
  --cut-right: 120px;

  content: "";
  position: absolute;
  inset: -1px;
  background: #000;
  pointer-events: none;
  clip-path: polygon(
    0%  calc(100% - var(--cut-left)),
    100% calc(100% - var(--cut-right)),
    100% 100%,
    0%   100%
  );
}

.testimonials_header__content {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.testimonials_header__content h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-top: -65px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.testimonials_header__content p {
  font-family: 'Exo', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.95;
}

.testimonials_header__content p:last-child {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.testimonials_header .inner { padding: 6rem 5vw; text-align: center;}

.testimonials_header .inner h1{text-align: center; font-family: 'Exo 2';}
.testimonials_header .inner p{text-align: center; font-family: 'Exo';font-size: 20px;}

.truncate-1{
    width:100%;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    font-weight:600;
}
.membar__info > div {
  flex: 1 1 auto;           /* take remaining space */
  min-width: 0;             /* <-- CRITICAL: allow shrinking so ellipsis can happen */
}


.waiting__search__single img{
    border-radius: 100px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 140px;
}

.tier_outline_standard{
    border-width: 3px;
    border-style: solid;
    border-color: hsl(var(--base));
}

.tier_outline_vip{
    border-width: 3px;
    border-style: solid;
    border-color: hsl(var(--info));
}

.tier_outline_gold{
    border-width: 3px;
    border-style: solid;
    border-color: hsl(var(--warning));
}

.waiting__desc {
    margin-bottom: 36px;
    margin-top: 36px;
}

.waiting__dot{
    font-size: 10px;
    transform: translateY(5px);
    margin-right: 10px;
    color: hsl(var(--base));
}

.coach__info__box {
    width: 100%;
    background-color: #2b2b2b;
    border-radius: 26px;
    padding: 20px 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 12px;
    align-items: start;
    height: auto;
    min-height: auto;
}

.coach__info__left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    min-width: fit-content;
    grid-column: 1;
    grid-row: 1 / span 3;
}

.coach__rating {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.coach__rating span:first-child {
    color: #ff9500;
    font-size: 18px;
    font-weight: 600;
    font-family: "Exo", sans-serif;
}

.coach__rating .reviews {
    color: #999;
    font-size: 15px;
    font-weight: 400;
    font-family: "Exo", sans-serif;
    white-space: nowrap;
}

.coaching__types {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0;
}

.coach__description {
    font-size: 18px;
    color: hsl(var(--white));
    line-height: 1.3;
    margin-bottom: 0;
    font-family: "Exo", sans-serif;
    font-weight: 400;
    word-break: break-word;
    margin-top: 0.5rem;
    max-width: 20rem;
    max-height: 4.7rem;
    line-height: 1.5;
}

.coaching__type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    color: hsl(var(--white));
    font-family: "Exo", sans-serif;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.3;
}

.coaching__type i {
    font-size: 14px;
    color: hsl(var(--base));
    width: 15px;
    text-align: center;
    flex-shrink: 0;
}


@media screen and (max-width: 767px) { .coach__card { padding: 20px 12px; gap: 15px; } .coach__session__time { font-size: 18px; } .coach__avatar { width: 100px; height: 100px; } .coach__name__section h3 { font-size: 22px; } .coach__info__box { padding: 12px; gap: 8px; grid-template-columns: 1fr; } .coach__info__left { gap: 4px; } .coach__info__right { gap: 1px; } .coach__rating { gap: 6px; } .coach__rating span:first-child { font-size: 14px; } .coach__rating .reviews { font-size: 11px; } .coach__rank { font-size: 12px; } .coaching__types { gap: 2px; } .coaching__type { font-size: 13px; gap: 4px; } .coaching__type i { font-size: 11px; width: 12px; } .coach__description { font-size: 13px; line-height: 1.2; margin-top: 6px; } .coach__preferences__title h4 { font-size: 22px; } .coach__preferences__settings { gap: 14px; } .preference__setting { gap: 14px; } .setting__left i { font-size: 16px; width: 20px; } .setting__left span { font-size: 14px; } .setting__right { font-size: 14px; } } @media screen and (max-width: 575px) { .coach__card { padding: 16px 10px; gap: 12px; } .coach__session__time { font-size: 16px; } .coach__avatar { width: 90px; height: 90px; } .coach__name__section h3 { font-size: 20px; } .coach__info__box { padding: 10px; gap: 6px; } .coach__rating span:first-child { font-size: 12px; } .coach__rating .reviews { font-size: 10px; } .coach__rank { font-size: 11px; } .coaching__type { font-size: 12px; } .coaching__type i { font-size: 10px; width: 11px; } .coach__description { font-size: 12px; margin-top: 5px; } .coach__preferences__title h4 { font-size: 20px; } }
@media screen and (max-width: 767px) {
    .coach__card {
        padding: 20px 12px;
        gap: 20px;
    }
    
    .coach__info__box {
        padding: 12px;
        gap: 8px;
        grid-template-columns: 1fr;
    }
    
    .coach__info__left {
        gap: 4px;
    }
    
    .coach__info__right {
        gap: 1px;
    }
    
    .coach__rating {
        gap: 6px;
    }
    
    .coach__rating span:first-child {
        font-size: 12px;
    }
    
    .coach__rating .reviews {
        font-size: 10px;
    }
    
    .coach__rank {
        font-size: 11px;
    }
    
    .coaching__types {
        gap: 2px;
    }
    
    .coaching__type {
        font-size: 12px;
        gap: 4px;
    }
    
    .coaching__type i {
        font-size: 10px;
        width: 11px;
    }
    
    .coach__description {
        font-size: 11px;
        line-height: 1.2;
        margin-top: 5px;
    }
    
    .coach__session__time {
        font-size: 16px;
    }
    
    .coach__avatar {
        width: 120px;
        height: 120px;
    }
    
    .coach__name__section h3 {
        font-size: 20px;
    }
    
    .coach__preferences__title h4 {
        font-size: 18px;
    }
    
    .setting__left span {
        font-size: 14px;
    }
    
    .setting__right {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .coach__card {
        padding: 24px;
    }
}

@media screen and (max-width: 575px) {
    .coach__card {
        padding: 24px 16px;
    }
}

@media screen and (max-width: 1024px) {
    .coach__card {
        padding: 28px;
        gap: 18px;
    }
    
    .coach__session__time {
        font-size: 22px;
    }
    
    .coach__avatar {
        width: 120px;
        height: 120px;
    }
    
    .coach__name__section h3 {
        font-size: 26px;
    }
    
    .coach__info__box {
        padding: 18px;
        gap: 13px;
    }
    
    .coach__preferences__title h4 {
        font-size: 26px;
    }
}

@media screen and (max-width: 1199px) {
    .row.g-4 {
        display: flex;
        flex-wrap: wrap;
    }
    
    .row.g-4 > .col-xl-5 {
        display: flex;
        flex-direction: column;
        order: 2;
    }
    
    .row.g-4 > .col-xl-7 {
        order: 1;
    }
    
    .waiting__wrap {
        order: 1;
    }
    
    .waiting__wrapper {
        order: 2;
    }
}

@media screen and (max-width: 991px) {
    .row.g-4 {
        display: flex;
        flex-direction: column;
    }
    
    .row.g-4 > .col-xl-5 {
        order: 2;
        width: 100% !important;
    }
    
    .row.g-4 > .col-xl-7 {
        order: 1;
        width: 100% !important;
    }
}

.coach__preferences__title {
    text-align: center;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.coach__preferences__title h4 {
    font-size: 31px;
    font-weight: 800;
    color: hsl(var(--white));
    text-transform: capitalize;
    margin-bottom: 0;
    font-family: "Exo 2", sans-serif;
}

.coach__preferences__settings {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.coach__preferences__settings {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.setting__left {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
}

.setting__left i {
    color: hsl(var(--white));
    font-size: 20px;
    flex-shrink: 0;
    width: 25px;
    text-align: center;
}

.setting__left span {
    font-family: "Exo", sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: hsl(var(--white));
}

.setting__right {
    font-family: "Exo", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: hsl(var(--white));
    opacity: 0.6;
    flex-shrink: 0;
}

.preference__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.preferences__footer__text {
    font-family: "Exo", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.preference__setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.coach__preferences__settings {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.truncate-2{
    width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
}

.refund_btn{
    margin-top: 20px;
}

.chat_timer{
    width: 100px;
}

.color_lime{
    color: lime;
}

.online_now{
    font-size: 12px;
}

.chat_left_img{
    height: 140px;
}

.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.role-list { display:flex; align-items:center; gap:8px; }
.role-list li { list-style:none; position:relative; }
.role-list input[type="checkbox"] { position:absolute; inset:0; opacity:0; pointer-events:none; }

.role-list label {
  display:inline-block; width:20px; height:20px;
  background-position:center; background-size:contain; background-repeat:no-repeat;
  filter: grayscale(1) opacity(.75);
  border-radius:4px;
  transition: filter .15s ease, transform .05s ease;
  cursor:pointer;
}
.role-list label:hover { filter: grayscale(.2) opacity(1); }
.role-list input:checked + label { filter:none; }

label[data-role="top"]      { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st1.webp'); }
input:checked + label[data-role="top"]      { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st1-selected.webp'); }

label[data-role="jungle"]   { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st2.webp'); }
input:checked + label[data-role="jungle"]   { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st2-selected.webp'); }

label[data-role="mid"]      { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st3.webp'); }
input:checked + label[data-role="mid"]      { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st3-selected.webp'); }

label[data-role="adc"]      { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st4.webp'); }
input:checked + label[data-role="adc"]      { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st4-selected.webp'); }

label[data-role="support"]  { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st5.webp'); }
input:checked + label[data-role="support"]  { background-image: url('https://queueup-prod.fra1.cdn.digitaloceanspaces.com/assets/images/st5-selected.webp'); }

.coach-filter-modal .modal-body {
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  max-height: 80vh;
}

@supports not (scrollbar-gutter: stable) {
  .coach-filter-modal .modal-body {
    overflow-y: scroll;
  }
}

.coach-filter-modal .modal-dialog {
  max-width: 90rem;
}

.coach-filter-modal .row.g-4 {
  min-height: 40vh;
}
.booking_modal_buttons{
    width: 30rem;
    gap: 10px;
}

.small_champ_img{
  width:24px; height:24px; object-fit:cover; border-radius:50%;
}

.champs_cont{
  display:flex; align-items:center; gap:6px;
  width:100%;
  background:#2B2B2B;
  padding:4px 8px;
  border:1px solid gray; border-radius:6px;
  min-width:0;
}

.champs_cont span{
  color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}

.champs_cont_84{
    min-height: 84px;
}

.reserve{
    min-height: 72px;
}

.champs_cont.champ-match {
  border-color: #f1c40f !important;
  box-shadow: 0 0 0 2px rgba(241,196,15,.35) inset;
}

.card_roles {
    margin-inline-start: auto;
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 13px;
}

.card_roles li:not(:last-child) {
    border-right: 1px solid hsl(var(--white)/0.2);
    margin-right: 0px;
    padding-right: 8px;
}

@media screen and (max-width: 767px) {
    .card_roles li:not(:last-child) {
        margin-right: 6px;
        padding-right: 6px;
    }
}

.card_roles li a img {
    width: auto;
    height: 22px;
}

.fade-bg-to-lime {
  transition: background-color 300ms ease-in-out;
  background-color: lime !important;
}

@media (prefers-reduced-motion: reduce) {
  .fade-bg-to-lime { transition: none; }
}

.c-white{
    color:white;
}

.coupon_input{
    border: 1px solid hsl(var(--white) / 0.15);
}

.rh4{
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: hsl(var(--base));
}

.bp{
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pl65{
    padding-left: 65px !important;
}

.coupon_copy_button:hover{
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
    border: 0px !important;
}

.coupon_used{
    filter: grayscale(0.6);
}

.dash_text_small{
    font-size:14px;
}

.mw30{
    max-width: 30px !important;
}

.order_detail{
    background-color: #252525;
    padding: 10px;
    border-radius: 50px;
    border-width: 1px;
    border-color: #5C5C5C;
    border-style: solid;
    min-width: 8rem;
    text-align: center;
}


@media (max-width: 600px){
  .order__single{
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 10px;
  }

  .order__left, .order__user{ min-width: 0; }
  .order__user h4{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60vw;
  }

  .order_detail{ flex: 0 0 auto; }

  .order__single > span{ order: 98; margin-left: 0; }

  .action__btn{
    order: 99;
    width: 100%;
    justify-content: flex-end;
  }
}

.offcanvas__area button{
    display: block;
    font-size: 1rem;
    color: hsl(var(--heading-color));
    background-color: hsl(var(--heading-color) / 0.06);
    border: 1px solid hsl(var(--white) / 0.04);
    padding: 0.75rem 1.25rem;
    border-radius: 0.3125rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-backdrop-filter: blur(0.625rem);
    backdrop-filter: blur(0.625rem);
}

.z0{
    z-index:0;
}

.balance__btn__phone {
    display: none;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.balance__btn__phone .btn {
    font-size: 18px;
    padding: 14px 12px;
    height: 56px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: black;
}

.balance__btn__phone .btn img {
    width: 40px;
}

.balance__btn__phone i {
    font-size: 20px;
    color: hsl(var(--black));
}

.balance__btn__phone span {
    font-size: 12px;
    font-weight: 600;
    color: hsl(var(--white));
}

.balance__btn__phone p {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: hsl(var(--white));
}

.balance__btn__phone .btn--info i {
    color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
    .balance__btn__phone{
        display: flex;
    }
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    padding-top: 6px;
}

/* Make avatar images circular with red outline */
img[src*="media/avatars"]:not([class*="tier_outline"]) {
    border-radius: 50%;
    border-width: 3px;
    border-style: solid;
    border-color: hsl(var(--base));
}