/* Popup */
body.popup #content {
    opacity: 0;
}
#popup {
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 100000;
}
#popup .logo {
    margin-left: var(--default-spacing);
    margin-top: var(--default-spacing);
    background: url('../img/logo_white.svg') no-repeat;
    background-size: 100%;
}
#popup img {
    position: absolute;
    object-fit: cover;
    object-position: left;
    width: 100%;
    height: 100%;
}
@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1024px) {
    #popup {
        left: 50%;
    }
}
@media only screen and (min-width: 1280px) {
    #popup {
        left: 25%;
    }
}