#dbk_hot_match_slider_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 0px;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #f2f2f2;

    .dbk_hot_match_loader {
        width: 50px;
        aspect-ratio: 1;
        border-radius: 50%;
        border: 8px solid;
        border-color: #ffffff #25080a;
        animation: l1 1s infinite;
        margin: 27px auto;
    }

    .custom-button-prev,
    .custom-button-next {
        width: 45px;
        height: 80%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        cursor: pointer;
        background-color: #f6dedd;
    }

    .custom-button-prev:focus,
    .custom-button-next:focus {
        outline: none;
    }

    .custom-button-prev {
        left: 0;
        border-right: 1px solid #ead4d4;
        background: #f6dedd;
    }

    .custom-button-next {
        right: 0;
        border-left: 1px solid #ead4d4;
        background: #f6dedd;
    }

    /* Disabled / locked buttons: visible but grayed out */
    .custom-button-prev.swiper-button-disabled,
    .custom-button-next.swiper-button-disabled,
    .custom-button-prev.swiper-button-lock,
    .custom-button-next.swiper-button-lock {
        display: flex !important;
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

    .custom-button-prev.swiper-button-disabled::before,
    .custom-button-next.swiper-button-disabled::before,
    .custom-button-prev.swiper-button-lock::before,
    .custom-button-next.swiper-button-lock::before {
        border-color: #999;
    }

    .custom-button-prev::before,
    .custom-button-next::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 12px;
        border: 2px solid #111;
        border-top: 0;
        border-right: 0;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .custom-button-next::before {
        transform: translate(-50%, -50%) rotate(-135deg);
    }

    .hot-match-link {
        display: block;
        text-decoration: none;
    }

    .hot-match-link:hover li {
        background-color: #E7E7E7;
    }

    li {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        margin: 0;
        padding: 10px 12px;
        background-color: #ffffff;
        border: 1px solid #eee;
        border-radius: 6px;
        min-height: 86px;
        gap: 4px;
    }

    .fix_time {
        color: #8c4b2d;
        font-size: 14px;
        margin: 0;
        padding: 0;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .match_time {
        color: #8c4b2d;
        font-weight: 700;
    }

    .match_sep {
        color: #b8c6e6;
        font-weight: 600;
    }

    .match_date {
        color: #2b2b2b;
        font-weight: 400;
        font-size: 13px;
    }

    .fix_team {
        display: flex;
        align-items: center;
        gap: 8px;
        height: 24px;
        line-height: 24px;
        margin: 0;
        padding: 0;
        color: #111;
    }

    .team_dash {
        color: #111;
        font-weight: 600;
    }

    .team_logo {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .team_name {
        color: #111;
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .fix_vs {
        width: 48px;
        text-align: center;
        margin: 0;
        padding: 0;
        line-height: 10px;

        a {
            font-size: 12px;
            color: #c77700;
            text-decoration: none;
        }
    }

    .fix_fun {
        height: 26px;
        padding-left: 10px;
        overflow: hidden;
        font-size: 12px;
        color: #c77700;
        margin: 0;
        padding: 0;

        a {
			color: #f39700;
            text-decoration: none;
        }

        a:first-child {
            margin-right: 6px;
        }
    }


    .fix_name {
        text-decoration: none;
        cursor: pointer;
        float: left;
        width: 100px;
        color: #111;
        font-size: 14px;
        font-family: "MS Sans Serif";
        white-space: nowrap;
        overflow: hidden;
    }
}
.dbk-hotmatch-slider-wrapper {
    background-color: #f2f2f2;
}
.dark .dbk-hotmatch-slider-wrapper {
    background-color: #1a1a1a;
}
.dark #dbk_hot_match_slider_wrapper {
    background-color: #151515;

    li {
        background-color: #070F03;
    }

    .hot-match-link:hover li {
        background-color: #262626;
    }

    .fix_time,
    .match_time,
    .match_sep,
    .match_date,
    .fix_team,
    .team_dash,
    .team_name,
    .fix_vs,
    .fix_fun,
    .fix_name {
        color: #fff;
    }

    .custom-button-prev,
    .custom-button-next {
        background-color: #3C1205;
        border-color: #3C1205;
    }

    .custom-button-prev::before,
    .custom-button-next::before {
        border-color: #fff;
    }
}

@media (max-width: 960px) {
    #dbk_hot_match_slider_wrapper {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@keyframes l1 {
    to {
        transform: rotate(.5turn)
    }
}