#modal {
    width: 100%;
    height: 100%;
    background-color: #1B1A25CC;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    z-index: 100;
}

#modal * {
    box-sizing: border-box;
}

#modal[data-active="0"] {
    display: none;
}

.modal-wrapper {
    max-width: 900px;
    width: 100%;
    max-height: 700px;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 50px;
    overflow: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-wrapper h3,
.modal-wrapper h4 {
    margin: auto;
    font-weight: 700;
    text-align: center;
}

.modal-wrapper h3 {
    color: #DF2C36;
    font-size: 49px;
    line-height: 85px;
}

.modal-wrapper h4 {
    color: #1B1A25;
    font-size: 29px;
    line-height: 50px;
}

.modal-wrapper .modal-casinos-holder {
    margin-top: 10px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.modal-wrapper .modal-casinos-holder .modal-casino-item {
    border: 1px solid #D7D7D7;
    padding: 25px 10px 21px 10px;
}

.modal-wrapper .modal-casinos-holder .modal-casino-item .modal-casino-img-holder {
    text-align: center;
}

.modal-wrapper .modal-casinos-holder .modal-casino-item .modal-casino-img-holder img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
}

.modal-wrapper .modal-casinos-holder .modal-casino-item .modal-casino-data-holder h4 {
    margin-top: 10px;
    margin-bottom: 14px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
}

.modal-wrapper .modal-casinos-holder .modal-casino-item .modal-casino-data-holder .modal-casino-bonus {
    min-height: 110px;
    background-color: #49B83726;
    color: #2F5429;
    margin-bottom: 10px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.modal-wrapper .modal-casinos-holder .modal-casino-item .modal-casino-data-holder a {
    width: 100%;
    background-color: #DF2C36;
    color: #FFFFFF;
    padding: 14px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.modal-wrapper .modal-casinos-holder .modal-casino-item .modal-casino-data-holder p {
    color: #9F9F9F;
    margin: 0;
    margin-top: 13px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
}

@media only screen and (min-width: 600px) and (max-width: 1000px) {
    .modal-wrapper {
        min-width: 90%;
        width: 90%;
        max-height: 90%;
    }
}

@media only screen and (max-width: 600px) {
    .modal-wrapper {
        width: 75%;
        max-height: 90%;
        padding: 50px 25px;
    }

    .modal-wrapper .modal-casinos-holder {
        display: block;
    }

    .modal-wrapper .modal-casinos-holder .modal-casino-item {
        margin-bottom: 20px;
    }

    .modal-wrapper .modal-casinos-holder .modal-casino-item:last-child {
        margin-bottom: 0;
    }
}
