/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
    font-family: "Gotham";
    src: url(../fonts/GothamBold.ttf) format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Gotham";
    src: url(../fonts/GothamBook.ttf) format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Gotham";
    src: url(../fonts/GothamLight.ttf) format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "Gotham";
    src: url(../fonts/GothamMedium.ttf) format("truetype");
    font-weight: 500;
}

/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --heading-font: "Montserrat", serif;
    --body-font: "Montserrat", serif;
    --input-font: "DM Sans", serif;
    --gotham-font: "Gotham";
    /* ========================= Theme Color Start ============================= */
    /* Base Color */
    --base-h: 215;
    --base-s: 91%;
    --base-l: 18%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
    --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
    --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
    --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
    --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
    --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
    --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
    --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
    --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
    --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
    --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
    --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);
    /* Base Two Color */
    --base-two-h: 215;
    --base-two-s: 71%;
    --base-two-l: 39%;
    --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);
    --base-two-d-100: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.1);
    --base-two-d-200: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.2);
    --base-two-d-300: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.3);
    --base-two-d-400: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.4);
    --base-two-d-500: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.5);
    --base-two-d-600: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.6);
    --base-two-d-700: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.7);
    --base-two-d-800: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.8);
    --base-two-d-900: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.9);
    --base-two-d-1000: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 1);
    --base-two-l-100: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.1);
    --base-two-l-200: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.2);
    --base-two-l-300: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.3);
    --base-two-l-400: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.4);
    --base-two-l-500: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.5);
    --base-two-l-600: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.6);
    --base-two-l-700: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.7);
    --base-two-l-800: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.8);
    --base-two-l-900: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.9);
    --base-two-l-1000: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 1);
    /* ========================= Theme Color End ============================= */
    /* ========================= Color Variables Start =========================== */
    --white: 0 0% 100%;
    --body-color: 130 8% 15%;
    --heading-color: 0 0% 20%;
    --input-color: 236 8% 67%;
    --black: 0 0% 0%;
    --border-color: 120 2% 91%;
    --border-color-two: 0 0% 93%;
    --border-color-three: 224 52% 96%;
    --border-color-four: 0 0% 94%;
    --heading-bg: 240 8% 97%;
    --section-bg: 208 100% 97%;
    --background-color: #F8F9FD;
    /* ================================ Box Shadow Start =============================== */
    --header-box-shadow: 0px 1px 10px hsl(var(--black) /.08);
    --box-shadow: 0px 3px 10px hsl(var(--black) / 0.08);
    /* ================================ Box Shadow End =============================== */
    /* ============================== Bootstrap Modifier Start ============================== */
    /* Primary Color */
    --primary-h: 238;
    --primary-s: 100%;
    --primary-l: 40%;
    --primary: var(--primary-h) var(--primary-s) var(--primary-l);
    --primary-d-100: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.1);
    --primary-d-200: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.2);
    --primary-d-300: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.3);
    --primary-d-400: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.4);
    --primary-d-500: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.5);
    --primary-l-100: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.1);
    --primary-l-200: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.2);
    --primary-l-300: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.3);
    --primary-l-400: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.4);
    --primary-l-500: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.5);
    /* Secondary Color */
    --secondary-h: 208;
    --secondary-s: 7%;
    --secondary-l: 46%;
    --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
    --secondary-d-100: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.1);
    --secondary-d-200: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.2);
    --secondary-d-300: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.3);
    --secondary-d-400: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.4);
    --secondary-d-500: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.5);
    --secondary-l-100: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.1);
    --secondary-l-200: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.2);
    --secondary-l-300: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.3);
    --secondary-l-400: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.4);
    --secondary-l-500: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.5);
    /* Success Color */
    --success-h: 112;
    --success-s: 100%;
    --success-l: 40%;
    --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: 4;
    --danger-s: 68%;
    --danger-l: 45%;
    --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: 37;
    --warning-s: 90%;
    --warning-l: 51%;
    --warning: var(--warning-h) var(--warning-s) var(--warning-l);
    --warning-d-100: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.1);
    --warning-d-200: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.2);
    --warning-d-300: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.3);
    --warning-d-400: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.4);
    --warning-d-500: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.5);
    --warning-l-100: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.1);
    --warning-l-200: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.2);
    --warning-l-300: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.3);
    --warning-l-400: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.4);
    --warning-l-500: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.5);
    /* Info Color */
    --info-h: 196;
    --info-s: 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);
    /* Dark Color */
    --dark-h: 0;
    --dark-s: 0%;
    --dark-l: 13%;
    --dark: var(--dark-h) var(--dark-s) var(--dark-l);
    --dark-d-100: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.1);
    --dark-d-200: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.2);
    --dark-d-300: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.3);
    --dark-d-400: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.4);
    --dark-d-500: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.5);
    --dark-l-100: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.1);
    --dark-l-200: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.2);
    --dark-l-300: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.3);
    --dark-l-400: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.4);
    --dark-l-500: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.5);
    /* Purple Color */
    --light-h: 0;
    --light-s: 0%;
    --light-l: 98%;
    --light: var(--light-h) var(--light-s) var(--light-l);
    --light-d-100: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.1);
    --light-d-200: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.2);
    --light-d-300: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.3);
    --light-d-400: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.4);
    --light-d-500: var(--light-h) var(--light-s) calc(var(--light-l) - var(--light-l) * 0.5);
    --light-l-100: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.1);
    --light-l-200: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.2);
    --light-l-300: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.3);
    --light-l-400: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.4);
    --light-l-500: var(--light-h) calc(var(--light-s)) calc(var(--light-l) + (100% - var(--light-l)) * 0.5);
    /* ============================== Bootstrap Modifier End ============================== */
}

/* ========================= Css Variables End =========================== */
/* ============================= Fully Fit Image Css Start ============================= */
.fit-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ============================= Fully Fit Image Css End ============================= */
/* ============================= Display Flex Css Start ============================= */
.flex-wrap,
.form--switch,
.form--radio,
.form--check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-align,
.account-form .form--check,
.frontent-edit .edit-section-item__buttons,
.frontent-edit__heading-page,
.dashboard .admin-profile-avater,
.dashboard .transaction-buttons,
.dashboard .dashboard-widget__links a,
.dashboard .dashboard-header__right,
.dashboard .dashboard-header__left,
.action-buttons,
.table tbody tr td .country,
.table tbody tr td .table-status {
    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;
    justify-content: 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,
.dashboard .table-heading,
.dashboard .continent-card__top,
.dashboard .dashboard-widget__content,
.dashboard .dashboard-widget__top,
.dashboard .dashboard-body__heading,
.dashboard .dashboard-header .notification-list__header,
.dashboard .dashboard-header__inner,
.list-group .list-group-item {
    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 {
    position: absolute;
    content: "";
}

.top-center-extend,
.custom--accordion .accordion-button[aria-expanded=true]::after,
.custom--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 ===================== */
/* ===================== Font Size For Responsive Devices Start =================== */
.fs-10 {
    font-size: 0.625rem;
}

.fs-11 {
    font-size: 0.6875rem;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-13 {
    font-size: 0.8125rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-15 {
    font-size: 0.9375rem;
}

.fs-16 {
    font-size: 1rem;
}

@media screen and (max-width: 1199px) {
    .fs-16 {
        font-size: 0.9375rem;
    }
}

.fs-17 {
    font-size: 1.0625rem;
}

@media screen and (max-width: 1199px) {
    .fs-17 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-17 {
        font-size: 0.9375rem;
    }
}

.fs-18 {
    font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
    .fs-18 {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-18 {
        font-size: 1rem;
    }
}

.fs-20 {
    font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
    .fs-20 {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-20 {
        font-size: 1.0625rem;
    }
}

/* ===================== Font Size For Responsive Devices End =================== */
/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: var(--background-color);
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

p {
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
    color: hsl(var(--body-color));
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 10px 0;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.55;
    font-weight: 700;
}

@media screen and (max-width: 1199px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 8px 0;
    }
}

@media screen and (max-width: 991px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 7px 0;
    }
}

@media screen and (max-width: 767px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 5px 0;
    }
}

@media screen and (max-width: 575px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 4px 0;
    }
}

h1 {
    font-size: 3.5625rem;
}

@media screen and (max-width: 1399px) {
    h1 {
        font-size: 3.25rem;
    }
}

@media screen and (max-width: 1199px) {
    h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.625rem;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.375rem;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 2.125rem;
    }
}

h2 {
    font-size: 3rem;
}

@media screen and (max-width: 1399px) {
    h2 {
        font-size: 2.875rem;
    }
}

@media screen and (max-width: 1199px) {
    h2 {
        font-size: 2.75rem;
    }
}

@media screen and (max-width: 991px) {
    h2 {
        font-size: 2.625rem;
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 2.375rem;
    }
}

@media screen and (max-width: 575px) {
    h2 {
        font-size: 2.1875rem;
    }
}

h3 {
    font-size: 2.5rem;
}

@media screen and (max-width: 1399px) {
    h3 {
        font-size: 2.3125rem;
    }
}

@media screen and (max-width: 1199px) {
    h3 {
        font-size: 2.125rem;
    }
}

@media screen and (max-width: 991px) {
    h3 {
        font-size: 1.9375rem;
    }
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: 1.8125rem;
    }
}

@media screen and (max-width: 575px) {
    h3 {
        font-size: 1.6875rem;
    }
}

h4 {
    font-size: 1.75rem;
}

@media screen and (max-width: 1399px) {
    h4 {
        font-size: 1.6875rem;
    }
}

@media screen and (max-width: 1199px) {
    h4 {
        font-size: 1.5625rem;
    }
}

@media screen and (max-width: 991px) {
    h4 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    h4 {
        font-size: 1.4375rem;
    }
}

@media screen and (max-width: 575px) {
    h4 {
        font-size: 1.375rem;
    }
}

h5 {
    font-size: 1.5rem;
}

@media screen and (max-width: 1399px) {
    h5 {
        font-size: 1.4375rem;
    }
}

@media screen and (max-width: 1199px) {
    h5 {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 991px) {
    h5 {
        font-size: 1.3125rem;
    }
}

@media screen and (max-width: 767px) {
    h5 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 575px) {
    h5 {
        font-size: 1.1875rem;
    }
}

h6 {
    font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
    h6 {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 1199px) {
    h6 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 991px) {
    h6 {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    h6 {
        font-size: 0.9375rem;
    }
}

@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.2s linear;
    transition: 0.2s linear;
    text-decoration: underline;
    color: hsl(var(--heading-color));
}

a:hover {
    color: hsl(var(--base-two));
}

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-select:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
@media screen and (min-width: 425px) and (max-width: 575px) {
    .col-xsm-6 {
        width: 50%;
    }
}

.section-bg {
    background-color: hsl(var(--section-bg));
}

.bg-img {
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.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);
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.body-overlay.show {
    visibility: visible;
    opacity: 1;
}

.gradient-text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--base-d-200))), to(hsl(var(--base))));
    background-image: linear-gradient(180deg, hsl(var(--base-d-200)) 0%, hsl(var(--base)) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.gradient-text::-moz-selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

.gradient-text::selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.sidebar-overlay.show {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}

/* ================================= Custom Classes Css End =========================== */
/* ====================== Section Heading Css Start ==================== */
.section-heading {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .section-heading {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .section-heading {
        margin-bottom: 20px;
    }
}

.section-heading__subtitle {
    color: hsl(var(--base));
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading__title {
    margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
    .section-heading__title {
        margin-bottom: 20px;
    }
}

.section-heading__desc {
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-size: clamp(1rem, 0.9431rem + 0.2427vw, 1.125rem);
}

.section-heading__section-name {
    position: absolute;
    inset-inline: 0;
    top: -35px;
    line-height: 0.6;
    z-index: -1;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: hsl(var(--base));
    -webkit-text-stroke-width: 1px;
    opacity: 0.3;
    font-weight: 700;
    font-size: clamp(3.75rem, 1.4745rem + 9.7087vw, 8.75rem);
    -webkit-animation: section-name-blink 5s linear infinite;
    animation: section-name-blink 5s linear infinite;
}

@media screen and (max-width: 991px) {
    .section-heading__section-name {
        top: -55px;
    }
}

@media screen and (max-width: 767px) {
    .section-heading__section-name {
        top: -45px;
    }
}

@media screen and (max-width: 424px) {
    .section-heading__section-name {
        top: -25px;
    }
}

.section-heading.style-left {
    text-align: left;
}

.section-heading.style-left .section-heading__title::before {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.section-heading.style-left .section-heading__desc {
    margin-left: 0;
}

/* ====================== Section Heading Css 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--light {
    background-color: hsl(var(--light)) !important;
}

.bg--dark {
    background-color: hsl(var(--dark)) !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;
}

.text--light {
    color: hsl(var(--light)) !important;
}

.text--dark {
    color: hsl(var(--dark)) !important;
}

/* ================================= Color 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--light {
    border-color: hsl(var(--light)) !important;
}

.border--dark {
    border-color: hsl(var(--dark)) !important;
}

/* ================================= Border 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 =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion .accordion-item {
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--white)) !important;
    border-radius: 5px;
    overflow: hidden;
}

.custom--accordion .accordion-item:not(:last-child) {
    margin-bottom: 20px;
}

.custom--accordion .accordion-header {
    line-height: 1;
}

.custom--accordion .accordion-body {
    font-size: 0.9375rem;
    color: hsl(var(--body-color));
    background-color: hsl(var(--white));
    padding: 20px 15px;
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-body {
        font-size: 0.875rem;
        padding: 15px 10px;
    }
}

.custom--accordion:first-of-type .accordion-button.collapsed {
    border-radius: 5px;
}

.custom--accordion:last-of-type .accordion-button.collapsed {
    border-radius: 5px;
}

.custom--accordion .accordion-button {
    background-color: transparent;
    color: var(--heading-color);
    font-size: 1rem;
    font-weight: 500;
    padding: 15px;
    padding-right: 45px;
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-button {
        padding: 15px 10px;
        padding-right: 30px;
    }
}

.custom--accordion .accordion-button::after {
    background-image: none;
}

.custom--accordion .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed) {
    color: hsl(var(--heading-color));
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    color: hsl(var(--base));
}

.custom--accordion .accordion-button[aria-expanded=true]::after,
.custom--accordion .accordion-button[aria-expanded=false]::after {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "\f068";
    display: inline-block;
    position: absolute;
    right: 15px;
    height: unset;
    color: inherit;
}

@media screen and (max-width: 575px) {

    .custom--accordion .accordion-button[aria-expanded=true]::after,
    .custom--accordion .accordion-button[aria-expanded=false]::after {
        right: 8px;
    }
}

.custom--accordion .accordion-button[aria-expanded=false]::after {
    content: "\f067";
    color: inherit;
}

/* ================================= Accordion Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn {
    position: relative;
    font-family: var(--body-font);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    color: hsl(var(--white)) !important;
    padding: 14px 32px;
    border: 1px solid transparent;
    border-radius: 8px;
    z-index: 1;
    display: inline-block !important;
}

@media screen and (max-width: 1399px) {
    .btn {
        padding: 14px 30px;
    }
}

@media screen and (max-width: 1199px) {
    .btn {
        border-radius: 7px;
        padding: 13px 28px;
    }
}

@media screen and (max-width: 991px) {
    .btn {
        padding: 12px 25px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 767px) {
    .btn {
        padding: 12px 22px;
    }
}

@media screen and (max-width: 575px) {
    .btn {
        border-radius: 5px;
        padding: 11.5px 18px;
        font-size: 0.8125rem;
    }
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn:active {
    top: 1px;
}

.btn--lg {
    padding: 17px 60px;
}

@media screen and (max-width: 1399px) {
    .btn--lg {
        padding: 16px 55px;
    }
}

@media screen and (max-width: 1199px) {
    .btn--lg {
        padding: 15px 50px;
    }
}

@media screen and (max-width: 991px) {
    .btn--lg {
        padding: 15px 47px;
    }
}

@media screen and (max-width: 767px) {
    .btn--lg {
        padding: 14px 44px;
    }
}

@media screen and (max-width: 575px) {
    .btn--lg {
        padding: 13.5px 40px;
    }
}

.btn--md {
    padding: 14px 18px;
}

@media screen and (max-width: 1399px) {
    .btn--md {
        padding: 14px 17px;
    }
}

@media screen and (max-width: 1199px) {
    .btn--md {
        padding: 13px 16px;
    }
}

@media screen and (max-width: 991px) {
    .btn--md {
        padding: 12px 15px;
    }
}

@media screen and (max-width: 767px) {
    .btn--md {
        padding: 12px 14px;
    }
}

@media screen and (max-width: 575px) {
    .btn--md {
        padding: 11.5px 13px;
    }
}

@media screen and (max-width: 424px) {
    .btn--md {
        padding: 11.5px;
    }
}

.btn--xsm {
    font-size: 0.8125rem;
    padding: 9px 14px;
    border-radius: 6px;
}

@media screen and (max-width: 1399px) {
    .btn--xsm {
        padding: 8px 13px;
    }
}

@media screen and (max-width: 1199px) {
    .btn--xsm {
        padding: 7px 11px;
        border-radius: 5px;
    }
}

@media screen and (max-width: 991px) {
    .btn--xsm {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 767px) {
    .btn--xsm {
        padding: 6.5px 10px;
    }
}

@media screen and (max-width: 575px) {
    .btn--xsm {
        border-radius: 4px;
        padding: 6px 9px;
    }
}

.btn--base {
    background-color: hsl(var(--base)) !important;
}

.btn--base:hover,
.btn--base:focus .btn--base:focus-visible {
    background-color: hsl(var(--base-d-200)) !important;
    border: 1px solid hsl(var(--base-d-200)) !important;
}

.btn-outline--base {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base)) !important;
    color: hsl(var(--base)) !important;
}

.btn-outline--base:hover,
.btn-outline--base:focus .btn-outline--base:focus-visible {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base-two {
    background-color: hsl(var(--base-two)) !important;
}

.btn--base-two:hover,
.btn--base-two:focus .btn--base-two:focus-visible {
    background-color: hsl(var(--base-two-d-200)) !important;
    border: 1px solid hsl(var(--base-two-d-200)) !important;
}

.btn-outline--base-two {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base-two)) !important;
    color: hsl(var(--base-two)) !important;
}

.btn-outline--base-two:hover,
.btn-outline--base-two:focus .btn-outline--base-two:focus-visible {
    background-color: hsl(var(--base-two)) !important;
    color: hsl(var(--white)) !important;
}

.btn--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--success {
    background-color: hsl(var(--success)) !important;
}

.btn--success:hover,
.btn--success:focus .btn--success:focus-visible {
    background-color: hsl(var(--success-d-200)) !important;
    border: 1px solid hsl(var(--success-d-200)) !important;
}

.btn-outline--success {
    background-color: transparent !important;
    border: 1px solid hsl(var(--success)) !important;
    color: hsl(var(--success)) !important;
}

.btn-outline--success:hover,
.btn-outline--success:focus .btn-outline--success:focus-visible {
    background-color: hsl(var(--success)) !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--light {
    background-color: hsl(var(--light)) !important;
}

.btn--light:hover,
.btn--light:focus .btn--light:focus-visible {
    background-color: hsl(var(--light-d-200)) !important;
    border: 1px solid hsl(var(--light-d-200)) !important;
}

.btn-outline--light {
    background-color: transparent !important;
    border: 1px solid hsl(var(--light)) !important;
    color: hsl(var(--light)) !important;
}

.btn-outline--light:hover,
.btn-outline--light:focus .btn-outline--light:focus-visible {
    background-color: hsl(var(--light)) !important;
    color: hsl(var(--black)) !important;
}

.btn--dark {
    background-color: hsl(var(--dark)) !important;
}

.btn--dark:hover,
.btn--dark:focus .btn--dark:focus-visible {
    background-color: hsl(var(--dark-d-200)) !important;
    border: 1px solid hsl(var(--dark-d-200)) !important;
}

.btn-outline--dark {
    background-color: transparent !important;
    border: 1px solid hsl(var(--dark)) !important;
    color: hsl(var(--dark)) !important;
}

.btn-outline--dark:hover,
.btn-outline--dark:focus .btn-outline--dark:focus-visible {
    background-color: hsl(var(--dark)) !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--base:hover {
    background-color: hsl(var(--base-two)) !important;
    border-color: hsl(var(--base-two)) !important;
}

.btn--base-two:hover {
    background-color: hsl(var(--base)) !important;
    border-color: hsl(var(--base)) !important;
}

.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;
}

.custom--tooltip {
    --bs-tooltip-color: hsl(var(--white));
    --bs-tooltip-bg: hsl(var(--info));
}

.toggle.btn label {
    position: absolute;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0 !important;
    line-height: 1;
}

.toggle.btn label:hover,
.toggle.btn label:focus {
    border: 0 !important;
}

.toggle .toggle-group .toggle-handle {
    background-color: hsl(var(--white));
}

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.card {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color-two));
    border-radius: 8px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1199px) {
    .card {
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .card {
        border-radius: 5px;
    }
}

.card .card-header {
    padding: 12px 15px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid hsl(var(--border-color-two));
}

@media screen and (max-width: 1399px) {
    .card .card-header {
        padding: 12px 13px;
    }
}

@media screen and (max-width: 424px) {
    .card .card-header {
        padding: 10px 12px;
    }
}

.card .card-body {
    font-size: 0.875rem;
    font-weight: 400;
    padding: 15px 15px;
}

@media screen and (max-width: 1399px) {
    .card .card-body {
        padding: 13px;
    }
}

@media screen and (max-width: 424px) {
    .card .card-body {
        padding: 12px;
    }
}

.card .card-footer {
    background-color: transparent;
    border: 0;
    padding: 12px 15px;
}

@media screen and (max-width: 1399px) {
    .card .card-footer {
        padding: 12px 13px;
    }
}

@media screen and (max-width: 424px) {
    .card .card-footer {
        padding: 10px 12px;
    }
}

.card .list-group {
    border-radius: 0;
}

.card .list-group-item {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid hsl(var(--border-color-two));
    font-size: 0.8125rem !important;
    padding: 10px 15px !important;
}

@media screen and (max-width: 1399px) {
    .card .list-group-item {
        padding: 10px 13px !important;
    }
}

@media screen and (max-width: 424px) {
    .card .list-group-item {
        padding: 10px 12px !important;
    }
}

.card .list-group-item:first-child {
    border-top: 0;
    border-radius: 0;
}

.card .list-group-item:last-child {
    border-bottom: 0;
    border-radius: 0;
}

.card .list-group-item span:last-child {
    font-weight: 500;
}

/* ================================= Card Css End =========================== */
/* ================================= Form Css Start =========================== */
.form-group {
    margin-bottom: 25px;
}

@media screen and (max-width: 1399px) {
    .form-group {
        margin-bottom: 22px;
    }
}

@media screen and (max-width: 1199px) {
    .form-group {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .form-group {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .form-group {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 575px) {
    .form-group {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 424px) {
    .form-group {
        margin-bottom: 10px;
    }
}

.form--label {
    font-size: 0.875rem;
    font-weight: 400;
    font-family: var(--input-font);
    color: hsl(var(--dark));
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .form--label {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 767px) {
    .form--label {
        font-size: 0.8125rem;
    }
}

@media screen and (max-width: 575px) {
    .form--label {
        margin-bottom: 5px;
    }
}

.form--label .required {
    color: hsl(var(--danger));
}

.form--control {
    font-family: var(--input-font);
    width: 100%;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    border-radius: 8px;
    outline: none;
    padding: 12px 14px;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 400;
    color: hsl(var(--dark));
}

@media screen and (max-width: 1199px) {
    .form--control {
        border-radius: 7px;
        padding: 11px 13px;
    }
}

@media screen and (max-width: 991px) {
    .form--control {
        padding: 10px 13px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .form--control {
        padding: 9px 12px;
        border-radius: 5px;
    }
}

.form--control::-webkit-input-placeholder {
    color: hsl(var(--input-color));
    font-size: 0.875rem;
}

.form--control::-moz-placeholder {
    color: hsl(var(--input-color));
    font-size: 0.875rem;
}

.form--control:-ms-input-placeholder {
    color: hsl(var(--input-color));
    font-size: 0.875rem;
}

.form--control::-ms-input-placeholder {
    color: hsl(var(--input-color));
    font-size: 0.875rem;
}

.form--control::placeholder {
    color: hsl(var(--input-color));
    font-size: 0.875rem;
}

@media screen and (max-width: 575px) {
    .form--control::-webkit-input-placeholder {
        font-size: 0.8125rem;
    }

    .form--control::-moz-placeholder {
        font-size: 0.8125rem;
    }

    .form--control:-ms-input-placeholder {
        font-size: 0.8125rem;
    }

    .form--control::-ms-input-placeholder {
        font-size: 0.8125rem;
    }

    .form--control::placeholder {
        font-size: 0.8125rem;
    }
}

.form--control:focus {
    border-color: hsl(var(--base));
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form--control:disabled,
.form--control[readonly] {
    padding: 13px 18px;
    background-color: hsl(var(--heading-color)/0.05);
    color: hsl(var(--body-color)) !important;
    opacity: 1;
    border: 0;
}

@media screen and (max-width: 575px) {

    .form--control:disabled,
    .form--control[readonly] {
        padding: 12px 13px;
    }
}

.form--control[type=password] {
    color: hsl(var(--base));
    font-weight: 700;
}

.form--control[type=password]::-webkit-input-placeholder {
    font-weight: 400;
}

.form--control[type=password]::-moz-placeholder {
    font-weight: 400;
}

.form--control[type=password]:-ms-input-placeholder {
    font-weight: 400;
}

.form--control[type=password]::-ms-input-placeholder {
    font-weight: 400;
}

.form--control[type=password]::placeholder {
    font-weight: 400;
}

.form--control[type=password]:focus {
    color: hsl(var(--heading-color));
}

.form--control[type=file] {
    line-height: 45px;
    padding: 0;
    position: relative;
}

@media screen and (max-width: 575px) {
    .form--control[type=file] {
        line-height: 40px;
    }
}

.form--control[type=file]::-webkit-file-upload-button {
    border: 0;
    padding: 3px 12px;
    border-radius: 3px;
    background-color: hsl(var(--base)) !important;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 12px;
    color: hsl(var(--white)) !important;
    cursor: pointer;
}

.form--control[type=file]::file-selector-button {
    border: 0;
    padding: 3px 12px;
    border-radius: 3px;
    background-color: hsl(var(--base)) !important;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 12px;
    color: hsl(var(--white)) !important;
    cursor: pointer;
}

@media screen and (max-width: 575px) {
    .form--control[type=file]::-webkit-file-upload-button {
        font-size: 0.8125rem;
        padding: 2px 8px;
        margin-left: 8px;
    }

    .form--control[type=file]::file-selector-button {
        font-size: 0.8125rem;
        padding: 2px 8px;
        margin-left: 8px;
    }
}

.form--control[type=file]::-webkit-file-upload-button:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.form--control[type=file]::file-selector-button:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

textarea.form--control {
    height: 130px;
}

select {
    position: relative;
    color: hsl(var(--input-color)) !important;
}

select:focus {
    border-color: hsl(var(--base));
    color: hsl(var(--heading-color)) !important;
}

select option {
    background-color: hsl(var(--white));
    color: hsl(var(--heading-color));
}

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(--heading-color)) !important;
    caret-color: hsl(var(--heading-color));
}

/* input group */
.input--group {
    position: relative;
}

.password-show-hide {
    height: 100%;
    background: transparent;
    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;
    padding: 4px 10px;
    border-left: 1px solid hsl(var(--border-color));
    border-radius: 0 5px 5px 0;
    font-size: 1.125rem;
    cursor: pointer;
    color: hsl(var(--body-color));
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.password-show-hide:hover {
    color: hsl(var(--heading-color));
}

input#your-password,
input#confirm-password {
    padding-right: 50px;
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.form--check a {
    display: inline;
}

.form--check .form-check-input {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    box-shadow: none !important;
    border: 0;
    position: relative;
    border-radius: 2px;
    width: 16px;
    height: 16px;
    border: 1px solid hsl(var(--border-color));
    cursor: pointer;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.form--check .form-check-input:hover {
    border-color: hsl(var(--base));
}

.form--check .form-check-input:checked {
    background-color: hsl(var(--base)/0.12) !important;
    border-color: hsl(var(--base)) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form--check .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.form--check .form-check-input:checked::before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: hsl(var(--base));
    font-size: 0.6875rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.form--check .form-check-label {
    color: hsl(var(--heading-color));
    font-weight: 400;
    width: calc(100% - 16px);
    padding-left: 8px;
    cursor: pointer;
    font-size: 0.875rem;
}

@media screen and (max-width: 424px) {
    .form--check label {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 424px) {
    .form--check a {
        font-size: 0.9375rem;
    }
}

.form--radio .form-check-input {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid hsl(var(--border-color));
    border-radius: 2px;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    width: 16px;
    height: 16px;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.form--radio .form-check-input:active {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}

.form--radio .form-check-input:checked {
    background-color: hsl(var(--base)/0.12);
    border-color: hsl(var(--base));
}

.form--radio .form-check-input:checked[type=radio] {
    background-image: none;
}

.form--radio .form-check-input:checked::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background-color: hsl(var(--base));
    border-radius: 2px;
    z-index: 999;
}

.form--radio .form-check-input:hover {
    border-color: hsl(var(--base));
}

.form--radio .form-check-label {
    font-weight: 400;
    width: calc(100% - 16px);
    padding-left: 8px;
    cursor: pointer;
    font-size: 0.875rem;
}

.form--switch:focus-visible {
    outline: 0;
}

.form--switch .form-check-input {
    width: 40px;
    height: 18px;
    background-image: none;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: hsl(var(--heading-color)/0.09);
    border: 0;
    border-radius: 18px;
    padding: 10px !important;
    cursor: pointer;
    margin: 0 0 6px;
    -webkit-transition: 0.15s li;
    transition: 0.15s li;
}

.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:hover {
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.form--switch .form-check-input::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background-color: hsl(var(--white));
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 2px;
    left: 4px;
    border-radius: 50%;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.form--switch .form-check-input:checked {
    background-color: hsl(var(--base)) !important;
}

.form--switch .form-check-input:checked::before {
    left: calc(100% - 16px);
    background-color: hsl(var(--white)) !important;
}

.form--switch .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.form--switch .form-check-label {
    width: calc(100% - 40px);
    padding-left: 8px;
    cursor: pointer;
}

.input-group {
    border-radius: 5px;
    border: 0;
}

.input-group:focus-within {
    border: 0;
}

.input-group .input-group-text {
    border-radius: 5px;
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 0.875rem;
    line-height: 1;
    padding: 15px 14px;
}

@media screen and (max-width: 575px) {
    .input-group .input-group-text {
        padding: 13px;
    }
}

@media screen and (max-width: 575px) {
    .input-group .form--control {
        padding: 10px;
    }
}

.input-group .form--control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-group .form--control[readonly] {
    background: hsl(var(--heading-color)/0.05) !important;
}

.input-group .form--control[readonly]:focus {
    border-color: hsl(var(--heading-color)/0.05);
}

.input-group:has(.form--control[readonly]) {
    background: hsl(var(--heading-color)/0.05) !important;
}

.input-group:has(.form--control[readonly]):focus-within {
    border-color: hsl(var(--heading-color)/0.05) !important;
}

.upload-item-wrapper {
    position: relative;
}

.upload-item {
    position: relative;
    position: relative;
    width: 170px;
    height: 150px;
    background: #FCFCFC;
    border: 1px solid hsl(var(--border-color));
    overflow: hidden;
    border-radius: 10px;
}

.upload-item.style-two {
    width: 100% !important;
    height: 220px !important;
}

@media screen and (max-width: 1399px) {
    .upload-item {
        width: 155px;
        height: 140px;
    }

    .upload-item.style-two {
        height: 200px !important;
    }
}

@media screen and (max-width: 1199px) {
    .upload-item {
        border-radius: 8px;
    }

    .upload-item.style-two {
        height: 180px !important;
    }
}

@media screen and (max-width: 991px) {
    .upload-item {
        border-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .upload-item {
        width: 145px;
        height: 125px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .upload-item {
        width: 135px;
        height: 120px;
        border-radius: 5px;
    }
}

@media screen and (max-width: 424px) {
    .upload-item {
        width: 120px;
        height: 110px;
        border-radius: 5px;
    }
}

.upload-item__preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.upload-item .uploadItemPreview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.upload-item__edit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.upload-item__edit .uploadItemInput {
    font-size: 0;
    opacity: 0;
    width: 0;
}

.upload-item__edit .uploadItemLabel {
    width: 32px;
    height: 32px;
    border-top-left-radius: 8px;
    background: hsl(var(--base));
    color: hsl(var(--white)/0.8);
    font-size: 1.125rem;
    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;
    cursor: pointer;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 1px solid hsl(var(--white) / .2);
}

@media screen and (max-width: 1199px) {
    .upload-item__edit .uploadItemLabel {
        border-top-left-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .upload-item__edit .uploadItemLabel {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        border-top-left-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .upload-item__edit .uploadItemLabel {
        border-top-left-radius: 5px;
    }
}

.upload-item__edit .uploadItemLabel:hover {
    background: hsl(var(--base-two));
    color: hsl(var(--white));
}

/* ================================= Form Css End =========================== */
/* ================================= Modal Css Start =========================== */
.custom--modal .modal-header {
    border-bottom: 1px solid hsl(var(--border-color));
    padding: 15px;
}

.custom--modal .btn-close {
    background: none;
    width: 20px;
    height: 20px;
    background-color: hsl(var(--danger));
    opacity: 1;
    font-size: 0.875rem;
    line-height: 1;
    color: hsl(var(--white));
    padding: 0;
    border: 0;
    border-radius: 3px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 2;
}

.custom--modal .btn-close:hover {
    background-color: hsl(var(--danger-l-100));
}

.custom--modal .btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.custom--modal .modal-content {
    border: 0;
    border-radius: 14px !important;
}

.custom--modal .modal-body {
    color: hsl(var(--body-color));
    padding: 15px;
}

.custom--modal .modal-body small {
    font-weight: 600;
    color: #afafaf;
    font-size: 0.75rem;
}

.custom--modal .modal-body p {
    margin-bottom: 10px;
}

.custom--modal .modal-body p:last-of-type {
    margin-bottom: 0;
}

.custom--modal .modal-icon i {
    font-size: 2rem;
    color: hsl(var(--base));
    border: 3px solid hsl(var(--base));
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
}

.custom--modal .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    border-top: 1px solid hsl(var(--border-color));
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.custom--modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.custom--modal .modal-dialog-scrollable .modal-body:hover::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    border-radius: 3px;
}

.custom--modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: hsl(var(--base));
}

.custom--modal .modal-alert-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: hsl(var(--white));
    font-size: 1.125rem;
    line-height: 1;
    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;
}

.custom-modal-content {
    text-align: center;
    padding: 30px 45px 25px;
}

.custom-modal-content__icon {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: hsl(var(--base));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.custom-modal-content__icon.bg--danger::before {
    border-color: hsl(var(--danger)/.18);
}

.custom-modal-content__icon::before {
    position: absolute;
    content: '';
    border: 5px solid hsl(var(--base)/.18);
    border-radius: 50%;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    left: -5px;
    right: -5px;
}

.custom-modal-content__icon .icon {
    width: 45px;
    height: 45px;
    color: hsl(var(--white));
}

.custom-modal-content__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 25px;
}

.custom-modal-content__buttons .btn {
    width: calc(50% - 10px);
}

@media (max-width: 991px) {

    .custom-modal-content {
        padding: 30px 35px 25px;
    }

    .custom-modal-content__icon {
        width: 64px;
        height: 64px;
    }

    .custom-modal-content__icon .icon {
        width: 41px;
        height: 41px;
    }
}

@media (max-width: 767px) {

    .custom-modal-content {
        padding: 30px 30px 25px;
    }

    .custom-modal-content__icon {
        width: 58px;
        height: 58px;
    }

    .custom-modal-content__icon .icon {
        width: 39px;
        height: 39px;
    }

    .custom-modal-content__desc {
        font-size: 13px;
    }
}

@media (max-width: 575px) {


    .custom-modal-content {
        padding: 25px 25px 20px;
    }

    .custom-modal-content__icon {
        width: 53px;
        height: 53px;
    }

    .custom-modal-content__icon .icon {
        width: 37px;
        height: 37px;
    }
}

@media (max-width: 399px) {
    .custom-modal-content__buttons .btn {
        width: calc(50% - 5px);
    }
}

/* ================================= Modal Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination .page-item.active .page-link {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

.pagination .page-item .page-link {
    border: 1px solid hsl(var(--border-color));
    border-radius: 50%;
    height: 35px;
    width: 35px;
    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;
    background-color: transparent;
    font-weight: 500;
    padding: 0;
    color: hsl(var(--heading-color));
    font-size: 0.875rem;
}

.pagination .page-item .page-link:hover {
    background-color: transparent;
    color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.pagination .page-item .page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pagination.two .page-link {
    border-radius: 5px;
}

.pagination.three .page-link {
    border-color: hsl(var(--base));
}

.pagination.three .page-link:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.pagination.four .page-link {
    border-radius: 5px;
    border-color: hsl(var(--base));
}

.pagination.four .page-link:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

/* ================================= Pagination Css End =========================== */
/* ================================= Table Css Start =========================== */
.table {
    margin: 0;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0px 0px;
}

.table thead tr th {
    background-color: hsl(var(--heading-bg));
    font-family: var(--gotham-font);
    font-size: 0.8125rem;
    line-height: 1.43;
    font-weight: 500;
    text-align: center;
    color: hsl(var(--heading-color));
    padding: 16px 20px;
    border-top: 1px solid hsl(var(--border-color-four));
    border-bottom: 0;
    max-width: 170px;
}

@media screen and (max-width: 1199px) {
    .table thead tr th {
        padding: 15px 18px;
    }
}

@media screen and (max-width: 767px) {
    .table thead tr th {
        padding: 14px 16px;
    }
}

@media screen and (max-width: 575px) {
    .table thead tr th {
        padding: 13px 15px;
    }
}

.table thead tr th:first-child {
    border-left: 1px solid hsl(var(--border-color-four));
    text-align: left;
    border-radius: 10px 0 0 0;
}

@media screen and (max-width: 1199px) {
    .table thead tr th:first-child {
        border-radius: 8px 0 0 0;
    }
}

@media screen and (max-width: 991px) {
    .table thead tr th:first-child {
        border-radius: 7px 0 0 0;
    }
}

@media screen and (max-width: 575px) {
    .table thead tr th:first-child {
        border-radius: 6px 0 0 0;
    }
}

@media screen and (max-width: 424px) {
    .table thead tr th:first-child {
        border-radius: 5px 0 0 0;
    }
}

.table thead tr th:last-child {
    border-right: 1px solid hsl(var(--border-color-four));
    border-radius: 0 10px 0 0;
    text-align: right;
}

@media screen and (max-width: 1199px) {
    .table thead tr th:last-child {
        border-radius: 0 8px 0 0;
    }
}

@media screen and (max-width: 991px) {
    .table thead tr th:last-child {
        border-radius: 0 7px 0 0;
    }
}

@media screen and (max-width: 575px) {
    .table thead tr th:last-child {
        border-radius: 0 6px 0 0;
    }
}

@media screen and (max-width: 424px) {
    .table thead tr th:last-child {
        border-radius: 0 5px 0 0;
    }
}

.table tbody {
    border: 0 !important;
    background-color: hsl(var(--white));
}

.table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

@media screen and (max-width: 1199px) {
    .table tbody tr:last-child td:first-child {
        border-radius: 0 0 0 8px;
    }
}

@media screen and (max-width: 991px) {
    .table tbody tr:last-child td:first-child {
        border-radius: 0 0 0 7px;
    }
}

@media screen and (max-width: 575px) {
    .table tbody tr:last-child td:first-child {
        border-radius: 0 0 0 6px;
    }
}

@media screen and (max-width: 424px) {
    .table tbody tr:last-child td:first-child {
        border-radius: 0 0 0 5px;
    }
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

@media screen and (max-width: 1199px) {
    .table tbody tr:last-child td:last-child {
        border-radius: 0 0 8px 0;
    }
}

@media screen and (max-width: 991px) {
    .table tbody tr:last-child td:last-child {
        border-radius: 0 0 7px 0;
    }
}

@media screen and (max-width: 575px) {
    .table tbody tr:last-child td:last-child {
        border-radius: 0 0 6px 0;
    }
}

@media screen and (max-width: 424px) {
    .table tbody tr:last-child td:last-child {
        border-radius: 0 0 5px 0;
    }
}

.table tbody tr td {
    font-family: var(--gotham-font);
    text-align: center;
    max-width: 170px;
    vertical-align: middle;
    padding: 16px 20px;
    border-width: 1px;
    border: 0;
    color: hsl(var(--body-color));
    font-size: 0.8125rem;
    line-height: 1.43;
    font-weight: 400;
    border-bottom: 1px solid hsl(var(--border-color));
}

@media screen and (max-width: 1199px) {
    .table tbody tr td {
        padding: 15px 18px;
    }
}

@media screen and (max-width: 767px) {
    .table tbody tr td {
        padding: 14px 16px;
    }
}

@media screen and (max-width: 575px) {
    .table tbody tr td {
        padding: 13px 15px;
    }
}

.table tbody tr td::before {
    content: attr(data-label);
    font-family: var(--gotham-font);
    font-size: 0.8125rem;
    color: hsl(var(--heading-color));
    font-weight: 500;
    display: none;
    width: 45% !important;
    text-align: left;
}

.table tbody tr td:first-child {
    text-align: left;
    border-left: 1px solid hsl(var(--border-color-four));
}

.table tbody tr td:last-child {
    text-align: right;
    border-right: 1px solid hsl(var(--border-color-four));
}

.table tbody tr td .table-status {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

@media screen and (max-width: 1399px) {
    .table tbody tr td .table-status {
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .table tbody tr td .table-status {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}

@media screen and (max-width: 991px) {
    .table tbody tr td .table-status {
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
    }
}

@media screen and (max-width: 767px) {
    .table tbody tr td .table-status {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}

@media screen and (max-width: 575px) {
    .table tbody tr td .table-status {
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}

@media screen and (max-width: 424px) {
    .table tbody tr td .table-status {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

.table tbody tr td .table-status>span {
    line-height: 1;
}

.table tbody tr td .dropdown-action .action-list {
    right: calc(100% + 3px);
    top: 50%;
    -webkit-transform: scale(0.95) translateY(-50%);
    transform: scale(0.95) translateY(-50%);
}

.table tbody tr td .dropdown-action .action-list.show {
    -webkit-transform: scale(1) translateY(-50%);
    transform: scale(1) translateY(-50%);
}

.table tbody tr td .country__thumb {
    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;
    width: 25px;
    height: 20px;
}

@media screen and (max-width: 767px) {
    .table tbody tr td .country__thumb {
        width: 22px;
        height: 17px;
    }
}

.table tbody tr td .country__thumb img {
    width: 100%;
    height: 100%;
}

.table tbody tr td .country__name {
    width: calc(100% - 25px);
    padding-left: 15px;
}

@media screen and (max-width: 991px) {
    .table tbody tr td .country__name {
        padding-left: 12px;
    }
}

@media screen and (max-width: 767px) {
    .table tbody tr td .country__name {
        width: calc(100% - 22px);
        padding-left: 10px;
    }
}

.table tbody tr td .sending-amount-charge span {
    color: #717171;
}

@media screen and (max-width: 575px) {
    .table--responsive--sm thead {
        display: none;
    }

    .table--responsive--sm tbody tr {
        display: block;
    }

    .table--responsive--sm tbody tr:first-child td:first-child {
        border-radius: 5px 5px 0 0;
    }

    .table--responsive--sm tbody tr:last-child td:first-child {
        border-radius: 0;
    }

    .table--responsive--sm tbody tr:last-child td:last-child {
        border-bottom: 0;
        border-radius: 0 0 5px 5px;
    }

    .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: 8px 10px;
        border: 0;
        max-width: unset;
        white-space: initial;
        background: hsl(var(--white));
    }

    .table--responsive--sm tbody tr td:first-child {
        text-align: right;
        border-left: 0;
        padding-top: 10px;
    }

    .table--responsive--sm tbody tr td:last-child {
        padding-bottom: 10px;
        border-bottom: 1px solid hsl(var(--border-color));
        border-right: 0;
    }

    .table--responsive--sm tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 575px) {
    .table--responsive--sm tbody tr td {
        border: 0;
    }
}

@media screen and (max-width: 767px) {
    .table--responsive--md thead {
        display: none;
    }

    .table--responsive--md tbody tr {
        display: block;
    }

    .table--responsive--md tbody tr:last-child td:last-child {
        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 13px;
        border: 0;
        max-width: unset;
        white-space: initial;
    }

    .table--responsive--md tbody tr td:last-child {
        border-bottom: 1px solid hsl(var(--border-color));
    }

    .table--responsive--md tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table--responsive--md tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .table--responsive--md tbody tr td {
        border: 0;
    }
}

@media screen and (max-width: 991px) {
    .table--responsive--lg thead {
        display: none;
    }

    .table--responsive--lg tbody tr {
        display: block;
    }

    .table--responsive--lg tbody tr:last-child td:last-child {
        border-bottom: 0;
    }

    .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 13px;
        border: none;
        max-width: unset;
        white-space: initial;
    }

    .table--responsive--lg tbody tr td:last-child {
        border-bottom: 1px solid hsl(var(--border-color));
    }

    .table--responsive--lg tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table--responsive--lg tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .table--responsive--lg tbody tr td {
        border: none;
    }
}

@media screen and (max-width: 1199px) {
    .table--responsive--xl thead {
        display: none;
    }

    .table--responsive--xl tbody tr {
        display: block;
    }

    .table--responsive--xl tbody tr:last-child td:last-child {
        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 13px;
        border: none;
        max-width: unset;
        white-space: initial;
    }

    .table--responsive--xl tbody tr td:last-child {
        border-bottom: 1px solid hsl(var(--border-color));
    }

    .table--responsive--xl tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table--responsive--xl tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 1199px) {
    .table--responsive--xl tbody tr td {
        border: 0;
    }
}

@media screen and (max-width: 1399px) {
    .table--responsive--xxl thead {
        display: none;
    }

    .table--responsive--xxl tbody tr {
        display: block;
    }

    .table--responsive--xxl tbody tr:last-child td:last-child {
        border-bottom: 0;
    }

    .table--responsive--xxl tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 13px;
        border: none;
        max-width: unset;
        white-space: initial;
    }

    .table--responsive--xxl tbody tr td:last-child {
        border-bottom: 1px solid hsl(var(--border-color));
    }

    .table--responsive--xxl tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table--responsive--xxl tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 1399px) {
    .table--responsive--xxl tbody tr td {
        border: 0;
    }
}

@media screen and (max-width: 424px) {
    .customer {
        display: block;
        text-align: left;
    }
}

.customer__thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

@media screen and (max-width: 424px) {
    .customer__thumb {
        margin-left: auto;
    }
}

.customer__content {
    width: calc(100% - 30px);
    padding-left: 10px;
    text-align: left;
}

@media screen and (max-width: 424px) {
    .customer__content {
        padding-left: 8px;
    }
}

@media screen and (max-width: 424px) {
    .customer__content {
        width: 100%;
        padding-left: 0px;
        margin-top: 5px;
        text-align: end;
    }
}

.customer__name {
    font-size: 0.8125rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--heading-color));
    margin-bottom: 0;
}

.customer__desc {
    font-size: 0.8125rem;
}

.action-buttons {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 7px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.action-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.875rem;
    color: hsl(var(--white));
    white-space: nowrap;
}

.edit-btn {
    background-color: hsl(var(--info));
}

.delete-btn {
    background-color: hsl(var(--danger));
}

/* ================================= Table Css End =========================== */

/* ================================= Tab Css Start =========================== */
.custom--tab {
    background: hsl(var(--border-color)/0.35);
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 15px;
    border: 0;
    border-radius: 0;
    margin-bottom: 30px;
}

.custom--tab .nav-item {
    border-bottom: 0;
}

.custom--tab .nav-item .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    padding: 11px 16px;
    color: hsl(var(--heading-color));
    background-color: transparent !important;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: 0;
}

@media screen and (max-width: 1199px) {
    .custom--tab .nav-item .nav-link {
        font-size: 0.875rem;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 575px) {
    .custom--tab .nav-item .nav-link {
        padding: 9px 10px;
    }
}

@media screen and (max-width: 424px) {
    .custom--tab .nav-item .nav-link {
        font-size: 0.8125rem;
        padding: 9px;
    }
}

.custom--tab .nav-item .nav-link.active {
    color: hsl(var(--white));
    background-color: hsl(var(--base-d-200)) !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.two {
    background: transparent;
    border-bottom: 1px solid hsl(var(--border-color));
}

.custom--tab.two .nav-item .nav-link {
    position: relative;
}

.custom--tab.two .nav-item .nav-link::after {
    position: absolute;
    content: "";
    background: hsl(var(--base));
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.custom--tab.two .nav-item .nav-link.active {
    color: hsl(var(--base));
    background: transparent !important;
}

.custom--tab.two .nav-item .nav-link.active::after {
    visibility: visible;
    opacity: 1;
}

.custom--tab.two .nav-item .nav-link.active:hover::after {
    background: hsl(var(--base));
}

.custom--tab.two .nav-item .nav-link:hover::after {
    visibility: visible;
    opacity: 1;
    background: hsl(var(--base)/0.15);
}

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
    position: relative;
    text-align: center;
    font-size: 0.75rem;
    font-family: var(--gotham-font);
    border-radius: 22px;
    font-weight: 400;
    padding: 4px 9px;
}

.badge--base {
    background: hsl(var(--base)/0.18) !important;
    color: hsl(var(--base)) !important;
}

.badge--primary {
    background: hsl(var(--primary)/0.18) !important;
    color: hsl(var(--primary)/0.78) !important;
}

.badge--secondary {
    background: hsl(var(--secondary)/0.18) !important;
    color: hsl(var(--secondary)) !important;
}

.badge--success {
    background: hsl(var(--success)/0.18) !important;
    color: hsl(var(--success)) !important;
}

.badge--danger {
    background: hsl(var(--danger)/0.18) !important;
    color: hsl(var(--danger)) !important;
}

.badge--warning {
    background: hsl(var(--warning)/0.18) !important;
    color: hsl(var(--warning)) !important;
}

.badge--info {
    background: hsl(var(--info)/0.18) !important;
    color: hsl(var(--info)) !important;
}

.badge--light {
    background: hsl(var(--light)/0.18) !important;
    color: hsl(var(--light)) !important;
}

.badge--dark {
    background: hsl(var(--dark)/0.18) !important;
    color: hsl(var(--dark)) !important;
}

.badge-outline--base {
    background-color: hsl(var(--base)/0.1) !important;
    color: hsl(var(--base)) !important;
    border: 1px solid hsl(var(--base)) !important;
}

.badge-outline--primary {
    background-color: hsl(var(--primary)/0.1) !important;
    color: hsl(var(--primary)) !important;
    border: 1px solid hsl(var(--primary)) !important;
}

.badge-outline--secondary {
    background-color: hsl(var(--secondary)/0.1) !important;
    color: hsl(var(--secondary)) !important;
    border: 1px solid hsl(var(--secondary)) !important;
}

.badge-outline--success {
    background-color: hsl(var(--success)/0.1) !important;
    color: hsl(var(--success)) !important;
    border: 1px solid hsl(var(--success)) !important;
}

.badge-outline--danger {
    background-color: hsl(var(--danger)/0.1) !important;
    color: hsl(var(--danger)) !important;
    border: 1px solid hsl(var(--danger)) !important;
}

.badge-outline--warning {
    background-color: hsl(var(--warning)/0.1) !important;
    color: hsl(var(--warning)) !important;
    border: 1px solid hsl(var(--warning)) !important;
}

.badge-outline--info {
    background-color: hsl(var(--info)/0.1) !important;
    color: hsl(var(--info)) !important;
    border: 1px solid hsl(var(--info)) !important;
}

.badge-outline--light {
    background-color: hsl(var(--light)/0.1) !important;
    color: hsl(var(--light)) !important;
    border: 1px solid hsl(var(--light)) !important;
}

.badge-outline--dark {
    background-color: hsl(var(--dark)/0.1) !important;
    color: hsl(var(--dark)) !important;
    border: 1px solid hsl(var(--dark)) !important;
}

/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
    position: relative;
    font-weight: 400;
    padding: 12px 16px;
    border-radius: 5px;
    margin-bottom: 0;
}

@media screen and (max-width: 575px) {
    .alert {
        padding: 12px;
    }
}

.alert__title {
    font-size: 0.875rem;
    margin-bottom: 6px;
}

.alert__desc {
    color: hsl(var(--body-color));
    display: block;
    font-size: 0.8125rem;
    line-height: 1.375;
}

@media screen and (max-width: 424px) {
    .alert__desc {
        font-size: 0.8125rem;
    }
}

.alert__link {
    position: relative;
    text-decoration: underline;
}

.alert--base {
    border-color: hsl(var(--base)/0.12);
    background: hsl(var(--base)/0.06);
}

.alert--base .alert__link {
    color: hsl(var(--base));
}

.alert--primary {
    border-color: hsl(var(--primary)/0.12);
    background: hsl(var(--primary)/0.06);
}

.alert--primary .alert__link {
    color: hsl(var(--primary));
}

.alert--success {
    border-color: hsl(var(--success)/0.12);
    background: hsl(var(--success)/0.06);
}

.alert--success .alert__link {
    color: hsl(var(--success));
}

.alert--info {
    border-color: hsl(var(--info)/0.12);
    background: hsl(var(--info)/0.06);
}

.alert--info .alert__link {
    color: hsl(var(--info));
}

.alert--danger {
    border-color: hsl(var(--danger)/0.12);
    background: hsl(var(--danger)/0.06);
}

.alert--danger .alert__link {
    color: hsl(var(--danger));
}

.alert--warning {
    border-color: hsl(var(--warning)/0.12);
    background: hsl(var(--warning)/0.06);
}

.alert--warning .alert__link {
    color: hsl(var(--warning));
}

.alert--secondary {
    border-color: hsl(var(--secondary)/0.12);
    background: hsl(var(--secondary)/0.06);
}

.alert--secondary .alert__link {
    color: hsl(var(--secondary));
}

.alert--light {
    border-color: hsl(var(--light)/0.12);
    background: hsl(var(--light)/0.06);
}

.alert--light .alert__link {
    color: hsl(var(--light));
}

.alert--dark {
    border-color: hsl(var(--dark)/0.12);
    background: hsl(var(--dark)/0.06);
}

.alert--dark .alert__link {
    color: hsl(var(--dark));
}

/* ====================================== Alert Css End =============================== */
/* ====================================== List Group Css Start =============================== */
.list-group .list-group-item {
    gap: 15px;
    border-bottom-color: hsl(var(--border-color)) !important;
    border-left-color: hsl(var(--border-color-four)) !important;
    border-right-color: hsl(var(--border-color-four)) !important;
    font-family: var(--gotham-font);
    font-size: 0.75rem;
    line-height: 1.55;
    color: hsl(var(--dark));
    padding: 15px 24px;
}

@media screen and (max-width: 1399px) {
    .list-group .list-group-item {
        padding: 14px 20px;
    }
}

@media screen and (max-width: 1199px) {
    .list-group .list-group-item {
        padding: 13px 18px;
    }
}

@media screen and (max-width: 991px) {
    .list-group .list-group-item {
        padding: 13px 16px;
    }
}

@media screen and (max-width: 767px) {
    .list-group .list-group-item {
        padding: 12px 15px;
        gap: 12px;
    }
}

@media screen and (max-width: 575px) {
    .list-group .list-group-item {
        padding: 11px 13px;
        gap: 10px;
    }
}

@media screen and (max-width: 424px) {
    .list-group .list-group-item {
        padding: 10px 12px;
    }
}

.list-group .list-group-item:first-child {
    border-top-color: hsl(var(--border-color-four)) !important;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.list-group .list-group-item:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-color: hsl(var(--border-color-four)) !important;
}

.list-group .list-group-item.title {
    background: hsl(var(--heading-bg));
    color: hsl(var(--heading-color));
    font-size: 0.8125rem;
    font-weight: 500;
}

.list-group .dropdown-action-btn {
    width: 4px;
    height: 14px;
}

/* ====================================== List Group Css End =============================== */
/* ================================= Dashboard Fulid Sidebar Css Start =========================== */
.dashboard .sidebar-logo {
    padding: 28px 15px 10px 42px;
}

@media screen and (max-width: 1399px) {
    .dashboard .sidebar-logo {
        padding: 21px 10px 10px 35px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .sidebar-logo {
        padding: 19px 10px 10px 26px;
    }
}

.dashboard .sidebar-logo img {
    max-width: 125px;
    max-height: 38px;
}

@media screen and (max-width: 1399px) {
    .dashboard .sidebar-logo img {
        max-width: 115px;
        max-height: 36px;
    }
}

.dashboard .sidebar-menu {
    background-color: hsl(var(--white));
    z-index: 999;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    width: 295px;
    position: sticky;
    top: 0;
    height: 100vh;
}

@media screen and (max-width: 1399px) {
    .dashboard .sidebar-menu {
        width: 260px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .sidebar-menu {
        width: 230px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .sidebar-menu {
        position: fixed;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        z-index: 9992;
        border-radius: 0;
    }
}

.dashboard .sidebar-menu__inner {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
}

.dashboard .sidebar-menu.show {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.dashboard .sidebar-menu__close {
    position: absolute;
    top: 0;
    right: 0;
    color: hsl(var(--base));
    font-size: 1.25rem;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    cursor: pointer;
    z-index: 9;
}

.dashboard .sidebar-menu__close:hover,
.dashboard .sidebar-menu__close:focus {
    color: hsl(var(--danger0));
}

.dashboard .sidebar-menu .menu-title {
    padding: 28px 18px;
    color: #7C7C7C;
    font-weight: 500;
    font-size: 0.875rem;
}

@media screen and (max-width: 1399px) {
    .dashboard .sidebar-menu .menu-title {
        padding: 20px 16px;
        font-size: 0.8125rem;
    }
}

.dashboard .sidebar-menu-list {
    padding: 30px 20px 25px;
    overflow-y: auto;
}

@media screen and (max-width: 1399px) {
    .dashboard .sidebar-menu-list {
        padding: 25px 15px 22px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .sidebar-menu-list {
        padding: 20px 10px 20px;
    }
}

.dashboard .sidebar-menu-list::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.dashboard .sidebar-menu-list::-webkit-scrollbar-thumb {
    background-color: hsl(var(--base)/0.12);
}

.dashboard .sidebar-menu-list__item {
    margin-bottom: 10px;
}

@media screen and (max-width: 1399px) {
    .dashboard .sidebar-menu-list__item {
        margin-bottom: 7px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .sidebar-menu-list__item {
        margin-bottom: 5px;
    }
}

.dashboard .sidebar-menu-list__item:last-child {
    margin-bottom: 0;
}

.dashboard .sidebar-menu-list__item.active>a {
    font-size: 0.875rem;
    color: hsl(var(--base));
    background-color: hsl(var(--base)/0.08);
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a {
    color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__item.has-dropdown.active>a:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    color: hsl(var(--base));
}

.dashboard .sidebar-menu-list__item.has-dropdown>a:after {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    text-align: center;
    background: 0 0;
    right: 12px;
    top: 14px;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
    color: hsl(var(--text-color)/0.6);
    font-size: 0.8125rem;
}

@media (max-width: 1399px) {
    .dashboard .sidebar-menu-list__item.has-dropdown>a:after {
        top: 12px;
        right: 10px;
    }
}

.dashboard .sidebar-menu-list__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 12px 15px;
    width: 100%;
    color: hsl(var(--black));
    font-weight: 500;
    font-size: 0.75rem;
    border-radius: 5px;
    padding-right: 25px;
}

.dashboard .sidebar-menu-list__link .badge {
    font-weight: 900;
    border-radius: 4px;
    margin-left: auto;
    padding: 3px 7px;
}

@media screen and (max-width: 1399px) {
    .dashboard .sidebar-menu-list__link {
        padding: 10px 14px;
        padding-right: 25px;
    }
}

.dashboard .sidebar-menu-list__link:hover {
    color: hsl(var(--base));
    background-color: hsl(var(--base)/0.08);
}

.dashboard .sidebar-menu-list__link .icon {
    width: 24px;
    height: 24px;
    margin-right: 7px;
    color: hsl(var(--base));
}

@media screen and (max-width: 1399px) {
    .dashboard .sidebar-menu-list__link .icon {
        width: 22px;
        height: 22px;
        margin-right: 5px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .sidebar-menu-list__link .icon {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }
}

.dashboard .sidebar-submenu {
    display: none;
}

.dashboard .sidebar-submenu.open-submenu {
    display: block;
}

.dashboard .sidebar-submenu-list {
    padding: 5px 0;
}


.dashboard .sidebar-submenu-list__item.active>a {
    color: hsl(var(--base));
    background-color: hsl(var(--base)/0.06);
}

.dashboard .sidebar-submenu-list__link:hover {
    background-color: hsl(var(--base)/0.04);
}

.dashboard .sidebar-submenu-list__link .icon {
    margin-right: 8px;
    font-size: 0.9375rem;
    text-align: center;
    border-radius: 4px;
}

/* ================================= Dashboard Fulid Sidebar Css End =========================== */
.dashboard .dashboard-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: hsl(var(--white));
    padding: 15px 25px;
    border-radius: 0 10px 10px 0;
}

@media screen and (max-width: 1499px) {
    .dashboard .dashboard-header {
        padding: 15px 20px;
    }
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header {
        padding: 12px 16px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header {
        padding: 12px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 18px 20px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header {
        padding: 15px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header {
        padding: 15px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .dashboard-header {
        padding: 12px;
    }
}

.dashboard .dashboard-header.has-box-shadow {
    -webkit-box-shadow: var(--header-box-shadow);
    box-shadow: var(--header-box-shadow);
}

.dashboard .dashboard-header__inner {
    position: relative;
    row-gap: 10px;
}

.dashboard .dashboard-header__left {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header__left {
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header__left {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

.dashboard .dashboard-header__left .sidebar-trigger {
    width: 40px;
    height: 38px;
    border: 1px solid hsl(var(--border-color-two));
    border-radius: 6px;
    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;
    color: #383B46;
    font-size: 1.25rem;
    cursor: pointer;
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header__left .sidebar-trigger {
        width: 36px;
        height: 36px;
    }
}

.dashboard .dashboard-header__left .sidebar-trigger:hover {
    border-color: hsl(var(--base-two));
    color: hsl(var(--base-two));
}

.dashboard .dashboard-header__right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header__right {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header__right {
        -webkit-column-gap: 8px;
        -moz-column-gap: 8px;
        column-gap: 8px;
    }
}

.dashboard .dashboard-header__right-link {
    width: 51px;
    height: 46px;
    border: 1px solid hsl(var(--border-color-two));
    border-radius: 8px;
    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;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header__right-link {
        width: 45px;
        height: 42px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header__right-link {
        border-radius: 7px;
        width: 42px;
        height: 40px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header__right-link {
        width: 40px;
        height: 38px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header__right-link {
        border-radius: 5px;
        width: 36px;
        height: 36px;
    }
}

.dashboard .dashboard-header__right-link:hover {
    border-color: hsl(var(--base-two));
}

.dashboard .dashboard-header__right-link:hover .icon {
    color: hsl(var(--base-two));
}

.dashboard .dashboard-header__right-link .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: #383B46;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header__right-link .icon {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header__right-link .icon {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header__right-link .icon {
        width: 19px;
        height: 19px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header__right-link .icon {
        width: 17px;
        height: 17px;
    }
}

.dashboard .dashboard-header .sm-search-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #383B46;
    border: 1px solid hsl(var(--border-color-two));
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
}

.dashboard .dashboard-header .sm-search-btn i.la-search {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.dashboard .dashboard-header .sm-search-btn.change-icon i {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.dashboard .dashboard-header .sm-search-btn.change-icon i::before {
    content: "\f00d";
}

.dashboard .dashboard-header .sm-search-btn:hover {
    border-color: hsl(var(--base));
    color: hsl(var(--base));
}

.dashboard .dashboard-header__search {
    width: 245px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header__search {
        width: 230px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header__search {
        width: 215px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header__search {
        display: none;
    }
}

.dashboard .dashboard-header__search.show {
    display: block;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    display: block;
    width: 100%;
    z-index: 999;
    right: 0;
    margin: 0 auto;
}

@media screen and (max-width: 424px) {
    .dashboard .dashboard-header__search.show {
        top: calc(100% + 13px);
    }
}

.dashboard .dashboard-header__search .form--control {
    background: #FCFCFC !important;
    border-color: hsl(var(--border-color-two)) !important;
    padding-left: 42px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header__search .form--control {
        padding: 11px 13px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header__search .form--control {
        padding: 10px 13px;
        padding-left: 34px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header__search .form--control {
        padding: 9px 12px;
        padding-left: 30px;
    }
}

.dashboard .dashboard-header__search .form--control:focus {
    border-color: hsl(var(--base-two)) !important;
}

.dashboard .dashboard-header__search button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding-left: 15px;
    padding-right: 10px;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header__search button {
        padding-left: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header__search button {
        padding-left: 10px;
        padding-right: 8px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header__search button {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.dashboard .dashboard-header__search button .icon {
    color: hsl(var(--input-color));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 20px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header__search button .icon {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header__search button .icon {
        width: 17px;
        height: 17px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header__search button .icon {
        width: 16px;
        height: 16px;
    }
}

.dashboard .dashboard-header__search button:hover .icon {
    color: hsl(var(--base-two));
}

.dashboard .dashboard-header .notification {
    position: relative;
}

.dashboard .dashboard-header .notification__btn {
    width: 51px;
    height: 46px;
    border: 1px solid hsl(var(--border-color-two));
    border-radius: 8px;
    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;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header .notification__btn {
        width: 45px;
        height: 42px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header .notification__btn {
        border-radius: 7px;
        width: 42px;
        height: 40px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header .notification__btn {
        width: 40px;
        height: 38px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header .notification__btn {
        border-radius: 5px;
        width: 36px;
        height: 36px;
    }
}

.dashboard .dashboard-header .notification__btn:hover {
    border-color: hsl(var(--base-two));
}

.dashboard .dashboard-header .notification__btn:hover .icon {
    color: hsl(var(--base-two));
}

.dashboard .dashboard-header .notification__btn .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: #383B46;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header .notification__btn .icon {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header .notification__btn .icon {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header .notification__btn .icon {
        width: 19px;
        height: 19px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header .notification__btn .icon {
        width: 17px;
        height: 17px;
    }
}

.dashboard .dashboard-header .notification__btn:hover {
    color: hsl(var(--base));
}

.dashboard .dashboard-header .notification-list {
    width: 280px;
    background: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    border-radius: 8px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    position: absolute;
    right: 0;
    top: calc(100% + 16px);
    z-index: 9;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header .notification-list {
        border-radius: 7px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header .notification-list {
        border-radius: 6px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header .notification-list {
        width: 250px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header .notification-list {
        right: -60px;
        border-radius: 5px;
    }
}

.dashboard .dashboard-header .notification-list.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.dashboard .dashboard-header .notification-list__header {
    padding: 8px 12px;
    border-bottom: 1px solid hsl(var(--border-color));
}

.dashboard .dashboard-header .notification-list__header .title {
    font-family: var(--input-font);
    font-size: 0.9375rem;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header .notification-list__header .title {
        font-size: 0.875rem;
    }
}

.dashboard .dashboard-header .notification-list__header .badge {
    font-size: 0.75rem;
}

.dashboard .dashboard-header .notification-list__body {
    height: 270px;
    overflow-y: auto;
}

.dashboard .dashboard-header .notification-list__body::-webkit-scrollbar {
    width: 3px;
}

.dashboard .dashboard-header .notification-list__body::-webkit-scrollbar-thumb {
    background-color: hsl(var(--base)/0.12);
}

.dashboard .dashboard-header .notification-list__item {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid hsl(var(--border-color));
    padding: 8px 12px;
}

.dashboard .dashboard-header .notification-list__item:last-of-type {
    border-bottom: 0;
}

.dashboard .dashboard-header .notification-list__item:hover {
    background-color: hsl(var(--base)/0.08);
}

.dashboard .dashboard-header .notification-list__item .title {
    font-family: var(--input-font);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header .notification-list__item .title {
        font-size: 0.8125rem;
    }
}

.dashboard .dashboard-header .notification-list__item .time {
    font-family: var(--input-font);
    color: hsl(var(--body-color));
    font-size: 0.75rem;
}

.dashboard .dashboard-header .notification-list__footer {
    padding: 8px 12px;
    border-top: 1px solid hsl(var(--border-color));
}

.dashboard .dashboard-header .notification-list__footer .btn {
    font-size: 0.8125rem;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header .notification-list__footer .btn {
        padding: 8px 13px;
    }
}

.dashboard .dashboard-header .user-info {
    position: relative;
}

.dashboard .dashboard-header .user-info__button {
    position: relative;
    border: 1px solid hsl(var(--border-color-two));
    border-radius: 8px;
    padding: 7.5px 28px 7.5px 10px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-header .user-info__button {
        padding: 5.5px 24px 5.5px 8px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header .user-info__button {
        padding: 4.5px 22px 4.5px 6px;
        border-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header .user-info__button {
        padding: 5px 6px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header .user-info__button {
        padding: 4px;
        border-radius: 5px;
    }
}

.dashboard .dashboard-header .user-info__button:hover {
    background: #FCFCFC;
    border-color: hsl(var(--base-two));
}

.dashboard .dashboard-header .user-info__button-thumb {
    width: 28px;
    height: 28px;
    overflow: hidden;
    border-radius: 50%;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header .user-info__button-thumb {
        width: 26px;
        height: 26px;
    }
}

.dashboard .dashboard-header .user-info__button-thumb img {
    width: 100%;
    height: 100%;
}

.dashboard .dashboard-header .user-info__button-content {
    font-family: var(--input-font);
    width: calc(100% - 28px);
    padding-left: 10px;
    text-align: left;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header .user-info__button-content {
        width: calc(100% - 26px);
        padding-left: 8px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header .user-info__button-content {
        display: none;
    }
}

.dashboard .dashboard-header .user-info__button-content-name {
    color: hsl(var(--heading-color));
    font-size: 0.875rem;
    line-height: 1;
    margin-bottom: 3px;
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-header .user-info__button-content-name {
        margin-bottom: 1px;
    }
}

.dashboard .dashboard-header .user-info__button-content-username {
    color: #828282;
    font-size: 0.75rem;
    line-height: 1;
}

.dashboard .dashboard-header .user-info__button-icon {
    color: hsl(var(--base-two));
    font-size: 0.75rem;
    position: absolute;
    right: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header .user-info__button-icon {
        font-size: 0.6875rem;
        right: 3px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-header .user-info__button-icon {
        display: none;
    }
}

.dashboard .dashboard-header .user-info__button-icon.rotate i::before {
    content: "\f106";
}

.dashboard .dashboard-header .user-info .user-info-dropdown {
    width: 180px;
    background: #FCFCFC;
    border: 1px solid hsl(var(--border-color-two));
    border-radius: 8px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: absolute;
    right: 0;
    top: calc(100% + 18px);
    z-index: 9;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-header .user-info .user-info-dropdown {
        top: calc(100% + 14px);
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-header .user-info .user-info-dropdown {
        top: calc(100% + 12px);
    }
}

.dashboard .dashboard-header .user-info .user-info-dropdown.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.dashboard .dashboard-header .user-info .user-info-dropdown__item:last-child .user-info-dropdown__link {
    border-bottom: 0 !important;
}

.dashboard .dashboard-header .user-info .user-info-dropdown__link {
    width: 100%;
    padding: 8px 15px;
    color: hsl(var(--heading-color));
    border-bottom: 1px solid hsl(var(--border-color-two));
    text-align: left;
    font-size: 0.8125rem;
    text-decoration: none;
}

.dashboard .dashboard-header .user-info .user-info-dropdown__link.active {
    background-color: hsl(var(--base));
}

.dashboard .dashboard-header .user-info .user-info-dropdown__link:hover {
    background-color: hsl(var(--base)/0.08);
    color: hsl(var(--base)) !important;
}

.dashboard .dashboard-header .user-info .user-info-dropdown__link .icon {
    margin-right: 5px;
}

/* ================================= Dashboard Css Start =========================== */
.dashboard {
    position: relative;
}

.dashboard__inner {
    position: relative;
    padding: 24px 60px 0;
}

@media screen and (max-width: 1699px) {
    .dashboard__inner {
        padding: 24px 45px 0;
    }
}

@media screen and (max-width: 1499px) {
    .dashboard__inner {
        padding: 24px 35px 0;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard__inner {
        padding: 20px 15px 0;
    }
}

@media screen and (max-width: 991px) {
    .dashboard__inner {
        padding: 0;
    }
}

.dashboard__right {
    width: calc(100% - 295px);
    margin-left: auto;
}

@media screen and (max-width: 1399px) {
    .dashboard__right {
        width: calc(100% - 260px);
    }
}

@media screen and (max-width: 1199px) {
    .dashboard__right {
        width: calc(100% - 230px);
    }
}

@media screen and (max-width: 991px) {
    .dashboard__right {
        width: 100%;
        margin-left: 0;
    }
}

.dashboard .dashboard-body {
    position: relative;
    padding: 15px 0 20px;
    padding-left: 25px;
    min-height: 100vh;
}

@media screen and (max-width: 1499px) {
    .dashboard .dashboard-body {
        padding-left: 20px;
    }
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-body {
        padding-left: 16px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-body {
        padding-left: 12px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-body {
        padding: 89px 20px 20px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-body {
        padding: 83px 18px 20px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-body {
        padding: 81px 15px 20px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .dashboard-body {
        padding: 75px 15px 20px;
    }
}

.dashboard .dashboard-body__heading {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 10px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-body__heading {
        margin-bottom: 13px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-body__heading {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-body__heading {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-body__heading {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-body__heading {
        margin-bottom: 8px;
        row-gap: 5px;
    }
}

.dashboard .dashboard-body__title {
    font-family: var(--gotham-font);
    font-weight: 400;
    margin-bottom: 15px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-body__title {
        margin-bottom: 13px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-body__title {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-body__title {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-body__title {
        margin-bottom: 8px;
    }
}

.dashboard .dashobard-widget-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashobard-widget-wrapper {
        gap: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashobard-widget-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashobard-widget-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .dashobard-widget-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.dashboard .dashboard-widget {
    position: relative;
    padding: 20px 20px 25px;
    border-radius: 10px;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color-three));
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-widget {
        padding: 18px 15px 20px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-widget {
        border-radius: 8px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-widget {
        border-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-widget {
        padding: 16px 12px 18px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-widget {
        border-radius: 6px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .dashboard-widget {
        border-radius: 5px;
    }
}

.dashboard .dashboard-widget:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.dashboard .dashboard-widget__top {
    margin-bottom: 5px;
}

.dashboard .dashboard-widget__title {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0;
    color: hsl(var(--black));
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-widget__title {
        font-size: 0.8125rem;
    }
}

.dashboard .dashboard-widget__content {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.dashboard .dashboard-widget__number {
    line-height: 1;
    font-weight: 500;
    margin-bottom: 0;
}

.dashboard .dashboard-widget__links a {
    font-size: 0.75rem;
    font-weight: 400;
    color: hsl(var(--black));
    text-decoration: underline;
}

.dashboard .dashboard-widget__links a:hover .icon {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dashboard .dashboard-widget__links a .icon {
    color: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 22px;
    height: 22px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.dashboard .dashboard-widget__links a.email {
    position: relative;
    text-decoration: none;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-widget__links a.email {
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-widget__links a.email {
        padding-bottom: 4px;
        margin-bottom: 4px;
    }
}

.dashboard .dashboard-widget__links a.email::after {
    position: absolute;
    content: "";
    background: #B3B3B3;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
}

.dashboard .dashboard-widget__links a.sms {
    text-decoration: none;
    margin-bottom: 8px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-widget__links a.sms {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .dashboard-widget__links a.sms {
        margin-bottom: 4px;
    }
}

.dashboard .dashboard-widget__shape-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 56px;
}

.dashboard .dashboard-widget__shape-icon.two {
    width: 48px;
    height: 62px;
}

.dashboard .dashboard-widget__shape-icon.three {
    width: 48px;
    height: 66px;
}

.dashboard .dashboard-widget .dropdown-action .dropdown-action-btn {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-widget .dropdown-action .dropdown-action-btn {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-widget .dropdown-action .dropdown-action-btn {
        width: 20px;
        height: 20px;
    }
}

.dashboard .dashboard-card {
    background: hsl(var(--white));
    border: 1px solid hsl(var(--border-color-two));
    border-radius: 10px;
    padding: 20px 20px 15px;
    height: 100%;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-card {
        border-radius: 8px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-card {
        border-radius: 7px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-card {
        border-radius: 6px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .dashboard-card {
        border-radius: 5px;
    }
}

.dashboard .dashboard-card__title {
    font-weight: 500;
    font-size: 0.875rem;
}

.dashboard .dashboard-card .apexcharts-toolbar {
    display: none;
}

.dashboard .dashboard-card #apexchart-one .apexcharts-series path {
    fill: hsl(var(--base)) !important;
}

.dashboard .dashboard-card #apexchart-two .apexcharts-series path {
    stroke: hsl(var(--base)) !important;
}

.dashboard .continent-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media screen and (max-width: 1699px) {
    .dashboard .continent-card-wrapper {
        gap: 35px;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard .continent-card-wrapper {
        gap: 32px;
    }
}

@media screen and (max-width: 1499px) {
    .dashboard .continent-card-wrapper {
        gap: 30px;
    }
}

@media screen and (max-width: 1399px) {
    .dashboard .continent-card-wrapper {
        gap: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .continent-card-wrapper {
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .continent-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .continent-card-wrapper {
        gap: 14px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .continent-card-wrapper {
        gap: 12px;
    }
}

@media screen and (max-width: 374px) {
    .dashboard .continent-card-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.dashboard .continent-card {
    position: relative;
    padding: 20px 25px 142px;
    border-radius: 10px;
    overflow: hidden;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--base)/0.08);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    text-decoration: none;
    /* cursor: pointer; */
}

@media screen and (max-width: 1399px) {
    .dashboard .continent-card {
        padding: 20px 20px 125px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .continent-card {
        border-radius: 8px;
        padding: 16px 16px 120px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .continent-card {
        border-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .continent-card {
        padding: 16px 16px 100px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .continent-card {
        border-radius: 6px;
        padding: 14px 12px 100px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .continent-card {
        border-radius: 5px;
        padding: 12px 12px 90px;
    }
}

.dashboard .continent-card:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.dashboard .continent-card__top {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.dashboard .continent-card__title {
    font-family: var(--gotham-font);
    font-weight: 400;
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 85%;
}

@media screen and (max-width: 1399px) {
    .dashboard .continent-card__title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .continent-card__title {
        font-size: 1.8125rem;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .continent-card__title {
        font-size: 1.625rem;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .continent-card__title {
        font-size: 1.4375rem;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .continent-card__title {
        font-size: 1.25rem;
    }
}

@media only screen and (max-width: 1080px) {
    .dashboard .continent-card__title {
        max-width: 82%;
    }
}

@media only screen and (max-width: 470px) {
    .dashboard .continent-card__title {
        max-width: 75%;
    }

}

.dashboard .continent-card.active {
    background-color: hsl(var(--success)/.04);
    border-color: hsl(var(--success)/.8);
}

.dashboard .continent-card.inactive {
    background-color: hsl(var(--danger)/.04);
        border-color: hsl(var(--danger)/.8);
}

.dashboard .continent-card .dropdown-action .dropdown-action-btn {
    width: 17px;
    height: 17px;
}

.dashboard .continent-card__map {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 85px;
    height: 100px;
    color: #cccccc;
}

@media screen and (max-width: 1399px) {
    .dashboard .continent-card__map {
        width: 75px;
        height: 90px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .continent-card__map {
        width: 70px;
        height: 85px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .continent-card__map {
        width: 62px;
        height: 75px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .continent-card__map {
        width: 85px;
        height: 65px;
    }
}

.dashboard .continent-card.africa .continent-card__map {
    width: 97px;
    height: 100px;
}

@media screen and (max-width: 1399px) {
    .dashboard .continent-card.africa .continent-card__map {
        width: 90px;
        height: 90px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .continent-card.africa .continent-card__map {
        width: 85px;
        height: 85px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .continent-card.africa .continent-card__map {
        width: 75px;
        height: 75px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .continent-card.africa .continent-card__map {
        width: 68px;
        height: 68px;
    }
}

.dashboard .payment-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media screen and (max-width: 1399px) {
    .dashboard .payment-card-wrapper {
        gap: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .payment-card-wrapper {
        gap: 16px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .payment-card-wrapper {
        gap: 12px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .payment-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 575px) {
    .dashboard .payment-card-wrapper {
        gap: 10px;
    }
}

@media (max-width: 459px) {
    .dashboard .payment-card-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.dashboard .payment-card-wrapper .payment-card:nth-child(1)::after,
.dashboard .payment-card-wrapper .payment-card:nth-child(4)::after {
    background: hsl(var(--success));
}

.dashboard .payment-card-wrapper .payment-card:nth-child(2)::after,
.dashboard .payment-card-wrapper .payment-card:nth-child(5)::after {
    background: hsl(var(--warning));
}

.dashboard .payment-card-wrapper .payment-card:nth-child(3)::after,
.dashboard .payment-card-wrapper .payment-card:nth-child(6)::after {
    background: hsl(var(--danger));
}

.dashboard .payment-card {
    position: relative;
    padding: 20px 16px 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color-three));
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

@media screen and (max-width: 1399px) {
    .dashboard .payment-card {
        padding: 18px 15px 10px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .payment-card {
        border-radius: 8px;
        padding: 16px 13px 10px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .payment-card {
        border-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .payment-card {
        padding: 14px 12px 10px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .payment-card {
        border-radius: 6px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .payment-card {
        border-radius: 5px;
    }
}

.dashboard .payment-card::after {
    position: absolute;
    content: "";
    z-index: 1;
    width: 113px;
    height: 113px;
    border-radius: 50%;
    left: 20px;
    top: -20px;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    background: hsl(var(--success));
}

@media screen and (max-width: 1399px) {
    .dashboard .payment-card::after {
        width: 90px;
        height: 90px;
    }
}

.dashboard .payment-card:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.dashboard .payment-card__title {
    position: relative;
    z-index: 2;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 20px;
}

@media screen and (max-width: 1399px) {
    .dashboard .payment-card__title {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .payment-card__title {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .payment-card__title {
        margin-bottom: 12px;
    }
}

.dashboard .payment-card__amount {
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.dashboard .payment-card__amount sub {
    bottom: 0;
    font-size: 2rem;
    color: hsl(var(--input-color));
}

@media screen and (max-width: 1399px) {
    .dashboard .payment-card__amount sub {
        font-size: 1.8125rem;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .payment-card__amount sub {
        font-size: 1.6875rem;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .payment-card__amount sub {
        font-size: 1.4375rem;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .payment-card__amount sub {
        font-size: 1.3125rem;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .payment-card__amount sub {
        font-size: 1.1875rem;
    }
}

.dashboard .payment-card__shape {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 27px;
    height: 31px;
}

@media screen and (max-width: 1199px) {
    .dashboard .payment-card__shape {
        width: 24px;
        height: 28px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .payment-card__shape {
        width: 20px;
        height: 24px;
    }
}

.dashboard .payment-card__shape img {
    width: 100%;
    height: 100%;
}

.dashboard .transaction-card {
    font-family: var(--gotham-font);
    background: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    border-radius: 10px;
    padding: 0 15px;
}

@media screen and (max-width: 1399px) {
    .dashboard .transaction-card {
        padding: 0 12px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-card {
        border-radius: 8px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .transaction-card {
        border-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .transaction-card {
        padding: 0 10px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .transaction-card {
        border-radius: 6px;
        padding: 0 8px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .transaction-card {
        border-radius: 5px;
    }
}

.dashboard .transaction-card+.transaction-card {
    margin-top: 12px;
}

.dashboard .transaction-card__heading {
    border-bottom: 1px solid hsl(var(--border-color));
    padding: 20px 10px 8px;
}

@media screen and (max-width: 1399px) {
    .dashboard .transaction-card__heading {
        padding: 18px 8px 8px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .transaction-card__heading {
        padding: 15px 7px 8px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .transaction-card__heading {
        padding: 12px 5px 7px;
    }
}

.dashboard .transaction-card__title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: hsl(var(--dark));
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .dashboard .transaction-card__title {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-card__title {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 374px) {
    .dashboard .transaction-card__title {
        font-size: 0.8125rem;
    }
}

.dashboard .transaction-card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 15px;
    padding: 25px 10px 25px;
}

@media screen and (max-width: 1399px) {
    .dashboard .transaction-card__body {
        padding: 22px 8px 22px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-card__body {
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
        row-gap: 12px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .transaction-card__body {
        padding: 18px 7px 20px;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 10px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .transaction-card__body {
        padding: 15px 5px 18px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .transaction-card__body {
        padding: 12px 5px 15px;
        row-gap: 8px;
    }
}

.dashboard .transaction-card__item {
    width: calc(25% - 32px);
    line-height: 1.2;
    padding-left: 65px;
}

@media (max-width: 1799px) {
    .dashboard .transaction-card__item {
        padding-left: 35px;
    }
}

@media screen and (max-width: 1699px) {
    .dashboard .transaction-card__item {
        padding-left: 15px;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard .transaction-card__item {
        padding-left: 10px;
    }
}

@media screen and (max-width: 1499px) {
    .dashboard .transaction-card__item {
        padding-left: 0;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-card__item {
        width: calc(33.33% - 20px);
    }
}

@media screen and (max-width: 991px) {
    .dashboard .transaction-card__item {
        width: calc(33.33% - 15px);
    }
}

@media screen and (max-width: 575px) {
    .dashboard .transaction-card__item {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 374px) {
    .dashboard .transaction-card__item {
        width: 100%;
    }
}

.dashboard .transaction-card__item:first-child,
.dashboard .transaction-card__item:nth-child(5),
.dashboard .transaction-card__item:nth-child(9) {
    padding-left: 0;
}

@media screen and (max-width: 991px) {

    .dashboard .transaction-card__item:nth-child(2),
    .dashboard .transaction-card__item:nth-child(3),
    .dashboard .transaction-card__item:nth-child(5),
    .dashboard .transaction-card__item:nth-child(6),
    .dashboard .transaction-card__item:nth-child(8),
    .dashboard .transaction-card__item:nth-child(9) {
        padding-left: 22px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .transaction-card__item:nth-child(2),
    .dashboard .transaction-card__item:nth-child(3),
    .dashboard .transaction-card__item:nth-child(5),
    .dashboard .transaction-card__item:nth-child(6),
    .dashboard .transaction-card__item:nth-child(8),
    .dashboard .transaction-card__item:nth-child(9) {
        padding-left: 0;
    }
}

.dashboard .transaction-card__item-title {
    display: block;
    font-size: 0.75rem;
    color: #A0A0A0;
    margin-bottom: 2px;
}

.dashboard .transaction-card__item-info {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: hsl(var(--dark));
}

@media screen and (max-width: 1399px) {
    .dashboard .transaction-card__item-info {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-card__item-info {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .transaction-card__item-info {
        font-size: 0.8125rem;
    }
}

.dashboard .transaction-card.two .transaction-card__body {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-card.two .transaction-card__body {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .transaction-card.two .transaction-card__body {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
}

.dashboard .transaction-card.two .transaction-card__item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-left: 0;
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-card.two .transaction-card__item {
        width: calc(33.33% - 20px);
    }
}

@media screen and (max-width: 991px) {
    .dashboard .transaction-card.two .transaction-card__item {
        width: calc(33.33% - 15px);
    }
}

@media screen and (max-width: 575px) {
    .dashboard .transaction-card.two .transaction-card__item {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 374px) {
    .dashboard .transaction-card.two .transaction-card__item {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {

    .dashboard .transaction-card.two .transaction-card__item:nth-child(2),
    .dashboard .transaction-card.two .transaction-card__item:nth-child(3),
    .dashboard .transaction-card.two .transaction-card__item:nth-child(5) {
        padding-left: 22px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .transaction-card.two .transaction-card__item:nth-child(2),
    .dashboard .transaction-card.two .transaction-card__item:nth-child(3),
    .dashboard .transaction-card.two .transaction-card__item:nth-child(5) {
        padding-left: 0;
    }
}

.dashboard .transaction-buttons {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-buttons {
        gap: 10px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .transaction-buttons {
        gap: 8px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .transaction-buttons {
        gap: 6px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .transaction-buttons .btn {
        padding: 11px 16px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .transaction-buttons .btn {
        padding: 10.5px 14px;
    }
}

.dashboard .transaction-buttons .dropdown-action .dropdown-action-btn {
    background: hsl(var(--white));
    width: 44px;
    height: 44px;
    border: 1px solid hsl(var(--border-color));
    border-radius: 8px;
    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;
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-buttons .dropdown-action .dropdown-action-btn {
        border-radius: 7px;
        width: 42px;
        height: 42px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .transaction-buttons .dropdown-action .dropdown-action-btn {
        border-radius: 6px;
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .transaction-buttons .dropdown-action .dropdown-action-btn {
        width: 38px;
        height: 38px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .transaction-buttons .dropdown-action .dropdown-action-btn {
        border-radius: 5px;
    }
}

.dashboard .transaction-buttons .dropdown-action .dropdown-action-btn:hover {
    border-color: hsl(var(--base-two));
    color: hsl(var(--base-two));
}

.dashboard .transaction-buttons .dropdown-action .dropdown-action-btn__icon {
    width: 6px;
    height: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.dashboard .transaction-buttons .dropdown-action .action-list {
    width: 185px;
    top: calc(100% + 15px);
}

@media screen and (max-width: 1399px) {
    .dashboard .transaction-buttons .dropdown-action .action-list {
        top: calc(100% + 13px);
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .transaction-buttons .dropdown-action .action-list {
        top: calc(100% + 12px);
    }
}

@media screen and (max-width: 991px) {
    .dashboard .transaction-buttons .dropdown-action .action-list {
        top: calc(100% + 10px);
    }
}

@media screen and (max-width: 575px) {
    .dashboard .transaction-buttons .dropdown-action .action-list {
        width: 165px;
        top: calc(100% + 8px);
    }
}

.dashboard .transaction-buttons .dropdown-action .action-list__item {
    font-family: var(--gotham-font);
    font-size: 0.875rem;
    padding: 7px 5px 7px 10px;
}

@media screen and (max-width: 575px) {
    .dashboard .transaction-buttons .dropdown-action .action-list__item {
        font-size: 0.8125rem;
    }
}

/* 
.dashboard .dashboard-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dashboard .dashboard-table::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.dashboard .dashboard-table::-webkit-scrollbar-thumb {
    background-color: hsl(var(--base)/0.12);
} */

/* 
@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table table thead tr th:nth-child(1),
    .dashboard .dashboard-table table thead tr td:nth-child(1),
    .dashboard .dashboard-table table tbody tr th:nth-child(1),
    .dashboard .dashboard-table table tbody tr td:nth-child(1) {
        min-width: 75px;
    }
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table table thead tr th:nth-child(2),
    .dashboard .dashboard-table table thead tr td:nth-child(2),
    .dashboard .dashboard-table table tbody tr th:nth-child(2),
    .dashboard .dashboard-table table tbody tr td:nth-child(2) {
        min-width: 115px;
    }
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table table thead tr th:nth-child(3),
    .dashboard .dashboard-table table thead tr td:nth-child(3),
    .dashboard .dashboard-table table tbody tr th:nth-child(3),
    .dashboard .dashboard-table table tbody tr td:nth-child(3) {
        min-width: 135px;
    }
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table table thead tr th:nth-child(4),
    .dashboard .dashboard-table table thead tr td:nth-child(4),
    .dashboard .dashboard-table table tbody tr th:nth-child(4),
    .dashboard .dashboard-table table tbody tr td:nth-child(4) {
        min-width: 130px;
    }
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table table thead tr th:nth-child(5),
    .dashboard .dashboard-table table thead tr td:nth-child(5),
    .dashboard .dashboard-table table tbody tr th:nth-child(5),
    .dashboard .dashboard-table table tbody tr td:nth-child(5) {
        min-width: 135px;
    }
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table table thead tr th:nth-child(6),
    .dashboard .dashboard-table table thead tr td:nth-child(6),
    .dashboard .dashboard-table table tbody tr th:nth-child(6),
    .dashboard .dashboard-table table tbody tr td:nth-child(6) {
        min-width: 185px;
    }
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table table thead tr th:nth-child(7),
    .dashboard .dashboard-table table thead tr td:nth-child(7),
    .dashboard .dashboard-table table tbody tr th:nth-child(7),
    .dashboard .dashboard-table table tbody tr td:nth-child(7) {
        min-width: 115px;
    }
} */

.dashboard .dashboard-table table tbody tr td:first-child {
    color: hsl(var(--heading-color));
    font-weight: 500;
}

/* 
@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.coupons-table table thead tr th:nth-child(1),
    .dashboard .dashboard-table.coupons-table table thead tr td:nth-child(1),
    .dashboard .dashboard-table.coupons-table table tbody tr th:nth-child(1),
    .dashboard .dashboard-table.coupons-table table tbody tr td:nth-child(1) {
        min-width: 75px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.coupons-table table thead tr th:nth-child(2),
    .dashboard .dashboard-table.coupons-table table thead tr td:nth-child(2),
    .dashboard .dashboard-table.coupons-table table tbody tr th:nth-child(2),
    .dashboard .dashboard-table.coupons-table table tbody tr td:nth-child(2) {
        min-width: 215px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.coupons-table table thead tr th:nth-child(3),
    .dashboard .dashboard-table.coupons-table table thead tr td:nth-child(3),
    .dashboard .dashboard-table.coupons-table table tbody tr th:nth-child(3),
    .dashboard .dashboard-table.coupons-table table tbody tr td:nth-child(3) {
        min-width: 130px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.coupons-table table thead tr th:nth-child(4),
    .dashboard .dashboard-table.coupons-table table thead tr td:nth-child(4),
    .dashboard .dashboard-table.coupons-table table tbody tr th:nth-child(4),
    .dashboard .dashboard-table.coupons-table table tbody tr td:nth-child(4) {
        min-width: 105px;
    }
}

@media screen and (max-width: 575px) {

    .dashboard .dashboard-table.wallet-table table thead tr th:nth-child(1),
    .dashboard .dashboard-table.wallet-table table thead tr td:nth-child(1),
    .dashboard .dashboard-table.wallet-table table tbody tr th:nth-child(1),
    .dashboard .dashboard-table.wallet-table table tbody tr td:nth-child(1) {
        min-width: 155px;
    }
}

@media screen and (max-width: 575px) {

    .dashboard .dashboard-table.wallet-table table thead tr th:nth-child(2),
    .dashboard .dashboard-table.wallet-table table thead tr td:nth-child(2),
    .dashboard .dashboard-table.wallet-table table tbody tr th:nth-child(2),
    .dashboard .dashboard-table.wallet-table table tbody tr td:nth-child(2) {
        min-width: 145px;
    }
}

@media screen and (max-width: 575px) {

    .dashboard .dashboard-table.wallet-table table thead tr th:nth-child(3),
    .dashboard .dashboard-table.wallet-table table thead tr td:nth-child(3),
    .dashboard .dashboard-table.wallet-table table tbody tr th:nth-child(3),
    .dashboard .dashboard-table.wallet-table table tbody tr td:nth-child(3) {
        min-width: 118px;
    }
}

@media screen and (max-width: 575px) {

    .dashboard .dashboard-table.wallet-table table thead tr th:nth-child(4),
    .dashboard .dashboard-table.wallet-table table thead tr td:nth-child(4),
    .dashboard .dashboard-table.wallet-table table tbody tr th:nth-child(4),
    .dashboard .dashboard-table.wallet-table table tbody tr td:nth-child(4) {
        min-width: 130px;
    }
} */

.dashboard .dashboard-table.wallet-table table tbody tr:last-child td .dropdown-action .action-list {
    top: unset;
    bottom: calc(100% - 2px);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.dashboard .dashboard-table.wallet-table table tbody tr td:first-child {
    color: hsl(var(--body-color));
    font-weight: 400;
}

/* 
@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.country-table table thead tr th:nth-child(1),
    .dashboard .dashboard-table.country-table table thead tr td:nth-child(1),
    .dashboard .dashboard-table.country-table table tbody tr th:nth-child(1),
    .dashboard .dashboard-table.country-table table tbody tr td:nth-child(1) {
        min-width: 160px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.country-table table thead tr th:nth-child(2),
    .dashboard .dashboard-table.country-table table thead tr td:nth-child(2),
    .dashboard .dashboard-table.country-table table tbody tr th:nth-child(2),
    .dashboard .dashboard-table.country-table table tbody tr td:nth-child(2) {
        min-width: 110px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.country-table table thead tr th:nth-child(3),
    .dashboard .dashboard-table.country-table table thead tr td:nth-child(3),
    .dashboard .dashboard-table.country-table table tbody tr th:nth-child(3),
    .dashboard .dashboard-table.country-table table tbody tr td:nth-child(3) {
        min-width: 105px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.country-table table thead tr th:nth-child(4),
    .dashboard .dashboard-table.country-table table thead tr td:nth-child(4),
    .dashboard .dashboard-table.country-table table tbody tr th:nth-child(4),
    .dashboard .dashboard-table.country-table table tbody tr td:nth-child(4) {
        min-width: 180px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.country-table table thead tr th:nth-child(5),
    .dashboard .dashboard-table.country-table table thead tr td:nth-child(5),
    .dashboard .dashboard-table.country-table table tbody tr th:nth-child(5),
    .dashboard .dashboard-table.country-table table tbody tr td:nth-child(5) {
        min-width: 130px;
    }
} */

.dashboard .dashboard-table.country-table table tbody tr:last-child td .dropdown-action .action-list {
    top: unset;
    bottom: calc(100% - 2px);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.dashboard .dashboard-table.country-table table tbody tr td:first-child {
    color: hsl(var(--body-color));
    font-weight: 400;
}

/* 
@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.payment-table table thead tr th:nth-child(1),
    .dashboard .dashboard-table.payment-table table thead tr td:nth-child(1),
    .dashboard .dashboard-table.payment-table table tbody tr th:nth-child(1),
    .dashboard .dashboard-table.payment-table table tbody tr td:nth-child(1) {
        min-width: 215px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.payment-table table thead tr th:nth-child(2),
    .dashboard .dashboard-table.payment-table table thead tr td:nth-child(2),
    .dashboard .dashboard-table.payment-table table tbody tr th:nth-child(2),
    .dashboard .dashboard-table.payment-table table tbody tr td:nth-child(2) {
        min-width: 150px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.payment-table table thead tr th:nth-child(3),
    .dashboard .dashboard-table.payment-table table thead tr td:nth-child(3),
    .dashboard .dashboard-table.payment-table table tbody tr th:nth-child(3),
    .dashboard .dashboard-table.payment-table table tbody tr td:nth-child(3) {
        min-width: 130px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.payment-table table thead tr th:nth-child(4),
    .dashboard .dashboard-table.payment-table table thead tr td:nth-child(4),
    .dashboard .dashboard-table.payment-table table tbody tr th:nth-child(4),
    .dashboard .dashboard-table.payment-table table tbody tr td:nth-child(4) {
        min-width: 160px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.payment-table table thead tr th:nth-child(5),
    .dashboard .dashboard-table.payment-table table thead tr td:nth-child(5),
    .dashboard .dashboard-table.payment-table table tbody tr th:nth-child(5),
    .dashboard .dashboard-table.payment-table table tbody tr td:nth-child(5) {
        min-width: 165px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.payment-table table thead tr th:nth-child(6),
    .dashboard .dashboard-table.payment-table table thead tr td:nth-child(6),
    .dashboard .dashboard-table.payment-table table tbody tr th:nth-child(6),
    .dashboard .dashboard-table.payment-table table tbody tr td:nth-child(6) {
        min-width: 165px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.payment-table table thead tr th:nth-child(7),
    .dashboard .dashboard-table.payment-table table thead tr td:nth-child(7),
    .dashboard .dashboard-table.payment-table table tbody tr th:nth-child(7),
    .dashboard .dashboard-table.payment-table table tbody tr td:nth-child(7) {
        min-width: 165px;
    }
} */

.dashboard .dashboard-table.payment-table table tbody tr:last-child td .dropdown-action .action-list {
    top: unset;
    bottom: calc(100% - 2px);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.dashboard .dashboard-table.payment-table table tbody tr td:first-child {
    color: hsl(var(--body-color));
    font-weight: 400;
}

/* 
@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.transaction-table table thead tr th:nth-child(1),
    .dashboard .dashboard-table.transaction-table table thead tr td:nth-child(1),
    .dashboard .dashboard-table.transaction-table table tbody tr th:nth-child(1),
    .dashboard .dashboard-table.transaction-table table tbody tr td:nth-child(1) {
        min-width: 215px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.transaction-table table thead tr th:nth-child(2),
    .dashboard .dashboard-table.transaction-table table thead tr td:nth-child(2),
    .dashboard .dashboard-table.transaction-table table tbody tr th:nth-child(2),
    .dashboard .dashboard-table.transaction-table table tbody tr td:nth-child(2) {
        min-width: 140px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.transaction-table table thead tr th:nth-child(3),
    .dashboard .dashboard-table.transaction-table table thead tr td:nth-child(3),
    .dashboard .dashboard-table.transaction-table table tbody tr th:nth-child(3),
    .dashboard .dashboard-table.transaction-table table tbody tr td:nth-child(3) {
        min-width: 140px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.transaction-table table thead tr th:nth-child(4),
    .dashboard .dashboard-table.transaction-table table thead tr td:nth-child(4),
    .dashboard .dashboard-table.transaction-table table tbody tr th:nth-child(4),
    .dashboard .dashboard-table.transaction-table table tbody tr td:nth-child(4) {
        min-width: 210px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.transaction-table table thead tr th:nth-child(5),
    .dashboard .dashboard-table.transaction-table table thead tr td:nth-child(5),
    .dashboard .dashboard-table.transaction-table table tbody tr th:nth-child(5),
    .dashboard .dashboard-table.transaction-table table tbody tr td:nth-child(5) {
        min-width: 160px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.transaction-table table thead tr th:nth-child(6),
    .dashboard .dashboard-table.transaction-table table thead tr td:nth-child(6),
    .dashboard .dashboard-table.transaction-table table tbody tr th:nth-child(6),
    .dashboard .dashboard-table.transaction-table table tbody tr td:nth-child(6) {
        min-width: 120px;
    }
}

@media screen and (max-width: 1699px) {

    .dashboard .dashboard-table.transaction-table table thead tr th:nth-child(7),
    .dashboard .dashboard-table.transaction-table table thead tr td:nth-child(7),
    .dashboard .dashboard-table.transaction-table table tbody tr th:nth-child(7),
    .dashboard .dashboard-table.transaction-table table tbody tr td:nth-child(7) {
        min-width: 120px;
    }
}

.dashboard .dashboard-table.transaction-table table tbody tr td:first-child {
    color: hsl(var(--body-color));
    font-weight: 400;
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table.department-table table thead tr th:nth-child(1),
    .dashboard .dashboard-table.department-table table thead tr td:nth-child(1),
    .dashboard .dashboard-table.department-table table tbody tr th:nth-child(1) {
        width: 80px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.department-table table thead tr th:nth-child(1),
    .dashboard .dashboard-table.department-table table thead tr td:nth-child(1),
    .dashboard .dashboard-table.department-table table tbody tr th:nth-child(1),
    .dashboard .dashboard-table.department-table table tbody tr td:nth-child(1) {
        width: auto;
    }
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table.department-table table thead tr th:nth-child(2),
    .dashboard .dashboard-table.department-table table thead tr td:nth-child(2),
    .dashboard .dashboard-table.department-table table tbody tr th:nth-child(2),
    .dashboard .dashboard-table.department-table table tbody tr td:nth-child(2) {
        min-width: 145px;
    }
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table.department-table table thead tr th:nth-child(3),
    .dashboard .dashboard-table.department-table table thead tr td:nth-child(3),
    .dashboard .dashboard-table.department-table table tbody tr th:nth-child(3),
    .dashboard .dashboard-table.department-table table tbody tr td:nth-child(3) {
        min-width: 145px;
    }
}

@media screen and (max-width: 1199px) {

    .dashboard .dashboard-table.department-table table thead tr th:nth-child(4),
    .dashboard .dashboard-table.department-table table thead tr td:nth-child(4),
    .dashboard .dashboard-table.department-table table tbody tr th:nth-child(4),
    .dashboard .dashboard-table.department-table table tbody tr td:nth-child(4) {
        min-width: 100px;
        width: 100px;
    }
}

@media screen and (max-width: 767px) {

    .dashboard .dashboard-table.department-table table thead tr th:nth-child(4),
    .dashboard .dashboard-table.department-table table thead tr td:nth-child(4),
    .dashboard .dashboard-table.department-table table tbody tr th:nth-child(4),
    .dashboard .dashboard-table.department-table table tbody tr td:nth-child(4) {
        width: auto;
    }
} */

.dashboard .dashboard-table.department-table table tbody tr:last-child td .dropdown-action .action-list {
    top: unset;
    bottom: calc(100% - 2px);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.dashboard .table-heading {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-bottom: 15px;
}

@media screen and (max-width: 1399px) {
    .dashboard .table-heading {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .table-heading {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .table-heading {
        row-gap: 7px;
    }
}

.dashboard .table-heading__title {
    font-weight: 500;
}

@media screen and (max-width: 424px) {
    .dashboard .table-heading__title {
        width: 100%;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .table-heading .dashboard-top-actions {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .table-heading .dashboard-top-actions form {
        width: 170px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .table-heading .dashboard-top-actions form {
        width: calc(100% - 70px);
    }
}

@media screen and (max-width: 767px) {
    .dashboard .table-heading .dashboard-top-actions form .form--control {
        padding-top: 9px;
        padding-bottom: 9px;
        padding-right: 12px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .table-heading .dashboard-top-actions form .form--control {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .table-heading .dashboard-top-actions form button {
        padding-left: 7px;
        padding-right: 7px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .table-heading .dashboard-top-actions form button .icon {
        width: 16px;
        height: 16px;
    }
}

.dashboard .add-staff-form {
    padding: 0 110px;
}

@media screen and (max-width: 1699px) {
    .dashboard .add-staff-form {
        padding: 0 90px;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard .add-staff-form {
        padding: 0 80px;
    }
}

@media screen and (max-width: 1499px) {
    .dashboard .add-staff-form {
        padding: 0 70px;
    }
}

@media screen and (max-width: 1399px) {
    .dashboard .add-staff-form {
        padding: 0 45px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .add-staff-form {
        padding: 0 30px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .add-staff-form {
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .add-staff-form {
        padding: 0;
    }
}

.dashboard .add-staff-form__title {
    font-weight: 600;
    margin-bottom: 5px;
}

@media screen and (max-width: 1199px) {
    .dashboard .add-staff-form__title {
        margin-bottom: 3px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .add-staff-form__title {
        margin-bottom: 2px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .add-staff-form__title {
        margin-bottom: 0;
    }
}

.dashboard .add-staff-form__desc {
    margin-bottom: 40px;
}

@media screen and (max-width: 1399px) {
    .dashboard .add-staff-form__desc {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .add-staff-form__desc {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .add-staff-form__desc {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .add-staff-form__desc {
        margin-bottom: 20px;
    }
}

.dashboard .add-staff-form .form--label {
    font-family: var(--gotham-font);
    color: hsl(var(--dark));
}

.dashboard .add-staff-form .form--control {
    font-family: var(--gotham-font);
    color: hsl(var(--dark));
    font-size: 1rem;
    padding: 15px 16px;
}

@media screen and (max-width: 1399px) {
    .dashboard .add-staff-form .form--control {
        padding: 14px 15px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .add-staff-form .form--control {
        font-size: 0.9375rem;
        padding: 14px 13px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .add-staff-form .form--control {
        font-size: 0.875rem;
        padding: 13.5px 13px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .add-staff-form .form--control {
        padding: 12.5px 13px;
    }
}

.dashboard .add-staff-form .form--control::-webkit-input-placeholder {
    font-size: 1rem;
}

.dashboard .add-staff-form .form--control::-moz-placeholder {
    font-size: 1rem;
}

.dashboard .add-staff-form .form--control:-ms-input-placeholder {
    font-size: 1rem;
}

.dashboard .add-staff-form .form--control::-ms-input-placeholder {
    font-size: 1rem;
}

.dashboard .add-staff-form .form--control::placeholder {
    font-size: 1rem;
}

@media screen and (max-width: 1199px) {
    .dashboard .add-staff-form .form--control::-webkit-input-placeholder {
        font-size: 0.9375rem;
    }

    .dashboard .add-staff-form .form--control::-moz-placeholder {
        font-size: 0.9375rem;
    }

    .dashboard .add-staff-form .form--control:-ms-input-placeholder {
        font-size: 0.9375rem;
    }

    .dashboard .add-staff-form .form--control::-ms-input-placeholder {
        font-size: 0.9375rem;
    }

    .dashboard .add-staff-form .form--control::placeholder {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .add-staff-form .form--control::-webkit-input-placeholder {
        font-size: 0.875rem;
    }

    .dashboard .add-staff-form .form--control::-moz-placeholder {
        font-size: 0.875rem;
    }

    .dashboard .add-staff-form .form--control:-ms-input-placeholder {
        font-size: 0.875rem;
    }

    .dashboard .add-staff-form .form--control::-ms-input-placeholder {
        font-size: 0.875rem;
    }

    .dashboard .add-staff-form .form--control::placeholder {
        font-size: 0.875rem;
    }
}

.dashboard .add-staff-form select.form--control {
    padding: 14px 11px;
}

@media screen and (max-width: 1399px) {
    .dashboard .add-staff-form select.form--control {
        padding: 13px 10px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .add-staff-form select.form--control {
        padding: 13px 9px;
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .add-staff-form select.form--control {
        font-size: 0.875rem;
        padding: 12.5px 9px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .add-staff-form select.form--control {
        padding: 11.5px 9px;
    }
}

@media (min-width: 576px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(even) {
        padding-right: 12px;
    }
}

@media (min-width: 992px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(even) {
        padding-right: 15px;
    }
}

@media (min-width: 1200px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(even) {
        padding-right: 18px;
    }
}

@media (min-width: 1400px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(even) {
        padding-right: 20px;
    }
}

@media (min-width: 1500px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(even) {
        padding-right: 25px;
    }
}

@media (min-width: 1700px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(even) {
        padding-right: 30px;
    }
}

@media (min-width: 576px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(odd) {
        padding-left: 12px;
    }
}

@media (min-width: 992px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(odd) {
        padding-left: 15px;
    }
}

@media (min-width: 1200px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(odd) {
        padding-left: 18px;
    }
}

@media (min-width: 1400px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(odd) {
        padding-left: 20px;
    }
}

@media (min-width: 1500px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(odd) {
        padding-left: 25px;
    }
}

@media (min-width: 1700px) {
    .dashboard .add-staff-form div[class*=col-sm]:nth-child(odd) {
        padding-left: 30px;
    }
}

.dashboard .dropdown-action {
    position: relative;
    display: inline-block;
}

.dashboard .dropdown-action .dropdown-action-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6B7280;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    padding: 10px;
}


.dashboard .dropdown-action .dropdown-action-btn:hover {
    color: hsl(var(--base-two));
}

.dashboard .dropdown-action .action-list {
    width: 180px;
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color-three));
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: -11px 17px 22px 0px rgba(229, 228, 235, 0.4);
    box-shadow: -11px 17px 22px 0px rgba(229, 228, 235, 0.4);
    border-radius: 6px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 9;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    visibility: hidden;
    opacity: 0;
}

.dashboard .dropdown-action .action-list.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.dashboard .dropdown-action .action-list__item {
    width: 100%;
    color: hsl(var(--body-color));
    border-bottom: 1px solid hsl(var(--border-color-three));
    font-size: 0.875rem;
    text-align: left;
    cursor: pointer;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
}

.dashboard .dropdown-action .action-list__item:not(:has(a)) {
    padding: 8px 16px;
}

.dashboard .dropdown-action .action-list__item a {
    padding: 8px 16px;
    text-decoration: none;
    width: 100%;
}

.dashboard .dropdown-action .action-list__item:last-child {
    border-bottom: 0;
}

.dashboard .dropdown-action .action-list__item:hover {
    background-color: hsl(var(--base)/0.08);
    color: hsl(var(--base)) !important;
}

.dashboard .dashboard-top-actions {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 10px;
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-top-actions {
        -webkit-column-gap: 8px;
        -moz-column-gap: 8px;
        column-gap: 8px;
        row-gap: 8px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .dashboard-top-actions {
        -webkit-column-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
        row-gap: 5px;
    }
}

.dashboard .dashboard-top-actions form .form--control {
    background: #FCFCFC !important;
    border-color: hsl(var(--border-color-two)) !important;
    padding-left: 42px;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-top-actions form .form--control {
        padding-left: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-top-actions form .form--control {
        padding-left: 34px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-top-actions form .form--control {
        padding-left: 30px;
    }
}

.dashboard .dashboard-top-actions form .form--control:focus {
    border-color: hsl(var(--base-two)) !important;
}

.dashboard .dashboard-top-actions form button {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding-left: 15px;
    padding-right: 10px;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 1399px) {
    .dashboard .dashboard-top-actions form button {
        padding-left: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-top-actions form button {
        padding-left: 10px;
        padding-right: 8px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-top-actions form button {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.dashboard .dashboard-top-actions form button .icon {
    color: hsl(var(--input-color));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 18px;
    height: 18px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-top-actions form button .icon {
        width: 17px;
        height: 17px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-top-actions form button .icon {
        width: 15px;
        height: 15px;
    }
}

.dashboard .dashboard-top-actions form button:hover .icon {
    color: hsl(var(--base-two));
}

.dashboard .dashboard-top-actions .table-filter-btn {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    font-family: var(--gotham-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1;
    color: hsl(var(--input-color));
    border-bottom: 1px solid hsl(var(--border-color));
    padding-bottom: 7px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    cursor: pointer;
}

@media screen and (max-width: 1199px) {
    .dashboard .dashboard-top-actions .table-filter-btn {
        -webkit-column-gap: 12px;
        -moz-column-gap: 12px;
        column-gap: 12px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-top-actions .table-filter-btn {
        font-size: 0.8125rem;
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        padding-bottom: 5px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-top-actions .table-filter-btn {
        -webkit-column-gap: 7px;
        -moz-column-gap: 7px;
        column-gap: 7px;
    }
}

.dashboard .dashboard-top-actions .table-filter-btn__icon {
    width: 25px;
    height: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: hsl(var(--base));
}

@media screen and (max-width: 991px) {
    .dashboard .dashboard-top-actions .table-filter-btn__icon {
        width: 22px;
        height: 21px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .dashboard-top-actions .table-filter-btn__icon {
        width: 18px;
        height: 19px;
    }
}

.dashboard .dashboard-top-actions .table-filter-btn::before,
.dashboard .dashboard-top-actions .table-filter-btn::after {
    position: absolute;
    content: "";
    background: hsl(var(--base-two));
    width: 0;
    height: 1px;
    left: 0;
    bottom: -1px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.dashboard .dashboard-top-actions .table-filter-btn::after {
    left: auto;
    right: 0;
    background: hsl(var(--base-two));
}

.dashboard .dashboard-top-actions .table-filter-btn:hover {
    color: hsl(var(--base));
}

.dashboard .dashboard-top-actions .table-filter-btn:hover::before,
.dashboard .dashboard-top-actions .table-filter-btn:hover::after {
    width: 50%;
    background: hsl(var(--base-two));
}

.dashboard .filter-btn {
    font-family: var(--gotham-font);
    background: hsl(var(--white));
    border: 1px solid hsl(var(--border-color-two));
    border-radius: 8px;
    font-size: 0.875rem;
    color: hsl(var(--heading-color)) !important;
    padding: 12.5px 15px 12.5px 7px;
    width: auto;
    cursor: pointer;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

@media screen and (max-width: 1199px) {
    .dashboard .filter-btn {
        padding: 11.5px 15px 11.5px 7px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .filter-btn {
        padding: 10.5px 15px 10.5px 5px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .filter-btn {
        padding: 10px 15px 10px 5px;
        font-size: 0.8125rem;
    }
}

.dashboard .filter-btn:hover {
    border-color: hsl(var(--base));
}

.dashboard .dashboard-back-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    font-size: 0.875rem;
    line-height: 1;
    color: #707B72;
    text-decoration: none;
    flex-shrink: 0;
}

.dashboard .dashboard-back-link:hover {
    color: hsl(var(--base-two));
}

.dashboard .dashboard-back-link:hover .dashboard-back-link__text::before,
.dashboard .dashboard-back-link:hover .dashboard-back-link__text::after {
    width: 50%;
    visibility: visible;
    opacity: 1;
}

.dashboard .dashboard-back-link__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 7px;
    height: 12px;
}

.dashboard .dashboard-back-link__text {
    position: relative;
}

.dashboard .dashboard-back-link__text::before,
.dashboard .dashboard-back-link__text::after {
    position: absolute;
    content: "";
    background: hsl(var(--base-two));
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.dashboard .dashboard-back-link__text::after {
    left: auto;
    right: 0;
}

/* ================================= Dashboard Css End =========================== */
/* ======================  Select2 Start  ======================*/
:root {
    --s-height: 44px;
    --select-bg: 0 0% 99%;
    --select-border: var(--border-color);
}

@media (max-width: 1199px) {
    :root {
        --s-height: 42px;
    }
}

@media (max-width: 991px) {
    :root {
        --s-height: 40px;
    }
}

.add-staff-form {
    --s-height: 50px;
    --select-bg: var(--white);
}

@media (max-width: 1399px) {
    .add-staff-form {
        --s-height: 48px;
    }
}

@media (max-width: 1199px) {
    .add-staff-form {
        --s-height: 46px;
    }
}

@media (max-width: 1199px) {
    .add-staff-form {
        --s-height: 46px;
    }
}

@media (max-width: 767px) {
    .add-staff-form {
        --s-height: 44px;
    }
}

@media (max-width: 575px) {
    .add-staff-form {
        --s-height: 42px;
    }
}

.selection {
    display: block;
}

.select2 .dropdown-wrapper {
    display: none;
}

.select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    background-color: hsl(var(--select-bg));
    border: 1px solid hsl(var(--select-border));
    border-radius: 8px;
    min-height: var(--s-height);
    padding-inline: 4px;
}

.select2-container--default.select2-container--focus :is(.select2-selection--multiple, .select2-selection--single),
.select2-container--default.select2-container--open :is(.select2-selection--multiple, .select2-selection--single) {
    border-color: hsl(var(--base));
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--black) / .05);
}

.select2-dropdown {
    border: 1px solid hsl(var(--black)/0.2);
    z-index: 9;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.select2-results__option {
    padding: 6px 10px;
    color: hsl(var(--black));
    font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: hsl(var(--select-border));
    border: 0;
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--black));
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 6px;
    padding: 5px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: var(--s-height);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: var(--s-height);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 6px;
    padding-right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid hsl(var(--select-border));
    outline: 0;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 14px;
    color: hsl(var(--black));
}

.select2-container:has(.select2-selection--multiple, .select2-selection--single) {
    width: 100% !important;
}

.img-flag-inner {
    display: flex;
    align-items: center;
    gap: 6px;
}

.img-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.select2-results__options {
    &::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    &::-webkit-scrollbar-track {
        background-color: hsl(var(--select-border));
    }

    &::-webkit-scrollbar-thumb {
        background-color: hsl(var(--black) / .2);
    }
}

.breadcrumb-plugins {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
}

.breadcrumb-left {
    flex-shrink: 0;
}


.breadcrumb-right {
    flex: 1;
}

@media (max-width: 1199px) {
    .breadcrumb-plugins {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .breadcrumb-right {
        width: 100%;
    }

    .breadcrumb-plugins:not(:has(.breadcrumb-left :is(.dashboard-back-link, .filter-item))) {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .breadcrumb-plugins:not(:has(.breadcrumb-left :is(.dashboard-back-link, .filter-item))) :is(.breadcrumb-left, .breadcrumb-right) {
        width: auto;
    }

    .breadcrumb-plugins:not(:has(.breadcrumb-left :is(.dashboard-back-link, .filter-item))) .breadcrumb-right .btn {
        white-space: nowrap;
    }
}

.dashboard .dashboard-top-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

@media (max-width: 767px) {
    .dashboard .dashboard-top-actions {
        gap: 12px;
        flex-wrap: wrap;
    }
}

.breadcrumb-plugins .select2-container:has(.select2-selection--multiple, .select2-selection--single) {
    min-width: 150px;
    width: auto !important;
}

@media (max-width: 1599px) {
    .breadcrumb-plugins .select2-container:has(.select2-selection--multiple, .select2-selection--single) {
        min-width: 150px;
        max-width: 150px;
    }
}

.breadcrumb-plugins .select2-container:has(.select2-selection--multiple, .select2-selection--single) .select2-selection__rendered {
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .dashboard-top-actions .filter-item {
        width: calc(100% / 2 - 6px);
        flex-grow: 1;
    }

    .breadcrumb-plugins:not(:has(.breadcrumb-left :is(.dashboard-back-link, .filter-item))) .dashboard-top-actions .filter-item {
        flex-grow: unset;
        min-width: 140px;
    }

    .breadcrumb-plugins .select2-container:has(.select2-selection--multiple, .select2-selection--single) {
        min-width: unset;
        max-width: unset;
        width: 100% !important;
    }


    .breadcrumb-left .select2-container:has(.select2-selection--multiple, .select2-selection--single) {
        min-width: 140px !important;
    }
}



/* ======================  Select2 End  ======================*/
/* ================================= Preload Css Start =========================== */
.preloader {
    position: fixed;
    z-index: 999999;
    background-color: hsl(var(--white));
    width: 100%;
    height: 100%;
}

.loader-p {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader-p:before,
.loader-p:after {
    content: "";
    border: 1em solid hsl(var(--base));
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader-p:before {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes loader {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/* ================================= Preload Css End ===========================  */
/* ===================== Scroll To Top Start ================================= */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: hsl(var(--white));
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: hsl(var(--base));
    text-decoration: none;
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .scroll-top {
        font-size: 1.375rem;
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 575px) {
    .scroll-top {
        font-size: 1.25rem;
        width: 38px;
        height: 38px;
    }
}

.scroll-top:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base-d-100));
}

.scroll-top.show {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* ===================== Scroll To Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
::-moz-selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

::selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/*# sourceMappingURL=main.css.map */

/* ================================= Account Css Start =========================== */
.account-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--background-color);
}

.account-form {
    font-family: var(--gotham-font);
    background: hsl(var(--white));
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    padding: 30px 35px;
    border-radius: 10px;
}

@media screen and (max-width: 1199px) {
    .account-form {
        padding: 30px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 991px) {
    .account-form {
        padding: 30px 25px 25px;
    }
}

@media screen and (max-width: 575px) {
    .account-form {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 424px) {
    .account-form {
        padding: 22px 15px;
    }
}

.account-form__title {
    line-height: 1;
    margin-bottom: 10px;
}

@media screen and (max-width: 1199px) {
    .account-form__title {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 767px) {
    .account-form__title {
        margin-bottom: 6px;
    }
}

.account-form__desc {
    font-size: 0.875rem;
    margin-bottom: 25px;
}

@media screen and (max-width: 1199px) {
    .account-form__desc {
        margin-bottom: 22px;
    }
}

@media screen and (max-width: 991px) {
    .account-form__desc {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .account-form__desc {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 575px) {
    .account-form__desc {
        margin-bottom: 15px;
    }
}

.account-form .form-group {
    margin-bottom: 15px;
}

@media screen and (max-width: 1199px) {
    .account-form .form-group {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 767px) {
    .account-form .form-group {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 575px) {
    .account-form .form-group {
        margin-bottom: 8px;
    }
}

.account-form .form--label {
    font-size: 0.875rem;
    margin-bottom: 6px;
}

@media screen and (max-width: 1199px) {
    .account-form .form--label {
        margin-bottom: 5px;
    }
}

.account-form .form--check input {
    margin: 0;
}

.account-form .form--check label,
.account-form .form--check a {
    line-height: 1;
    font-size: 0.875rem;
}

.account-form a {
    font-size: 0.875rem;
    text-decoration: none;
    color: hsl(var(--black));
}

.account-form a:hover {
    color: hsl(var(--base-two));
    text-decoration: underline;
}

.account-form .form--check {
    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;
}

.auth-page-logo img {
    max-width: 180px !important;
}

/* ================================= Account Css End =========================== */

.dashboard .admin-profile-avater {
    background: #FCFCFC;
    padding: 12px 15px;
}

@media screen and (max-width: 1399px) {
    .dashboard .admin-profile-avater {
        padding: 12px 13px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .admin-profile-avater {
        padding: 10px 12px;
    }
}

.dashboard .admin-profile-avater__thumb {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .dashboard .admin-profile-avater__thumb {
        width: 52px;
        height: 52px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .admin-profile-avater__thumb {
        width: 46px;
        height: 46px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .admin-profile-avater__thumb {
        width: 42px;
        height: 42px;
    }
}

.dashboard .admin-profile-avater__thumb img {
    width: 100%;
    height: 100%;
}

.dashboard .admin-profile-avater__name {
    width: calc(100% - 55px);
    padding-left: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
    .dashboard .admin-profile-avater__name {
        width: calc(100% - 52px);
        padding-left: 12px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .admin-profile-avater__name {
        width: calc(100% - 46px);
        padding-left: 10px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .admin-profile-avater__name {
        width: calc(100% - 42px);
    }
}

/* custom css  */
.toggle-group .toggle-handle {
    background-color: #10163a;
}

.toggle-group .toggle-off {
    background-color: #293654;
    color: #ffffff;
}

.toggle input[data-size="small"]~.toggle-group label {
    font-size: 0.75rem;
}

.btn--sm {
    padding: 7px 13px;
    font-size: 0.8rem;
    line-height: 138.333%;
}


.modal-body label:not(.toggle-group label) {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}

.bl--5 {
    border-left: 5px solid !important;
}

/* 
.image--uploader {
    width: 240px;
    border-radius: 10px;
}

.image-upload-wrapper {
    height: 280px;
    position: relative;
}

.image-upload-preview {
    width: 100%;
    height: 100%;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.image-upload-input-wrapper {
    position: absolute;
    display: inline-flex;
    bottom: -14px;
    right: -7px;
}

.image-upload-input-wrapper input {
    width: 0;
    opacity: 0;
}

.image-upload-input-wrapper label {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    border: 2px solid #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    color: #e5e5e5;
}

.image-upload-input-wrapper label::after {
    content: "";
} */

.table-short-code .table th,
.table-short-code .table td {
    padding: 12px 15px;
    vertical-align: middle;
}

.table-short-code .table--light {
    background: #f8f9fa;
    border-radius: 5px;
}

.table-short-code .table thead th {
    background: #f1f1f1;
    font-weight: 600;
}

.table-short-code .shortcode {
    background: #eef1f7;
    padding: 6px 10px;
    border-radius: 5px;
    display: inline-block;
    font-family: monospace;
    font-size: 14px;
}

.table-short-code .table tbody tr {
    border-bottom: 1px solid #ddd;
}

.text-end {
    text-align: right !important;
}

/* custom dropdown */

.custom--dropdown {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #F0F0F0;
    background: hsl(var(--white));
    box-shadow: -11px 17px 22px 0px hsl(var(--white) / .4);
}

.custom--dropdown .dropdown-item {
    padding: 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: hsl(var(--black));
    font-size: 0.875rem;
    gap: 24px;
}

@media (min-width: 768px) {
    .border-right {
        border-right: 1px solid hsl(var(--black) / .05);
    }
}

.add-method-select {
    max-width: 320px;
    width: 100%;

}

.search-list {
    position: absolute;
    top: 100%;
    background-color: hsl(var(--white));
    width: 100%;
    z-index: 99;
    max-height: 310px;
    overflow: auto;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 15px hsl(var(--black) / .05);
}

.search-list::-webkit-scrollbar {
    width: 2px;
}

.search-list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px hsl(var(--black) / .05);
}

.search-list li {
    border-bottom: 1px solid hsl(var(--black) / .04);
}

.search-list li .search-list-link {
    padding: 8px 8px 8px 30px;
    display: block;
    font-weight: 500;
    text-decoration: none;
}

.search-list li.active .search-list-link,
.search-list li .search-list-link:hover {
    background-color: #eee;
}

.search-list li a {
    color: #363636;
    font-size: 13px;
}

.search-list .bg--dark a {
    color: #fff !important;
}

body:has(.dashboard) .scroll-top {
    display: none;
}

.search-item.active {
    background-color: #f0f0f0;
}

.toggle.btn-lg {
    height: 37px !important;
    min-height: 37px !important;
}

.toggle-handle {
    width: 25px !important;
    padding: 0;
}

.toggle-off.btn-lg {
    padding-left: 26px;
}

/* Update css */

.dashboard .sidebar-submenu {
    display: none;
}

.dashboard .sidebar-submenu-list {
    padding: 10px 0;
}

@media screen and (max-width: 1399px) {
    .dashboard .sidebar-submenu-list {
        padding: 8px 0;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .sidebar-submenu-list {
        padding: 6px 0;
    }
}

.dashboard .sidebar-submenu-list__item {
    margin-bottom: 2px;
}

.dashboard .sidebar-submenu-list__item.active>a {
    color: hsl(var(--base));
}

.dashboard .sidebar-submenu-list__link {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    display: block;
    font-size: 0.75rem;
    color: hsl(var(--body-color));
    padding: 8px 8px 8px 14px;
    text-decoration: none;
    border-radius: 5px;
}

@media (max-width: 1399px) {
    .dashboard .sidebar-submenu-list__link {
        padding: 7px 8px 7px 10px;
    }
}

@media (max-width: 1199px) {
    .dashboard .sidebar-submenu-list__link {
        padding: 6px 8px;
    }
}

.dashboard .sidebar-submenu-list__link:hover {
    color: hsl(var(--base));
}

.user-details-form-title i {
    font-size: 20px;
}

.user-details-alert {
    background-color: #fff5f5;
    border-color: #dc3545;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 10px;
}

.user-details-alert .alert__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.user-details-alert .alert__message {
    font-size: 14px;
    font-weight: 500;
    flex-grow: 1;
}

.user-details-alert .text--danger {
    text-decoration: underline;
}

@media only screen and (max-width: 1600px) {
    .dashboard-header__grettings {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1440px) {
    .dashboard-header__grettings {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1310px) {
    .dashboard-header__grettings {
        font-size: 13px;
    }
}