/* Minification failed. Returning unminified contents.
(154,22): run-time error CSS1039: Token not allowed after unary operator: '-darkred-input-pure-black'
(158,26): run-time error CSS1039: Token not allowed after unary operator: '-darkred-main-red'
(159,21): run-time error CSS1039: Token not allowed after unary operator: '-darkred-text-white'
(163,21): run-time error CSS1039: Token not allowed after unary operator: '-darkred-text-white'
(167,21): run-time error CSS1039: Token not allowed after unary operator: '-darkred-text-white4'
 */
#carouselSlides .carousel-item > img {
    width: 100%;
    border-radius: 20px;
}

.disabled {
    pointer-events: none;
    opacity: 0.3;
}

.hot-provider-lobby {
    position: absolute;
    background-image: url(/Themes/Moonspace/Desktop/Contents/Images/104/ic_hot.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    top: -16px;
    right: 0px;
    z-index: 10;
    animation: fire-pulse-provider-lobby 2s infinite alternate ease-in-out;
    overflow: hidden;
}

    .hot-provider-lobby::after {
        content: '';
        position: absolute;
        top: 16px;
        width: 100%;
        height: 18px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
        animation: shine-provider-lobby 3s linear infinite;
        z-index: 1;
        border-radius: 15px;
    }

.notify-badge {
    position: absolute;
    right: 1.5%;
    top: 4.5%;
    text-align: center;
    border-radius: 0 12px 0 12px !important;
    color: white;
    padding: 0.1rem 0.6rem;
    font-size: 0.85rem !important;
    width: 65px !important;
    height: 35px !important;
    background: red;
    align-content: center;
}

.provider-list > .row > div > .category-provider {
    display: flex;
    padding: 22px;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 20px;
    grid-gap: 25px;
    position: relative;
}

    .provider-list > .row > div > .category-provider > img {
        width: 257px;
        border-radius: 12px;
    }

    .provider-list > .row > div > .category-provider > [data-name="maintenance-notice"] {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        text-align: center;
        color: White;
        padding: 1rem;
        font-size: 16px;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
    }

    .provider-list > .row > div > .category-provider > .sub-category-provider-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

        .provider-list > .row > div > .category-provider > .sub-category-provider-content > a {
            display: flex;
            padding: 10px 39px;
            justify-content: center;
            align-items: center;
            gap: 10px;
            border-radius: 25px;
            text-decoration: none !important;
            font-size: 18px;
            font-weight: 600;
            line-height: normal;
            white-space: nowrap;
            max-width: 250px;
        }

        .provider-list > .row > div > .category-provider > .sub-category-provider-content > div:first-child {
            text-align: start;
            font-size: 24px;
            font-weight: 800;
            line-height: normal;
            text-transform: uppercase;
        }

        .provider-list > .row > div > .category-provider > .sub-category-provider-content > div:nth-child(2) {
            font-size: 16px;
            font-weight: 400;
            line-height: normal;
        }

@keyframes fire-pulse-provider-lobby {
    0% {
        filter: drop-shadow(0 0 1px rgba(255, 100, 0, 0.7)) drop-shadow(0 0 3px rgba(255, 50, 0, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 5px rgba(255, 150, 0, 0.9)) drop-shadow(0 0 6px rgba(255, 100, 0, 0.7)) drop-shadow(0 0 7px rgba(255, 50, 0, 0.5));
    }
}

@keyframes shine-provider-lobby {
    0% {
        left: 10%;
    }

    80% {
        left: 100%;
    }

    100% {
        left: 10%;
    }
}

@media (max-width: 1200px) {
    .provider-list > .row > div > .category-provider {
        flex-wrap: wrap;
    }

        .provider-list > .row > div > .category-provider > img {
            width: 100%;
        }
}

.provider-list > .row > div > .category-provider {
    background: var(--darkred-input-pure-black);
}

    .provider-list > .row > div > .category-provider > .sub-category-provider-content > a {
        background: var(--darkred-main-red);
        color: var(--darkred-text-white);
    }

    .provider-list > .row > div > .category-provider > .sub-category-provider-content > div:first-child {
        color: var(--darkred-text-white);
    }

    .provider-list > .row > div > .category-provider > .sub-category-provider-content > div:nth-child(2) {
        color: var(--darkred-text-white4);
    }

