.slots{
    display: flex;
    flex-wrap: wrap;
}
.slot-item{
    flex: 0 0 24%;
    margin-right: 1%;
    margin-bottom: 1%;
}
.slot-inner{
    position: relative;
    border-radius: 10px;
}
.slot-percent {
    background: #559f3d;
    padding: 15px 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    line-height: 15px;
    top: 18px;
    right: 11px;
    display: none;
}
.slot-img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    min-height: 215px;
}
.slot-title {
    font-size: 21px;
    margin-bottom: 0px;
    font-weight: 900;
    line-height: 28px;
}
.slot-provider {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.slot-link {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #559f3d;
    width: 55px;
    height: 55px;
    border-radius: 100%;
}
.slot-link::before{
    content: '';
    background: url(../assets/play.svg) no-repeat center center;
    background-size: cover;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.slot-item:hover .slot-link,
.slot-item:hover .slot-percent{
    display: block;
}
.modal{
    width: 80%;
    max-width: none;
    border: none;
    padding: 0;
    border-radius: 0;
}
.slot-frame{
    width: 100%;
    height: 550px;
}
.slot-frame iframe{
    width: 100%;
    height: 100%;
}
ol li,
ul li{
    word-break: break-all;
}
@media screen and (max-width: 525px){
    .slot-item{
        flex: 0 0 49%;
        margin-right: 1%;
        margin-bottom: 20px;
    }
    .slot-item:nth-child(even){
        margin-right: 0;
    }
    .slot-percent{
        padding: 5px;
        font-size: 10px;
        top: 5px;
        right: 5px;
    }
    .slot-link{
        width: 35px;
        height: 35px;
    }
    .slot-link::before{
        width: 10px;
        height: 10px;
    }
}

