
@font-face {
    font-family: 'Quattrocento Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/googlefont/quattrocentosans.woff2') format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Quattrocento Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/googlefont/quattrocentosansext.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.le-main-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: whitesmoke;
    opacity: 0.8;
    z-index: 9998;
}

.le-loader-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 100%;
    height: 30%;
    line-height: 100px;
    opacity: 1;
    z-index: 9999;
}

    .le-loader-container span {
        display: inline-block;
        margin: 0 5px;
        font-size: 20px;
        color: #737779;
    }

#le-brand-name span {
    font-size: 35px;
}


.smallloader {
    position: relative;
    width: 200px;
    height: 50px;
    margin: 10px auto
}

    .smallloader span {
        display: block;
        position: absolute;
        bottom: 0;
        width: 4px;
        height: 20px;
        left: 33px;
        font-size: 12px;
        background: #FF5722;
        animation: loading 1.5s infinite ease-in-out
    }


#le-brand-name-2 span {
    font-family: "Quattrocento Sans", sans-serif;
    font-size: 15px;
}



div.le-custom-loading-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.le-custom-loading-bar {
    width: 100px;
    height: 2px;
    background-color: #d6cec2;
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
    position: relative;
}

    div.le-custom-loading-bar::after {
        content: '';
        width: 50px;
        height: 2px;
        position: absolute;
        background-color: #ffb13f;
        transform: translateX(-20px);
        animation: loop 2s ease infinite;
    }

@keyframes loop {
    0%,100% {
        transform: translateX(-28px);
    }

    50% {
        transform: translateX(78px)
    }
}


.swal2-popup {
    border: 1px solid !important;
    font-size: 12px;
}

body .swal2-container {
    z-index: 1801 !important; /* Higher than the default modal z-index */
}

.notifier-container {
    z-index: 1802 !important; /* Higher than the default modal z-index */
}





/* Set the fixed width for the dropdown */
.choices__list {
    width: 100% !important; /* Adjust this value if needed */
}

/* Ensure the container element is full width */
.choices {
    width: 100% !important; /* Adjust this value if needed */
}

.choices__item,
.choices__item--selectable {
    display: flex;
    align-items: center;
    width: 100% !important; /* Full width */
    box-sizing: border-box; /* Ensure padding/margin doesn’t affect width */
}

/* Optional: Center align text within the items */
.choices__item--selectable {
    text-align: left; /* Or right, depending on your needs */
}


.choices__list--dropdown,
.choices__list[aria-expanded] {
    word-break: break-word;
    width: max-content;
}

.choices__item.choices__item--choice.choices__item--selectable {
    box-sizing: border-box; /* Ensure padding and border are included in width */
    flex: 1 1 auto; /* Allow item to take up the full width of the container */
    width: 100%; /* Ensure full width */
    padding: 0.5rem; /* Adjust padding as needed */
    margin: 0; /* Remove margin if unnecessary */
}

.hover-bg-primary:hover {
    background-color: #cfe2ff !important; /* lighter version of primary */
    color: #084298;
    cursor: pointer;
}

.hover-bg-warning:hover {
    background-color: #fff3cd !important; /* Matches Bootstrap’s .bg-warning */
    color: #664d03; /* Optional: text color for contrast */
    cursor: pointer;
}

.hover-bg-success:hover {
    background-color: #d1e7dd !important; /* Bootstrap's bg-success-light */
    color: #0f5132; /* Optional: Bootstrap's text-success-dark */
    cursor: pointer;
}


:root {
    --gl-star-empty: url('../../images/rating/star-empty.svg');
    --gl-star-full: url('../../images/rating/star-full.svg');
    --gl-star-size: 35px;
}

.gl-star-rating--stars {
    flex-wrap: wrap;
}

.gl-star-rating [data-value]:not(.gl-active) .gl-emote-bg {
    fill: #dcdce6;
}

.gl-active svg.feather {
    fill: var(--bs-danger);
    stroke: var(--bs-danger);
}