.bet {
    display: flex;
    padding: 20px 0;
    position: relative
}

.bet .loading-line {
    animation: loading-line 1s linear infinite;
    background-color: #465063;
    border-radius: 15px;
    height: 10px;
    margin-bottom: 10px;
    width: 100%
}

.bet.empty .x .loading-line {
    height: 15px;
    width: 50%
}

.bet.empty .username .loading-line {
    height: 8px;
    width: 90%
}

.bet.empty .win .loading-line {
    width: 60%
}

.bet:hover .image img {
    transform: scale(1.2)
}

.bet:hover .image .play-btn-last,
.bet:hover .image:before {
    opacity: 1
}

.bet .coupon-match {
    align-items: center;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 30px;
    transform: translateX(-50%);
    z-index: 1
}

@media(max-width:600px) {
    .bet .coupon-match {
        top: 25px
    }
}

.bet .coupon-match .team {
    align-items: center;
    background-color: #1d2940;
    border-radius: 50%;
    display: flex;
    font-size: 14px;
    font-weight: 900;
    height: 32px;
    justify-content: center;
    object-fit: contain;
    overflow: hidden;
    padding: 3px;
    width: 32px
}

@media(max-width:600px) {
    .bet .coupon-match .team {
        height: 25px;
        width: 25px
    }
}

.bet .coupon-match .vs {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0
}

.bet .coupon-match .vs p {
    font-size: 11px;
    font-weight: 900
}

@media(max-width:600px) {
    .bet .coupon-match .vs p {
        font-size: 9px
    }
}

.bet .coupon-match .vs .other-bets {
    background: #1d253f;
    border-radius: 5px;
    color: #3c4c6e;
    font-size: 8px;
    font-weight: 900;
    padding: 2px 3px
}

@media(max-width:600px) {
    .bet .coupon-match .vs .other-bets {
        border-radius: 4px;
        font-size: 7px;
        padding: 1px 2px
    }
}

.bet .image {
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #0a0f11;
    height: 50px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 20px;
    transform: translateX(-50%);
    width: 50px;
    z-index: 1
}

.bet .image:before {
    background-color: var(--slotHover);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .15s ease;
    z-index: 1
}

.bet .image img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .3s ease;
    width: 100%
}

.bet .image .play-btn-last {
    height: 40px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    z-index: 2
}

.bet .image .play-btn-last img {
    height: 15px;
    position: relative;
    width: 15px;
    z-index: 2
}

.bet .slot-light {
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%)
}

.bet .slot-light img {
    position: relative;
    z-index: 2
}

.bet .slot-light:before {
    animation: glowUp .5s ease forwards;
    background: radial-gradient(circle at center, #fff 0, #0000 70%);
    background: radial-gradient(circle at center, var(--slotColor, #fff) 0, #0000 70%);
    border-radius: 50%;
    bottom: -100%;
    content: "";
    filter: blur(15px);
    height: 130px;
    left: 50%;
    opacity: .6;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    width: 130px
}

@media(max-width:600px) {
    .bet .slot-light:before {
        height: 100px;
        width: 100px
    }
}

@keyframes glowUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0)
    }

    to {
        opacity: .2;
        transform: translateX(-50%) translateY(-20px)
    }
}

.bet .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 130px;
    padding: 60px 17px 7px;
    position: relative;
    z-index: 1
}

.bet .info:after {
    background: #222c45;
    content: "";
    height: 95px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px
}

.bet .info .top {
    align-items: center;
    display: flex;
    flex-direction: column
}

.bet .info .x {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
    transition: color .3s ease
}

.bet .info p {
    font-size: 11px;
    font-weight: 900;
    opacity: 0;
    text-transform: uppercase
}

@keyframes xAppear {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.bet .info .username {
    color: var(--textSecondary);
    font-size: .6rem;
    margin-bottom: 3px
}

.bet .info .win {
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    padding: 3px 0
}

@media(max-width:600px) {
    .bet {
        padding: 5px 0
    }

    .bet .info {
        min-width: 100px;
        padding: 50px 0 7px
    }

    .bet .info .top p {
        font-size: 8px
    }

    .bet .info .top .win {
        font-size: 12px
    }

    .bet .info .top .username {
        font-size: 7px
    }

    .bet .image {
        border-radius: 8px;
        height: 30px;
        width: 30px
    }
}