:root {
    /* ---Theme-Fonts-Css--- */
    --theme-font-family: "Urbanist", sans-serif;
    /* ---Theme-Colors--- */
    --theme-primary-color: 253, 99, 60;
    /* ---Theme-Fonts-Colors--- */
    --theme-black-text-color: 32, 32, 32;
    --theme-White-text-color: 255, 255, 255;
    --theme-grey-text-color: 131, 131, 131;
    --theme-grey-1-text-color: 120, 120, 120;
    /* ---Theme-Fonts-Bg--- */
    --theme-black-bg-color: 32, 32, 32;
    --theme-body-bg-color: 246, 246, 246;
    --theme-white-bg-color: 255, 255, 255;
    --theme-grey-bg-color: 250, 250, 250;
    /* ---Theme-Border-Color--- */
    --theme-form-border-color: 243, 243, 243;
    --theme-white-border-color: 255, 255, 255;
    --theme-black-border-color: 32, 32, 32;
    /* ---Theme-Highlight-Color--- */
    --theme-success-color: 141, 199, 102;
    --theme-danger-color: 255, 47, 47;
    --theme-warning-color: 255, 193, 7;
    /* ---Chart-Color--- */
    --theme-text-color: #7B7B7B;
    --theme-highlight-color: #FD633C;
    --theme-highlight-color-2: #FF3D00;
    --theme-highlight-color-3: #C9C9C9;
    --theme-highlight-black: #202020;
    --theme-border-color: #F2F2F7;
}

/* ---Universal-css--- */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--theme-font-family);
    background: rgb(var(--theme-body-bg-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    color: rgb(var(--theme-color-primary));
}

a:hover {
    color: rgb(var(--theme-color-primary-hover));
    text-decoration: none;
}

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

/* ---Commen-Css--- */
/* ---Toastr-Css--- */
#toast-container>div {
    width: 400px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 10px 10px;
    padding-left: 40px;
    opacity: 1;
    flex-direction: row-reverse;
    background-size: 16px;
    border: 0;
    box-shadow: none;
    transition: box-shadow 0.4s ease;
}

#toast-container>div:hover {
    box-shadow: 0 0 10px #00000047;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.toast-close-button {
    position: unset;
    float: unset;
    line-height: 9px;
    display: block;
    opacity: 1;
    font-weight: 200;
    font-size: 20px;
    vertical-align: middle;
    text-shadow: none;
    border: 1px solid #ffffff !important;
    padding: 5px !important;
    border-radius: 20px;
}

.toast-success {
    background-color: rgb(var(--theme-success-color));
}

.toast-error {
    background-color: rgb(var(--theme-danger-color));
}

.toast-warning {
    background-color: rgb(var(--theme-warning-color));
}

.toast-info {
    background-color: rgb(var(--theme-primary-color));
}

/* ---Badge-Css--- */
.badge {
    font-size: 14px;
    line-height: 18px;
    padding: 2px 12px;
    font-weight: 500;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bg-success {
    --bs-bg-opacity: 0.2;
    background-color: rgba(var(--theme-success-color), var(--bs-bg-opacity)) !important;
}

.bg-warning {
    --bs-bg-opacity: 0.2;
    background-color: rgba(var(--theme-warning-color), var(--bs-bg-opacity)) !important;
}

.bg-danger {
    --bs-bg-opacity: 0.2;
    background-color: rgba(var(--theme-danger-color), var(--bs-bg-opacity)) !important;
}


.text-success {
    color: rgba(var(--theme-success-color), var(--bs-text-opacity)) !important;
}

.text-warning {
    color: rgba(var(--theme-warning-color), var(--bs-text-opacity)) !important;
}

.text-danger {
    color: rgba(var(--theme-danger-color), var(--bs-text-opacity)) !important;
}


/* ---Commen-head, Font-weight & Text-Color Css--- */
.head-xl {
    font-size: 38px;
    line-height: normal;
}

.head-lg {
    font-size: 34px;
    line-height: normal;
}

.head-sm {
    font-size: 24px;
    line-height: normal;
}

.text-xll {
    font-size: 22px;
    line-height: normal;
}

.text-xl {
    font-size: 18px;
    line-height: normal;
}

.text-lg {
    font-size: 16px;
    line-height: normal;
}

/* .text-md {
    font-size: 14px;
} */

.text-sm {
    font-size: 14px;
    line-height: normal;
}

.font-300 {
    font-weight: 300;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.font-600 {
    font-weight: 600;
}

.font-700 {
    font-weight: 700;
}

.font-800 {
    font-weight: 800;
}

.theme-text {
    color: rgb(var(--theme-primary-color));
}

.theme-text-black {
    color: rgb(var(--theme-black-text-color));
}

.theme-text-grey {
    color: rgb(var(--theme-grey-1-text-color));
}

/* --Form & Input-Css---*/
input:-internal-autofill-selected {
    background-color: rgba(var(--theme-primary-color), .2) !important;
}

::placeholder {
    font-size: 14px;
    color: rgb(var(--theme-grey-1-text-color));
    line-height: normal;
    font-weight: 500;
}

.form-label,
.form-check-label {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: rgb(var(--theme-black-text-color));
}

.form-control,
.form-select {
    min-width: 300px;
    min-height: 36px;
    border: 1px solid rgb(var(--theme-form-border-color));
    background-color: rgb(var(--theme-white-bg-color));
    color: rgb(var(--theme-black-text-color));
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    padding: 8px 10px;
    border-radius: 8px;
}

.form-lg {
    min-height: 48px;
    font-size: 16px;
    padding: 10px 14px;
}

.form-lg::placeholder {
    font-size: 16px;
    line-height: 16px;
}

.form-select {
    min-width: 140px;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    color: rgb(var(--theme-black-text-color));
    background-color: var(--bs-body-bg);
    border-color: rgb(var(--theme-primary-color));
    box-shadow: 0 0 0 .25rem rgba(var(--theme-primary-color), .25);
}

.form-switch .form-check-input {
    width: 40px;
    height: 20px;
}

.form-check-input:checked {
    background-color: rgb(var(--theme-primary-color));
    border-color: rgb(var(--theme-primary-color));
}

.form-switch .form-check-input:focus {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffeeea'/%3e%3c/svg%3e");
}

.search-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16"><path d="M14.3539 13.6463L11.2245 10.5175C12.1315 9.42859 12.5838 8.03189 12.4873 6.61798C12.3908 5.20407 11.7528 3.88181 10.7062 2.92625C9.65963 1.9707 8.28492 1.45543 6.86808 1.48763C5.45125 1.51983 4.10137 2.09702 3.09926 3.09913C2.09714 4.10125 1.51995 5.45113 1.48775 6.86796C1.45555 8.2848 1.97082 9.65951 2.92637 10.7061C3.88193 11.7527 5.20419 12.3906 6.6181 12.4872C8.03201 12.5837 9.42871 12.1314 10.5176 11.2244L13.6464 14.3538C13.6928 14.4002 13.748 14.4371 13.8087 14.4622C13.8694 14.4874 13.9344 14.5003 14.0001 14.5003C14.0658 14.5003 14.1309 14.4874 14.1916 14.4622C14.2523 14.4371 14.3074 14.4002 14.3539 14.3538C14.4003 14.3073 14.4372 14.2522 14.4623 14.1915C14.4875 14.1308 14.5004 14.0657 14.5004 14C14.5004 13.9343 14.4875 13.8693 14.4623 13.8086C14.4372 13.7479 14.4003 13.6927 14.3539 13.6463ZM2.50014 7.00002C2.50014 6.11 2.76406 5.23998 3.25853 4.49995C3.753 3.75993 4.4558 3.18316 5.27807 2.84256C6.10033 2.50197 7.00513 2.41285 7.87805 2.58649C8.75096 2.76012 9.55279 3.1887 10.1821 3.81804C10.8115 4.44738 11.24 5.2492 11.4137 6.12211C11.5873 6.99503 11.4982 7.89983 11.1576 8.7221C10.817 9.54436 10.2402 10.2472 9.50021 10.7416C8.76019 11.2361 7.89016 11.5 7.00014 11.5C5.80707 11.4987 4.66325 11.0242 3.81962 10.1805C2.976 9.33691 2.50147 8.19309 2.50014 7.00002Z" fill="%237B7B7B"/></svg>');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left 10px center;
    padding-left: 36px;
    background-color: rgb(var(--theme-grey-bg-color));
}

.form-check-input {
    width: 18px;
    height: 18px;
}

.form-full-width {
    min-width: 100%;
    max-width: 100%;
}

/* --Button-Css---*/
.theme-icon-btn {
    font-size: 26px;
    line-height: 26px;
    color: rgb(var(--theme-grey-text-color));
    border: none;
    background-color: transparent;
}

.theme-icon-btn-sm {
    font-size: 18px;
    line-height: 18px;
    color: rgb(var(--theme-grey-text-color));
    border: none;
    background-color: transparent;
}

.theme-icon-btn:hover,
.theme-icon-btn-sm:hover {
    color: rgb(var(--theme-primary-color));
}

.theme-btn,
.border-btn {
    padding: 8px 16px;
    color: rgb(var(--theme-White-text-color));
    background-color: rgb(var(--theme-black-bg-color));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    gap: 10px;
    cursor: pointer;
    transition-property: color, background-color, border;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
    border: 1px solid rgb(var(--theme-black-border-color));
}

.theme-btn:hover,
.theme-btn:active {
    color: rgb(var(--theme-primary-color));
    background-color: rgb(var(--theme-white-bg-color));
    border: 1px solid rgb(var(--theme-primary-color));
}

.btn-radius-30 {
    border-radius: 30px;
}

.theme-btn i,
.border-btn i {
    font-size: 20px;
    line-height: 20px;
}

.btn-white {
    border: 1px solid rgb(var(--theme-white-border-color));
    background-color: rgb(var(--theme-white-bg-color));
    color: rgb(var(--theme-black-text-color));
}

.btn-white .green-icon {
    color: rgb(var(--theme-success-color));
    position: relative;
}

.btn-white .green-icon::after {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: -2px;
    left: 10%;
    background-color: rgba(var(--theme-success-color), 0.2);
    border-radius: 20px;
}

.add-icon-btn {
    background-color: rgb(var(--theme-white-bg-color));
    color: rgb(var(--theme-black-text-color));
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 18px;
    border-radius: 20px;
}

.border-btn {
    border: 1px solid rgb(var(--theme-form-border-color));
    background-color: var(--theme-white-bg-color);
    color: rgb(var(--theme-black-text-color));
    transition-property: background-color;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.border-btn:hover {
    background-color: rgb(var(--theme-grey-bg-color));
}

.theme-del-btn {
    font-size: 22px;
    line-height: 22px;
    padding: 6px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease;
}

.theme-del-btn:hover,
.theme-del-btn:active {
    background-color: rgba(var(--theme-danger-color), 0.3) !important;
}

/* --Dropdown-Css---*/
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item i {
    font-size: 18px;
    line-height: 18px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: rgba(var(--theme-primary-color), 0.1);
    color: rgb(var(--theme-primary-color)) !important;
}

.dropdown-item.text-danger.active,
.dropdown-item.text-danger:active {
    --bs-bg-opacity: 0.2;
    background-color: rgba(var(--theme-danger-color), var(--bs-bg-opacity)) !important;
}

.theme-drop.nav-drop .dropdown-toggle {
    padding: 0;
}

.theme-drop.dropdown-toggle::after {
    display: none;
}

.theme-drop .dropdown-toggle {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='currentColor' viewBox='0 0 256 256'%3E%3Cpath d='M128 176a8 8 0 0 1-5.66-2.34l-72-72a8 8 0 0 1 11.32-11.32L128 157.37l66.34-66.34a8 8 0 0 1 11.32 11.32l-72 72A8 8 0 0 1 128 176z'/%3E%3C/svg%3E") no-repeat center;
    background-repeat: no-repeat;
    background-position: center right;
    padding-right: 24px !important;
    background-size: 18px;
}

.theme-drop .dropdown-toggle:hover {
    text-decoration: none;
}

.theme-drop .dropdown-toggle::after {
    display: none;
}

.theme-drop {
    line-height: normal;
    display: flex;
    align-items: center;
    height: min-content;
    border: none;
    background-color: transparent;
    font-size: 16px;
    line-height: 16px;
}

.theme-drop.no-drop-icon .dropdown-toggle {
    background: transparent;
    padding-right: 0 !important;
}

.dropdown-divider {
    border-color: rgb(var(--theme-form-border-color));
    margin: 6px;
}

/* --Accordion-Css---*/
.accordion-button:not(.collapsed),
.accordion-button:focus {
    background-color: transparent;
    box-shadow: 0 0 0 .25rem rgba(var(--theme-primary-color), .25);
}

.accordion-button,
.accordion-body {
    padding: 20px 15px;
}

.accordion-button::after {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    background-color: rgb(var(--theme-grey-bg-color));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-position: center;
    background-size: 18px;
}

.no-button.accordion-button::after {
    margin-left: auto;
}

.accordion-item {
    border-color: rgb(var(--theme-form-border-color));
}

/* --Table-Css---*/
table.theme-table {
    border: none !important;
    width: 100% !important;
}

.theme-table th,
.theme-table td {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 8px;
    vertical-align: middle;
}

.theme-table th {
    background-color: rgb(var(--theme-body-bg-color));
    color: rgb(var(--theme-grey-text-color));
    border-bottom: none !important;
}

.theme-table td {
    background-color: rgb(var(--theme-white-bg-color));
    color: rgb(var(--theme-black-text-color));
    border-bottom: 1px solid rgb(var(--theme-form-border-color)) !important;
}

.theme-table tr:last-child td {
    border-bottom: none !important;
}

.table-highlight {
    border: 1px solid rgba(var(--theme-black-border-color), 0.1);
    padding: 10px;
    border-radius: 10px;
}

.table-highlight .theme-table th {
    background-color: rgba(var(--theme-black-bg-color), 0.08);
}

.table-highlight .theme-table th:first-child {
    border-radius: 10px 0 0 10px;
}

.table-highlight .theme-table th:last-child {
    border-radius: 0 10px 10px 0;
}

.table-highlight .theme-table td {
    background-color: transparent;
}

.w-20 {
    width: 20%;
}

/* --Data-Table-Css---*/
.user-profile {
    background-color: rgb(var(--theme-primary-color));
    color: rgb(var(--theme-White-text-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    width: 34px;
    height: 34px;
}

.dataTables_empty {
    padding: 40px 0 !important;
}

.dataTables_info {
    color: rgb(var(--theme-black-text-color));
    font-size: 14px;
    font-weight: 500;
    padding-top: 0 !important;
    height: max-content;
}

.datatable-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.dataTables_length label {
    font-size: 14px;
    text-transform: capitalize;
    color: rgb(var(--theme-black-text-color));
    font-weight: 500;
}

.dataTables_length .form-select {
    min-width: max-content;
    padding-right: 20px !important;
    background-position: center right 5px;
    min-height: 36px;
    border: 1px solid rgb(var(--theme-form-border-color)) !important;
    background-color: rgb(var(--theme-white-bg-color)) !important;
    color: rgb(var(--theme-black-text-color)) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px !important;
}

.dataTables_paginate {
    padding-top: 0 !important;
}

.pagination {
    margin: 0 !important;
}

.paginate_button {
    padding: 0 !important;
}

.page-link {
    font-size: 12px;
    padding: 4px 8px;
    font-weight: 500;
}

.page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--theme-primary-color), 0.25);
}

.active>.page-link,
.page-link.active {
    background-color: rgb(var(--theme-primary-color));
    border-color: rgb(var(--theme-primary-color));
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.page-item.active:hover {
    border-color: transparent;
}

/* --Card-Css---*/
.theme-card {
    background-color: rgb(var(--theme-white-bg-color));
    border: 1px solid rgb(var(--theme-form-border-color));
    padding: 16px;
    border-radius: 16px;
}

.card-head {
    align-items: center !important;
}

/* --Modal-Css---*/
.modal-header {
    padding: 16px;
    border-bottom: none;
    padding-bottom: 0;
    justify-content: space-between;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

.btn-close {
    background: transparent;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close::before {
    font-size: 30px;
    line-height: 30px;
    content: "\e4f8";
    font-family: "Phosphor" !important;
    display: block;
}

.modal-footer {
    padding-top: 0;
    border-top: none;
}

.modal-content {
    border-radius: 16px;
    border: none;
}

/* --Tabs-Css---*/
.tab-content {
    background-color: rgba(var(--theme-body-bg-color));
    padding: 20px;
    border-radius: 16px;
}

.nav-tabs .nav-link i {
    font-size: 20px;
    line-height: 20px;
}

.nav-tabs .nav-link {
    padding: 14px 16px;
    margin-bottom: 0;
    border: none;
    border-radius: 16px 16px 0 0;
    display: flex;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    gap: 10px;
    align-items: center;
    color: rgb(var(--theme-grey-text-color));
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: rgba(var(--theme-body-bg-color));
}

.nav-tabs {
    padding-left: 40px;
    border: none;
}

/* --Layout-Spacing & Divider-Css---*/
.layout-pad {
    padding: 20px 10px;
}

.form-spacing {
    row-gap: 20px;
}

.theme-form-divider {
    border-top: 1px solid rgb(var(--theme-form-border-color));
    padding-top: 20px;
}

/* --Theme-Layout-Css---*/
.main-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
}

.auth-wrapper {
    padding: 20px;
}

.content-wrapper {
    overflow: hidden;
    padding-left: 280px;
    transition-property: padding;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.main-wrapper.sidebar-closed .content-wrapper {
    padding-left: 80px;
    transition-property: padding;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.content-wrapper-inner {
    overflow: hidden;
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    padding: 10px;
}

/* --Sidebar-Css---*/
.sidebar-link,
.sidebar-item {
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    display: flex;
    gap: 8px;
    align-items: center;
    transition-property: font-size, gap;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-submenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sidebar-item {
    width: 100%;
    padding: 8px 14px;
    border-radius: 25px;
    color: rgb(var(--theme-grey-1-text-color));
}

.sidebar-item.active,
.menu-open .sidebar-submenu {
    background-color: rgb(var(--theme-black-bg-color));
    color: rgb(var(--theme-White-text-color));
    transition-property: margin-bottom;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.menu-open .sidebar-submenu {
    margin-bottom: 6px;
}

.menu-open .sidebar-icon {
    background-color: rgb(var(--theme-white-bg-color));
}

.submenu-list .sidebar-item.active {
    background-color: rgba(var(--theme-primary-color), 0.2);
    color: rgb(var(--theme-primary-color));
}

.sidebar-link i {
    font-size: 20px;
    line-height: 20px;
    transition-property: font-size;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-logo {
    font-size: 22px;
    font-weight: 600;
    color: rgb(var(--theme-black-text-color));
}

.theme-sidebar-main {
    width: 280px;
    padding: 10px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition-property: width;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed {
    width: 80px;
    transition-property: width;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed .sidebar-subhead,
.theme-sidebar-main.collapsed .sidebar-link,
.theme-sidebar-main.collapsed .sidebar-item,
.theme-sidebar-main.collapsed .sidebar-icon i {
    font-size: 0;
    justify-content: center;
    gap: 0;
    transition-property: font-size, justify-content, gap;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed .submenu-list {
    padding-left: 0;
    transition-property: padding-left;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed .sidebar-icon {
    width: 0;
    height: 0;
}

.theme-sidebar-main.collapsed .theme-sidebar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.theme-sidebar-main.collapsed .theme-sidebar::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    transition-property: width, height;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed .sidebar-item:has(.sidebar-subhead) {
    display: none;
    transition-property: display;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar {
    background-color: rgb(var(--theme-White-text-color));
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.sidebar-menu-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-subhead {
    color: rgb(var(--theme-grey-text-color));
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    transition-property: font-size;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-icon {
    background-color: rgba(var(--theme-grey-text-color), 0.2);
    border-radius: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: width, height;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-icon i {
    transition: transform 0.4s ease;
    font-size: 16px;
    line-height: 16px;
    color: rgb(var(--theme-black-text-color));
    transition-property: font-size;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-icon i::before {
    transition: content 0.4s ease;
}

.submenu {
    /* display: flex;
    flex-direction: column;
    gap: 6px; */
}

.submenu-list {
    padding-left: 10px;
    width: 100%;
    overflow: hidden;
    height: 0;
    transform: translateY(-5px);
    transition-property: height, transform;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition-property: padding-left;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.submenu.menu-open .submenu-list {
    height: max-content;
    transform: translateY(0);
    transition-property: padding;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-item:has(.sidebar-subhead) {
    padding-bottom: 10px;
    padding-top: 20px;
}

.sidebar-toggle-btn {
    border-radius: 20px;
    width: 30px;
    height: 30px;
    background-color: rgb(var(--theme-black-bg-color));
    color: rgb(var(--theme-White-text-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 0;
    top: 0;
    z-index: 2;
}

.sidebar-toggle-btn {
    border-radius: 20px;
    width: 30px;
    height: 30px;
    background-color: rgb(var(--theme-black-bg-color));
    color: rgb(var(--theme-White-text-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 0;
    top: 0;
    z-index: 2;
    transform: rotate(0deg);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 120ms;
}

.sidebar-toggle {
    display: flex;
    justify-content: flex-end;
}

.theme-sidebar-main.collapsed .sidebar-toggle-btn i {
    transform: rotate(180deg);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 120ms;
}

/* --Navbar-Css---*/
.navbar-theme {
    background-color: rgb(var(--theme-white-bg-color));
    padding: 8px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.theme-divider {
    height: 100%;
    width: 1px;
    background-color: rgba(var(--theme-black-bg-color), 0.2);
}

.profile-drop-main .dropdown-menu {
    min-width: 240px;
    border-radius: 20px;
    overflow: hidden;
    padding: 8px;
}

.profile-drop-main .dropdown-item {
    color: rgb(var(--theme-grey-text-color));
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 400;
    gap: 8px;
    border-radius: 10px;
}

.profile-drop-main .dropdown-item i {
    font-size: 20px;
    line-height: 20px;
}

/* --Dashboard-Layout-Css---*/
.dash-card {
    flex: 1;
}

.highlight-card-dash {
    background-color: rgb(var(--theme-primary-color));
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.highlight-card-dash::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 25vw;
    min-height: 25vw;
    background-image: url('/images/vectors/highlight-shape.svg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    left: -2%;
    top: -30%;
    opacity: 0.4;
}

.rupe-top {
    vertical-align: super;
}

.card-upper,
.card-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.card-right-items {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-card-icon {
    border: 1px solid rgb(var(--theme-form-border-color));
    color: rgb(var(--theme-primary-color));
    font-size: 20px;
    line-height: 20px;
    padding: 4px;
    border-radius: 4px;
}

.dash-inner-cards {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.lg-box-big {
    grid-column: span 5;
}

.md-box-big {
    grid-column: span 2;
}

.sm-box-big {
    grid-column: span 2;
}

.highlighter-card {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.highlighter {
    width: 20px;
    height: 60px;
    border-radius: 6px;
}

.retailers {
    background-color: var(--theme-highlight-black);
}

.distributors {
    background-color: var(--theme-highlight-color);
}

.masters {
    background-color: var(--theme-highlight-color-2);
}

.clients {
    background-color: var(--theme-highlight-color-3);
}

.highlighter-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlights-colors {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.overview-graph {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 52px);
}

.blance-wrapper {
    border: 1px solid rgb(var(--theme-form-border-color));
    background-color: rgb(var(--theme-grey-bg-color));
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 8px;
    gap: 6px;
}

.blance-wrapper i {
    font-size: 24px;
    line-height: 24px;
    color: rgb(var(--theme-grey-text-color));
}

.blance-wrapper span {
    font-size: 16px;
    line-height: 16px;
    color: rgb(var(--theme-grey-text-color));
    font-weight: 500;
}

/* --Dashboard-Charts-Css---*/
.chart-bubble {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.chart-bubble.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.chart-bubble span {
    color: var(--theme-text-color);
    font-size: 13px;
    font-weight: 400;
}

.chart-bubble strong {
    color: var(--theme-highlight-black);
    font-size: 20px;
    font-weight: 600;
}

/* --Auth-Pages-Css---*/
.banner-login {
    background-image: url('/images/auth/login-banner.png');
    background-repeat: no-repeat;
    background-position: center 0%;
    width: 100%;
    height: calc(100vh - 40px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 40px;
    border-radius: 16px;
    background-size: cover;
}

/* --Login-Pages-Css---*/
.login-center {
    display: flex;
    align-items: center;
    justify-content: stretch;
    height: calc(100% - 17px);
}

.login-card {
    padding: 60px 20px;
}

/* --Verify-Blade-Pages-Css---*/
.otp-inputs {
    gap: 12px;
    width: 100%;
    gap: 20px;
}

.otp-box {
    width: 100%;
    height: 135px;
    text-align: center;
    font-size: 96px;
    line-height: normal;
    border-radius: 30px;
    border: 1px solid rgb(var(--theme-form-border-color));
    transition: all 0.2s ease;
}

.otp-box:focus {
    border-color: rgb(var(--theme-primary-color));
    box-shadow: 0 0 0 3px rgba(var(--theme-primary-color), 0.25);
    outline: none;
}

/* --Select-Blade-Pages-Css---*/
.method-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-btn {
    display: flex;
    align-items: center;
    border: 1px solid rgb(var(--theme-form-border-color));
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(var(--theme-body-bg-color));
    gap: 20px;
    transition: border 0.4s ease, background-color 0.4s ease;
}

.method-btn:hover,
.method-btn:active {
    background-color: rgba(var(--theme-primary-color), .1);
    border-color: rgb(var(--theme-primary-color));
}

.method-btn img {
    width: 80px;
    height: 80px;
}

.method-btn i {
    font-size: 80px;
    line-height: 80px;
    color: rgb(var(--theme-primary-color));
}

.method-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --Commisson-Blade-Pages-Css---*/
.commisson-wrapper {
    gap: 30px;
    display: flex;
    align-items: center;
}

.commisson-card {
    max-width: 300px;
    padding: 16px 20px;
    background-color: rgb(var(--theme-grey-bg-color));
    transition: border-color 0.4s ease, background-color 0.4s ease;
}

.commisson-card:hover {
    background-color: rgba(var(--theme-primary-color), .2);
    border-color: rgb(var(--theme-primary-color));
}

.commission-btn {
    margin-left: auto;
}

.commission-table {
    border-radius: 12px;
    /* overflow: hidden; */
}

.commission-table td {
    background-color: rgb(var(--theme-grey-bg-color));
}

/* --Show-Dashboard-Pages-Css---*/
.profile-img .user-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-size: 80px;
    line-height: 80px;
}

.show-head {
    display: flex;
    gap: 20px;
}

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

.profile-col-deatils {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex: 1;
    justify-content: space-between;
}

.profile-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.profile-tab-item {
    flex: 0 0 21%;
}

/* --Services-Pages-Css---*/
.services-img {
    height: 100%;
    object-fit: contain;
}

.notif-dropdown {
    position: absolute;
    top: 50px;
    right: 15px;
    width: 280px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 9999;
}

.notif-item:hover {
    background: #f8f9fa;
    cursor: pointer;
}

.notif-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgb(var(--theme-primary-color));
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    padding: 3px 6px;
}