@media(max-width:700px) and (min-width:400px){

    .calculate-wins .title {
        font-size: 85%;
        /* margin-bottom: 5%; */
    }

    .calculate-wins .value {
        font-size: 15px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        width: 15px;
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0.8px solid white;
        transition: all 0.3s ease-in-out;
    }
}

@media(max-width:400px){
    .calculate-wins .title {
        font-size: 20%;
        /* margin-bottom: 5%; */
    }

    .calculate-wins .value {
        font-size: 10px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        width: 10px;
        height: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0.3px solid white;
        transition: all 0.3s ease-in-out;
    }
}

@media(max-width:700px){
    .calculate-wins.Player{
        left: calc(var(--left) + 20%);
        top: calc(var(--top) - 110%);
    }

    .calculate-wins.Banker{
        left: calc(var(--left) - 26%);
        top: calc(var(--top) - 110%);
    }

    .tie-indicator {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: #ff6b6b;
        color: white;
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 5px;
        /* margin-bottom: 15%; */
        animation: tieFlash 0.5s ease-in-out infinite alternate;
    }
}