@charset "UTF-8";

/* CSS Document */

#gateway_modal {
    align-items: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    z-index: 99999;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

#gateway_modal.is-active {
    display: flex;
}

#gateway_modal .gateway_modal-background,
#gateway_modal_login .gateway_modal-background {
    background-color: rgba(10, 10, 10, .86);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#gateway_modal .gateway_modal-content {
    overflow: scroll;
    position: relative;
    margin: 0 auto;
    max-height: calc(100vh - 40px);
    width: 90%;
}

@media only screen and (min-width:768px) {
    #gateway_modal .gateway_modal-content,
    #gateway_modal_login .gateway_modal-content {
        width: 720px
    }
}

#gateway_modal .gateway_modal-close,
#gateway_modal_login .gateway_modal-close {
    background: 0 0;
    height: 40px;
    width: 40px;
    position: fixed;
    top: 40px;
    right: 40px;
    background: rgba(0, 0, 0, .8);
    border: 0;
    box-shadow: none;
    display: none;
}

#gateway_modal .gateway_modal-close.is-active,
#gateway_modal_login .gateway_modal-close.is-active {
    display: block;
}

.gateway_modal-close::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.gateway_modal-close::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.gateway_modal-close::after,
.gateway_modal-close::before {
    height: 2px;
    width: 100%;
    background-color: #fff;
    opacity: .5;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
}