/**
 * ------
 * Popups
 * ------
 */

.popups-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 99;
    opacity: 0.75;
}

.popups-overlay.active {
    display: block;
}

.is-popup {
    display: none;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate( -50%, -50% ) !important;
    width: 400px;
    min-width: 50vw !important;
    max-width: calc( 100vw - 40px ) !important;
    max-height: calc( 100vh - 40px ) !important;
    z-index: 99 !important;
    margin: 0 !important;
    box-shadow: 0 20px 20px rgba( 0, 0, 0, 0.25 );
}

.is-popup.active {
    display: block;
}