:root {
    --main-theme-color: #006dd8;
    --secondary-theme-color: #3f96ea;
    --menu-gradient-color: rgb(139, 98, 63, 0.5);
    --font-family: var(--font-inter);
    --primary-color: #006dd8;
    --primary-color-text: #ffffff;
}

::-webkit-scrollbar {
    width: 3px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--main-theme-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 12px;
}

body {
    font-size: 12px;
    font-family: var(--font-inter);
    background: #f4f6f8;
}

p {
    margin-bottom: 0;
}

img {
    height: auto;
    max-width: 100%;
}

.card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(145 158 171 / 12%);
    padding: 15px 1.5rem;
    margin-bottom: 1rem;
}

.card .card-header .card-title {
    font-size: 16px;
    color: #1c252e;
}

.menu-vertical .menu-item .menu-link {
    font-size: 12px;
}

.app-brand-logo.demo {
    height: auto;
    width: 0;
    display: none;
}

.app-brand-logo.demo img {
    height: 100%;
    max-width: 100%;
}

.light-style .menu .app-brand.demo {
    margin-left: 0;
    padding-left: 0;
}

.app-brand-text.demo img {
    height: 60px;
}

.card[class*="card-border-shadow-"] {
    position: relative;
    border-bottom: none;
    transition: all 0.2s ease-in-out;
    z-index: 1;
}

.card[class*="card-border-shadow-"]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

.card[class*="card-border-shadow-"]:hover::after {
    border-bottom-width: 3px;
}

.card.card-border-shadow-primary::after {
    border-bottom-color: #c7c2f9;
}

.card.card-border-shadow-primary:hover::after {
    border-bottom-color: var(--main-theme-color);
}

.card.card-border-shadow-warning::after {
    border-bottom-color: #ffd9b4;
}

.card.card-border-shadow-warning:hover::after {
    border-bottom-color: #ff9f43;
}

.card.card-border-shadow-danger::after {
    border-bottom-color: #f7bbbb;
}

.card.card-border-shadow-danger:hover::after {
    border-bottom-color: #ea5455;
}

.card.card-border-shadow-info::after {
    border-bottom-color: #99ecf6;
}

.card.card-border-shadow-info:hover::after {
    border-bottom-color: #00cfe8;
}

.card.card-border-shadow-dark::after {
    border-bottom-color: #b7b7b7;
}

.card.card-border-shadow-dark:hover::after {
    border-bottom-color: #4b4b4b;
}

.card.card-border-shadow-light::after {
    border-bottom-color: #f2f2f4;
}

.card.card-border-shadow-light:hover::after {
    border-bottom-color: #dfdfe3;
}

.card.card-border-shadow-secondary::after {
    border-bottom-color: #dcdddf;
}

.card.card-border-shadow-secondary:hover::after {
    border-bottom-color: #a8aaae;
}

div.dataTables_scrollBody>table>tbody tr td.islinks {
    text-align: center;
}

.ajax-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.ajax-loader.show {
    display: flex;
}

.ajax-loader .loader4 {
    width: 45px;
    height: 45px;
    display: inline-block;
    padding: 0px;
    border-radius: 100%;
    border: 5px solid;
    border-top-color: #b42231;
    border-bottom-color: rgba(255, 255, 255, 0.6);
    border-left-color: #b42231;
    border-right-color: rgba(255, 255, 255, 0.6);
    -webkit-animation: loader4 1s ease-in-out infinite;
    animation: loader4 1s ease-in-out infinite;
}

@keyframes loader4 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bg-menu-theme .menu-inner-shadow.scrolled {
    display: block;
}

p.loginerror {
    margin-top: 5px;
    color: tomato;
    padding-left: 5px;
}

.MuiTableHead-root tr th {
    background-color: #f8f7fa;
    border-top: 1px solid #dbdade;
}

form p.error-message {
    color: tomato;
    margin-top: 7px;
    font-size: 12px;
}

.ql-editor {
    overflow: auto;
    max-height: 300px;
}

a.text-body.delete-record {
    cursor: pointer;
}

.listofpages ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.listofpages ul li {
    width: 50%;
    margin-bottom: 10px;
}

.custom-site-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-site-loader span.loader-1 {
    width: 60px;
    height: 60px;
    border: 6px solid #eee;
    border-bottom-color: var(--main-theme-color);
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.sticky__form-button {
    text-align: right;
    position: sticky;
    bottom: 15px;
}

.card {
    box-shadow: 0 1px 2px 0 rgba(145 158 171 / 0.16);
    border-radius: 16px;
}

.bg-menu-theme.menu-vertical .menu-item.active>.menu-link:not(.menu-toggle) {
    color: var(--main-theme-color) !important;
    background: rgb(139 98 63 / 10%);
    box-shadow: none;
}

.layout-content-navbar .layout-menu {
    background: #f4f6f8 !important;
    box-shadow: none;
    border-right: 1px solid rgb(145 158 171 / 12%);
}

.layout-wrapper:not(.layout-horizontal) .bg-menu-theme .menu-inner .menu-item .menu-link {
    border-radius: 10px;
}

.layout-navbar-fixed .layout-navbar.navbar-detached {
    width: calc(100% - 16.25rem);
    max-width: unset;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent !important;
    border-bottom: 1px solid rgb(145 158 171 / 12%);
    height: 4rem;
    backdrop-filter: blur(7px);
}


/* .layout-navbar-fixed .layout-navbar.navbar-detached::before {
    backdrop-filter: blur(6px);
    background-color: rgba(244 246 248 / 0.8);
    opacity: 0;
    content: "";
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1), visibility 200ms cubic-bezier(0.4, 0, 0.2, 1);
} */

.light-style .menu .app-brand.demo {
    border-bottom: 1px solid rgb(145 158 171 / 12%);
    margin: 0;
    height: 4rem;
}

.bg-menu-theme .menu-inner-shadow {
    display: none !important;
}

html:not(.layout-menu-collapsed) .bg-menu-theme .menu-inner .menu-item:not(.active) .menu-link:hover,
.layout-menu-hover.layout-menu-collapsed .bg-menu-theme .menu-inner .menu-item:not(.active) .menu-link:hover {
    background: rgba(145 158 171 / 0.08);
}

.card.counter-custom-card .card-title {
    margin: 0;
}

.card.counter-custom-card .card-title p.count {
    font-size: 28px;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
}

.card.counter-custom-card .card-title p.title {
    margin: 0;
    font-weight: 500;
}

.card.counter-custom-card .card-icon span.icon img {
    width: auto;
    height: 40px;
}

.card.counter-custom-card .card-icon {
    position: absolute;
    right: 5%;
    top: 25%;
}

.card.counter-custom-card {
    position: relative;
    overflow: hidden;
}

.card.counter-custom-card .layer {
    top: -44px;
    width: 160px;
    height: 160px;
    right: -104px;
    opacity: 0.12;
    border-radius: calc(3 * 8px);
    position: absolute;
    transform: rotate(40deg);
    background: linear-gradient(to right, #ffab00, transparent);
    z-index: 1;
}

.card.counter-custom-card .layer.warning {
    background: linear-gradient(to right, #ffab00, transparent);
}

.card.counter-custom-card .layer.success {
    background: linear-gradient(to right, #22c55e, transparent);
}

.card.counter-custom-card .layer.info {
    background: linear-gradient(to right, #8e33ff, transparent);
}

.card.counter-custom-card .layer.danger {
    background: linear-gradient(to right, #e54c32, transparent);
}

.page-header-custom .theme-breadcrumb {
    display: flex;
    padding: 0;
    list-style: none;
    gap: 15px;
    align-items: center;
    margin: 0;
}

.page-header-custom .theme-breadcrumb .theme-breadcrumb-item {
    color: #1c252e;
}

.page-header-custom .theme-breadcrumb .theme-breadcrumb-item.active {
    color: #919eab;
}

.page-header-custom .theme-breadcrumb .theme-breadcrumb-dot {
    display: flex;
    user-select: none;
    margin: 0px;
}

.page-header-custom .theme-breadcrumb .theme-breadcrumb-dot .breadcrumb-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #919eab;
}

.page-header-custom {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header-custom p.title {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}

.btn {
    --bs-btn-padding-x: 0.7rem;
    --bs-btn-padding-y: 0.5rem;
    font-size: 12px;
}

.data-table-empty {
    text-align: center;
    padding: 25px 0 12px;
}

.data-table-empty img {
    width: auto;
    height: 150px;
}

.form-control {
    font-size: 12px;
}

.rdt_Pagination .dDupAJ {
    display: none;
}

.rdt_Pagination .kelKIt {
    display: none;
}

input.form-control {
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
}

.form-label {
    color: #1c252e;
    display: block;
}

.product-images-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-images-list .product-images-box {
    width: 25%;
    padding: 7px;
}

.product-images-list .product-images-box .productPlaceholder {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-images-list .product-images-box .productPlaceholder p {
    color: #eb1b1b;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    position: absolute;
    width: 80%;
    margin: 0 auto;
}

.card-datatable.table-responsive {
    border-radius: 16px;
}

.duNMdB {
    border-top-style: dashed !important;
    border-top-color: rgba(145 158 171 / 0.2) !important;
}

.dnwsbI:not(:last-of-type) {
    border-bottom-style: dashed !important;
    border-bottom-color: rgba(145 158 171 / 0.2) !important;
}

.menu-vertical .menu-inner>.menu-item.open a.menu-link.menu-toggle {
    background: #e9e7e5;
    color: var(--main-theme-color);
}

.menu-item.open>.menu-sub li.active.menu-item a.menu-link {
    color: #000 !important;
    background: rgba(145 158 171 / 0.08);
}

.menu-vertical .menu-icon {
    line-height: 1;
}

.p-datatable .p-datatable-tbody>tr>td {
    text-align: left;
    border: 1px solid rgba(145 158 171 / 0.2) !important;
    border-width: 0 0 1px 0 !important;
    padding: 1rem 1rem;
    font-size: 12px;
    border-bottom-style: dashed !important;
}

.p-datatable .p-datatable-thead>tr>th {
    font-size: 14px;
    font-weight: 600 !important;
    color: #000;
}

.p-icon {
    width: 12px;
    height: 12px;
}

.p-component {
    font-size: 12px;
}

.p-dropdown {
    height: 40px;
}

.p-datatable .p-datatable-header {
    background: #fff;
    border: 0;
}

.p-paginator .p-paginator-pages .p-paginator-page {
    min-width: 2.5rem;
    height: 2.5rem;
    font-size: 14px !important;
    margin: 0 2px !important;
}

.p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
    color: var(--main-theme-color);
    min-width: 2.5rem;
    height: 2.5rem;
    font-size: 14px !important;
}

.p-paginator .p-paginator-first,
.p-paginator .p-paginator-prev,
.p-paginator .p-paginator-next,
.p-paginator .p-paginator-last {
    min-width: 2.5rem;
    height: 2.5rem;
}

ul.p-dropdown-items {
    padding: 0;
    margin-bottom: 0;
}

.p-inputtext {
    font-size: 12px;
}

.p-dropdown.p-focus {
    border-color: var(--main-theme-color) !important;
    box-shadow: none !important;
}

.p-inputnumber-input {
    height: 40px;
    box-shadow: none !important;
}

.product-images-list .product-images-box .productPlaceholder video {
    width: 100%;
    object-fit: cover;
}

.diamondRow {
    position: relative;
}

.diamondRow .diamondRow-remove {
    position: absolute;
    right: 1%;
    top: 0;
    width: auto;
    padding: 0;
    line-height: normal;
}

ul.p-multiselect-items.p-component {
    margin: 0;
    padding-left: 0;
}

.p-datatable .p-datatable-loading-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    background: rgb(139 98 63 / 10%);
    backdrop-filter: blur(1px);
}

.p-datatable .p-datatable-loading-overlay .p-icon.p-icon-spin.p-datatable-loading-icon {
    width: 24px;
    height: 24px;
}

.p-datatable .p-datatable-loading-overlay .p-icon.p-icon-spin.p-datatable-loading-icon path {
    fill: var(--main-theme-color);
}

.greeting-container {
    width: 30%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.greeting-container img {
    height: 30px;
    width: auto;
}

.greeting-container p {
    /* color: #000; */
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

.greeting-container p span {
    color: var(--main-theme-color);
    font-weight: 500;
}

input.form-control:read-only {
    background: #f4f6f8;
}


/* Admin Loader */

.formSpinner {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.formSpinner::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../img/logo/logo.svg");
    background-size: auto 30px;
    width: 82px;
    height: 82px;
    background-repeat: no-repeat;
    background-position: center 50%;
    border-radius: 50%;
    /* filter: grayscale(1) opacity(0.6); */
}

.formSpinner .spinner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 33%, rgba(0, 0, 0, 0.15) 100%);
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

.formSpinner .spinner::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #fff;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.formSpinner .message {
    position: absolute;
    bottom: 10%;
    margin: 0;
    font-size: calc(var(--font-size) + 6px);
    font-weight: 500;
    color: var(--black-color);
}
.card{
    height: 100%;
}
.p-datepicker{
  z-index: 2000 !important;
}