.forbidden-game-type-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    display: none;
    background-color: rgba(27, 43, 56, .65);
    overflow: auto;
}

.forbidden-game-type-modal.active {
    display: block;
}

.forbidden-game-modal__wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 100%;
    max-width: 480px;
    height: auto;
    background-color: #101b2d;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forbidden-game-modal__header {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.forbidden-game-modal__header h3 {
    font-size: 1.5rem;
}

.forbidden-game-modal__header .close {
    cursor: pointer;
}

.forbidden-game-modal__bonus-games {
    margin-bottom: 10px;
}

.forbidden-game-modal__available-games h4 {
    margin-bottom: 10px;
}

.forbidden-game-modal__available-games h5 {
    color: red;
}

@media (max-width: 480px) {
    .forbidden-game-modal__content {
        height: 100%;
        justify-content: center;
    }
}