/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.ua-popup {
    position: fixed;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    background: #fff;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 10000;
}

.ua-popup:after {
    content: '';
    position: fixed;
    top: -5%;
    left: -3%;
    width: 103vw;
    height: 103vh;
    background: rgba(0, 0, 0, .6);
}

.ua-popup.active {
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    visibility: visible;
    opacity: 1;
}

.ua-popup__cross {
    font-size: 50px;
    right: 100px;
    top: 100px;
    cursor: pointer;
    position: absolute;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .35s ease;
    -o-transition: .35s ease;
    transition: .35s ease;
    -webkit-transition-property: color, -webkit-transform;
    transition-property: color, -webkit-transform;
    -o-transition-property: color, transform;
    transition-property: color, transform;
    transition-property: color, transform, -webkit-transform;
}

.ua-popup__cross:hover {
    color: #5ea652;
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.ua_popup_logo {
    margin-right: 50px;
}

.ua_popup_logo img {
    width: 300px;
}

.ua_popup_text {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.ua-popup__title {
    position: relative;
    font-size: 30px;
}

.arm_lang_popup_link {
    text-align: center;
    cursor: pointer;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    font-size: 30px;
}

.arm_lang_popup_link:hover {
    color: #5ea652;
}

.arm_lang_popup_btn {
    /* padding: 10px 50px; */
    width: -moz-max-content;
    width: 100%;
    margin: 20px auto;
    font-size: 30px;
    height: 50px;
    line-height: 50px;
}

.arm_lang_popup_btn:hover {
    color: #fff;
}

.ua_popup_wrap {
    position: relative;
    z-index: 1;
    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;
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 40px;
    border-radius: 15px;
}

.ua-popup__buttons {
    width: 100%;
}

.ua-popup__buttons_links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

@media screen and (max-width: 600px) {

    .ua_popup_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 15px;
    }

    .ua_popup_logo {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .ua-popup__title {
        font-size: 24px;
    }

    .arm_lang_popup_link {
        font-size: 24px;
    }

    .arm_lang_popup_link {
        font-size: 24px;
    }

    .ua-popup__cross {
        right: 10px;
        top: 35px;
    }
}