/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* ========================= Css Variables Start ======================== */
:root {
    /* Font Family */
    --heading-font: "KoHo", sans-serif;
    --body-font: "Open Sans", sans-serif;
    /* ========================= Color Variables Start =========================== */
    --white: 0 0% 100%;
    --light-h: 0;
    --light-s: 1%;
    --light-l: 53%;
    --light: var(--light-h) var(--light-s) var(--light-l);
    --black-h: 0;
    --black-s: 0%;
    --black-l: 0%;
    --black: var(--black-h) var(--black-s) var(--black-l);
    --body-bg-h: 240;
    --body-bg-s: 60%;
    --body-bg-l: 7%;
    --body-bg: var(--body-bg-h) var(--body-bg-s) var(--body-bg-l);
    --heading-color: var(--black) / .6;
    --body-color: var(--black) / .7;
    --border-color: var(--secondary-l-800);
    --section-bg: 247 80% 98%;
    /* ================================ Box Shadow Start =============================== */
    --header-box-shadow: 0px -1px 15px 3px hsl(var(--black) /.3);
    --mobile-box-shadow: 0px -1px 5px 0px hsl(var(--black) /.92);
    --box-shadow: 0px 2px 15px hsl(var(--black) /.05);
    /* ================================ Box Shadow End =============================== */
    /* ========================= Social Color Start ============================= */
    --facebook-h: 223;
    --facebook-s: 45%;
    --facebook-l: 41%;
    --facebook: var(--facebook-h) var(--facebook-s) var(--facebook-l);
    --google-h: 7;
    --google-s: 66%;
    --google-l: 53%;
    --google: var(--google-h) var(--google-s) var(--google-l);
    --linkedin-h: 201;
    --linkedin-s: 100%;
    --linkedin-l: 35%;
    --linkedin: var(--linkedin-h) var(--linkedin-s) var(--linkedin-l);
    /* ========================= Social Color End ============================= */
    /* ========================= Base Color ============================= */
    --base-h: 262;
    --base-s: 82%;
    --base-l: 51%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    /* Base Darken  */
    --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 Lighten */
    --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);
    --background-gradient: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-two)));
    /* ========================= Base Two Color ============================= */
    --base-two-h: 253;
    --base-two-s: 86%;
    --base-two-l: 72%;
    --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);
    /* Base Two Darken */
    --base-two-d-100: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.05);
    --base-two-d-200: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.1);
    --base-two-d-300: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.2);
    --base-two-d-400: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.3);
    --base-two-d-500: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.4);
    --base-two-d-600: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.5);
    --base-two-d-700: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.6);
    --base-two-d-800: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.7);
    --base-two-d-900: var(--base-two-h) var(--base-two-s) calc(var(--base-two-l) - var(--base-two-l) * 0.8);
    /* Base Two Lighten */
    --base-two-l-100: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.05);
    --base-two-l-200: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.1);
    --base-two-l-300: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.2);
    --base-two-l-400: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.3);
    --base-two-l-500: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.4);
    --base-two-l-600: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.5);
    --base-two-l-700: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.6);
    --base-two-l-800: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.7);
    --base-two-l-900: var(--base-two-h) calc(var(--base-two-s)) calc(var(--base-two-l) + (100% - var(--base-two-l)) * 0.8);
    /* ========================= Base Three Color ============================= */
    --base-three-h: 49;
    --base-three-s: 100%;
    --base-three-l: 67%;
    --base-three: var(--base-three-h) var(--base-three-s) var(--base-three-l);
    /* Base Two Darken */
    --base-three-d-100: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.05);
    --base-three-d-200: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.1);
    --base-three-d-300: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.2);
    --base-three-d-400: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.3);
    --base-three-d-500: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.4);
    --base-three-d-600: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.5);
    --base-three-d-700: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.6);
    --base-three-d-800: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.7);
    --base-three-d-900: var(--base-three-h) var(--base-three-s) calc(var(--base-three-l) - var(--base-three-l) * 0.8);
    /* Base Two Lighten */
    --base-three-l-100: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.05);
    --base-three-l-200: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.1);
    --base-three-l-300: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.2);
    --base-three-l-400: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.3);
    --base-three-l-500: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.4);
    --base-three-l-600: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.5);
    --base-three-l-700: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.6);
    --base-three-l-800: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.7);
    --base-three-l-900: var(--base-three-h) calc(var(--base-three-s)) calc(var(--base-three-l) + (100% - var(--base-three-l)) * 0.8);
    --background-gradient: linear-gradient(45deg, hsl(var(--base-three)), hsl(var(--base-two)));
    /* ============================== Bootstrap Modifier Start ============================== */
    /* Primary Color */
    --primary-h: 211;
    --primary-s: 100%;
    --primary-l: 50%;
    --primary: var(--primary-h) var(--primary-s) var(--primary-l);
    /* Primary Darken */
    --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-d-600: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.6);
    --primary-d-700: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.7);
    --primary-d-800: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.8);
    --primary-d-900: var(--primary-h) var(--primary-s) calc(var(--primary-l) - var(--primary-l) * 0.9);
    /* primary Lighten */
    --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);
    --primary-l-600: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.6);
    --primary-l-700: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.7);
    --primary-l-800: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.8);
    --primary-l-900: var(--primary-h) calc(var(--primary-s)) calc(var(--primary-l) + (100% - var(--primary-l)) * 0.9);
    /* Secondary Color */
    --secondary-h: 208;
    --secondary-s: 7%;
    --secondary-l: 46%;
    --secondary: var(--secondary-h) var(--secondary-s) var(--secondary-l);
    /* Secondary Darken */
    --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-d-600: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.6);
    --secondary-d-700: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.7);
    --secondary-d-800: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.8);
    --secondary-d-900: var(--secondary-h) var(--secondary-s) calc(var(--secondary-l) - var(--secondary-l) * 0.9);
    /* secondary Lighten */
    --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);
    --secondary-l-600: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.6);
    --secondary-l-700: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.7);
    --secondary-l-800: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.8);
    --secondary-l-900: var(--secondary-h) calc(var(--secondary-s)) calc(var(--secondary-l) + (100% - var(--secondary-l)) * 0.9);
    /* Success Color */
    --success-h: 148;
    --success-s: 98%;
    --success-l: 38%;
    --success: var(--success-h) var(--success-s) var(--success-l);
    /* Success Darken */
    --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-d-600: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.6);
    --success-d-700: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.7);
    --success-d-800: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.8);
    --success-d-900: var(--success-h) var(--success-s) calc(var(--success-l) - var(--success-l) * 0.9);
    /* Success Lighten */
    --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);
    --success-l-600: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.6);
    --success-l-700: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.7);
    --success-l-800: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.8);
    --success-l-900: var(--success-h) calc(var(--success-s)) calc(var(--success-l) + (100% - var(--success-l)) * 0.9);
    /* Danger Color */
    --danger-h: 0;
    --danger-s: 96%;
    --danger-l: 63%;
    --danger: var(--danger-h) var(--danger-s) var(--danger-l);
    /* Danger Darken */
    --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-d-600: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.6);
    --danger-d-700: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.7);
    --danger-d-800: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.8);
    --danger-d-900: var(--danger-h) var(--danger-s) calc(var(--danger-l) - var(--danger-l) * 0.9);
    /* danger Lighten */
    --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);
    --danger-l-600: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.6);
    --danger-l-700: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.7);
    --danger-l-800: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.8);
    --danger-l-900: var(--danger-h) calc(var(--danger-s)) calc(var(--danger-l) + (100% - var(--danger-l)) * 0.9);
    /* Warning Color */
    --warning-h: 29;
    --warning-s: 100%;
    --warning-l: 63%;
    --warning: var(--warning-h) var(--warning-s) var(--warning-l);
    /* Warning Darken */
    --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-d-600: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.6);
    --warning-d-700: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.7);
    --warning-d-800: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.8);
    --warning-d-900: var(--warning-h) var(--warning-s) calc(var(--warning-l) - var(--warning-l) * 0.9);
    /* Warning Lighten */
    --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);
    --warning-l-600: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.6);
    --warning-l-700: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.7);
    --warning-l-800: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.8);
    --warning-l-900: var(--warning-h) calc(var(--warning-s)) calc(var(--warning-l) + (100% - var(--warning-l)) * 0.9);
    /* Info Color */
    --info-h: 196;
    --info-s: 100%;
    --info-l: 50%;
    --info: var(--info-h) var(--info-s) var(--info-l);
    /* Info Darken */
    --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-d-600: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.6);
    --info-d-700: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.7);
    --info-d-800: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.8);
    --info-d-900: var(--info-h) var(--info-s) calc(var(--info-l) - var(--info-l) * 0.9);
    --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);
    --info-l-600: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.6);
    --info-l-700: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.7);
    --info-l-800: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.8);
    --info-l-900: var(--info-h) calc(var(--info-s)) calc(var(--info-l) + (100% - var(--info-l)) * 0.9);
    /* dark Color */
    --dark-h: 210;
    --dark-s: 10%;
    --dark-l: 23%;
    --dark: var(--dark-h) var(--dark-s) var(--dark-l);
    /* dark Darken */
    --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-d-600: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.6);
    --dark-d-700: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.7);
    --dark-d-800: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.8);
    --dark-d-900: var(--dark-h) var(--dark-s) calc(var(--dark-l) - var(--dark-l) * 0.9);
    --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);
    --dark-l-600: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.6);
    --dark-l-700: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.7);
    --dark-l-800: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.8);
    --dark-l-900: var(--dark-h) calc(var(--dark-s)) calc(var(--dark-l) + (100% - var(--dark-l)) * 0.9);
    /* ============================== Bootstrap Modifier End ============================== */
}

/* ========================= Css Variables End =========================== */
/* ============================ Media Breakpoint for Each Device Start ============================ */
/* ================================== Font Size For responsive devices End =============================== */
/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    background: hsl(var(--black) / 0.02);
    color: hsl(var(--body-color));
    word-break: break-word;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    font-size: 1rem;
    overflow-x: clip;
    line-height: 1.7;
}

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

body.nav-collapsed .main-content {
    margin-left: 70px;
}

p {
    font-weight: 400;
    margin: 0;
}

span {
    display: inline-block;
}

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

@media screen and (max-width: 767px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 15px 0;
    }
}

h1 {
    font-size: clamp(1.75rem, 0.1327rem + 3.3694vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 0.3542rem + 2.6474vw, 3rem);
}

h3 {
    font-size: clamp(1.375rem, 0.3353rem + 2.1661vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 0.5569rem + 1.444vw, 2rem);
}

h5 {
    font-size: clamp(1.125rem, 0.7784rem + 0.722vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.25rem);
}

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

a {
    display: inline-block;
    transition: 0.2s linear;
    text-decoration: none;
    color: hsl(var(--base-d-200));
    line-height: inherit;
}

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

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;
    box-shadow: none;
}

textarea {
    vertical-align: middle;
}

i {
    display: inline-block;
}

.small,
small {
    font-size: 0.9em;
}

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

.list-styled {
    list-style: revert;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.list-styled li {
    margin-bottom: 10px;
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
/* Column Extra Small Screen */
/* Column Extra Extra Extra Large Screen */
@media (min-width: 1600px) {
    .col-xxxl-1 {
        flex: 0 0 auto;
        width: 8.33%;
    }

    .col-xxxl-2 {
        flex: 0 0 auto;
        width: 16.67%;
    }

    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxxl-4 {
        flex: 0 0 auto;
        width: 33.33%;
    }

    .col-xxxl-5 {
        flex: 0 0 auto;
        width: 41.67%;
    }

    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxxl-7 {
        flex: 0 0 auto;
        width: 58.33%;
    }

    .col-xxxl-8 {
        flex: 0 0 auto;
        width: 66.67%;
    }

    .col-xxxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxxl-10 {
        flex: 0 0 auto;
        width: 83.33%;
    }

    .col-xxxl-11 {
        flex: 0 0 auto;
        width: 91.67%;
    }

    .col-xxxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Column Extra Small Screen */
@media (min-width: 480px) and (max-width: 575px) {
    .col-xsm-1 {
        flex: 0 0 auto;
        width: 8.33%;
    }

    .col-xsm-2 {
        flex: 0 0 auto;
        width: 16.67%;
    }

    .col-xsm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xsm-4 {
        flex: 0 0 auto;
        width: 33.33%;
    }

    .col-xsm-5 {
        flex: 0 0 auto;
        width: 41.67%;
    }

    .col-xsm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xsm-7 {
        flex: 0 0 auto;
        width: 58.33%;
    }

    .col-xsm-8 {
        flex: 0 0 auto;
        width: 66.67%;
    }

    .col-xsm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xsm-10 {
        flex: 0 0 auto;
        width: 83.33%;
    }

    .col-xsm-11 {
        flex: 0 0 auto;
        width: 91.67%;
    }

    .col-xsm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

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

/* Bg Image Css */
.bg-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 100%;
    height: 100%;
}

/* Bg Light Gradient Css */
.bg-light-gradient {
    background: linear-gradient(-45deg, hsl(var(--base-two)/0.04), hsl(var(--base)/0.04), hsl(var(--base-two)/0.04));
}

.translate-0 {
    transform: translate(0) !important;
}

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

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

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

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

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

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

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

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

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

/* Overlay End */
/* Hide text after 1st line */
.text-overflow-1 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide text after 2nd line */
.text-overflow-2 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide text after 3rd line */
.text-overflow-3 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide text after 4th line */
.text-overflow-4 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hide text after 5th line */
.text-overflow-5 {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-shadow {
    box-shadow: 0 0 !important;
}

.text--muted {
    color: hsl(var(--black)/0.5);
}

.container--fluid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
}

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

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

.flex-align,
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* ============================= Display Flex Css End ============================= */
/* ============================= Positioning Css Class Start ===================== */
.pa-extend,
.alert__link::before {
    position: absolute;
    content: "";
}

.top-center-extend {
    top: 50%;
    transform: translateY(-50%);
}

.left-center-extend {
    left: 50%;
    transform: translateX(-50%);
}

.top-left-center-extend {
    top: 50%;
    left: 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,
.badge {
    font-size: 0.8125rem;
}

.fs-14,
.form--check .form-check-input:checked::before {
    font-size: 0.875rem;
}

.fs-15,
.table tbody tr td,
.form--radio .form-check-label,
.form--check .form-check-label,
.col-form--label,
.form--label {
    font-size: 0.9375rem;
}

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

@media screen and (max-width: 1199px) {
    .fs-16,
    .alert__title {
        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,
.table thead tr th {
    font-size: 1.125rem;
}

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

@media screen and (max-width: 767px) {
    .fs-18,
    .table thead tr th {
        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 =================== */
/* ====================== Section Heading Start ==================== */
.section-heading {
    position: relative;
    margin-bottom: 70px;
    z-index: 2;
}

.section-heading::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-d-300)));
    border-radius: 2px;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .section-heading::before {
        left: 50%;
        transform: translateX(-50%);
        width: 160px;
        background: transparent;
        border-left: 25px solid hsl(var(--base));
        border-right: 25px solid hsl(var(--base));
    }
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, hsl(var(--base-two)), hsl(var(--base-two-d-500)));
    border-radius: 2px;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .section-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1199px) {
    .section-heading {
        margin-bottom: 60px;
    }
}

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

@media screen and (max-width: 767px) {
    .section-heading {
        text-align: center;
        padding-bottom: 3px;
    }
}

.section-heading-light::before,
.section-heading-light::after {
    background: hsl(var(--white));
}

.section-heading-light .section-heading__vector {
    -webkit-text-stroke-color: hsl(var(--white)/0.2);
}

.section-heading-light .section-heading__subtitle,
.section-heading-light .section-heading__title {
    color: hsl(var(--white));
}

.section-heading__subtitle {
    width: max-content;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    letter-spacing: 1px;
    height: 30px;
    line-height: 30px;
    font-weight: 400;
    padding: 0 20px;
    border-radius: 5px;
    background: linear-gradient(-1deg, hsl(var(--base)), hsl(var(--base-d-300)));
    color: hsl(var(--white));
    transform: translateX(10px);
    margin-bottom: 15px;
    position: relative;
}

.section-heading__subtitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(-45deg, hsl(var(--base-two)), hsl(var(--base-two-d-500)));
    box-shadow: 10px 0 10px 0 hsl(var(--black)/0.1);
    border-radius: 50%;
}

@media screen and (max-width: 767px) {
    .section-heading__subtitle::before {
        width: 25px;
        height: 25px;
        border-width: 7px;
    }
}

.section-heading__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 10px;
    height: 10px;
    background: hsl(var(--white));
    border-radius: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .section-heading__subtitle::after {
        left: -12.5px;
    }
}

@media screen and (max-width: 1399px) {
    .section-heading__subtitle {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 1199px) {
    .section-heading__subtitle {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading__subtitle {
        font-size: 1.125rem;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .section-heading__subtitle {
        font-size: 1rem;
        height: 25px;
        line-height: 25px;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-heading__title {
    font-size: 3.75rem;
    line-height: 1.2;
    font-weight: 600;
    position: relative;
    color: hsl(var(--black)/0.6);
    padding-bottom: 19px;
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .section-heading__title {
        font-size: 3.125rem;
        padding-bottom: 21px;
    }
}

@media screen and (max-width: 1199px) {
    .section-heading__title {
        font-size: 2.5rem;
        padding-bottom: 19px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading__title {
        font-size: 1.875rem;
        padding-bottom: 21px;
    }
}

@media screen and (max-width: 479px) {
    .section-heading__title {
        font-size: 1.5625rem;
        padding-bottom: 0;
        margin-bottom: 19px;
    }
}

.section-heading.text-center::before {
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    background: transparent;
    border-left: 25px solid hsl(var(--base));
    border-right: 25px solid hsl(var(--base));
}

.section-heading.text-center::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}

.section-heading.text-center.section-heading-light::before {
    border-color: hsl(var(--white));
}

.section-heading.text-center .section-heading__subtitle {
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 767px) {
    .section-heading .btn {
        margin-bottom: 25px;
    }
}

/* ====================== Section Heading End==================== */
/* ====================== Container for xxxl screen Start ==================== */
@media screen and (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

/* ====================== Container for xxxl screen End==================== */
/* ====================== Simple Date Picker jQuery Plugin Start ==================== */
/* Plugin URL: https://www.jqueryscript.net/time-clock/Highly-Customizable-jQuery-Datepicker-Plugin-Datepicker.html */
.datepicker-container {
    width: 300px;
    line-height: 42.8571428571px;
}

@media screen and (max-width: 479px) {
    .datepicker-container {
        width: 240px;
        line-height: 34.2857142857px;
    }
}

.datepicker-dropdown {
    border: 0;
    border-top: 1px solid hsl(var(--black)/0.1);
    box-shadow: 0 1px 1px 1px hsl(var(--black)/0.05);
    border-radius: 5px;
}

.datepicker-panel > ul {
    width: 100%;
}

.datepicker-panel > ul:first-child {
    border-bottom: 1px solid hsl(var(--black)/0.05);
}

.datepicker-panel > ul:not(:first-child) > li {
    width: 14.2857142857%;
    height: auto;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 3px;
}

.datepicker-panel > ul > li[data-view="month next"],
.datepicker-panel > ul > li[data-view="month prev"],
.datepicker-panel > ul > li[data-view="year next"],
.datepicker-panel > ul > li[data-view="year prev"],
.datepicker-panel > ul > li[data-view="years next"],
.datepicker-panel > ul > li[data-view="years prev"],
.datepicker-panel > ul > li[data-view=next] {
    width: 14.2857142857%;
    height: auto;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    border-radius: 3px;
}

.datepicker-panel > ul > li[data-view="month current"],
.datepicker-panel > ul > li[data-view="year current"],
.datepicker-panel > ul > li[data-view="years current"] {
    width: 71.4285714286%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9375rem;
    color: hsl(var(--base));
    font-weight: 600;
    border-radius: 3px;
}

.datepicker-panel > ul > li.muted,
.datepicker-panel > ul > li.muted:hover {
    color: hsl(var(--black)/0.4);
}

.datepicker-panel > ul > li.picked,
.datepicker-panel > ul > li.picked:hover {
    color: hsl(var(--base));
    font-weight: 600;
}

.datepicker-panel > ul > li.highlighted {
    background: hsl(var(--base-l-900));
    font-weight: 600;
}

.datepicker-panel > ul > li.highlighted:hover {
    background: hsl(var(--base-l-800));
}

.datepicker-panel > ul > li:hover {
    background: hsl(var(--base-l-900));
}

.datepicker-panel > ul[data-view=months] > li,
.datepicker-panel > ul[data-view=years] > li {
    width: 33.3333333333%;
    height: 50px;
}

.datepicker-panel > ul[data-view=week] > li {
    font-weight: 600;
}

.datepicker-top-left,
.datepicker-top-right {
    border-top-color: hsl(var(--base));
}

.datepicker-top-left::before,
.datepicker-top-right::before {
    border-bottom-color: hsl(var(--base));
}

/* ====================== Simple Date Picker jQuery Plugin End ==================== */
/* ====================== Custom Image Upload with Preview Start ==================== */
.upload__img {
    position: relative;
}

.upload__img__btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 1.0625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(10%, 10%);
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.upload__img__btn i {
    transform: translateY(0);
}

.upload__img__btn:hover {
    background: hsl(var(--base-d-200));
}

.upload__img input {
    position: absolute;
    opacity: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1/0.5;
    cursor: pointer;
    z-index: 1;
}

.upload__img input::-webkit-file-upload-button {
    display: none;
}

.upload__img input:hover + .upload__img-preview {
    background: hsl(var(--base-l-900));
    border-color: hsl(var(--base));
    color: hsl(var(--dark-l-300));
}

.upload__img .btn {
    position: absolute;
    top: 10px;
    left: 10px;
}

.upload__img-preview {
    aspect-ratio: 1/0.5;
    background: hsl(var(--base-l-900)/0.5);
    border: 1px dashed hsl(var(--secondary-l-600));
    border-radius: 5px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.125rem;
    color: hsl(var(--dark-l-500));
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .upload__img-preview {
        font-size: 2.5rem;
    }
}

.upload__img-preview i {
    transform: translate(0);
}

.upload__img-preview img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    border-radius: 3px;
}

/* ====================== Custom Image Upload with Preview End ==================== */
/* ====================== Apexcharts Style Start ==================== */
.apexcharts-tooltip-z-group {
    display: flex;
}

.apexcharts-title-text {
    font-family: var(--body-font) !important;
    font-weight: 600;
    font-size: 1rem;
    fill: hsl(var(--black)/0.6);
}

/* ====================== Apexcharts Style End ==================== */
/* ====================== CK Editor Start ==================== */
.ck-toolbar {
    background: hsl(var(--black)/0.03) !important;
    border-color: hsl(var(--black)/0.1) !important;
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}

.ck-content {
    height: 250px;
    box-shadow: 0 0 !important;
    border-color: hsl(var(--black)/0.1) !important;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    transition: 0.3s;
}

@media screen and (max-width: 479px) {
    .ck-content {
        height: 200px;
    }
}

.ck-content.ck-focused {
    border-color: hsl(var(--base)) !important;
}

.ck-content ul {
    padding-left: 2rem;
    list-style: disc;
}

.ck-content ol {
    padding-left: 2rem;
    list-style: decimal;
}

.ck.ck-button:active,
.ck.ck-button:focus,
a.ck.ck-button:active,
a.ck.ck-button:focus {
    border-color: hsl(var(--base)) !important;
    box-shadow: 0 0 !important;
}

.ck.ck-button.ck-on:not(.ck-disabled),
a.ck.ck-button.ck-on:not(.ck-disabled) {
    background: hsl(var(--base-l-900)) !important;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 4px;
    color: hsl(var(--base-d-200));
}

.ck.ck-button.ck-on:not(.ck-disabled):hover,
a.ck.ck-button.ck-on:not(.ck-disabled):hover {
    background: hsl(var(--base-l-900)) !important;
    border: 1px solid hsl(var(--black)/0.1);
    border-radius: 4px;
    color: hsl(var(--base-d-200));
}

.ck.ck-list__item .ck-button.ck-on {
    background: hsl(var(--base)) !important;
}

.ck.ck-list__item .ck-button.ck-on:hover {
    background: hsl(var(--base)) !important;
    color: hsl(var(--white));
}

.ck.ck-input {
    border-radius: 5px;
}

.ck.ck-input:focus {
    border-color: hsl(var(--base)) !important;
    box-shadow: 0 0 !important;
}

/* ====================== CK Editor End ==================== */
/* ====================== Styled Title Start ====================== */
.styled-title {
    display: inline;
    color: hsl(var(--base-two-l-900)/0.5);
    -webkit-text-stroke-color: hsl(var(--base-d-200));
    -webkit-text-stroke-width: 3px;
    font-style: italic;
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    .styled-title {
        -webkit-text-stroke-width: 1.5px;
        font-weight: 700;
    }
}

.styled-title-2 {
    display: inline;
    color: hsl(var(--white));
    background-image: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-two)), hsl(var(--base)));
    background-clip: text;
    -webkit-text-stroke-color: transparent;
    -webkit-text-stroke-width: 5px;
}

@media screen and (max-width: 991px) {
    .styled-title-2 {
        background-size: 20% 2px;
        background-position: left 90%;
    }
}

/* ====================== Styled Title End ====================== */
/* ====================== No Data Found In Table Start ====================== */
.no-data-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}

@media screen and (max-width: 991px) {
    .no-data-found {
        padding: 10px 0;
    }
}

.no-data-found img {
    max-width: 150px;
    margin: 0 auto 30px;
}

@media screen and (max-width: 991px) {
    .no-data-found img {
        max-width: 80px;
        margin-bottom: 20px;
    }
}

.no-data-found span {
    display: block;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 500;
    color: hsl(var(--black)/0.7);
}

@media screen and (max-width: 991px) {
    .no-data-found span {
        font-size: 1rem;
    }
}

/* ====================== No Data Found In Table End ====================== */
/* ====================== Nice Select Start ====================== */
.nice-select {
    height: auto;
    float: none;
}

.nice-select.form--control {
    padding-right: 35px;
}

.nice-select::after {
    width: 8px;
    height: 8px;
    right: 17px;
    margin-top: -5px;
}

.nice-select .list {
    margin-top: 1px;
}

.nice-select .option {
    line-height: 45px;
    font-size: 1rem;
}

/* ====================== Nice Select End ====================== */
/* ====================== Video Button Start ====================== */
.video-btn {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: hsl(var(--white));
    font-size: 2.1875rem;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .video-btn {
        width: 80px;
        height: 80px;
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .video-btn {
        width: 70px;
        height: 70px;
        font-size: 1.5625rem;
    }
}

.video-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base));
    border-radius: 50%;
    z-index: -1;
}

.video-btn i {
    margin-left: 10px;
}

@media screen and (max-width: 991px) {
    .video-btn i {
        margin-left: 6px;
    }
}

.video-btn .circle-txt {
    width: 150px !important;
    height: 150px !important;
    position: absolute;
    font-size: 1rem;
    line-height: 1;
    padding: 5px !important;
    border: 1px solid hsl(var(--black)/0.07);
    color: hsl(var(--black)/0.7);
    backdrop-filter: blur(10px);
    animation: spin 10s linear infinite;
    z-index: -1;
}

@media screen and (max-width: 1199px) {
    .video-btn .circle-txt {
        width: 130px !important;
        height: 130px !important;
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .video-btn .circle-txt {
        width: 110px !important;
        height: 110px !important;
        font-size: 0.75rem;
    }
}

.video-btn .circle-txt p {
    font-weight: 500;
    width: 70px !important;
    height: 70px !important;
}

@media screen and (max-width: 1199px) {
    .video-btn .circle-txt p {
        width: 60px !important;
        height: 60px !important;
    }
}

@media screen and (max-width: 767px) {
    .video-btn .circle-txt p {
        width: 50px !important;
        height: 50px !important;
    }
}

.video-btn:hover {
    color: hsl(var(--white));
}

/* ====================== Video Button End ====================== */
@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ti {
    font-size: 1.45em;
    transform: translateY(15%);
}

.ti.transform-0 {
    transform: translateY(0%);
}

.ti.transform-1 {
    transform: translateY(5%);
}

.ti.transform-2 {
    transform: translateY(10%);
}

.ti.transform-3 {
    transform: translateY(15%);
}

.ti.fz-0 {
    font-size: 1em;
}

.ti.fz-1 {
    font-size: 1.1em;
}

.ti.fz-2 {
    font-size: 1.2em;
}

.ti.fz-3 {
    font-size: 1.3em;
}

.ti.fz-4 {
    font-size: 1.4em;
}

.ti.fz-5 {
    font-size: 1.5em;
}

.divider-title {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1;
    color: hsl(var(--base));
    position: relative;
    margin-top: -4px;
    margin-bottom: 20px;
    z-index: 2;
}

.divider-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: hsl(var(--secondary-l-800));
    z-index: -1;
}

.divider-title span {
    background: hsl(var(--white));
    padding: 0 7px;
}

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

.bg--base-subtle {
    background-color: hsl(var(--base-l-900)) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg--dark-subtle {
    background-color: hsl(var(--dark-l-900)) !important;
}

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

.text--base-two {
    color: hsl(var(--base-two-d-100)) !important;
}

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

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

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

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

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

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

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

/* ================================= Color Css End =========================== */
/* ================================= margin Css Start =========================== */
.my-120 {
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .my-120 {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .my-120 {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

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

@media (min-width: 576px) {
    .mt-120 {
        margin-top: 80px;
    }
}

@media (min-width: 992px) {
    .mt-120 {
        margin-top: 120px;
    }
}

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

@media (min-width: 576px) {
    .mb-120 {
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .mb-120 {
        margin-bottom: 120px;
    }
}

.my-60 {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .my-60 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .my-60 {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

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

@media (min-width: 576px) {
    .mt-60 {
        margin-top: 40px;
    }
}

@media (min-width: 992px) {
    .mt-60 {
        margin-top: 60px;
    }
}

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

@media (min-width: 576px) {
    .mb-60 {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .mb-60 {
        margin-bottom: 60px;
    }
}

/* ================================= margin Css End =========================== */
/* ================================= padding Css Start =========================== */
.py-120 {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 576px) {
    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .py-120 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 1200px) {
    .py-120 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

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

@media (min-width: 576px) {
    .pt-120 {
        padding-top: 80px;
    }
}

@media (min-width: 992px) {
    .pt-120 {
        padding-top: 120px;
    }
}

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

@media (min-width: 576px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .pb-120 {
        padding-bottom: 120px;
    }
}

.py-60 {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 576px) {
    .py-60 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .py-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

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

@media (min-width: 576px) {
    .pt-60 {
        padding-top: 40px;
    }
}

@media (min-width: 992px) {
    .pt-60 {
        padding-top: 60px;
    }
}

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

@media (min-width: 576px) {
    .pb-60 {
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .pb-60 {
        padding-bottom: 60px;
    }
}

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

.border--base-subtle {
    border-color: hsl(var(--base)/0.2) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.border--dark-subtle {
    border-color: hsl(var(--dark)/0.2) !important;
}

/* ================================= Border Color Css End =========================== */
/* =========================== Accordion Css start ============================= */
.custom--accordion .accordion-item {
    color: hsl(var(--body-color));
    backdrop-filter: blur(7px);
    background-color: hsl(var(--white)/0.03) !important;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 5px;
}

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

@media screen and (max-width: 991px) {
    .custom--accordion .accordion-item:not(:last-child) {
        margin-bottom: 10px;
    }
}

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

.custom--accordion .accordion-body {
    padding: 15px;
    line-height: 1.8;
    border-top: 1px solid hsl(var(--secondary-l-800));
}

@media screen and (max-width: 991px) {
    .custom--accordion .accordion-body {
        padding: 15px 10px;
    }
}

.custom--accordion .accordion-body .text {
    max-width: 60%;
}

@media screen and (max-width: 575px) {
    .custom--accordion .accordion-body .text {
        max-width: 100%;
    }
}

.custom--accordion:first-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.custom--accordion:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.custom--accordion:first-of-type .accordion-button {
    border-radius: 0;
}

.custom--accordion .accordion-button {
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 600;
    background: transparent;
    color: hsl(var(--body-color));
    padding: 15px 55px 15px 15px;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .custom--accordion .accordion-button {
        font-size: 1rem;
        padding: 15px 50px 15px 10px;
    }
}

.custom--accordion .accordion-button::after {
    display: block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: hsl(var(--base-l-900)) none;
    color: hsl(var(--base));
    border-radius: 5px;
    font-size: 1.375rem;
}

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

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

.custom--accordion .accordion-button:not(.collapsed) {
    color: hsl(var(--base-two-d-200));
    background: transparent;
    border-color: hsl(var(--base-d-100));
    box-shadow: none;
}

.custom--accordion .accordion-button[aria-expanded=true]::after,
.custom--accordion .accordion-button[aria-expanded=false]::after {
    font-family: "tabler-icons";
    font-weight: 400;
    content: "\ecf0";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: 0.3s;
}

.custom--accordion .accordion-button[aria-expanded=true]::after {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.custom--accordion .accordion-button[aria-expanded=false]::after {
    content: "\ea9a";
}

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

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

.btn {
    min-width: max-content;
    color: hsl(var(--white)) !important;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.9;
}

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

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

@media screen and (max-width: 479px) {
    .btn {
        padding: 5px 10px;
    }
}

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

.btn--lg {
    padding: 13px 35px;
}

@media screen and (max-width: 991px) {
    .btn--lg {
        padding: 9px 30px;
    }
}

@media screen and (max-width: 767px) {
    .btn--lg {
        padding: 8px 25px;
    }
}

.btn--sm {
    padding: 3px 12px;
    font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
    .btn--sm {
        font-size: 0.8125rem;
        padding: 3px 10px;
    }
}

.btn--icon {
    width: 42px;
    height: 42px;
    line-height: 44px;
    padding: 0;
}

@media screen and (max-width: 479px) {
    .btn--icon {
        width: 38.59px;
        height: 38.59px;
        line-height: 38.59px;
    }
}

.btn--icon.btn--sm {
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.btn--icon i {
    transform: translateY(5%);
}

.btn .icon {
    margin-right: 5px;
}

.btn .las,
.btn .lar {
    font-size: 1.4em;
}

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

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

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

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

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

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

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

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

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

.btn-outline--primary:hover,
.btn-outline--primary:focus,
.btn-outline--primary:focus-visible,
.btn-outline--primary.active {
    background-color: hsl(var(--primary)) !important;
    border-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,
.btn--secondary.active {
    background-color: hsl(var(--secondary-d-200)) !important;
    border-color: hsl(var(--secondary-d-200)) !important;
}

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

.btn-outline--secondary:hover,
.btn-outline--secondary:focus,
.btn-outline--secondary:focus-visible,
.btn-outline--secondary.active {
    background-color: hsl(var(--secondary)) !important;
    border-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,
.btn--success.active {
    background-color: hsl(var(--success-d-200)) !important;
    border-color: hsl(var(--success-d-200)) !important;
}

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

.btn-outline--success:hover,
.btn-outline--success:focus,
.btn-outline--success:focus-visible,
.btn-outline--success.active {
    background-color: hsl(var(--success)) !important;
    border-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,
.btn--danger.active {
    background-color: hsl(var(--danger-d-200)) !important;
    border-color: hsl(var(--danger-d-200)) !important;
}

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

.btn-outline--danger:hover,
.btn-outline--danger:focus,
.btn-outline--danger:focus-visible,
.btn-outline--danger.active {
    background-color: hsl(var(--danger)) !important;
    border-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,
.btn--warning.active {
    background-color: hsl(var(--warning-d-200)) !important;
    border-color: hsl(var(--warning-d-200)) !important;
}

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

.btn-outline--warning:hover,
.btn-outline--warning:focus,
.btn-outline--warning:focus-visible,
.btn-outline--warning.active {
    background-color: hsl(var(--warning)) !important;
    border-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,
.btn--info.active {
    background-color: hsl(var(--info-d-200)) !important;
    border-color: hsl(var(--info-d-200)) !important;
}

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

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

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

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

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

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

/* ================================= Button Css End =========================== */
/* ================================= Card Css Start =========================== */
.custom--card {
    display: block;
    background-color: hsl(var(--white));
    box-shadow: 0 10px 20px 0 hsl(var(--base)/0.05);
    border: 1px solid hsl(var(--secondary-l-900));
    border-radius: 6px;
    height: 100%;
}

.custom--card .card-header {
    padding: 13px 24px;
    background: hsl(var(--base-two-l-900)/0.7);
    border-bottom: 1px solid hsl(var(--secondary-l-800));
    border-radius: 5px 5px 0 0;
    color: hsl(var(--black)/0.7);
}

@media screen and (max-width: 1399px) {
    .custom--card .card-header {
        padding: 13px 20px;
    }
}

@media screen and (max-width: 1199px) {
    .custom--card .card-header {
        padding: 10px 15px;
    }
}

@media screen and (max-width: 991px) {
    .custom--card .card-header {
        padding: 10px 12px;
    }
}

.custom--card .card-header .title {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 700;
    color: hsl(var(--black)/0.7);
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .custom--card .card-header .title {
        font-size: 1.0625rem;
    }
}

.custom--card .card-subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--black)/0.7);
    padding-bottom: 5px;
    border-bottom: 1px solid hsl(var(--secondary-l-800));
    margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
    .custom--card .card-subtitle {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 479px) {
    .custom--card .card-subtitle {
        font-size: 1rem;
    }
}

.custom--card .card-body {
    padding: 24px;
}

@media screen and (max-width: 1399px) {
    .custom--card .card-body {
        padding: 20px;
    }
}

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

@media screen and (max-width: 991px) {
    .custom--card .card-body {
        padding: 12px;
    }
}

.custom--card .card-body .card-title {
    font-size: 1.125rem;
    color: hsl(var(--black)/0.6);
    margin-bottom: 20px;
}

.custom--card .card-footer {
    padding: 12px 24px;
    background-color: transparent;
    border-top: 1px solid hsl(var(--secondary-l-800));
}

/* ================================= Card Css End =========================== */
.custom--dropdown {
    position: relative;
}

.custom--dropdown.dropdown-sm .dropdown-menu {
    min-width: 170px;
}

.custom--dropdown.dropdown-sm .dropdown-menu .dropdown-item {
    padding: 7px 10px;
}

.custom--dropdown .dropdown-menu {
    padding: 5px 10px;
    overflow: hidden;
    box-shadow: 0 0 15px 0 hsl(var(--secondary-l-800));
    border-color: hsl(var(--secondary-l-800));
    border-radius: 5px;
    min-width: 200px;
}

.custom--dropdown .dropdown-menu-end {
    left: auto;
    right: 0;
}

.custom--dropdown .dropdown-menu li {
    border-bottom: 1px solid hsl(var(--black)/0.03);
}

.custom--dropdown .dropdown-menu li:last-child {
    border-bottom: 0;
}

.custom--dropdown .dropdown-menu .dropdown-title {
    width: 100%;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 700;
    color: hsl(var(--black)/0.6);
    padding-bottom: 9px;
}

@media screen and (max-width: 991px) {
    .custom--dropdown .dropdown-menu .dropdown-title {
        font-size: 1rem;
    }
}

.custom--dropdown .dropdown-menu .dropdown-icon {
    width: 18px;
}

.custom--dropdown .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    font-weight: 500;
    font-size: 1rem;
    color: hsl(var(--black)/0.7);
    border-radius: 5px;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .custom--dropdown .dropdown-menu .dropdown-item {
        padding: 7px 5px;
    }
}

.custom--dropdown .dropdown-menu .dropdown-item.active {
    font-weight: 600;
    color: hsl(var(--base-d-100));
    background-color: transparent;
}

.custom--dropdown .dropdown-menu .dropdown-item:active,
.custom--dropdown .dropdown-menu .dropdown-item:focus,
.custom--dropdown .dropdown-menu .dropdown-item:hover {
    color: hsl(var(--base-d-100));
    background-color: transparent;
}

.custom--dropdown .dropdown-menu .dropdown-btn {
    width: 100%;
    padding-top: 15px;
}

.custom--dropdown .dropdown-menu.shortcut-dropdown {
    padding: 18px;
    min-width: 150px;
}

@media screen and (max-width: 767px) {
    .custom--dropdown .dropdown-menu.shortcut-dropdown {
        padding: 13px;
    }
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .scroll {
    max-height: 350px;
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__item {
    width: 250px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
}

@media screen and (max-width: 767px) {
    .custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__item {
        width: 150px;
        gap: 10px;
        padding-top: 10px;
    }
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link {
    width: calc(33.3333333333% - 10px);
    aspect-ratio: 1/1;
    border: 1px solid hsl(var(--black)/0.05);
    border-radius: 5px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5625rem;
    background: hsl(var(--section-bg)/0.3);
    color: hsl(var(--base));
}

@media screen and (max-width: 767px) {
    .custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link {
        width: calc(50% - 5px);
        font-size: 1.25rem;
    }
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link i {
    transform: translate(0);
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:hover {
    background: hsl(var(--base)/0.05);
    border-color: hsl(var(--base-l-600));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+2) {
    color: hsl(var(--danger));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+2):hover {
    background: hsl(var(--danger)/0.05);
    border-color: hsl(var(--danger-l-600));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+3) {
    color: hsl(var(--warning));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+3):hover {
    background: hsl(var(--warning)/0.05);
    border-color: hsl(var(--warning-l-600));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+4) {
    color: hsl(var(--info));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+4):hover {
    background: hsl(var(--info)/0.05);
    border-color: hsl(var(--info-l-600));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+5) {
    color: hsl(var(--success));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+5):hover {
    background: hsl(var(--success)/0.05);
    border-color: hsl(var(--success-l-600));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+6) {
    color: hsl(var(--primary));
}

.custom--dropdown .dropdown-menu.shortcut-dropdown .shortcut-dropdown__link:nth-child(6n+6):hover {
    background: hsl(var(--primary)/0.05);
    border-color: hsl(var(--primary-l-600));
}

.custom--dropdown .dropdown-menu.notification-dropdown {
    width: 300px;
    padding: 18px;
}

@media screen and (max-width: 767px) {
    .custom--dropdown .dropdown-menu.notification-dropdown {
        width: 250px;
        padding: 13px;
    }
}

.custom--dropdown .dropdown-menu.notification-dropdown .dropdown-item {
    display: block;
    max-height: 350px;
    padding: 0;
    overflow: auto;
}

.custom--dropdown .dropdown-menu.notification-dropdown .dropdown-item::-webkit-scrollbar {
    width: 3px;
}

.custom--dropdown .dropdown-menu.notification-dropdown .dropdown-item::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom--dropdown .dropdown-menu.notification-dropdown .dropdown-item::-webkit-scrollbar-thumb {
    background: #c2c2c2;
}

.custom--dropdown .dropdown-menu.notification-dropdown .dropdown-item::-webkit-scrollbar-thumb:hover {
    background: #929292;
}

.custom--dropdown .dropdown-menu.notification-dropdown .dropdown-item a {
    display: block;
    padding: 10px 0;
    border-top: 1px solid hsl(var(--black)/0.05);
    white-space: normal;
}

.custom--dropdown .dropdown-menu.notification-dropdown .dropdown-item a:first-child {
    border-top: 0;
}

.custom--dropdown .dropdown-menu.notification-dropdown .notification-dropdown__title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.custom--dropdown .dropdown-menu.notification-dropdown .notification-dropdown__time {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--dark-l-300));
}

/* ================================= Form Css Start =========================== */
/* Form Label */
.form--label {
    width: max-content;
    max-width: 100%;
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
    color: hsl(var(--black)/0.7);
    font-weight: 600;
}

.form--label.required::after {
    content: "*";
    color: hsl(var(--danger));
    padding-left: 3px;
    font-size: 0.875rem;
    font-weight: 700;
}

.col-form--label {
    width: max-content;
    max-width: 100%;
    display: block;
    line-height: 1.1;
    color: hsl(var(--black)/0.7);
    font-weight: 600;
}

.col-form--label.required::after {
    content: "*";
    color: hsl(var(--danger));
    padding-left: 3px;
    font-size: 0.875rem;
    font-weight: 700;
}

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

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

select option {
    color: hsl(var(--black)/0.8);
}

/* Form Select End */
/* Form Control Start */
.form--control {
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 5px 15px;
    background-color: hsl(var(--white)) !important;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 5px;
    color: hsl(var(--black)/0.8);
    line-height: 1.9;
    font-size: 1rem;
    transition: 0.3s;
}

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

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

@media screen and (max-width: 479px) {
    .form--control {
        padding: 5px 10px;
    }
}

.form--control::placeholder {
    color: hsl(var(--black)/0.5);
}

.form--control:focus {
    border-color: hsl(var(--base-d-100));
    box-shadow: none;
}

.form--control:focus[type=file]::file-selector-button {
    border-right-color: hsl(var(--base));
}

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

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

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

.form--control[type=file] {
    line-height: 32px;
    padding: 0;
    position: relative;
}

.form--control[type=file]::file-selector-button {
    border: 1px solid transparent;
    border-right-color: hsl(var(--secondary-l-800));
    padding: 3px 25px;
    background-color: hsl(var(--base-l-900)) !important;
    transition: 0.2s linear;
    line-height: 32.4px;
    position: relative;
    color: hsl(var(--base-d-100)) !important;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .form--control[type=file]::file-selector-button {
        padding: 3px 15px;
    }
}

@media screen and (max-width: 479px) {
    .form--control[type=file]::file-selector-button {
        line-height: 28.6px;
    }
}

.form--control[type=color] {
    padding: 0;
    height: 42.4px;
}

@media screen and (max-width: 767px) {
    .form--control[type=color] {
        height: 38.59px;
    }
}

.form--control[type=color]::-webkit-color-swatch {
    border: 0 !important;
    border-radius: 5px;
    cursor: pointer;
}

.form--control--sm {
    font-size: 0.875rem;
    line-height: 1.9;
    padding: 3px 10px;
}

@media screen and (max-width: 767px) {
    .form--control--sm {
        padding: 3px 10px;
    }
}

.form--control--sm[type=file]::file-selector-button {
    padding: 3px 15px;
    line-height: 32.6px;
}

@media screen and (max-width: 767px) {
    .form--control--sm[type=file]::file-selector-button {
        line-height: 24.6px;
    }
}

.form--control.form-select {
    padding-right: 30px;
}

@media screen and (max-width: 767px) {
    .form--control.form-select {
        padding-right: 20px;
        background-position: right 0.35rem center;
        background-size: 14px 10px;
    }
}

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

textarea.form--control.form--control--sm {
    height: 100px;
}

/* Autofill Css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-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,
textarea:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: hsl(var(--black)) !important;
    caret-color: hsl(var(--black));
}

/* Autofill Css End */
/* input group */
.input--group {
    display: flex;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 5px;
    transition: 0.3s;
}

.input--group .input-group-text {
    background-color: hsl(var(--black)/0.06);
    border-radius: 0;
    color: hsl(var(--black));
    border-width: 0;
    transition: 0.3s;
}

.input--group .input-group-text i {
    transform: translateY(0);
}

.input--group .input-group-text:not(:first-child) {
    border-left-width: 1px;
}

@media screen and (max-width: 991px) {
    .input--group .input-group-text {
        font-size: 0.875rem;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.input--group .form--control {
    border-width: 0;
    border-radius: 0;
}

.input--group .form--control:not(:first-child) {
    border-left-width: 1px;
}

.input--group .form--control--sm {
    padding: 2px 10px;
}

.input--group .form--control[type=color] {
    height: 40.4px;
    width: 100px;
}

@media screen and (max-width: 767px) {
    .input--group .form--control[type=color] {
        height: 36.59px;
    }
}

.input--group .form--control[type=color]::-webkit-color-swatch {
    border-radius: 0;
}

.input--group .select2-container--default:not(:first-of-type) .select2-selection--single {
    border-left-width: 1px;
}

.input--group .select2-container--default .select2-selection--single {
    border-width: 0;
    border-radius: 0;
}

.input--group .btn {
    border: 0;
    border-radius: 2px;
}

.input--group .btn--sm {
    padding: 2px 12px;
}

.input--group .btn--icon {
    padding: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 479px) {
    .input--group .btn--icon {
        width: 36.59px;
        height: 36.59px;
    }
}

.input--group:focus-within {
    border-color: hsl(var(--base));
}

.input--group:focus-within .form--control {
    border-color: hsl(var(--base));
}

.input--group:focus-within .input-group-text {
    border-color: hsl(var(--base));
}

.input--group > *:first-child {
    border-radius: 4px 0 0 4px;
}

.input--group > *:first-child.select2-container--default .select2-selection--single {
    border-radius: 4px 0 0 4px;
}

.input--group > *:first-child.btn--sm::after {
    border-radius: 3px 0 0 3px;
}

.input--group > *:first-child.btn::after {
    border-radius: 4px 0 0 4px;
}

.input--group > *:first-child[type=color]::-webkit-color-swatch {
    border-radius: 4px 0 0 4px;
}

.input--group > *:last-child {
    border-radius: 0 4px 4px 0;
}

.input--group > *:last-child.select2-container--default .select2-selection--single {
    border-radius: 0 4px 4px 0;
}

.input--group > *:last-child.btn--sm::after {
    border-radius: 0 3px 3px 0;
}

.input--group > *:last-child.btn::after {
    border-radius: 0 4px 4px 0;
}

.input--group > *:last-child[type=color]::-webkit-color-swatch {
    border-radius: 0 4px 4px 0;
}

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

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

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

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

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

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

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

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

.form--check .form-check-input:checked::before {
    position: absolute;
    content: "\ea5e";
    font-family: "tabler-icons";
    color: hsl(var(--white));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form--check .form-check-label {
    user-select: none;
    font-weight: 600;
    width: calc(100% - 16px);
    padding-left: 5px;
    cursor: pointer;
}

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

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

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

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

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

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

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

.form--radio .form-check-label {
    user-select: none;
    font-weight: 600;
    width: calc(100% - 16px);
    padding-left: 5px;
    cursor: pointer;
}

/*  Custom Switch Design */
.form--switch {
    min-height: 30px;
    padding-left: 0;
    margin-bottom: 0;
}

.form--switch .form-check-input {
    background-image: none;
    position: relative;
    box-shadow: none;
    border: 0;
    border-radius: 3px;
    background-color: hsl(var(--black)/0.2) !important;
    padding: 10px !important;
    margin: 0;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

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

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

.form--switch .form-check-input::after {
    content: "\eb55";
    font-family: "tabler-icons";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 1.25rem;
    line-height: 1;
    color: hsl(var(--white));
    transition: 0.3s;
}

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

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

.form--switch .form-check-input:checked::after {
    content: "\ea5e";
    left: 8px;
    right: auto;
}

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

/*  Custom Switch End Design */
.select2-container {
    display: flex;
    min-width: 100% !important;
}

.select2-container.select2-container--open {
    /* min-width: auto !important; */
}

.select2-container .selection {
    display: block;
    width: 100%;
}

.select2-container--default .select2-selection--single {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid hsl(var(--secondary-l-800));
}

.select2-container--default .select2-selection--single:focus {
    border-color: hsl(var(--base));
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    display: flex;
    line-height: inherit;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered span {
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder img {
    display: none;
}

.select2-container--open .select2-dropdown {
    border: 1px solid hsl(var(--secondary-l-800));
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .select2-container--open .select2-dropdown {
        min-width: unset !important;
        font-size: 0.875rem;
    }
}

.select2-container--open .select2-dropdown.select2-dropdown--above {
    box-shadow: 0 -10px 30px -5px hsl(var(--secondary-l-800));
    display: flex;
    flex-direction: column;
}

.select2-container--open .select2-dropdown.select2-dropdown--above .select2-search--dropdown {
    order: 2;
}

.select2-container--open .select2-dropdown.select2-dropdown--above .select2-results {
    order: 1;
}

.select2-container--open .select2-dropdown.select2-dropdown--below {
    box-shadow: 0 10px 30px -5px hsl(var(--secondary-l-800));
}

.select2-container--default .select2-selection--multiple {
    border-color: hsl(var(--secondary-l-800));
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin: 0;
    background-color: hsl(var(--base-l-900));
    border-color: hsl(var(--base-l-500));
    color: hsl(var(--dark-l-300));
    font-weight: 600;
    padding: 0 10px;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: 0.3s;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice:hover {
    border-color: hsl(var(--base-l-100));
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 1.5625rem;
    font-weight: 400;
    color: hsl(var(--dark-l-500));
    margin-right: 5px;
    transition: 0.3s;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: hsl(var(--dark-l-200));
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: hsl(var(--base));
}

.select2-container .select2-search--inline .select2-search__field {
    line-height: 1.9;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid hsl(var(--secondary-l-800));
    box-shadow: 0 0;
    padding: 5px 15px;
    border-radius: 5px;
}

@media screen and (max-width: 767px) {
    .select2-container--default .select2-search--dropdown .select2-search__field {
        padding: 5px 15px;
    }
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: hsl(var(--base));
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 3px;
    height: 10px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #a8a8a85e;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background-color: #F1F1F1;
}

.select2-results__option {
    padding: 5px 15px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: hsl(var(--black)/0.05);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: hsl(var(--base));
}

.datepicker--cell.-current- {
    color: hsl(var(--base));
    font-weight: 700;
    background: hsl(var(--base-l-900));
}

.datepicker--cell.-range-from-,
.datepicker--cell.-range-to- {
    border-color: hsl(var(--base));
    background: hsl(var(--base-l-900));
}

.datepicker--cell.-in-range- {
    background: hsl(var(--base-l-900));
}

.datepicker--cell.-in-range-.-focus- {
    background: hsl(var(--base-l-800));
}

.datepicker--cell.-current-.-in-range- {
    color: hsl(var(--base));
}

.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
    color: hsl(var(--white));
    font-weight: 500;
    background: hsl(var(--base));
}

.datepicker--cell.-selected-.-focus- {
    background: hsl(var(--base-d-100));
}

/* ================================= Form Css End =========================== */
/* ================================= Modal Css Start =========================== */
.custom--modal {
    padding-right: 0 !important;
}

.custom--modal .modal-header,
.custom--modal .modal-footer {
    border-bottom: 1px solid hsl(var(--border-color));
    padding: 15px;
}

.custom--modal .modal-title {
    font-family: var(--body-font);
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--black)/0.6);
}

@media screen and (max-width: 991px) {
    .custom--modal .modal-title {
        font-size: 1rem;
    }
}

.custom--modal .modal-content {
    background-color: hsl(var(--white));
    border: 0;
    border-radius: 5px;
    color: hsl(var(--body-color));
    position: relative;
}

.custom--modal .modal-content .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.custom--modal .btn-close {
    flex-shrink: 0;
    transition: 0.2s linear;
}

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

.custom--modal .btn-close:hover {
    background-color: hsl(var(--black)/0.08);
    border-radius: 50%;
}

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

.custom--modal .modal-body.modal-alert {
    padding: 50px;
}

@media screen and (max-width: 991px) {
    .custom--modal .modal-body.modal-alert {
        padding: 30px;
    }
}

.custom--modal .modal-body .modal-title {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 13px;
    margin-bottom: 19px;
    position: relative;
}

@media screen and (max-width: 991px) {
    .custom--modal .modal-body .modal-title {
        font-size: 1.125rem;
    }
}

.custom--modal .modal-body .modal-title::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 100px;
    height: 1px;
    background: hsl(var(--base));
    transform: translateX(-50%);
}

.custom--modal .modal-body .modal-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 70px;
    height: 1px;
    background: hsl(var(--base));
    transform: translateX(-50%);
}

.custom--modal .modal-icon i {
    font-size: 2rem;
    color: hsl(var(--base));
    border: 3px solid hsl(var(--base));
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.custom--modal .modal-footer {
    border-top: 1px solid hsl(var(--border-color));
}

.custom--modal .modal-footer > * {
    margin: 0;
}

.custom--modal .modal-thumb {
    width: 180px;
    height: 180px;
    background: hsl(var(--base-l-900)/0.5);
    border: 1px solid hsl(var(--base-l-700));
    border-radius: 50%;
    padding: 30px;
    margin: 0 auto 25px;
}

@media screen and (max-width: 991px) {
    .custom--modal .modal-thumb {
        width: 140px;
        height: 140px;
    }
}

.custom--modal .modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-backdrop {
    background: hsl(var(--base-d-800)/0.3);
}

.modal-backdrop.show {
    opacity: 1;
}

/* ================================= Modal Css End =========================== */
/* ================================= Offcanvas Css Start =========================== */
.custom--offcanvas {
    background-color: hsl(var(--white));
    border: 0 !important;
    color: hsl(var(--body-color));
}

.custom--offcanvas .offcanvas-header {
    border-bottom: 1px solid hsl(var(--border-color));
    padding: 15px;
}

.custom--offcanvas .offcanvas-title {
    font-family: var(--body-font);
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--black)/0.6);
}

.custom--offcanvas .btn-close {
    transition: 0.2s linear;
}

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

.custom--offcanvas .btn-close:hover {
    background-color: hsl(var(--black)/0.08);
    border-radius: 50%;
}

.custom--offcanvas .offcanvas-body {
    padding: 20px 16px;
}

.offcanvas-backdrop {
    background: hsl(var(--base-d-800)/0.3);
}

.offcanvas-backdrop.show {
    opacity: 1;
}

/* ================================= Offcanvas Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.pagination {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 36px;
}

@media screen and (max-width: 1199px) {
    .pagination {
        margin-top: 28px;
    }
}

@media screen and (max-width: 991px) {
    .pagination {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .pagination {
        margin-top: 12px;
    }
}

.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 {
    background: hsl(var(--white)/0.1);
    border-color: hsl(var(--base)/0.3);
    margin: 0 5px;
    border-radius: 5px;
    height: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    padding: 0;
    color: hsl(var(--base));
}

.pagination .page-item .page-link .ti {
    transform: translateY(0%);
}

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

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

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

/* ================================= Table Css Start =========================== */
/* Table Content Css start */
.action-buttons {
    gap: 10px;
    justify-content: flex-end;
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.edit-btn {
    color: hsl(var(--info));
    background-color: hsl(var(--info)/0.08);
}

.delete-btn {
    color: hsl(var(--danger));
    background-color: hsl(var(--danger)/0.08);
}

/* Table Css Start */
.table-responsive {
    min-height: 340px;
}

.table-responsive.table-shadow {
    box-shadow: 0 10px 20px 0 hsl(var(--base)/0.05);
}

.table-responsive .table {
    min-width: max-content;
    box-shadow: 0 0;
}

.table {
    margin: 0;
    box-shadow: 0 10px 20px 0 hsl(var(--base)/0.05);
    border-collapse: separate;
    border-spacing: 0 0;
    border-radius: 6px;
    background-color: hsl(var(--white));
}

.table.table-borderless th:not(:first-child),
.table.table-borderless td:not(:first-child) {
    border-left: 0;
}

.table.table-borderless th:not(:last-child),
.table.table-borderless td:not(:last-child) {
    border-right: 0;
}

.table.table--striped > tbody > tr:nth-of-type(odd) > * {
    background: hsl(var(--base)/0.03);
}

.table.table-flush {
    box-shadow: 0 0;
}

.table.table-flush > * th,
.table.table-flush > * td {
    border-radius: 0 !important;
    padding-left: 0;
    padding-right: 0;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
}

.table.table-flush > * tr:first-child th,
.table.table-flush > * tr:first-child td {
    padding-top: 0;
    border-top-width: 0 !important;
}

.table.table-flush > * tr:last-child th,
.table.table-flush > * tr:last-child td {
    padding-bottom: 0;
    border-bottom-width: 0 !important;
}

.table thead tr th {
    text-align: center;
    padding: 9px 15px 6px;
    color: hsl(var(--black)/0.7);
    font-family: var(--heading-font);
    font-weight: 600;
    border: 1px solid hsl(var(--secondary-l-800));
    background-color: hsl(var(--base-two-l-900)/0.7);
    backdrop-filter: blur(10px);
}

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

.table thead tr th:first-child {
    text-align: left;
    border-radius: 6px 0 0 0;
}

.table thead tr th:last-child {
    border-radius: 0 6px 0 0;
    text-align: right;
}

.table thead tr th:only-child {
    border-top-left-radius: 6px !important;
    text-align: left;
}

.table > *:first-child tr:first-child th,
.table > *:first-child tr:first-child td {
    border-top-width: 1px;
    border-top-style: solid;
}

.table > *:first-child tr:first-child th:first-child,
.table > *:first-child tr:first-child td:first-child {
    border-radius: 6px 0 0 0;
}

.table > *:first-child tr:first-child th:last-child,
.table > *:first-child tr:first-child td:last-child {
    border-radius: 0 6px 0 0;
}

.table tbody {
    border: 0 !important;
}

.table tbody tr {
    border-bottom: 1px solid hsl(var(--secondary-l-800));
}

.table tbody tr:only-child td:first-child {
    border-bottom-left-radius: 6px !important;
}

.table tbody tr:only-child td:last-child {
    border-bottom-right-radius: 6px !important;
}

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

.table tbody tr:last-child td {
    border-bottom: 1px solid hsl(var(--secondary-l-800));
}

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

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

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

.table tbody tr td {
    text-align: center;
    vertical-align: middle;
    padding: 12px 15px;
    color: hsl(var(--black)/0.7);
    font-weight: 500;
    max-width: 200px;
    border-bottom: 1px solid;
    border-right: 1px solid;
    border-color: hsl(var(--secondary-l-800));
}

.table tbody tr td::before {
    content: attr(data-label);
    font-family: var(--heading-font);
    font-size: 1rem;
    color: hsl(var(--black));
    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(--secondary-l-800));
}

.table tbody tr td:last-child {
    text-align: right;
    border-right: 1px solid hsl(var(--secondary-l-800));
}

.table tbody tr td.no-data-table {
    border-radius: 0 0 6px 6px !important;
    justify-content: center;
}

.table tbody tr td.no-data-table::before {
    display: none;
}

.table > *:only-child tr:only-child td:only-child {
    border-radius: 6px !important;
}

@media screen and (max-width: 479px) {
    .table--responsive--sm thead {
        display: none;
    }

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

    .table--responsive--sm tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

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

    .table--responsive--sm tbody tr td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.04) !important;
        max-width: unset;
    }

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

    .table--responsive--sm tbody tr td:last-child.no-data-table {
        border-radius: 6px !important;
    }

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

    .table--responsive--sm tbody tr td:first-child.no-data-table {
        border-radius: 6px !important;
    }

    .table--responsive--sm tbody tr td::before {
        display: block;
        font-size: 1rem;
    }

    .table--responsive--sm tbody tr td.no-data-table {
        border-radius: 6px !important;
    }

    .table--responsive--sm tr:first-child {
        border-radius: 6px 6px 0 0;
        overflow: hidden;
    }

    .table--responsive--sm tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800));
        border-radius: 6px 6px 0 0 !important;
    }

    .table--responsive--sm tr:last-child {
        border-radius: 0 0 6px 6px;
        overflow: hidden;
    }

    .table--responsive--sm tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)) !important;
        border-radius: 0 0 6px 6px !important;
    }

    .table--responsive--sm td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--secondary-l-800)) !important;
        border-right: 1px solid hsl(var(--secondary-l-800)) !important;
    }
}

@media screen and (max-width: 767px) {
    .table--responsive--sm table tbody {
        border-top: 1px solid hsl(var(--secondary-l-800)) !important;
    }

    .table--responsive--sm table tbody tr td {
        border: 0;
    }

    .table--responsive--sm td {
        border-bottom: 1px solid hsl(var(--black)/0.04) !important;
    }
}

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

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

    .table--responsive--md tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

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

    .table--responsive--md tbody tr td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.04) !important;
        max-width: unset;
    }

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

    .table--responsive--md tbody tr td:last-child.no-data-table {
        border-radius: 6px !important;
    }

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

    .table--responsive--md tbody tr td:first-child.no-data-table {
        border-radius: 6px !important;
    }

    .table--responsive--md tbody tr td::before {
        display: block;
        font-size: 1rem;
    }

    .table--responsive--md tbody tr td.no-data-table {
        border-radius: 6px !important;
    }

    .table--responsive--md tr:first-child {
        border-radius: 6px 6px 0 0;
        overflow: hidden;
    }

    .table--responsive--md tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800));
        border-radius: 6px 6px 0 0 !important;
    }

    .table--responsive--md tr:last-child {
        border-radius: 0 0 6px 6px;
        overflow: hidden;
    }

    .table--responsive--md tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)) !important;
        border-radius: 0 0 6px 6px !important;
    }

    .table--responsive--md td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--secondary-l-800)) !important;
        border-right: 1px solid hsl(var(--secondary-l-800)) !important;
    }
}

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

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

    .table--responsive--lg tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

    .table--responsive--lg tbody tr:nth-child(even) {
        background-color: hsl(var(--black)/0.02);
    }

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

    .table--responsive--lg tbody tr td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.04) !important;
        max-width: unset;
    }

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

    .table--responsive--lg tbody tr td:last-child.no-data-table {
        border-radius: 6px !important;
    }

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

    .table--responsive--lg tbody tr td:first-child.no-data-table {
        border-radius: 6px !important;
    }

    .table--responsive--lg tbody tr td::before {
        display: block;
        font-size: 1rem;
    }

    .table--responsive--lg tbody tr td.no-data-table {
        border-radius: 6px !important;
    }

    .table--responsive--lg tr:first-child {
        border-radius: 6px 6px 0 0;
        overflow: hidden;
    }

    .table--responsive--lg tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800));
        border-radius: 6px 6px 0 0 !important;
    }

    .table--responsive--lg tr:last-child {
        border-radius: 0 0 6px 6px;
        overflow: hidden;
    }

    .table--responsive--lg tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)) !important;
        border-radius: 0 0 6px 6px !important;
    }

    .table--responsive--lg td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--secondary-l-800)) !important;
        border-right: 1px solid hsl(var(--secondary-l-800)) !important;
    }
}

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

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

    .table--responsive--xl tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

    .table--responsive--xl tbody tr td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.04) !important;
        max-width: unset;
    }

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

    .table--responsive--xl tbody tr td:last-child.no-data-table {
        border-radius: 6px !important;
    }

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

    .table--responsive--xl tbody tr td:first-child.no-data-table {
        border-radius: 6px !important;
    }

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

    .table--responsive--xl tbody tr td.no-data-table {
        border-radius: 6px !important;
    }

    .table--responsive--xl tr:first-child {
        border-radius: 6px 6px 0 0;
        overflow: hidden;
    }

    .table--responsive--xl tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800));
        border-radius: 6px 6px 0 0 !important;
    }

    .table--responsive--xl tr:last-child {
        border-radius: 0 0 6px 6px;
        overflow: hidden;
    }

    .table--responsive--xl tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)) !important;
        border-radius: 0 0 6px 6px !important;
    }

    .table--responsive--xl td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--secondary-l-800)) !important;
        border-right: 1px solid hsl(var(--secondary-l-800)) !important;
    }
}

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

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

    .table--responsive--xxl tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

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

    .table--responsive--xxl tbody tr td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.04) !important;
        max-width: unset;
    }

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

    .table--responsive--xxl tbody tr td:last-child.no-data-table {
        border-radius: 6px !important;
    }

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

    .table--responsive--xxl tbody tr td:first-child.no-data-table {
        border-radius: 6px !important;
    }

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

    .table--responsive--xxl tbody tr td.no-data-table {
        border-radius: 6px !important;
    }

    .table--responsive--xxl tr:first-child {
        border-radius: 6px 6px 0 0;
        overflow: hidden;
    }

    .table--responsive--xxl tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800));
        border-radius: 6px 6px 0 0 !important;
    }

    .table--responsive--xxl tr:last-child {
        border-radius: 0 0 6px 6px;
        overflow: hidden;
    }

    .table--responsive--xxl tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)) !important;
        border-radius: 0 0 6px 6px !important;
    }

    .table--responsive--xxl td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--secondary-l-800)) !important;
        border-right: 1px solid hsl(var(--secondary-l-800)) !important;
    }
}

@media screen and (max-width: 1499px) {
    .table--responsive--xxxl thead {
        display: none;
    }

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

    .table--responsive--xxxl tbody tr:only-child td:first-child {
        border-bottom-left-radius: 0 !important;
    }

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

    .table--responsive--xxxl tbody tr td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        text-align: right;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid hsl(var(--black)/0.04) !important;
        max-width: unset;
    }

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

    .table--responsive--xxxl tbody tr td:last-child.no-data-table {
        border-radius: 6px !important;
    }

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

    .table--responsive--xxxl tbody tr td:first-child.no-data-table {
        border-radius: 6px !important;
    }

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

    .table--responsive--xxxl tbody tr td.no-data-table {
        border-radius: 6px !important;
    }

    .table--responsive--xxxl tr:first-child {
        border-radius: 6px 6px 0 0;
        overflow: hidden;
    }

    .table--responsive--xxxl tr:first-child td:first-child {
        border-top: 1px solid hsl(var(--secondary-l-800));
        border-radius: 6px 6px 0 0 !important;
    }

    .table--responsive--xxxl tr:last-child {
        border-radius: 0 0 6px 6px;
        overflow: hidden;
    }

    .table--responsive--xxxl tr:last-child td:last-child {
        border-bottom: 1px solid hsl(var(--secondary-l-800)) !important;
        border-radius: 0 0 6px 6px !important;
    }

    .table--responsive--xxxl td {
        border-radius: 0 !important;
        border-left: 1px solid hsl(var(--secondary-l-800)) !important;
        border-right: 1px solid hsl(var(--secondary-l-800)) !important;
    }
}

/* ================================= Table Css End =========================== */
/* ================================= Tab Css Start =========================== */
.custom--tab {
    border: 0;
    border-bottom: 1px solid hsl(var(--black)/0.05);
    padding-bottom: 10px;
    margin-bottom: 30px;
    gap: 10px;
}

@media screen and (max-width: 991px) {
    .custom--tab {
        margin-bottom: 15px;
    }
}

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

.custom--tab .nav-link {
    color: hsl(var(--black));
    padding: 8px 25px !important;
    background-color: transparent !important;
    border-radius: 5px;
    transition: 0.4s;
    border: 1px solid hsl(var(--black)/0.08) !important;
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .custom--tab .nav-link {
        padding: 5px 15px !important;
        font-size: 0.875rem;
    }
}

.custom--tab .nav-link.active {
    color: hsl(var(--white));
    background-color: hsl(var(--base-d-200)) !important;
    border: 1px solid transparent !important;
}

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

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

/* ================================= Tab Css End =========================== */
/* ================================= Badge Css Start =========================== */
.badge {
    font-family: var(--body-font) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    border: 1px solid;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.badge--base {
    background-color: hsl(var(--base-l-900)) !important;
    color: hsl(var(--base-d-300)) !important;
    border-color: hsl(var(--base)/0.2);
}

.badge--base-two {
    background-color: hsl(var(--base-two-l-900)) !important;
    color: hsl(var(--base-two-d-200)) !important;
    border-color: hsl(var(--base-two)/0.35);
}

.badge--primary {
    background-color: hsl(var(--primary-l-900)) !important;
    color: hsl(var(--primary)) !important;
    border-color: hsl(var(--primary)/0.2);
}

.badge--secondary {
    background-color: hsl(var(--secondary-l-900)) !important;
    color: hsl(var(--secondary)) !important;
    border-color: hsl(var(--secondary)/0.2);
}

.badge--success {
    background-color: hsl(var(--success-l-900)) !important;
    color: hsl(var(--success-d-100)) !important;
    border-color: hsl(var(--success)/0.3);
}

.badge--danger {
    background-color: hsl(var(--danger-l-900)) !important;
    color: hsl(var(--danger)) !important;
    border-color: hsl(var(--danger)/0.2);
}

.badge--warning {
    background-color: hsl(var(--warning-l-800)) !important;
    color: hsl(var(--warning-d-200)) !important;
    border-color: hsl(var(--warning)/0.2);
}

.badge--info {
    background-color: hsl(var(--info-l-900)) !important;
    color: hsl(var(--info)) !important;
    border-color: hsl(var(--info)/0.2);
}

.badge--dark {
    background-color: hsl(var(--dark-l-900)) !important;
    color: hsl(var(--dark)) !important;
    border-color: hsl(var(--dark)/0.2);
}

.badge--light {
    background-color: hsl(var(--white)) !important;
    color: hsl(var(--dark)) !important;
    border-color: hsl(var(--dark)/0.1);
}

/* ================================= Badge Css End =========================== */
/* ====================================== Alert Css Start =============================== */
.alert {
    margin-bottom: 0;
    background-color: hsl(var(--white));
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 5px;
}

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

@media screen and (max-width: 575px) {
    .alert {
        padding: 10px 15px;
    }
}

.alert__icon {
    font-size: 1.125rem;
    line-height: 1;
}

.alert__content {
    width: calc(100% - 24px);
    padding-left: 10px;
}

.alert__title {
    color: hsl(var(--base-two)/0.8);
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 6px;
}

.alert__desc {
    color: hsl(var(--base-two)/0.5);
    display: block;
    line-height: 1.375;
}

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

.alert__link {
    position: relative;
}

.alert__link:hover::before {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.alert__link::before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: hsl(var(--base));
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease-in-out;
}

.alert--base {
    border-color: hsl(var(--base)/0.2);
    background: hsl(var(--base)/0.05);
    color: hsl(var(--base-d-200));
}

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

.alert--base-two {
    border-color: hsl(var(--base-two)/0.7);
    background: hsl(var(--base-two)/0.1);
    color: hsl(var(--base-two-d-500));
}

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

.alert--primary {
    border-color: hsl(var(--primary)/0.15);
    background: hsl(var(--primary)/0.05);
    color: hsl(var(--primary));
}

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

.alert--success {
    border-color: hsl(var(--success)/0.15);
    background: hsl(var(--success)/0.05);
    color: hsl(var(--success));
}

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

.alert--info {
    border-color: hsl(var(--info)/0.15);
    background: hsl(var(--info)/0.05);
    color: hsl(var(--info));
}

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

.alert--danger {
    border-color: hsl(var(--danger)/0.15);
    background: hsl(var(--danger)/0.05);
    color: hsl(var(--danger));
}

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

.alert--warning {
    border-color: hsl(var(--warning)/0.15);
    background: hsl(var(--warning)/0.05);
    color: hsl(var(--warning));
}

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

.alert--secondary {
    border-color: hsl(var(--secondary)/0.15);
    background: hsl(var(--secondary)/0.05);
    color: hsl(var(--secondary));
}

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

.alert--dark {
    border-color: hsl(var(--dark)/0.15);
    background: hsl(var(--dark)/0.05);
    color: hsl(var(--dark));
}

.alert--dark .alert__icon {
    color: hsl(var(--dark));
}

/* ====================================== Alert Css End =============================== */
.custom--progress {
    height: 8px;
    overflow: visible;
}

.custom--progress .progress-bar {
    background: linear-gradient(to right, hsl(var(--base)), hsl(var(--base-two)));
    border-radius: 4px;
    position: relative;
    overflow: visible;
}

.custom--progress .progress-bar .progress-txt {
    position: absolute;
    left: 100%;
    bottom: calc(100% + 2px);
    background: hsl(var(--base));
    padding: 3px 5px;
    line-height: 1;
    border-radius: 2px;
    transform: translateX(-50%);
    z-index: 2;
}

.custom--progress .progress-bar .progress-txt::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: hsl(var(--base));
    transform: rotate(45deg) translateX(-50%);
    z-index: -1;
}

.list--group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 5px;
    border-width: 0;
    border-style: solid;
}

.list--group-dashed {
    border-style: dashed;
}

.list--group.list--group-flush {
    border-radius: 0;
}

.list--group.list--group-flush > .list-group-item {
    border-width: 0 0 1px;
}

.list--group.list--group-flush > .list-group-item:last-child {
    border-bottom-width: 0;
}

.list--group.list-group-horizontal {
    flex-direction: row;
}

.list--group.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: inherit;
    border-top-right-radius: 0;
}

.list--group.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: inherit;
    border-bottom-left-radius: 0;
}

.list--group.list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
}

@media (min-width: 480px) {
    .list--group.list-group-horizontal-xsm {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-xsm > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-xsm > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-xsm > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 576px) {
    .list--group.list-group-horizontal-sm {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-sm > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 768px) {
    .list--group.list-group-horizontal-md {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-md > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 992px) {
    .list--group.list-group-horizontal-lg {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-lg > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 1200px) {
    .list--group.list-group-horizontal-xl {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-xl > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

@media (min-width: 1400px) {
    .list--group.list-group-horizontal-xxl {
        flex-direction: row;
    }

    .list--group.list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
        border-bottom-left-radius: inherit;
        border-top-right-radius: 0;
    }

    .list--group.list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
        border-top-right-radius: inherit;
        border-bottom-left-radius: 0;
    }

    .list--group.list-group-horizontal-xxl > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }
}

.list--group .list-group-item {
    position: relative;
    display: block;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 1rem;
    border: 1px hsl(var(--black)/0.1);
    transition: 0.3s;
}

.list--group .list-group-item + .list-group-item {
    border-top-width: 0;
}

.list--group .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.list--group .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}

.list--group .list-group-item.active {
    z-index: 2;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.list--group .list-group-item.disabled,
.list--group .list-group-item:disabled {
    color: hsl(var(--black)/0.5);
    pointer-events: none;
    background-color: hsl(var(--black)/0.02);
}

.list--group .list-group-item-action:focus,
.list--group .list-group-item-action:hover {
    z-index: 1;
    background-color: hsl(var(--black)/0.05);
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: hsl(var(--dark));
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-inner,
.bs-tooltip-top .tooltip-inner {
    border-bottom: 2px solid hsl(var(--dark));
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: hsl(var(--dark));
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-inner,
.bs-tooltip-bottom .tooltip-inner {
    border-top: 2px solid hsl(var(--dark));
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: hsl(var(--dark));
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-inner,
.bs-tooltip-left .tooltip-inner {
    border-right: 2px solid hsl(var(--dark));
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: hsl(var(--dark));
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-inner,
.bs-tooltip-right .tooltip-inner {
    border-left: 2px solid hsl(var(--dark));
}

.tooltip.show {
    opacity: 1;
}

.tooltip-lg .tooltip-inner {
    max-width: 500px;
}

.tooltip-sm .tooltip-inner {
    padding: 10px;
    font-size: 0.875rem;
}

.tooltip-inner {
    max-width: 250px;
    background: hsl(var(--dark-l-200));
    color: hsl(var(--white));
    box-shadow: 0 10px 20px 0 hsl(var(--black)/0.05);
    border: 1px solid hsl(var(--black)/0.05);
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* =========================== Carousel Css Start ============================= */
.custom--carousel .carousel-inner {
    border-radius: 5px;
}

.custom--carousel .carousel-control-prev {
    top: 50%;
    bottom: auto;
    left: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transform: translateY(-50%);
    background: hsl(Var(--base));
    border-radius: 5px;
    opacity: 0.7;
    transition: 0.3s;
}

.custom--carousel .carousel-control-prev i {
    transform: translateY(0);
}

.custom--carousel .carousel-control-prev:hover {
    opacity: 1;
}

.custom--carousel .carousel-control-next {
    top: 50%;
    bottom: auto;
    right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transform: translateY(-50%);
    background: hsl(Var(--base));
    border-radius: 5px;
    opacity: 0.7;
    transition: 0.3s;
}

.custom--carousel .carousel-control-next i {
    transform: translateY(0);
}

.custom--carousel .carousel-control-next:hover {
    opacity: 1;
}

/* =========================== Carousel Css End ============================= */

/* ============= Header Start Here ======================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: hsl(var(--white));
    border-bottom: 1px solid hsl(var(--secondary-l-800));
    z-index: 111;
}

@media screen and (max-width: 991px) {
    .header {
        height: 60px;
    }
}

.header__container {
    display: flex;
    height: 100%;
}

.header__logo {
    width: 300px;
    height: 100%;
    border-right: 1px solid hsl(var(--secondary-l-800));
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .header__logo {
        width: 60px;
        padding: 15px;
    }
}

.header__logo__big {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .header__logo__big {
        width: 0;
    }
}

.header__logo__small {
    width: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .header__logo__small {
        width: 100%;
    }
}

.header__logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.header__nav {
    width: calc(100% - 300px);
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    padding: 0 15px;
    transition: 0.3s;
}

@media screen and (max-width: 991px) {
    .header__nav {
        width: calc(100% - 60px);
        gap: 10px;
        padding: 0 10px;
    }

    .header__nav .header__nav__left {
        gap: 10px;
    }

    .header__nav .header__nav__right {
        gap: 10px;
    }

    .header__nav .header__nav__btn {
        width: 35px;
        height: 35px;
        line-height: 33px;
    }

    .header__nav .header__nav__btn .badge {
        padding: 1px 4px;
    }

    .header__nav .header__nav__admin button {
        width: 40px;
        height: 40px;
    }
}

.header__nav__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__nav__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header__nav__btn {
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 5px;
    color: hsl(var(--base-d-100));
    transition: 0.3s;
    position: relative;
}

.header__nav__btn .badge {
    position: absolute;
    top: -5px;
    right: 0;
    transform: translateX(50%);
    padding: 3px 5px;
    background: hsl(var(--danger));
    border-color: hsl(var(--danger));
}

.header__nav__btn:hover,
.header__nav__btn:focus {
    color: hsl(var(--white));
    background: hsl(var(--base));
    border-color: hsl(var(--base));
}

.header__nav__admin button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.header__nav__admin button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 20px;
    line-height: 2;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 5px;
    transition: 0.3s;
    position: relative;
}

@media screen and (max-width: 991px) {
    .header__search {
        padding: 3px 10px;
    }
}

.header__search:focus-within {
    border-color: hsl(var(--base));
}

.header__search__icon {
    display: block;
    font-size: 1.125rem;
    height: 27px;
}

.header__search__icon i {
    transform: translate(2%);
}

.header__search__input {
    border: 0;
    outline: none;
    width: 300px;
}

@media screen and (max-width: 1199px) {
    .header__search__input {
        width: 200px;
    }
}


.header__search .search-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 7px;
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, .12);
    max-height: 300px;
    overflow: auto;
    list-style: none;
    padding-left: 0;
    margin-top: 1px;
    margin-bottom: 0;
    z-index: 1;
}

.header__search .search-list::-webkit-scrollbar {
    width: 3px;
}

.header__search .search-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.header__search .search-list::-webkit-scrollbar-thumb {
    background: #888;
}

.header__search .search-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.header__search .search-list li {
    padding: 10px 20px;
    transition: .3s;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.header__search .search-list .active {
    background: rgba(105, 108, 255, .16);
}

.header.nav-collapsed .header__logo {
    width: 70px;
    padding: 15px 20px;
}

.header.nav-collapsed .header__logo__big {
    width: 0;
}

.header.nav-collapsed .header__logo__small {
    width: 100%;
}

.header.nav-collapsed .header__nav {
    width: calc(100% - 70px);
}

/* ========================= Desktop Device Start ========================= */
/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
/* ================================= Header Css End =========================== */
.main-sidebar {
    position: fixed;
    top: 70px;
    bottom: 0;
    left: 0;
    width: 300px;
    background: hsl(var(--white));
    padding: 20px;
    border-right: 1px solid hsl(var(--secondary-l-800));
    transition: 0.3s;
    z-index: 999;
}

@media screen and (max-width: 1499px) {
    .main-sidebar {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 991px) {
    .main-sidebar {
        top: 60px;
        padding: 15px;
    }
}

.main-sidebar.expanded {
    transform: translateX(0);
}

.main-sidebar.collapsed {
    width: 70px;
    padding: 20px 10px;
}

.main-sidebar.collapsed .sidebar-item .sidebar-link {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.main-sidebar.collapsed .sidebar-item .sidebar-link.show + .sidebar-dropdown-menu {
    display: none !important;
}

.main-sidebar.collapsed .sidebar-item .sidebar-link.has-sub::after {
    display: none;
}

.main-sidebar.collapsed .sidebar-item .sidebar-link .nav-icon {
    width: auto;
    margin-right: 0;
}

.main-sidebar.collapsed .sidebar-item .sidebar-link .sidebar-txt {
    display: none;
}

.main-sidebar .header__search {
    padding: 3px 10px;
    margin-bottom: 15px;
}

.main-sidebar .header__search input {
    width: 100%;
}

.main-sidebar .sidebar-menu {
    overflow: scroll;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .main-sidebar .sidebar-menu {
        height: calc(100% - 55px);
    }
}

.main-sidebar .sidebar-menu::-webkit-scrollbar {
    width: 3px;
    height: 0;
}

.main-sidebar .sidebar-menu::-webkit-scrollbar-track {
    background: transparent;
}

.main-sidebar .sidebar-menu::-webkit-scrollbar-thumb {
    background: hsl(var(--black)/0.2);
    border-radius: 2px;
}

.main-sidebar .sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--black)/0.3);
}

.main-sidebar .sidebar-item {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.main-sidebar .sidebar-item:nth-child(7n+1) .nav-icon {
    color: hsl(var(--base));
}

.main-sidebar .sidebar-item:nth-child(7n+2) .nav-icon {
    color: hsl(var(--base-two-d-500));
}

.main-sidebar .sidebar-item:nth-child(7n+3) .nav-icon {
    color: hsl(var(--primary-l-200));
}

.main-sidebar .sidebar-item:nth-child(7n+4) .nav-icon {
    color: hsl(var(--success-l-200));
}

.main-sidebar .sidebar-item:nth-child(7n+5) .nav-icon {
    color: hsl(var(--danger));
}

.main-sidebar .sidebar-item:nth-child(7n+6) .nav-icon {
    color: hsl(var(--warning));
}

.main-sidebar .sidebar-item:nth-child(7n+7) .nav-icon {
    color: hsl(var(--info-l-200));
}

.main-sidebar .sidebar-item:last-child {
    margin-bottom: 0;
}

.main-sidebar .sidebar-item .sidebar-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 7px;
    white-space: nowrap;
    position: relative;
    color: hsl(var(--black)/0.6);
    transition: 0.3s;
}

.main-sidebar .sidebar-item .sidebar-link.has-sub {
    position: relative;
}

.main-sidebar .sidebar-item .sidebar-link.has-sub::after {
    content: "\ea5f";
    font-family: "tabler-icons";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    font-size: 0.9375rem;
    line-height: 1;
    transition: 0.3s;
    opacity: 0.8;
}

.main-sidebar .sidebar-item .sidebar-link.show {
    background: hsl(var(--base-l-900));
    color: hsl(var(--base));
}

.main-sidebar .sidebar-item .sidebar-link.show::after {
    transform: translateY(-50%) rotate(-180deg);
}

.main-sidebar .sidebar-item .sidebar-link.show .nav-icon {
    color: hsl(var(--base));
}

.main-sidebar .sidebar-item .sidebar-link.show:hover {
    background: hsl(var(--base-l-900));
    color: hsl(var(--base));
}

.main-sidebar .sidebar-item .sidebar-link.active {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

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

.main-sidebar .sidebar-item .sidebar-link.active:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.main-sidebar .sidebar-item .sidebar-link .nav-icon {
    width: 20px;
    margin-right: 10px;
    transition: 0.3s;
    position: relative;
}

.main-sidebar .sidebar-item .sidebar-link .nav-icon .badge {
    position: absolute;
    left: 0;
}

.main-sidebar .sidebar-item .sidebar-link .sidebar-txt {
    width: calc(100% - 30px);
}

.main-sidebar .sidebar-item .sidebar-link:hover,
.main-sidebar .sidebar-item .sidebar-link:focus {
    background: hsl(var(--black)/0.02);
    color: hsl(var(--black));
}

.main-sidebar .sidebar-item > .sidebar-dropdown-menu {
    margin-left: 10px;
}

.main-sidebar .sidebar-item .sidebar-dropdown-menu {
    display: none;
    border-left: 1px dashed hsl(var(--base-l-500));
    padding-left: 10px;
}

.main-sidebar .sidebar-item .sidebar-dropdown-item .sidebar-link {
    justify-content: space-between;
    background: transparent;
    color: hsl(var(--black)/0.7);
    padding: 10px 0;
}

.main-sidebar .sidebar-item .sidebar-dropdown-item .sidebar-link.active {
    color: hsl(var(--base));
    font-weight: 600;
}

.main-sidebar .sidebar-item .sidebar-dropdown-item .sidebar-link.active::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 6px);
    border-top: 4px solid hsl(var(--base));
    border-right: 4px solid hsl(var(--base));
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    transform: translateY(-50%) rotate(45deg);
}

.main-sidebar .sidebar-item .sidebar-dropdown-item .sidebar-link .badge {
    padding: 3px 6px;
    margin-right: 35px;
    font-size: 0.75rem;
}

.main-sidebar .sidebar-item .sidebar-dropdown-item .sidebar-link:hover,
.main-sidebar .sidebar-item .sidebar-dropdown-item .sidebar-link:focus {
    background: transparent;
    color: hsl(var(--base));
}

.main-sidebar .sidebar-item .sidebar-dropdown-item .sidebar-link.show,
.main-sidebar .sidebar-item .sidebar-dropdown-item .sidebar-link.active {
    background: transparent;
    color: hsl(var(--base));
    font-weight: 700;
}

.main-content {
    padding: 30px;
    margin-top: 70px;
    margin-left: 300px;
    transition: 0.3s;
}

@media screen and (max-width: 1499px) {
    .main-content {
        padding: 25px;
        margin-left: 0;
    }
}

@media screen and (max-width: 1199px) {
    .main-content {
        padding: 15px;
    }
}

@media screen and (max-width: 991px) {
    .main-content {
        padding: 15px;
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .main-content {
        padding: 10px;
    }
}

.main-content .dashboard-top-bar {
    background: hsl(var(--white)) linear-gradient(45deg, hsl(var(--base-l-900)/0.1), hsl(var(--base-l-900)/0.1));
    box-shadow: 0 10px 20px 0 hsl(var(--base)/0.05);
    border: 1px solid hsl(var(--base-l-800));
    border-radius: 6px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-top-bar {
        padding: 10px;
    }
}

@media screen and (max-width: 767px) {
    .main-content .dashboard-top-bar {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}

.main-content .dashboard-top-bar__title {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 0;
    color: hsl(var(--base-d-100));
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-top-bar__title {
        font-size: 1.125rem;
        padding: 5px 0;
        text-align: center;
    }
}

.main-content .dashboard-top-bar__action {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media screen and (max-width: 767px) {
    .main-content .dashboard-top-bar__action {
        gap: 5px;
        justify-content: center;
    }
}

.main-content .dashboard-top-bar__action .form--control {
    font-weight: 600;
}

.main-content .dashboard-top-bar__action .input--group {
    min-width: 230px;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-top-bar__action .input--group {
        min-width: 210px;
    }
}

.main-content .dashboard-top-bar__action:empty {
    display: none;
}

.main-content .dashboard-widget-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    background: hsl(var(--secondary-l-900));
    box-shadow: 0 10px 20px 0 hsl(var(--base)/0.05);
    border-radius: 6px;
    overflow: hidden;
}

.main-content .dashboard-widget-1 {
    height: 100%;
    background-color: hsl(var(--white));
    box-shadow: 0 10px 20px 0 hsl(var(--base)/0.05);
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-1 {
        padding: 10px;
        gap: 10px;
    }
}

.main-content .dashboard-widget-1__success::after {
    background: linear-gradient(45deg, hsl(var(--success-d-400)), hsl(var(--success-d-100)));
}

.main-content .dashboard-widget-1__success .dashboard-widget-1__icon {
    background: hsl(var(--success-l-900));
    color: hsl(var(--success));
}

.main-content .dashboard-widget-1__success:hover {
    border-color: hsl(var(--success)/0.5) !important;
}

.main-content .dashboard-widget-1__danger::after {
    background: linear-gradient(45deg, hsl(var(--danger-d-400)), hsl(var(--danger-d-100)));
}

.main-content .dashboard-widget-1__danger .dashboard-widget-1__icon {
    background: hsl(var(--danger-l-900));
    color: hsl(var(--danger));
}

.main-content .dashboard-widget-1__danger:hover {
    border-color: hsl(var(--danger)/0.5) !important;
}

.main-content .dashboard-widget-1__warning::after {
    background: linear-gradient(45deg, hsl(var(--warning-d-400)), hsl(var(--warning-d-100)));
}

.main-content .dashboard-widget-1__warning .dashboard-widget-1__icon {
    background: hsl(var(--warning-l-900));
    color: hsl(var(--warning));
}

.main-content .dashboard-widget-1__warning:hover {
    border-color: hsl(var(--warning)/0.5) !important;
}

.main-content .dashboard-widget-1__info::after {
    background: linear-gradient(45deg, hsl(var(--info-d-400)), hsl(var(--info-d-100)));
}

.main-content .dashboard-widget-1__info .dashboard-widget-1__icon {
    background: hsl(var(--info-l-900));
    color: hsl(var(--info));
}

.main-content .dashboard-widget-1__info:hover {
    border-color: hsl(var(--info)/0.5) !important;
}

.main-content .dashboard-widget-1__primary::after {
    background: linear-gradient(45deg, hsl(var(--primary-d-400)), hsl(var(--primary-d-100)));
}

.main-content .dashboard-widget-1__primary .dashboard-widget-1__icon {
    background: hsl(var(--primary-l-900));
    color: hsl(var(--primary));
}

.main-content .dashboard-widget-1__primary:hover {
    border-color: hsl(var(--primary)/0.5) !important;
}

.main-content .dashboard-widget-1__dark::after {
    background: linear-gradient(45deg, hsl(var(--dark-d-400)), hsl(var(--dark-d-100)));
}

.main-content .dashboard-widget-1__dark .dashboard-widget-1__icon {
    background: hsl(var(--dark-l-900));
    color: hsl(var(--dark));
}

.main-content .dashboard-widget-1__dark:hover {
    border-color: hsl(var(--dark)/0.5) !important;
}

.main-content .dashboard-widget-1__icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.875rem;
    border: 1px solid hsl(var(--base)/0.1);
    border-radius: 5px;
    background: hsl(var(--base-l-900));
    color: hsl(var(--base));
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-1__icon {
        width: 60px;
        height: 60px;
        font-size: 1.5625rem;
    }
}

.main-content .dashboard-widget-1__icon i {
    transform: translate(0);
}

.main-content .dashboard-widget-1__content {
    width: calc(100% - 85px);
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-1__content {
        width: calc(100% - 70px);
    }
}

.main-content .dashboard-widget-1__number {
    font-size: 1.375rem;
    line-height: 1;
    font-weight: 700;
    margin-top: -4px;
    margin-bottom: 11px;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-1__number {
        font-size: 1.375rem;
        margin-bottom: 6px;
    }
}

.main-content .dashboard-widget-1__txt {
    font-size: 0.9375rem;
    font-weight: 400;
    color: hsl(var(--dark-l-300));
    margin-bottom: -8px;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-1__txt {
        font-size: 0.875rem;
    }
}

.main-content .dashboard-widget-1:hover {
    border-color: hsl(var(--base)/0.5);
}

.main-content .dashboard-widget-2 {
    width: calc(25% - 1px);
    flex-grow: 1;
    background: hsl(var(--white));
    padding: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .main-content .dashboard-widget-2 {
        width: calc(50% - 1px);
        padding: 15px;
    }
}

@media screen and (max-width: 479px) {
    .main-content .dashboard-widget-2 {
        width: 100%;
    }
}

.main-content .dashboard-widget-2__success .dashboard-widget-2__icon {
    background: hsl(var(--success-l-900));
    color: hsl(var(--success));
}

.main-content .dashboard-widget-2__danger .dashboard-widget-2__icon {
    background: hsl(var(--danger-l-900));
    color: hsl(var(--danger));
}

.main-content .dashboard-widget-2__warning .dashboard-widget-2__icon {
    background: hsl(var(--warning-l-900));
    color: hsl(var(--warning));
}

.main-content .dashboard-widget-2__info .dashboard-widget-2__icon {
    background: hsl(var(--info-l-900));
    color: hsl(var(--info));
}

.main-content .dashboard-widget-2__primary .dashboard-widget-2__icon {
    background: hsl(var(--primary-l-900));
    color: hsl(var(--primary));
}

.main-content .dashboard-widget-2__dark .dashboard-widget-2__icon {
    background: hsl(var(--dark-l-900));
    color: hsl(var(--dark));
}

.main-content .dashboard-widget-2__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.main-content .dashboard-widget-2__icon {
    flex-shrink: 0;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    border-radius: 5px;
    background: hsl(var(--base-l-900));
    color: hsl(var(--base));
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-2__icon {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.375rem;
    }
}

.main-content .dashboard-widget-2__number {
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 11px;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-2__number {
        font-size: 1.375rem;
        margin-bottom: 6px;
    }
}

.main-content .dashboard-widget-2__txt {
    font-size: 0.9375rem;
    font-weight: 400;
    color: hsl(var(--dark-l-300));
    margin-bottom: -8px;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-2__txt {
        font-size: 0.875rem;
    }
}

.main-content .dashboard-widget-3 {
    width: 100%;
    height: 100%;
    background: hsl(var(--white));
    box-shadow: 0 10px 20px 0 hsl(var(--base)/0.05);
    border-radius: 6px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-3 {
        padding: 15px;
    }
}

.main-content .dashboard-widget-3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, hsl(var(--white) / .5), hsl(var(--white)));
    z-index: -1;
}

.main-content .dashboard-widget-3__success .dashboard-widget-3__top {
    border-color: hsl(var(--success)/0.1);
}

.main-content .dashboard-widget-3__success .dashboard-widget-3__icon {
    background: hsl(var(--success));
}

.main-content .dashboard-widget-3__success:hover {
    border-color: hsl(var(--success)/0.4) !important;
}

.main-content .dashboard-widget-3__danger .dashboard-widget-3__top {
    border-color: hsl(var(--danger)/0.1);
}

.main-content .dashboard-widget-3__danger .dashboard-widget-3__icon {
    background: hsl(var(--danger));
}

.main-content .dashboard-widget-3__danger:hover {
    border-color: hsl(var(--danger)/0.4) !important;
}

.main-content .dashboard-widget-3__warning .dashboard-widget-3__top {
    border-color: hsl(var(--warning)/0.1);
}

.main-content .dashboard-widget-3__warning .dashboard-widget-3__icon {
    background: hsl(var(--warning));
}

.main-content .dashboard-widget-3__warning:hover {
    border-color: hsl(var(--warning)/0.4) !important;
}

.main-content .dashboard-widget-3__info .dashboard-widget-3__top {
    border-color: hsl(var(--info)/0.1);
}

.main-content .dashboard-widget-3__info .dashboard-widget-3__icon {
    background: hsl(var(--info));
}

.main-content .dashboard-widget-3__info:hover {
    border-color: hsl(var(--info)/0.4) !important;
}

.main-content .dashboard-widget-3__primary .dashboard-widget-3__top {
    border-color: hsl(var(--primary)/0.1);
}

.main-content .dashboard-widget-3__primary .dashboard-widget-3__icon {
    background: hsl(var(--primary));
}

.main-content .dashboard-widget-3__primary:hover {
    border-color: hsl(var(--primary)/0.4) !important;
}

.main-content .dashboard-widget-3__dark .dashboard-widget-3__top {
    border-color: hsl(var(--dark)/0.1);
}

.main-content .dashboard-widget-3__dark .dashboard-widget-3__icon {
    background: hsl(var(--dark));
}

.main-content .dashboard-widget-3__dark:hover {
    border-color: hsl(var(--dark)/0.4) !important;
}

.main-content .dashboard-widget-3__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid hsl(var(--base)/0.1);
    padding-bottom: 20px;
    margin-bottom: 14px;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-3__top {
        padding-bottom: 10px;
        margin-bottom: 4px;
    }
}

.main-content .dashboard-widget-3__number {
    font-size: 1.375rem;
    line-height: 1;
    font-weight: 700;
    margin-top: -4px;
    margin-bottom: -3px;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-3__number {
        font-size: 1.375rem;
    }
}

.main-content .dashboard-widget-3__icon {
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    border-radius: 5px;
    background: hsl(var(--base));
    color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-3__icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.25rem;
    }
}

.main-content .dashboard-widget-3__txt {
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 400;
    color: hsl(var(--dark-l-300));
    margin-bottom: -7px;
}

@media screen and (max-width: 991px) {
    .main-content .dashboard-widget-3__txt {
        font-size: 0.875rem;
        margin-bottom: -15px;
    }
}

.main-content .dashboard-widget-3:hover {
    border-color: hsl(var(--base)/0.4);
}

.main-content .dashboard-widget-4 {
    display: block;
    background: hsl(var(--white));
    box-shadow: 0 7px 20px 0 hsl(var(--base)/0.05);
    border-radius: 6px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.main-content .dashboard-widget-4__success .dashboard-widget-4__icon {
    background: hsl(var(--success));
}

.main-content .dashboard-widget-4__success .dashboard-widget-4__vector {
    color: hsl(var(--success));
}

.main-content .dashboard-widget-4__success:hover {
    border-color: hsl(var(--success)/0.4) !important;
}

.main-content .dashboard-widget-4__danger .dashboard-widget-4__icon {
    background: hsl(var(--danger));
}

.main-content .dashboard-widget-4__danger .dashboard-widget-4__vector {
    color: hsl(var(--danger));
}

.main-content .dashboard-widget-4__danger:hover {
    border-color: hsl(var(--danger)/0.4) !important;
}

.main-content .dashboard-widget-4__warning .dashboard-widget-4__icon {
    background: hsl(var(--warning));
}

.main-content .dashboard-widget-4__warning .dashboard-widget-4__vector {
    color: hsl(var(--warning));
}

.main-content .dashboard-widget-4__warning:hover {
    border-color: hsl(var(--warning)/0.4) !important;
}

.main-content .dashboard-widget-4__info .dashboard-widget-4__icon {
    background: hsl(var(--info));
}

.main-content .dashboard-widget-4__info .dashboard-widget-4__vector {
    color: hsl(var(--info));
}

.main-content .dashboard-widget-4__info:hover {
    border-color: hsl(var(--info)/0.4) !important;
}

.main-content .dashboard-widget-4__primary .dashboard-widget-4__icon {
    background: hsl(var(--primary));
}

.main-content .dashboard-widget-4__primary .dashboard-widget-4__vector {
    color: hsl(var(--primary));
}

.main-content .dashboard-widget-4__primary:hover {
    border-color: hsl(var(--primary)/0.4) !important;
}

.main-content .dashboard-widget-4__dark .dashboard-widget-4__icon {
    background: hsl(var(--dark));
}

.main-content .dashboard-widget-4__dark .dashboard-widget-4__vector {
    color: hsl(var(--dark));
}

.main-content .dashboard-widget-4__dark:hover {
    border-color: hsl(var(--dark)/0.4) !important;
}

.main-content .dashboard-widget-4__content {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.main-content .dashboard-widget-4__icon {
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: hsl(var(--base));
    border-radius: 5px;
    color: hsl(var(--white));
    font-size: 0.875rem;
}

.main-content .dashboard-widget-4__txt {
    font-weight: 400;
    color: hsl(var(--dark-l-300));
}

.main-content .dashboard-widget-4__number {
    font-size: 1.375rem;
    line-height: 1;
    font-weight: 700;
    color: hsl(var(--dark-l-200));
    margin-bottom: -4px;
}

.main-content .dashboard-widget-4__vector {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 5rem;
    line-height: 1;
    color: hsl(var(--base));
    transform: translateY(30%) translateX(30%);
    opacity: 0.05;
    z-index: -1;
}

.main-content .dashboard-widget-4__vector i {
    transform: translateY(0);
}

.main-content .dashboard-widget-4:hover {
    border-color: hsl(var(--base)/0.4);
}

.main-content .payment-method-card ul li {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    .main-content .payment-method-card ul li {
        margin-bottom: 5px;
    }
}

.main-content .payment-method-card ul li:last-child {
    margin-bottom: 0;
}

.main-content .payment-method-card ul i {
    font-size: 1.375rem;
    transform: translate(0);
}

.main-content .preference-card-list > :nth-child(9n+2) .preference-card__thumb {
    background: linear-gradient(45deg, hsl(var(--base-two)), hsl(var(--base-two-d-400)));
    border-color: hsl(var(--base-two-l-500));
}

.main-content .preference-card-list > :nth-child(9n+3) .preference-card__thumb {
    background: linear-gradient(45deg, hsl(var(--primary)), hsl(var(--primary-d-400)));
    border-color: hsl(var(--primary-l-500));
}

.main-content .preference-card-list > :nth-child(9n+4) .preference-card__thumb {
    background: linear-gradient(45deg, hsl(var(--secondary)), hsl(var(--secondary-d-400)));
    border-color: hsl(var(--secondary-l-500));
}

.main-content .preference-card-list > :nth-child(9n+5) .preference-card__thumb {
    background: linear-gradient(45deg, hsl(var(--success)), hsl(var(--success-d-400)));
    border-color: hsl(var(--success-l-500));
}

.main-content .preference-card-list > :nth-child(9n+6) .preference-card__thumb {
    background: linear-gradient(45deg, hsl(var(--danger)), hsl(var(--danger-d-400)));
    border-color: hsl(var(--danger-l-500));
}

.main-content .preference-card-list > :nth-child(9n+7) .preference-card__thumb {
    background: linear-gradient(45deg, hsl(var(--info)), hsl(var(--info-d-400)));
    border-color: hsl(var(--info-l-500));
}

.main-content .preference-card-list > :nth-child(9n+8) .preference-card__thumb {
    background: linear-gradient(45deg, hsl(var(--warning)), hsl(var(--warning-d-400)));
    border-color: hsl(var(--warning-l-500));
}

.main-content .preference-card-list > :nth-child(9n+9) .preference-card__thumb {
    background: linear-gradient(45deg, hsl(var(--dark)), hsl(var(--dark-d-400)));
    border-color: hsl(var(--dark-l-500));
}

.main-content .preference-card {
    background: hsl(var(--dark-l-900)/0.05);
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 5px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    position: relative;
}

.main-content .preference-card__thumb {
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 58px;
    font-size: 1.5625rem;
    background: linear-gradient(45deg, hsl(var(--base)), hsl(var(--base-d-400)));
    color: hsl(var(--white));
    border-radius: 5px;
    margin: 0 auto 20px;
}

@media screen and (max-width: 991px) {
    .main-content .preference-card__thumb {
        width: 50px;
        height: 50px;
        line-height: 48px;
        font-size: 1.375rem;
    }
}

.main-content .preference-card__title {
    display: block;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 700;
    color: hsl(var(--body-color));
    margin-bottom: 17px;
}

.main-content .preference-card__desc {
    display: block;
}

.main-content .preference-card .form--switch {
    position: absolute;
    top: 10px;
    right: 10px;
}

.main-content .email-body-html {
    height: 420px;
}

@media screen and (max-width: 991px) {
    .main-content .email-body-html {
        height: 250px;
    }
}

.main-content .email-body-output {
    height: 420px;
    overflow: auto;
}

@media screen and (max-width: 991px) {
    .main-content .email-body-output {
        height: 250px;
    }
}

.main-content .plugin-card {
    text-align: center;
}

.main-content .plugin-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

@media screen and (max-width: 991px) {
    .main-content .plugin-card__icon {
        width: 50px;
        height: 50px;
    }
}

.main-content .plugin-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-content .plugin-card__name {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 11px;
}

@media screen and (max-width: 991px) {
    .main-content .plugin-card__name {
        font-size: 1.25rem;
    }
}

.main-content .language-card {
    text-align: center;
}

.main-content .language-card__icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: hsl(var(--base-l-900));
    border: 1px solid hsl(var(--base-l-800));
    border-radius: 50%;
    color: hsl(var(--base));
    font-size: 1.5625rem;
    margin: 0 auto 15px;
}

@media screen and (max-width: 991px) {
    .main-content .language-card__icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.375rem;
    }
}

.main-content .language-card__name {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 11px;
}

@media screen and (max-width: 991px) {
    .main-content .language-card__name {
        font-size: 1.25rem;
    }
}

.main-content .language-card .btn--icon i {
    transform: translateY(10%);
}

.main-content .theme-card__img {
    height: 320px;
    border: 1px solid hsl(var(--secondary-l-800));
    border-radius: 5px;
    overflow: hidden;
}

.main-content .theme-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.main-content .profile-card__img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 21px;
    overflow: hidden;
}

.main-content .profile-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content .profile-card__txt {
    text-align: center;
    padding-bottom: 40px;
}

.main-content .profile-card__title {
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 15px;
}

.main-content .checkbox-separator > * {
    position: relative;
}

@media screen and (max-width: 1199px) {
    .main-content .checkbox-separator > *:nth-child(2n+2)::after {
        display: none;
    }
}

.main-content .checkbox-separator > *::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 130%;
    background: hsl(var(--dark-l-300));
}

@media screen and (max-width: 1199px) {
    .main-content .checkbox-separator > *::after {
        height: 120%;
    }
}

@media screen and (max-width: 479px) {
    .main-content .checkbox-separator > *::after {
        display: none;
    }
}

.main-content .checkbox-separator > *:nth-child(4n+4)::after {
    display: none;
}

.main-content #smsBody {
    height: 370px;
}

@media screen and (max-width: 1399px) {
    .main-content #smsBody {
        height: 300px;
    }
}

@media screen and (max-width: 1199px) {
    .main-content #smsBody {
        height: 200px;
    }
}

@media screen and (max-width: 991px) {
    .main-content #smsBody {
        height: 150px;
    }
}

.main-content .table-card-with-image {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-content .table-card-with-image__img {
    width: 50px;
    height: 50px;
    border: 1px solid hsl(var(--base-l-700));
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.main-content .table-card-with-image__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content .campaign-details__img {
    aspect-ratio: 1/0.5;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-content .campaign-details__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content .campaign-details__title {
    font-size: 1.875rem;
    line-height: 1.2;
    padding-bottom: 15px;
    border-bottom: 1px solid hsl(var(--dark-l-800));
}

@media screen and (max-width: 1199px) {
    .main-content .campaign-details__title {
        font-size: 1.5625rem;
    }
}

@media screen and (max-width: 767px) {
    .main-content .campaign-details__title {
        font-size: 1.25rem;
    }
}

.main-content .campaign-details__txt .description {
    aspect-ratio: 1/0.4;
}

@media screen and (max-width: 767px) {
    .main-content .campaign-details__txt .description {
        aspect-ratio: 1/0.7;
    }
}

.main-content .campaign-details-doc {
    width: 100%;
    aspect-ratio: 1/0.7;
    border-radius: 5px;
    vertical-align: middle;
}

.main-content .comment .accordion-header {
    display: flex;
    align-items: center;
}

.main-content .comment .accordion-header .accordion-button {
    padding-right: 50px;
}

@media screen and (max-width: 991px) {
    .main-content .comment .accordion-header .accordion-button {
        padding-right: 45px;
    }
}

.main-content .comment .accordion-header .accordion-button::after {
    right: 10px;
}

@media screen and (max-width: 991px) {
    .main-content .comment .accordion-header .accordion-button::after {
        right: 5px;
    }
}

.main-content .comment__name {
    display: block;
    margin-bottom: 5px;
}

.main-content .comment__date {
    display: block;
    font-family: var(--body-font);
    font-size: 0.875rem;
    color: hsl(var(--dark-l-300));
}

@media screen and (max-width: 991px) {
    .main-content .comment__date {
        font-size: 0.75rem;
    }
}

.main-content .comment__delete {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: hsl(var(--danger));
    border-radius: 5px;
    color: hsl(var(--white));
    margin-right: 15px;
    position: relative;
}

@media screen and (max-width: 991px) {
    .main-content .comment__delete {
        margin-right: 10px;
    }
}

.main-content .comment__delete::after {
    content: "\eb41";
    font-family: "tabler-icons";
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    text-align: center;
    border-radius: 5px;
    font-size: 1.25rem;
    transition: 0.3s;
}

.keyword-wrap {
    position: relative;
}

.keyword-wrap .copy-keywords {
    position: absolute;
    top: 5px;
    right: 5px;
}

.keyword-wrap .keyword-textarea {
    height: 700px !important;
}

@media screen and (max-width: 1399px) {
    .keyword-wrap .keyword-textarea {
        height: 600px !important;
    }
}

@media screen and (max-width: 1199px) {
    .keyword-wrap .keyword-textarea {
        height: 500px !important;
    }
}

@media screen and (max-width: 991px) {
    .keyword-wrap .keyword-textarea {
        height: 300px !important;
    }
}

.cache-clear-list {
    line-height: 3;
    font-weight: 600;
}

.cache-clear-list li {
    padding-left: 25px;
    position: relative;
}

.cache-clear-list li:nth-child(9n+2)::before {
    border-right-color: hsl(var(--base-two));
}

.cache-clear-list li:nth-child(9n+2)::after {
    border-left-color: hsl(var(--base-two-d-500));
}

.cache-clear-list li:nth-child(9n+3)::before {
    border-right-color: hsl(var(--primary-l-500));
}

.cache-clear-list li:nth-child(9n+3)::after {
    border-left-color: hsl(var(--primary));
}

.cache-clear-list li:nth-child(9n+4)::before {
    border-right-color: hsl(var(--secondary-l-500));
}

.cache-clear-list li:nth-child(9n+4)::after {
    border-left-color: hsl(var(--secondary));
}

.cache-clear-list li:nth-child(9n+5)::before {
    border-right-color: hsl(var(--success-l-500));
}

.cache-clear-list li:nth-child(9n+5)::after {
    border-left-color: hsl(var(--success));
}

.cache-clear-list li:nth-child(9n+6)::before {
    border-right-color: hsl(var(--danger-l-500));
}

.cache-clear-list li:nth-child(9n+6)::after {
    border-left-color: hsl(var(--danger));
}

.cache-clear-list li:nth-child(9n+7)::before {
    border-right-color: hsl(var(--info-l-500));
}

.cache-clear-list li:nth-child(9n+7)::after {
    border-left-color: hsl(var(--info));
}

.cache-clear-list li:nth-child(9n+8)::before {
    border-right-color: hsl(var(--warning-l-500));
}

.cache-clear-list li:nth-child(9n+8)::after {
    border-left-color: hsl(var(--warning));
}

.cache-clear-list li:nth-child(9n+9)::before {
    border-right-color: hsl(var(--dark-l-500));
}

.cache-clear-list li:nth-child(9n+9)::after {
    border-left-color: hsl(var(--dark));
}

.cache-clear-list li::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid hsl(var(--base-l-500));
}

@media screen and (max-width: 991px) {
    .cache-clear-list li::before {
        top: 13px;
    }
}

.cache-clear-list li::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 8px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid hsl(var(--base));
}

@media screen and (max-width: 991px) {
    .cache-clear-list li::after {
        top: 13px;
    }
}

/* ============= Footer Start Here ======================= */
footer {
    text-align: center;
    padding: 10px 30px;
    border-top: 1px solid hsl(var(--secondary-l-800));
    margin-top: auto;
    margin-left: 300px;
    transition: 0.3s;
}

@media screen and (max-width: 1499px) {
    footer {
        margin-left: 0;
    }
}

.nav-collapsed footer {
    margin-left: 70px;
}

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

@media screen and (max-width: 767px) {
    .scroll-top {
        right: 15px;
        bottom: 15px;
    }
}

.scroll-top i {
    transform: translate(0);
}

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

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

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

/* ================================= Template Selection Css End ===========================  */
.change-password-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(var(--base-d-800)/0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 10px;
    overflow: auto;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.change-password-modal.active {
    opacity: 1;
    visibility: visible;
}

.change-password-modal.active .change-password-modal__body {
    transform: translate(0);
}

.change-password-modal__body {
    width: 100%;
    max-width: 550px;
    background: hsl(var(--white));
    padding: 50px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    transform: translateY(-50px);
    transition: 0.5s;
}

@media screen and (max-width: 991px) {
    .change-password-modal__body {
        padding: 30px;
    }
}

.change-password-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.change-password-modal__img {
    width: 180px;
    height: 180px;
    background: hsl(var(--base-l-900)/0.5);
    border: 1px solid hsl(var(--base-l-700));
    border-radius: 50%;
    padding: 30px;
    margin: 0 auto 30px;
}

@media screen and (max-width: 991px) {
    .change-password-modal__img {
        width: 140px;
        height: 140px;
    }
}

.change-password-modal__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.change-password-modal__title {
    font-size: 1.5625rem;
    line-height: 1;
    font-weight: 700;
    padding-bottom: 13px;
    margin-bottom: 19px;
    position: relative;
}

.change-password-modal__title::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 100px;
    height: 1px;
    background: hsl(var(--base));
    transform: translateX(-50%);
}

.change-password-modal__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 70px;
    height: 1px;
    background: hsl(var(--base));
    transform: translateX(-50%);
}

.change-password-modal__desc {
    margin-bottom: 17px;
}

.change-password-modal__btn {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.os-theme-dark > .os-scrollbar, .os-theme-light > .os-scrollbar {
    padding: 0;
}

.os-theme-dark > .os-scrollbar-vertical, .os-theme-light > .os-scrollbar-vertical {
    width: 5px;
}

.os-theme-dark > .os-scrollbar-horizontal, .os-theme-light > .os-scrollbar-horizontal {
    height: 5px;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    background: hsl(var(--dark)/0.2);
    opacity: 0;
    transition: opacity 0.3s !important;
}

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
    background: hsl(var(--dark)/0.4);
}

.os-theme-dark > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
    background: hsl(var(--dark)/0.4);
}

.os-host:hover .os-scrollbar-handle {
    opacity: 1 !important;
}

/* ============ Inner Pages Design Start ============ */
/* Authentication Page Start */
/* ====================== Account Css Start ==================== */
.account {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: auto;
}

.account__form {
    height: max-content;
    background: hsl(var(--white)/0.75);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    padding: 50px;
}

@media screen and (max-width: 767px) {
    .account__form {
        width: 90vw;
        height: max-content;
        margin: 20px auto;
        display: block;
        padding: 20px;
    }
}

@media screen and (max-width: 479px) {
    .account__form {
        padding: 15px;
    }
}

.account__form__container {
    width: 400px;
    margin: auto;
}

@media screen and (max-width: 991px) {
    .account__form__container {
        width: 350px;
    }
}

@media screen and (max-width: 767px) {
    .account__form__container {
        width: 100%;
    }
}

.account__form__thumb {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.account__form__content {
    text-align: center;
    border-bottom: 1px solid hsl(var(--black)/0.1);
    padding-bottom: 21px;
}

.account__form__content p {
    font-weight: 500;
}

.account__form__title {
    font-size: 2.1875rem;
    line-height: 1;
    font-weight: 700;
    color: hsl(var(--base-d-300));
    margin-bottom: 14px;
}

@media screen and (max-width: 991px) {
    .account__form__title {
        font-size: 1.5625rem;
    }
}

.account__form form {
    width: 100%;
    padding: 38px 20px 0;
    margin: auto;
}

@media screen and (max-width: 991px) {
    .account__form form {
        padding: 38px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .account__form form {
        padding: 18px 0 0;
    }
}

.account__top {
    margin-bottom: 25px;
}

.account__top .logo {
    max-width: 150px;
    margin: auto;
}

.back-to-home {
    width: 50px;
    height: 50px;
    border: 1px solid hsl(var(--base)/0.3);
    background: hsl(var(--white));
    border-radius: 50%;
    color: hsl(var(--base));
    font-size: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .back-to-home {
        width: 45px;
        height: 45px;
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .back-to-home {
        width: 45px;
        height: 45px;
        font-size: 1.875rem;
    }
}

.back-to-home:hover {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.error-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.error-page__content {
    padding: 50px 0;
}

.error-page__thumb {
    margin-bottom: 30px;
}

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

.error-page__txt__title {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
}

@media screen and (max-width: 479px) {
    .error-page__txt__title {
        font-size: 1.5625rem;
    }
}

.error-page__txt__desc {
    margin-bottom: 20px;
}

/* ====================== Account Css End ==================== */
/* Authentication Page End */
/* ============ Inner Pages Design End ============ */
/*# sourceMappingURL=main.css.map */
