﻿.restriction__popup-visible .restriction__popup-wrapper {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    background-color: rgba(0,0,0,.8);
    z-index: 99999999;
}

.restriction__popup-content {
    direction: ltr;
    text-align: left;
    width: 100%;
    max-width: 600px;
    padding: 48px 55px;
    font-size: 18px;
    color: #fff;
    background-color: #0f1721;
    border-radius: 16px;
}

.restriction__popup-content .restriction__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.33;
}

.restriction__popup-content .restriction__txt {
    font-size: 16px;
    margin-top: 18px;
}

.restriction__popup-content .restriction__txt-proceed {
    display: none;
}

.restriction__popup-content .restriction__country {
    color: #fb7100;
}

.restriction__popup-content .restriction__btn {
    display: none;
    width: 100%;
    height: 46px;
    margin-top: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #4caf50;
    border: none;
    border-radius: 4px;
    -webkit-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.restriction__popup-content .restriction__btn:hover {
    opacity: .75;
}

.restriction__popup-content .restriction__btn:hover,
.restriction__popup-content .restriction__btn:focus {
    outline: none;
}

.restriction__popup-content.proceed-available .restriction__btn {
    display: block;
}

.restriction__popup-content.proceed-available .restriction__txt-proceed {
    display: inline;
}

@media (max-width: 520px) {
    .restriction__popup-content {
        padding: 40px 25px;
    }
}
