.tournament-list-item{
    display: block;
    background: #1E2832;
    border-radius: 20px;
}
.tournament-list-item.t1{}
.tournament-list-item.t2{}
.tournament-list-item .top-bg{
    display: block;
    width: 100%;
    border-radius: 20px;
    position: relative;

}
.tournament-list-item .top-bg .bg-con{
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}
.tournament-list-item .top-bg .bg{
    display: block;
    width: 100%;
    transform: scale(1.2);
}
.tournament-list-item .top-bg .logo{
    display: block;
    max-width: 100%;
    position: absolute;
    bottom: -20%;
    left: 0;
    right: 0;
    margin: auto;
}
.tournament-list-item .info-bar{
    display: block;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 20px;
}
.tournament-list-item .info-bar .title{
    display: block;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    font-size: 15pt;
}
.tournament-list-item .info-bar .end_date{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14pt;
    color: #fff;
}
.tournament-list-item .info-bar .end_date b{
    font-size: 16pt;
    font-weight: bold;
    display: block;
    width: 100%;
}
.tournament-list-item .info-bar .prize{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 30pt;
    font-weight: bold;
}
.tournament-list-item.tli-1 .info-bar .prize{
    color: #33FF00;
}
.tournament-list-item.tli-2 .info-bar .prize{
    color: #FFC300;
}
.tournament-list-item .info-bar .count-down{
    display: block;
    width: 80%;
    margin: 0 10%;
    margin-top: 10px;
}
.tournament-list-item .info-bar .count-down .item{
    display: inline-flex;
    width: 100%;
    aspect-ratio: .95/1;
    border: 1px solid #2F4254;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.tournament-list-item .info-bar .count-down .item b{
    font-size: 20pt;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
}
.tournament-list-item .info-bar .count-down .item span{
    display: block;
    width: 100%;
    color: #7F99B1;
}
.tournament-list-item .info-bar .count-down .item:after{
    content: ":";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -21%;
    color: #2F4254;
    font-size: 30pt;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tournament-list-item .info-bar .count-down .row .col:last-child .item:after{
    content: "";
}
.tournament-list-item .info-bar .join-button{
    display: block;
    width: 80%;
    margin: 20px 10%;
    text-align: center;
    padding: 20px 0;

    border-radius: 20px;
    text-decoration: none;
    color: #0B0F13;
    font-weight: bold;
    font-size: 16pt;
}
.tournament-list-item.tli-1 .info-bar .join-button{
    background: rgb(194,255,178);
    background: linear-gradient(90deg, rgba(194,255,178,.6) 0%, rgba(51,255,0,1) 50%, rgba(194,255,178,.6) 100%);
}
.tournament-list-item.tli-2 .info-bar .join-button{
    background: #FFE9A4;
    background: linear-gradient(90deg, rgba(255, 233, 164, 0.6) 0%, #FFC300 50%, rgba(255, 233, 164, 0.6) 100%);
}
.btn-login-page {
    background-color: var(--mastergreen);
}
.btn-login-page:active,
.btn-login-page:visited,
.btn-login-page:hover {
    background-color: var(--mastergreen);
}

.page {
    width: calc(100vw - 175px);
}
@media (max-width: 600px){
    .page{
        width: initial;
    }
    .tournament-list-item{
        margin-top: 10px;
    }
    .titlerow{
        display: inline-flex;
        justify-content: space-between;
        width: 100%;
    }
    .titlerow .col{
        width: auto;
        padding: 0;
    }
}