@font-face {
    font-family: "Manrope Regular";
    src: url("../fonts/Manrope-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope Bold";
    src: url("../fonts/Manrope-Bold.ttf") format("truetype");
}
@font-face {
    font-family: "Manrope Medium";
    src: url("../fonts/Manrope-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "Manrope SemiBold";
    src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
}
@font-face {
    font-family: "Manrope ExtraBold";
    src: url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
}

:root {
    --violet-darkest: #3e4195; /*Used for buttons*/
    --violet-heading: #383b88;
    --violet-darker: #6567aa;
    --violet-dark: #7e80b8; /*Used for buttons hover effect*/
    --violet-normal: #e5e6ff; /*Used for mild dark bg color*/
    --violet-light: #e8e8ff; /*Used for search bard bg color*/
    --violet-lighter: #dcdcfb; /*Used for search bard bg color*/
    --violet-lightest: #f7f8ff; /*Used for search bard bg color*/
    /* --violet-lightest: #eff0ff; Used for search bard bg color */

    --link-color: #2198f7; /*for links*/
    --brown-darkest: #f1ab40; /*user for tag lines*/
    --brown-darker: #f6c77f; /*user for card tag lines*/
    --brown-dark: #fde3bc; /*user for popups*/
    --brown-light: #ffefd7; /*user for navbar*/
    --yellow-light: #ffd39145;
    --yellow-dark: #f1ab40;
    --font-regular: "Manrope Regular";
    --font-bold: "Manrope Bold";
    --font-medium: "Manrope Medium";
    --font-semibold: "Manrope SemiBold";
    --font-extrabold: "Manrope ExtraBold";

    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-nl: 24px;
    --fs-lg: 32px;
    --fs-xl: 40px;
    --border-radius-sm: 8px;
    --border-radius-md: 10px;
    --border-radius-lg: 12px;
}

.cursor {
    cursor: pointer;
}

.link {
    color: #2198f7;
}

a {
    cursor: pointer !important;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: var(--font-medium);
}

.logout-container {
    padding: 150px 0px 0px 0px;
    /* height: 100vh; */
}

.logout-content {
    padding: 48px 60px !important;
    background-color: white !important;
    border-radius: 12px;
    border: 1px solid #808080;
}
.logout-content a {
    text-decoration: none;
}
.logout-content a:hover {
    color: #4f4f4f;
}
.logout-btn {
    padding: 10px 32px;
    border: 1px solid #808080;
    border-radius: 12px;
    font-size: var(--fs-sm);
    font-family: var(--font-bold);
    font-weight: 700;
    color: #4f4f4f;
}

.btn-active,
.btn-active:hover {
    background-color: #f44336;
    color: white !important;
    border: none;
}
.logout-text {
    margin-bottom: 32px !important;
}

.are-you-sure-text {
    margin-bottom: 48px !important;
}

.logout {
    background-color: var(--violet-lightest);
}

.logout-top h5 {
    font-size: var(--fs-nl);
    color: var(--violet-darkest);
    font-weight: 700;
}

.logout-top p {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: #222222;
}

/* Breadcrump */
.breadcrumb a {
    text-decoration: none;
    color: #808080;
    font-size: 14px !important;
    font-weight: 500;
    font-family: var(--font-medium);
}

.primary-button {
    background-color: var(--violet-darkest);
    font-family: var(--font-bold);
    border-radius: 12px;
    font-weight: 700;
    color: white;
    width: 100%;
    border: none;
}

.md-heading h3 {
    font-family: var(--font-semibold);
    font-weight: 600;
    font-size: var(--fs-lg);
    color: var(--violet-heading);
}

/* search bar */

.searchbar input {
    border: none !important;
    outline: none;
    width: 100%;
    padding-left: 10px;
    background-color: #e5e6ff;
    transition: 0.22s;
}

.searchbar {
    /* background-color: var(--violet-lightest); */
    background-color: #e5e6ff;

    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: var(--fs-sm);
    transition: 0.22s;
    width: 100% !important;
}

.searchbar:hover input {
    background-color: white;
}

.searchbar:hover {
    background-color: white;
}

.searchbar:hover .search-icon {
    display: none;
}

.searchbar:hover {
    border: 0.5px solid black;
}

.searchbar span {
    display: none;
}

.searchbar:hover span {
    display: block;
}

/* faq bottom */

.sub-heading h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: var(--fs-nl);
    color: var(--violet-heading);
}

/* start rating */

.filled-stars {
    color: #fadb14 !important;
    -webkit-text-stroke: 0px !important;
    text-shadow: none !important;
}
.kv-svg-rating .rating-stars svg {
    width: 48px !important;
    height: 48px !important;
}

.empty-stars {
    color: #e3e3e3 !important;
}

.custom-star-rating {
    display: none !important;
}

.rating-container .rating-stars {
    border: none !important;
    outline: none !important;
}

/* Default checkbox style */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(
        --violet-darkest
    ) !important; /* ✅ Changes background to red and tick to white */
}

input[type="radio"] {
    accent-color: var(--violet-darkest); /* modern browsers */
}

.heading h3 {
    font-family: var(--font-semibold);
    font-size: var(--fs-lg);
    color: #383b88;
}

.no-subscription {
    font-size: var(--fs-sm);
    margin: 0px !important;
    text-align: center !important;
}

@media (max-width: 1200px) {
    .searchbar {
        width: 100% !important;
    }
    .md-heading h3 {
        font-family: var(--font-semibold);
        font-weight: 600;
        font-size: var(--fs-nl);
        color: var(--violet-heading);
    }
}

@media (max-width: 768px) {
    .md-heading h3 {
        font-family: var(--font-semibold);
        font-weight: 600;
        font-size: var(--fs-md) !important;
        color: var(--violet-heading);
    }
    .heading h3 {
        font-family: var(--font-semibold);
        font-size: var(--fs-nl) !important;
        color: #383b88;
    }
    .logout-content {
        padding: 18px 30px !important;
        background-color: white !important;
        border-radius: 12px;
        border: 1px solid #808080;
    }
}

@media (max-width: 500px) {
    .sub-heading h3 {
        font-family: var(--font-bold);
        font-weight: 700;
        font-size: var(--fs-md) !important;
        color: var(--violet-heading);
    }
    .help-report p {
        font-size: 11px !important;
    }
}

/* .common-banner {
    height: 495px !important;
}

@media (max-width: 1200px) {
    .common-banner {
        height: 400px !important;
    }
}
@media (max-width: 1000px) {
    .common-banner {
        height: 300px !important;
    }
}
@media (max-width: 600px) {
    .common-banner {
        height: 300px !important;
    }
} */

/* loader */

#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinning loader */
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--violet-darkest);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

.swal2-container {
    z-index: 99999999 !important;
}

.swal2-popup {
    z-index: 99999999 !important;
}

/* Pagination */
.pagination .page-item.disabled .page-link {
    pointer-events: none;
    opacity: 0.6;
}

.pagination .page-item.active .page-link {
    background-color: var(--violet-darkest);
    border-color: var(--violet-darkest);
    color: #fff;
}

.pagination .page-link {
    color: var(--violet-darkest);
    border-radius: 0.25rem;
}

.pagination .page-link:hover {
    background-color: var(--violet-darkest);
    color: #fff;
    text-decoration: none;
}

/* .coupon-bottom {
    position: fixed !important;
    bottom: 0 !important;
    right: 0 !important;
    width: auto !important;
} */
.select2-selection__clear {
    margin-top: 4px !important;
}
.no-close {
    display: none !important;
}
