/* My bonuses - DESKTOP*/
.tournamentsList {

}

.tournamentsList .activeBonus {
    background-color: #F8F8FE;
    padding: 40px 15px 40px 15px;
}

.tournamentsList .activeBonusSpins {
    background-color: #EBECFD;
    padding: 40px 15px 40px 15px;
}

.tournamentsList .historyBonus {
    background-color: #F8F8FE;
    padding: 40px 15px 40px 15px;
}

.tournamentsList .bonusesSubTitle {
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 21px;
    color: #2F2F32;
    margin-bottom: 20px;
}

.tournamentsList .bonusContent {
    display: flex;
    gap:30px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.tournamentsList .no-bonus {
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    display: flex;
    align-items: center;
    background: #fff;
    /* Brand / Dark */
    padding: 20px;
    color: #2F2F32;
    width: 100%;
    opacity: 0.6;

}

.tournamentsList .myBonusBox {
    display: inline-flex;
    background: #fff;
    width: calc(90% / 3);
}

.tournamentsList .myBonusBox:nth-last-child {
    margin-right: 0;
}

.tournamentsList .myBonusBox .icon-side {
    background-color: #2AAD64;
    padding: 0px 8px;
    width: 44px;
    display: flex;
    max-width: 60px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.tournamentsList .myBonusBox .content-side {
    padding: 8px 12px 8px 12px;
    width: 100%;

}

.tournamentsList .myBonusBox .play-game {
    padding: 6px 20px;
    background: #FF02CC;
    border-radius: 4px;
    color: #FFF;
    display: inline-block;
}

.tournamentsList .myBonusBox .content-side .title {
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #2F2F32;
}

.tournamentsList .myBonusBox .content-side ul {
    padding-left: 20px;
    padding-top: 8px;
}

.tournamentsList .myBonusBox .content-side ul li {
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    align-items: center;
    color: #000000;
}

.tournamentsList .myBonusBox .progress-bar {
    background: #EBECFD;
    border-radius: 50px 50px 50px 50px;
    height: 18px;
    width: 100%;
}

.tournamentsList .myBonusBox .progress-bar .filled {
    background: linear-gradient(360deg, #FF02CC 23.96%, #FF63E0 61.46%, #FFA6ED 81.01%);
    border-radius: 12px 0 0 12px;
    height: 18px;
}

.tournamentsList .historyBonus .myBonusBox .icon-side {
    background: rgba(0, 0, 0, 0.15);
}

.tournamentsList .icon-arrows {
    background: url("../Images/icons/icon-arrows.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
}

.tournamentsList .icon-slots {
    background: url("../Images/icons/icon-slots.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
}

.tournamentsList .icon-bonus {
    background: url("../Images/icons/icon-bonus.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
}

/*My Bonuses -> Tablet */
@media only screen and (max-width: 744px) {
    .tournamentsList .myBonusBox {
        width: calc(90% / 2);
    }

    .tournamentsList .bonusContent{
        gap: 24px;
    }
    .tournamentsList .historyBonus, .tournamentsList .activeBonus, .tournamentsList .activeBonusSpins {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .tournamentsList .no-bonus {
        padding: 8px;
    }

    .tournamentsList .bonusesSubTitle {
        margin-bottom: 16px;
    }

    .topbar .title {
        margin-bottom: 0;
        padding: 0;
    }
}


/*My Bonuses -> Phone */
@media only screen and (max-width: 680px) {
    .tournamentsList .myBonusBox {
        width: 100%;
        margin-right: 0;
    }

    .tournamentsList .bonusContent{
        gap: 16px;
    }


    .tournamentsList .historyBonus, .tournamentsList .activeBonus, .tournamentsList .activeBonusSpins {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .tournamentsList .bonusesSubTitle {
        margin-bottom: 16px;
    }

    .tournamentsList .no-bonus {
        padding: 8px;
    }
}
