#dbk_hot_match_slider_wrapper {
    padding: 16px 0px;
    background-color: red;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #25080a;

    .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;
    }

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

    .custom-button-prev {
        left: 0;
        border-right: 3px solid #fff;
        background: url(https://7mth.longtu.club/wp-content/uploads/2025/10/bt_flarr.gif) no-repeat center center;
    }

    .custom-button-next {
        right: 0;
        border-left: 3px solid #fff;
        background: url(https://7mth.longtu.club/wp-content/uploads/2025/10/bt_frarr.gif) no-repeat center center;
    }

    li {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
		margin-bottom: 0;
		padding-left: 12px;
    }

    li::after {
        content: "";
        display: block;
        width: 2px;
        height: 100%;
        background-color: #ffffff;
        position: absolute;
        left: -2px;
    }

    .fix_time {
        padding: 0 8px;
        color: #fff;
        font-size: 14px;
        margin: 0;
        padding: 0;
    }

    .fix_team {
        height: 24px;
        line-height: 24px;
        margin: 0;
        padding: 0;
    }

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

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

    .fix_fun {
        height: 26px;
        padding-left: 10px;
        overflow: hidden;
        font-size: 12px;
        color: #f39700;
        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: #fff;
        font-size: 14px;
        font-family: "MS Sans Serif";
        white-space: nowrap;
        overflow: hidden;
    }
}

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