/*!
 * Dashboard Sushant Rauniyar (https://dashboard.sushantrauniyar.vercel.app/)
 * Copyright @2020 - Sushant Rauniyar (https://sushantrauniyar.com.np/)
 * Licensed under MIT (https://github.com/sushant9841/dashboard/blob/main/LICENSE)
 */

/* ================ Google Fonts - Open Sans ================  */
/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
*/
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-display: swap;
  src: local('Poppins Regular'), local('Poppins-Regular'), url("./Poppins/Poppins-Regular.ttf") format('truetype');
}

/*@import url("https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@100;200;300;400;500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");*/
/*------- Seting Rem value to 10px per 1rem -------*/
html {
    height: 100%;
    font-size: 9px;
    scroll-behavior: smooth;
    overflow-y: scroll;
    overflow-y: overlay;
    background-color: #00000000;
}
/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--theme) var(--bs-gray-500);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: var(--bs-gray-500);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--theme);
}

/* ================ Root ================  */
:root {
    --header-height: 3.5rem;
    --main-theme-color: 240, 90, 40;

    --theme: rgb(var(--main-theme-color));
    --theme-hover: rgba(var(--main-theme-color), 0.8);
    --theme-hover-500: rgba(var(--main-theme-color), 0.5);

    /* 
    --theme: #f05a28;
    --theme-hover: #f05a28cc; 
    */

    /* ================ Primary colors ================  */
    --white: #fff;
    --off-white: #d0d0d0;
    --light-gray: #b2b3b6;
    --gray: #858585;
    --semi-black: #1a1a1a;
    --black: #000000;

    --f-black: #000000;
    --f-white: #fff;

    --red: #cb454b;
    --green: #53a352;
    --blue: #307df6;
    --orange: #f05a29;
    --yellow: #f6c244;

    --red-hover: #cb454bcc;
    --green-hover: #53a352cc;
    --blue-hover: #307df6cc;
    --orange-hover: #f05a29cc;
    --yellow: #f6c244cc;

    --gradient: linear-gradient(90deg, #ffceb9 3.14%, #febd71 100%);

    /* ================ font size ================  */
    --body-font: "Poppins", sans-serif;
    --extra-large: 4rem;
    --bold: 2.4rem;
    --h1: 2rem;
    --h2: 1.8rem;
    --h3: 1.6rem;
    --p: 1.4rem;
    --small: 1.2rem;
    --v-small: 1rem;

    /* ================ Font weight ================  */
    --font-light-w: 300;
    --font-medium: 500;
    --font-semi-bold: 600;

    /* ================ margins ================  */
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /* ================ z-index ================  */
    --z-primary: 500;
    --z-secondary: 200;

    /* Border Radius */

    --semi-circle: 0.5rem;
    --half-circle: 2.5rem;
    --full-circle: 50%;
}

/* ================ responsive text ================  */
@media screen and (min-width: 991.9px) {
    :root {
        --extra-large: 4.8rem;
        --bold: 2.6rem;
        --h1: 2.2rem;
        --h2: 2rem;
        --h3: 1.6rem;
        --p: 1.4rem;
        --small: 1rem;
        --v-small: 0.8rem;
    }
}

/* ================ Base ================  */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior-x: none !important;
}

body {
    background-color: var(--bs-gray-400);
    height: 100%;
    width: 100%;
    font-family: "Poppins", sans-serif;
    overscroll-behavior-x: none !important;

    max-height: 100%;
    overflow: hidden;
}

main {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    padding: 1.5rem;
    max-height: 100vh;
}

section.max {
    height: 100%;
    overflow: auto;
    /* margin-bottom: 2rem; */
}

body,
button,
input,
textarea {
    font-size: var(--p);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

div.row {
    text-transform: revert !important;
}

/*================ Button ================*/
a,
a:hover,
a:active,
a:focus,
button,
button:hover,
button:active,
button:focus {
    color: inherit;
    background-color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

a,
button {
    cursor: pointer !important;
    border: none;
    outline: none;
    display: flex;
    place-content: center;
    place-items: center;
    box-shadow: none !important;
    transition: 0.3s !important;
}

/* margin auto */

.ma {
    margin: auto;
}
.mla {
    margin-left: auto;
}
.mta {
    margin-top: auto;
}
.mba {
    margin-bottom: auto;
}
.mra {
    margin-right: auto;
}

/* margin 0rem */
.mt-0 {
    margin-top: 0rem;
}
.mr-0 {
    margin-right: 0rem;
}
.mb-0 {
    margin-bottom: 0rem;
}
.ml-0 {
    margin-left: 0rem;
}

/* margin 0.5rem */
.mt-1 {
    margin-top: 0.5rem;
}
.mr-1 {
    margin-right: 0.5rem;
}
.mb-1 {
    margin-bottom: 0.5rem;
}
.ml-1 {
    margin-left: 0.5rem;
}

/* margin 0.75rem */
.mt-2 {
    margin-top: 0.75rem;
}
.mr-2 {
    margin-right: 0.75rem;
}
.mb-2 {
    margin-bottom: 0.75rem;
}
.ml-2 {
    margin-left: 0.75rem;
}

/* margin 1rem */
.mt-3 {
    margin-top: 1rem;
}
.mr-3 {
    margin-right: 1rem;
}
.mb-3 {
    margin-bottom: 1rem;
}
.ml-3 {
    margin-left: 1rem;
}

/* margin 1.5rem */
.mt-4 {
    margin-top: 1.5rem;
}
.mr-4 {
    margin-right: 1.5rem;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.ml-4 {
    margin-left: 1.5rem;
}

.p-0 {
    padding: 0 !important;
}

/* padding 0rem */
.pt-0 {
    padding-top: 0rem;
}
.pr-0 {
    padding-right: 0rem;
}
.pb-0 {
    padding-bottom: 0rem;
}
.pl-0 {
    padding-left: 0rem;
}

/* padding 0.5rem */
.pt-1 {
    padding-top: 0.5rem;
}
.pr-1 {
    padding-right: 0.5rem;
}
.pb-1 {
    padding-bottom: 0.5rem;
}
.pl-1 {
    padding-left: 0.5rem;
}

/* padding 0.75rem */
.pt-2 {
    padding-top: 0.75rem;
}
.pr-2 {
    padding-right: 0.75rem;
}
.pb-2 {
    padding-bottom: 0.75rem;
}
.pl-2 {
    padding-left: 0.75rem;
}

/* padding 1rem */
.pt-3 {
    padding-top: 1rem;
}
.pr-3 {
    padding-right: 1rem;
}
.pb-3 {
    padding-bottom: 1rem;
}
.pl-3 {
    padding-left: 1rem;
}

/* padding 1.5rem */
.pt-4 {
    padding-top: 1.5rem;
}
.pr-4 {
    padding-right: 1.5rem;
}
.pb-4 {
    padding-bottom: 1.5rem;
}
.pl-4 {
    padding-left: 1.5rem;
}

.btn {
    padding: 1rem 1.5rem !important;
    border-radius: var(--semi-circle);
    font-size: 1.2rem;
    color: #fff !important;
}

.btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.btn-theme {
    background: var(--theme-hover);
    color: #fff;
    border-color: var(--theme);
    transition: 0.3s;
}

.btn-theme:hover,
.btn-theme:focus {
    background: var(--theme);
    color: #fff;
}

.btn-default {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.btn-default:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.apialert {
    width: 100%;
    padding: 0 !important;
    margin-top: 1rem;
    display: flex;
    float: none !important;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    place-items: center;
    place-content: start !important;
}
.btn-apibadge {
    width: 5%;
    min-width: 10rem;
    cursor: default;
    font-size: var(--h4);
    font-weight: 600;
    text-transform: uppercase;
}

.btn-apibadge-success {
    background: var(--green);
}
.btn-apibadge-danger {
    background: var(--red);
}
.btn-apibadge-info {
    background: var(--yellow);
}
.btn-apibadge-primary {
    background: var(--blue);
}

.apialert h3 {
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.apialert p {
    padding-left: 1rem;
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.apialert i {
    width: 2%;
}

.apialert button {
    border-left: 1px solid;
    border-radius: 0;
}

/*================ Font Size ================*/
.unicode {
    font-family: "Noto Sans", sans-serif !important;
}

h1 {
    font-size: var(--h1);
}
h2 {
    font-size: var(--h2);
}
h3 {
    font-size: var(--h3);
}
p {
    font-size: var(--p);
}
small {
    font-size: var(--small);
}

.h1 {
    font-size: var(--h1);
}
.h2 {
    font-size: var(--h2);
}
.h3 {
    font-size: var(--h3);
}
.p {
    font-size: var(--p);
}
.small {
    font-size: var(--small);
}

.extra-large {
    font-size: var(--extra-large);
}

.bold {
    font-weight: 700;
}

h1,
h2,
h3 {
    color: var(--black);
    font-weight: var(--font-semi-bold);
}

h1,
h2,
h3,
h4,
p,
th,
td,
text,
.form-label,
.form-check-label {
    color: var(--black);
}

tspan {
    fill: var(--black);
}

/*================ Colors ================*/
.yellow {
    color: #f6c244;
}
.green {
    color: #53a352;
}
.blue {
    color: #307df6;
}
.red {
    color: #cb454b;
}
.theme {
    color: var(--theme) !important;
}
.black {
    color: var(--black) !important;
}
.white {
    color: var(--white) !important;
}

.f-black {
    color: var(--f-black) !important;
}
.f-white {
    color: var(--f-white) !important;
}

/*================ Positions ================*/
.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/*================ Loading Screen ================*/
#preloader {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff99;
    backdrop-filter: blur(4px);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999999999;
}

.three-quarter-spinner {
    width: 150px;
    height: 150px;
    border: 3px solid var(--theme);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 0.9s linear 0s infinite;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}

/*=============== REUSABLE CSS CLASSES ===============*/
/* section {
    margin: 2rem 2rem 0;
    margin: 0 !important;
} */

.border-radius-0 {
    border-radius: 0 !important;
}

.semi-border {
    border-radius: var(--semi-circle) !important;
}

.half-border {
    border-radius: var(--half-circle) !important;
}

.full-border {
    border-radius: var(--full-circle) !important;
}

.mini-section {
    padding: 1.2rem 0 0;
}

.section__title,
.section__title-center {
    font-size: var(--h2);
    margin-bottom: var(--mb-2);
    line-height: 140%;
}

.section__title-center {
    text-align: center;
}

/*================ Make Div Same Height ================*/
.row {
    display: flex;
    flex-wrap: wrap;
}

.border-right {
    border-right: 1px solid var(--bs-gray-400);
}
.border-left {
    border-left: 1px solid var(--bs-gray-400);
}
.border-top {
    border-top: 1px solid var(--bs-gray-400);
}
.border-bottom {
    border-bottom: 1px solid var(--bs-gray-400);
}
.border-none {
    border: none !important;
}

.same-height {
    height: 100% !important;
}

.grid {
    display: grid;
}

.grid-center {
    display: grid;
    place-content: center;
    place-items: center;
}

.grid-content {
    display: grid;
    place-content: center;
}

.grid-item {
    display: grid;
    place-items: center;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    display: flex;
    place-content: center;
    place-items: center;
}

.flex-content {
    display: flex;
    place-content: center;
}

.flex-item {
    display: flex;
    place-items: center;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.justify {
    justify-content: space-between;
}

.block {
    display: block;
}
.inline-block {
    display: inline-block;
}

.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 0rem;
    float: right;
    margin-left: auto;
    place-content: end;
    border-radius: var(--semi-circle);
}

.pull-right,
.msg {
    float: right;
    margin-left: auto;
    place-content: end;
}

.msg-success,
.msg-green {
    padding: 1rem 1.5rem !important;
    border: 1px solid var(--green);
    border-radius: var(--semi-circle);
    color: var(--green);
}

.msg-danger,
.msg-red {
    padding: 1rem 1.5rem !important;
    border: 1px solid var(--red);
    border-radius: var(--semi-circle);
    color: var(--red);
}

.msg-warning,
.msg-yellow {
    padding: 1rem 1.5rem !important;
    border: 1px solid var(--yellow);
    border-radius: var(--semi-circle);
    color: var(--yellow);
}

.d-none,
.mobile-hide {
    display: none;
}

.v-hidden {
    visibility: hidden;
}
.v-visible {
    visibility: visible;
}

.containers {
    max-width: 1440px;
    margin: var(--mb-1-5);
}

.container {
    width: 100%;
    max-width: unset;
}

.ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dragable {
    z-index: 999999999999;
}

/*================ Cards / Titles ================*/
.cards {
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: var(--semi-circle);
    width: 100%;
    /* margin-bottom: 2rem; */
    display: flex;
    place-items: center;
    transition: 0.5s;
    column-gap: 1.5rem;
}

.card {
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: var(--semi-circle);
    margin-bottom: 1.5rem;
    width: 100%;
    height: auto;
    overflow: auto;
    transition: 0.5s;
}

.card-border {
    padding: 1.5rem 2rem;
    border: 1px solid var(--gray);
    border-radius: var(--semi-circle);
    margin-bottom: 1.5rem;
    overflow: auto;
    transition: 0.5s;
}

.cards:hover,
.card:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0 5px 8px 0px;
}

.card-border:hover {
    background: var(--bs-gray-100);
}

.card-theme {
    background-color: var(--theme-hover);
    color: var(--white);
}

.card .title {
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    place-content: space-between;
    place-items: center;
}

.card .title h2,
.card .title h4 {
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.card .title a {
    background: var(--theme-hover);
    border-color: var(--theme);
    padding: 0.5rem 1.5rem;
    border-radius: var(--half-circle);
    color: var(--white);
    min-width: 4rem;
    display: flex;
    place-content: center;
    place-items: center;
}

.card .title a:hover {
    background: var(--theme);
}

.x_title,
.page-title {
    display: flex;
    place-items: center;
    margin-bottom: 1rem;
    background: none !important;
    color: var(--black) !important;
    /*padding-left: 1rem;
    padding-right: 1rem;*/
}

.card .title.underline {
    border-bottom: 1px solid var(--black);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

/* last child margin bottom is set 0 */
.row div:last-child .card {
    margin-bottom: 0.5rem;
}

/*================ Chart Labels ================*/
.chart_label {
    display: flex;
    flex-direction: row-reverse;
    place-content: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    column-gap: 1rem;
    color: var(--black);
}

.chart_label span {
    display: flex;
    place-items: center;
}

.chart_label i {
    margin-right: 0.75rem;
}

.chart_label > span > i {
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    border-radius: 1px;
}

.morris-hover {
    position: absolute;
    left: unset !important;
    right: 0px !important;
    top: -8px !important;
    display: flex !important;
    column-gap: 1rem !important;
    place-content: center !important;
    place-items: center !important;
    margin: auto !important;
    width: 100% !important;
    flex-direction: row-reverse !important;
    text-align: center !important;
}

.morris-hover-point {
    max-width: 80px !important;
}

/*================ top-performer ================*/
.performers {
    transition: 0.3s;
    border-radius: var(--semi-circle);
    padding: 1.2rem 0rem;
}

.performers_icon {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: var(--full-circle);
    margin: 0 10px;
}

.performers h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.performers:hover {
    padding: 1.2rem 1.5rem;
    padding-right: 0;
    background: var(--bs-gray-400);
}

/*================ Sidebar Navigation ================*/

header {
    position: fixed;
    padding-top: 0 !important;
    top: 0;
    width: 0%;
    max-width: 25rem;
    /* min-width: 25rem; */
    background-color: var(--white);
    height: 100%;
    z-index: var(--z-primary);
    overflow-y: hidden;
    transition: 0.8s;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

header:hover {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.hide-span {
    width: 50%;
}

.header_mobile_close {
    position: relative;
    display: none;
}

.hide-span .header_mobile_close {
    position: fixed;
    display: block;
    width: calc(100% - 25rem);
    /* width: 100%;
    z-index: -99999; */
    height: 100%;
    top: 0;
    right: 0;
}

.nav {
    height: 100vh;
}

/* .nav__title {
    background: #fff;
} */

.nav__logo img {
    height: 8rem;
    object-fit: contain;
}

.nav__logo h3 {
    color: var(--theme) !important;
}

.nav__menu {
    height: 90%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0.8rem 1rem;
}

nav,
nav .nav__menu .nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.nav__list .title__seperator,
.nav__list .nav__seperator {
    border-top: 1px solid var(--bs-gray-500);
}

.nav__list li h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav__link {
    display: flex;
    place-items: center;
    place-content: start;
    column-gap: 1rem;
    border-radius: var(--semi-circle);
    padding: 1rem;
    background: var(--white);
    color: var(--black);
    transition: 0.3s;
    text-transform: capitalize;
}

.nav__link.active {
    background: var(--theme);
    color: #fff !important;
}

.nav__link:hover {
    background: var(--theme-hover);
    color: #fff !important;
    column-gap: 1.5rem;
}

.nav__link:focus {
    color: var(--black);
    /* outline: 1.5px solid var(--theme-hover); */
}

.nav__link.active:hover,
.nav__link.active:focus {
    column-gap: 1rem;
    background: var(--theme);
    outline: none !important;
}

.nav__link i {
    font-size: var(--h2);
}

.nav__link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.3rem;
    font-weight: 500;
}

.nav__link .nav__badge {
    background: var(--theme-hover);
    color: #fff;
    padding: 0px 0.8rem;
    border-radius: var(--half-circle);
    font-size: var(--small);
    margin-left: auto;
    overflow: visible;
    transition: 0.3s;
}

.nav__link.active .nav__badge,
.nav__link:hover .nav__badge {
    background: var(--f-white);
    color: var(--theme);
}

nav .nav__menu .nav__list .submenu {
    width: 90%;
    display: none;
    position: relative;
}

.dropdown-btn,
.sub-dropdown-btn {
    transition: 0.3s 0.3s ease-in-out;
}

.rotate i.arrow {
    transform: rotate(90deg);
}

.submenu {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.submenu.show {
    opacity: 1;
    visibility: unset;
    display: flex !important;
}

.submenu li::before {
    background: #425668;
    bottom: auto;
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    left: -0.6rem;
    margin-top: 1.9rem;
    position: absolute;
    right: auto;
    z-index: 1;
    -webkit-border-radius: var(--full-circle);
    -moz-border-radius: var(--full-circle);
    border-radius: var(--full-circle);
}

.submenu li::after {
    border-left: 1px solid #425668;
    bottom: 2rem;
    content: "";
    left: -0.4rem;
    position: absolute;
    top: -1.5rem;
}

/*================ breadcrum ================*/
.breadcrumb {
    border-bottom: 1px solid;
    padding-bottom: 1rem;
    width: max-content;
}

.breadcrumb h2 {
    font-weight: 400;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    border-right: 2px solid var(--theme);
}

.breadcrumb-item,
.breadcrumb-item .remix {
    color: var(--theme);
}

.breadcrumb-item + .breadcrumb-item::before {
    margin: 0 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, ">");
}

.nav-link,
.nav-link:hover {
    color: var(--gray);
}

.nav-link.active {
    background: var(--theme-hover) !important;
    color: var(--f-white) !important;
    border-color: var(--theme) !important;
}

.nav-tabs {
    height: unset;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/*================ Accordian ================*/

.accordion-button:not(.collapsed) {
    color: var(--f-white) !important;
    background-color: var(--theme-hover) !important;
}
.accordion-button::after {
    height: 2rem;
    width: 2rem;
    background-size: 1.8rem;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/*================ Search bar ================*/
.searchbar,
.searchbar form,
.searchbar input {
    width: 100%;
    column-gap: 2rem;
}

.searchbar input,
.searchbar input:active,
.searchbar input:focus,
.searchbar input:hover {
    padding: 0.5rem 0rem;
    border: none;
    border-radius: 0 !important;
    outline: none;
    border-bottom: 1px solid var(--light-gray);
}

.card.autocomplete-items {
    position: absolute;
    top: 6rem;
    left: -2rem;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    max-height: 37rem;
    z-index: 999;
}

.card.autocomplete-items div {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}
.card.autocomplete-items div:hover {
    background-color: var(--theme-hover);
    color: var(--white);
}

/*================ Top Notification ================*/
.notification-icons {
    column-gap: 1.5rem;
}

.notification-icons a,
.notification-icons button {
    position: relative;
}
.notification-icons span.status {
    height: 1.5rem;
    width: 1.5rem;
    background-color: var(--theme);
    border-radius: var(--full-circle);
    position: absolute;
    top: -0.4rem;
    right: -0.4rem;
    font-size: var(--v-small);
    color: var(--f-white);
    text-align: center;
    display: flex;
    place-content: center;
    place-items: center;
}

.notification-icons > div > a > i,
.remix {
    font-size: var(--h1);
    color: var(--gray);
    transition: 0.3s;
}

.notification-icons > div > a > i:hover,
.notification-icons > div > a > i:focus,
.notification-icons > div > a > i:active {
    font-size: var(--h1);
    color: var(--semi-black);
}

.notification-icons > div > button > i,
.remix {
    font-size: var(--h1);
    color: var(--gray);
    transition: 0.3s;
}

.notification-icons > div > button > i:hover,
.notification-icons > div > button > i:focus,
.notification-icons > div > button > i:active {
    font-size: var(--h1);
    color: var(--semi-black);
}

.profile {
    aspect-ratio: 1/1;
    height: 4rem;
    width: 4rem;
    object-fit: cover;
    border-radius: var(--full-circle) !important;
    /* outline: 2px solid var(--theme);
    outline-offset: 2px; */
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--theme);
}

/*================ Control Switch ================*/

#switch {
    display: flex;
    column-gap: 3rem;
    place-content: end;
    place-items: center;
    padding: 2rem;
    float: right;
    color: var(--black);
}

::-webkit-slider-thumb {
    background: var(--black) !important;
}

/* :fullscreen #switch {
    display: none;
} */

#switch svg {
    height: 2rem;
}

#switch button {
    font-size: 2rem;
}

#switch .ri-moon-fill {
    color: #fff;
}

/*================ Date and Time ================*/
.time .date-block {
    display: flex;
    place-items: center;
    font-size: 1rem;
    color: var(--theme) !important;
}

.time .date {
    float: left;
}

.time .date span.today {
    font-size: 2.5rem;
    padding-right: 1rem;
}

.time .date span {
    float: left;
}

.time .date em {
    clear: both;
    display: block;
    font-style: normal;
    margin-top: -3px;
}

.time .time {
    float: left;
    padding-left: 1rem;
}

.time .time span {
    clear: both;
    display: block;
    margin-top: -3px;
}

/*================ Dropdown ================*/
.dropdown-menu.show {
    display: block;
    display: flex;
    flex-direction: column;
    border-radius: var(--semi-circle);
}

.dropdown-menu.card {
    transition: unset;
    padding: 1.5rem;
}

.dropdown-menu.notification,
.dropdown-menu.message,
.dropdown-menu.profile-icon {
    width: 25rem;
    top: 2.8rem !important;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.dropdown-menu .title span {
    background: var(--theme-hover);
    padding: 0.5rem 1.5rem;
    border-radius: var(--half-circle);
    color: #fff;
    min-width: 4rem;
    display: flex;
    place-content: center;
    place-items: center;
}

.dropdown-menu .title span:hover {
    background: var(--theme);
}

.dropdown-menu.profile-icon {
    top: 2rem !important;
}

.dropdown-item {
    transition: 0.3s;
}

.dropdown-item:hover .profile {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--f-white);
}

.dropdown-item p {
    font-size: var(--small);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 15rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--white);
    background-color: var(--theme-hover);
}

.dropdown-item:hover p,
.dropdown-item:focus p {
    color: #fff !important;
}

/*================ Table ================*/
.table-overflow {
    max-width: 100% !important;
    overflow: auto !important;
}

.table {
    color: var(--semi-black) !important;
    /* text-transform: capitalize; */
    width: 100% !important;
}

.table > thead,
.table > tbody {
    vertical-align: middle !important;
}

.table-responsive {
    overflow-x: unset !important;
}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border: 1px solid var(--bs-gray-500) !important;
}

table thead > tr > th {
    position: relative;
}

thead > tr > th {
    user-select: none !important;
    cursor: grab !important;
}
thead > tr > th:active {
    cursor: grabbing !important;
}

.table-align-middle > tbody > tr {
    vertical-align: middle !important;
}

/*================ form ================*/
.form-control,
.form-select {
    padding: 1rem 1.5rem !important;
    font-size: var(--p);
    border-radius: var(--semi-circle);
    position: relative;
}

.form-group select,
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6' style='transform: rotate(180deg);transform-origin: center;'/%3e%3c/svg%3e");
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator,
.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    width: 95%;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    color: var(--black);
    position: absolute;
    margin: 0;
}

.form-label {
    margin-bottom: 1rem;
}

.form-check-input {
    border-color: var(--gray) !important;
}

.form-check-input:checked {
    background-color: var(--theme);
    border-color: var(--theme-hover) !important;
}

.form-check-input:focus {
    border-color: none !important;
    box-shadow: none;
}

.form-control:focus,
.form-selected:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--theme);
    outline: 0;
    box-shadow: 0 0 0 0.025rem var(--theme-hover);
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
    cursor: default;
}
.form-control:disabled:focus,
.form-control[readonly]:focus {
    background-color: #e9ecef;
    opacity: 1;
}

.form-switch .form-check-input {
    height: 1.5rem;
    width: 2.8rem;
    background-blend-mode: luminosity;
}

.form-error .form-control {
    border: 1px solid red !important;
    background-color: #cb454b12 !important;
}

.form-text {
    display: none;
}

.form-error .form-label {
    color: red !important;
    font-weight: 600;
}

.form-error .form-text {
    color: red !important;
    display: revert !important;
}

.form-group span.required {
    color: var(--gray);
    margin-left: 0.75rem;
}

.form-error span.required {
    color: red !important;
}

.form-group span.form-control-span[contenteditable] {
    display: inline-block;
}
.form-group span.form-control-span[contenteditable]:empty::before {
    content: "Write a message";
    display: inline-block;
}

.form-group select.unicode {
    font-size: 1.8rem !important;
    line-height: 1.3;
}

.form-group option.unicode {
    font-size: 1.8rem !important;
    line-height: 1.4;
}

textarea.form-control {
    min-height: 4.3rem !important;
    height: 4.3rem;
}

/*================ Footer ================*/

section.footer-section {
    margin-top: auto !important;
    /* margin-bottom: 2rem; */
}

.footer {
    margin: 0;
    width: 100%;
    justify-content: space-between;
}

.fa {
    font-size: unset !important;
}

tr > th {
    color: var(--black);
}

/*================ Responsive ================*/
@media screen and (min-width: 1199.1px) {
    .header_mobile_close {
        position: relative;
    }

    .hide-span {
        width: 5%;
    }

    .hide-span .arrow,
    .hide-span .nav__link span,
    .hide-span .submenu li::before,
    .hide-span .submenu li::after {
        opacity: 0;
        visibility: hidden;
        display: none;
    }

    .hide-span .submenu {
        margin: 0.25rem;
    }

    .hide-span .nav__title,
    .hide-span .nav__link {
        place-content: center;
    }

    header {
        position: relative;
        width: 20%;
        min-width: 5% !important;
        box-shadow: none;
    }

    header.hide-span:hover {
        width: 20% !important;
    }

    header:hover span,
    header:hover .arrow,
    header:hover .nav__link span,
    header:hover .submenu li::before,
    header:hover .submenu li::after {
        opacity: 1;
        visibility: unset;
        display: block;
    }

    header:hover .submenu,
    header:hover .hide-span .submenu {
        display: flex;
        margin-left: auto;
        opacity: 1;
        visibility: unset;
    }

    header:hover .nav__title,
    header:hover .nav__link {
        place-content: start !important;
    }

    main {
        min-width: 80%;
    }

    body {
        display: flex;
    }

    .desktop-hide {
        display: none !important;
    }

    .mobile-hide {
        display: revert;
    }

    section.max {
        height: 100%;
        overflow: auto;
    }
}

@media screen and (max-width: 425.98px) {
    html {
        font-size: 8px;
    }
}

@media screen and (max-width: 385.98px) {
    html {
        font-size: 7px;
    }
}
@media screen and (max-width: 299.98px) {
    html {
        font-size: 6px;
    }
}

/*================ Button Float Animation*/
.elementToFadeInAndOut {
    -webkit-animation: fadeinout 0.3s linear forwards;
    animation: fadeinout 0.3s linear forwards;
}

@-webkit-keyframes fadeinout {
    0% {
        opacity: 0;
        margin-top: 2.5rem;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}

@keyframes fadeinout {
    0% {
        opacity: 0;
        margin-top: 2.5rem;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}

/* Nepali Date-picker */
#ndp-nepali-box {
    position: fixed !important;
    top: 40% !important;
    left: 50% !important;
    padding: 1rem !important;
    transform: translate(-50%, -50%) scale(1.5) !important;
    background-color: var(--white) !important;
    border: 1px solid var(--theme) !important;
    box-shadow: 0px 0px 56px 69px rgba(161, 161, 161, 0.1) !important;
}

#ndp-nepali-box .ndc-left,
#ndp-nepali-box .ndc-right {
    padding-top: 4px;
}

.ndp-header {
    border: none !important;
    margin-bottom: 1rem !important;
}

.ndp-corner-all,
.ndp-corner-bottom,
.ndp-corner-br,
.ndp-corner-right {
    border-radius: var(--semi-circle) !important;
}

.ndp-next,
.ndp-prev {
    background: none !important;
    top: 16px !important;
}

.ndp-next {
    right: 17px !important;
}
.ndp-prev {
    left: 17px !important;
}

.ndp-header {
    background: var(--theme) !important;
}

#ndp-nepali-box td.ndp-date {
    padding: 2px;
    border: none !important;
    background: var(--blue) !important;
}

div#ndp-nepali-box td.ndp-date a,
div#ndp-nepali-box td.ndp-selected a {
    color: var(--white) !important;
}

div#ndp-nepali-box td.ndp-selected {
    border: none !important;
    background: var(--theme) !important;
}

div#ndp-nepali-box td.ndp-date a,
div#ndp-nepali-box td.ndp-selected a {
    margin: auto !important;
}

div#ndp-nepali-box td.ndp-current {
    border: 1px solid var(--theme) !important;
}

select#ndp-month-select option,
select#ndp-year-select option {
    font-size: 1.8rem !important;
}

/*================ Copy code ================*/
.code-textarea {
    height: 4rem;
    width: 15rem;
    margin-right: 1rem;
    resize: none;
    overflow: hidden;
    transition: 0.5s;
}

.code-textarea:hover {
    height: 25rem;
    width: 70rem;
    overflow: auto;
}

.copy-hide {
    display: none !important;
}

.copy-success {
    display: block;
    position: fixed;
    animation: copyin 1s linear forwards;
    top: 4.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 10%;
    text-align: center;
    font-weight: 600;
    background-color: var(--theme) !important;
    border-color: var(--theme);
    color: var(--f-white);
}

@keyframes copyin {
    0% {
        display: block;
        opacity: 0;
        margin-top: -2.5rem;
    }
    30% {
        opacity: 1;
        margin-top: 0;
    }
}

/*================ Modal ================*/
.modal-content {
    height: 100%;
    background-color: var(--white);
    color: var(--black);
}
.modal-body {
    max-height: 70vh;
    overflow: auto;
}

/*================ Toastr ================*/
.toast {
    opacity: 1 !important;
    padding: 2.2rem 5.5rem !important;
    font-size: var(--p) !important;
    width: 100% !important;
}

.toast-top-right {
    top: 1.5rem !important;
    right: 2.1rem !important;
}

.toast-message {
    font-size: 1.4rem !important;
}

#toast-container > div {
    opacity: 1 !important;
}

/*================ Pagination ================*/
.pagination {
    margin-bottom: 0rem;
}

.paginate_button.current,
.page-item.active .page-link,
.page-item.active a {
    border: 1px solid var(--gray) !important;
    background-color: var(--theme-hover) !important;
    color: #fff !important;
}

.paginate_button,
.page-item .page-link,
.page-item a {
    padding: 1rem 1.5rem !important;
    color: var(--black) !important;
    background: var(--white) !important;
    border: 1px solid var(--gray) !important;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.paginate_button:hover,
.page-item .page-link:hover,
.page-item a:hover {
    background: var(--bs-gray-400) !important;
    color: var(--black) !important;
}

.paginate_button.disabled,
.page-item.disabled {
    cursor: not-allowed;
    display: none;
}

.page-item.disabled .page-link {
    border: 1px solid var(--gray) !important;
    background-color: var(--bs-gray-400) !important;
    color: var(--white) !important;
}

/*================ Datatable ================*/
.dataTables_wrapper {
    color: var(--black);
}

div.dataTables_scrollHeadInner .datatable,
div.dataTables_scrollHeadInner .datatable_excel {
    margin-bottom: 0;
}

table.dataTable thead .sorting:after {
    content: "\f0dc";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
    font-size: 10px;
    color: var(--gray);
}

table.dataTable thead .sorting_asc:after {
    content: "\f0de";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
    font-size: 10px;
    color: var(--gray);
}

table.dataTable thead .sorting_desc:after {
    content: "\f0dd";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
    font-size: 10px;
    color: var(--gray);
}

.dataTables_length {
    float: left;
    margin-bottom: 1.5rem;
}

div.dataTables_wrapper div.dataTables_length select {
    background: none;
    padding: 0.8rem 1rem;
    font-size: var(--p);
    border-radius: var(--semi-circle);
    margin: auto 1rem;
    outline: none;
    border: 1px solid var(--gray);
    color: var(--black);
}

.dataTables_filter {
    float: right;
    margin-bottom: 1.5rem;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 1rem;
    padding: 0.8rem 1rem;
    font-size: var(--p);
    border-radius: var(--semi-circle) !important;
    outline: none;
    border: 1px solid var(--gray);
}

div.dataTables_wrapper div.dataTables_info {
    float: left;
    margin-top: 2.2rem;
    margin-bottom: 1.5rem;
}

div.dataTables_wrapper div.dataTables_paginate {
    float: right;
    display: flex;
}
.dataTables_paginate.paging_simple_numbers span {
    display: flex;
}
.dataTables_paginate span.ellipsis {
    padding: 1rem 1.5rem !important;
    color: var(--black) !important;
    background: var(--white) !important;
    border: 1px solid var(--gray) !important;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

div.dataTables_wrapper .dt-buttons {
    float: left;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    column-gap: 1rem;
}

div.dataTables_wrapper .dt-buttons button .dt-down-arrow {
    margin-left: 0.8rem;
}

div.dataTables_wrapper .dt-buttons button {
    padding: 1rem 1.5rem !important;
    border-radius: var(--semi-circle);
    font-size: 1.2rem;
    color: var(--f-white) !important;
    background-color: var(--blue);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 1.4rem;
    background-position-x: 1rem;
}

div.dataTables_wrapper .dt-buttons button.buttons-excel {
    background-color: var(--green);
    padding-left: 3rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M3 9h6a1 1 0 0 0 1-1V2h10.002c.551 0 .998.455.998.992v18.016a.993.993 0 0 1-.993.992H3.993A1 1 0 0 1 3 20.993V9zm0-2l5-4.997V7H3z' style='fill: white;'/%3E%3C/svg%3E");
}

div.dataTables_wrapper .dt-buttons button.buttons-collection {
    background: none;
    color: var(--black) !important;
    border: 1px solid;
}

div.dataTables_wrapper .dt-buttons .dt-button-background {
    display: none !important;
}

div.dataTables_wrapper .dt-buttons .dt-button-collection {
    position: absolute;
    z-index: 9999;
}

div.dataTables_wrapper .dt-buttons .dt-button-collection > div {
    border: 1px solid;
    border-radius: var(--semi-circle);
    background: var(--white);
}

div.dataTables_wrapper .dt-buttons .dt-button-collection .button-page-length {
    background: var(--white);
    color: var(--black) !important;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    width: 100%;
}
div.dataTables_wrapper .dt-buttons .dt-button-collection .button-page-length:hover {
    background: var(--bs-gray-300);
}
/*================ Sweetalert Error Resolve ================*/
body.swal2-height-auto {
    height: 100% !important;
}

.swal2-height-auto {
    height: 100% !important;
}

.swal2-container.swal2-center > .swal2-popup {
    font-size: 1.5rem;
}

.swal2-shown {
    overflow: unset !important;
    padding-right: 0px !important;
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown),
html.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    height: 100% !important;
}

.swal-title,
.swal-text {
    color: var(--black);
    text-align: center !important;
}

.swal-button--danger:not([disabled]):hover {
    background-color: #c64a44 !important;
    color: #fff !important;
}

/*================ Select 2 (Select with searchbar)================*/
.select2 .select2-container .select2-container--default .select2-container--below .select2-container--focus {
    width: 100% !important;
    min-width: 25rem !important;
}
.select2-container .select2-selection--single {
    height: auto !important;
    width: auto !important;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: var(--semi-circle) !important;
    border: 1px solid #ced4da;
    font-size: var(--p);
    border-radius: var(--semi-circle);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}
.select2-selection__rendered {
    width: auto !important;
    line-height: unset !important;
    padding: 1rem 1.5rem !important;
}

.select2-container .select2-selection--single:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6' style='transform: rotate(180deg);transform-origin: center;'/%3e%3c/svg%3e");
    border-color: var(--theme);
}

.select2-selection__arrow {
    display: none;
}

.select2-dropdown .select2-dropdown--below {
    width: auto !important;
}
.select2-search__field {
    width: 100% !important;
    line-height: unset !important;
    padding: 1rem 1.5rem !important;
    border-radius: var(--semi-circle) !important;
}

/* Dark theme for website */
.darkmode {
    --black: #f0f0f0;
    --semi-black: #f0f0f0;
    --white: #1c1c27;
    --bs-gray-400: #343a40;

    --theme: rgb(var(--main-theme-color));
    --theme-hover: rgba(var(--main-theme-color), 0.9);
}

.darkmode .darklogo {
    filter: invert(1) !important;
}

.darkmode .form-control {
    background-color: var(--white);
    border-color: var(--bs-gray-600);
    color: var(--bs-gray-300);
    background-blend-mode: screen;
}

.darkmode .form-group select,
.darkmode .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6' style='stroke: white;'/%3E%3C/svg%3E");
}

.darkmode .form-group select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6' style='transform: rotate(180deg);transform-origin: center;stroke: white;'/%3e%3c/svg%3e");
}

.darkmode ::placeholder {
    color: var(--bs-gray-300);
}

.darkmode .form-group input[type="date"]::-webkit-calendar-picker-indicator,
.darkmode .form-group input[type="time"]::-webkit-calendar-picker-indicator,
.darkmode .form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.darkmode .modal-content,
.darkmode .swal-modal,
.darkmode .swal2-modal,
.darkmode .accordion-button,
.darkmode .accordion-body {
    background-color: var(--bs-gray-400);
    color: var(--black);
}

/* Dark theme According to System Setting */
/* @media (prefers-color-scheme: dark) {
    :root {
        --black: #f0f0f0;
        --semi-black: #f0f0f0;
        --white: #1c1c27;
        --bs-gray-400: #343a40;
    }
    .darkmode {
        --white: #fff;
        --off-white: #d0d0d0;
        --light-gray: #b2b3b6;
        --gray: #858585;
        --semi-black: #1a1a1a;
        --black: #000000;
        --bs-gray-400: #ced4da;

        --theme: rgb(var(--main-theme-color));
        --theme-hover: rgba(var(--main-theme-color), 0.8);
    }
} */
