.forbidden-data-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 100%;
}

.forbidden-data-banner__title {
    font-size: 32px;
}

.forbidden-game-modal__available-games {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.forbidden-by-geolocation.active {
    display: block;
}

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

body.dark-theme .forbidden-by-geolocation__content {
    background-color: #101010;
}

.forbidden-by-geolocation__header {
    color: red;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}

.forbidden-by-geolocation__header h3 {
    font-size: 1.5rem;
}

.forbidden-by-geolocation__header svg {
    width: 70px;
    height: 70px;
    fill: red;
}

.forbidden-by-geolocation__solutions:not(li) {
    font-weight: bold;
}

.forbidden-by-geolocation__solution-item {
    font-weight: normal;
}

.forbidden-by-geolocation__solution-item::marker {
    color: blue;
}

.forbidden-by-geolocation__support {
    opacity: 0.8;
}

.forbidden-by-geolocation__button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.forbidden-by-geolocation__button span {
    background-color: blue;
    padding: 12px 40px;
    cursor: pointer;
    display: inline-block;
    border-radius: 10px;
}

.forbidden-by-geolocation__button span:hover {
    opacity: 0.75;
}

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