/* POPUP */

.popup_back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000C;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
}

.popup_window_container {
    position: absolute;
    width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup_window_container_mobile {
    width: 100% !important;
}

.popup_window {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 3px #2222;

    animation-name: window_splash;
    animation-duration: .3s;
    animation-iteration-count: 1;
}

.popup_window .win_header_container {
    position: relative;
}

.popup_window .win_content_container {
    position: relative;
}

.popup_window .win_header {
    text-align: center;
    line-height: 40px;
}

.popup_window .win_content {
}

.popup_window .win_close {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    margin-right: 10px;
    background-image: url(../img/close_dark.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
}

.popup_window .win_close:hover{
    background-color: #0001;
}

@keyframes window_splash {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}