/* #popup-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background-color: rgba(83,83,83,0.8);
    background-size: cover;
    background-position: center;
    height: 0;
    z-index: 110000;
    transition: opacity 0.3s ease, height 0.1s ease 0.3s;
    pointer-events: none;
    overflow: hidden;
}
#popup-overlay a.btn-close {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    overflow: hidden;
    opacity: 1;
}

#popup-overlay .logo-wrapper > img {
	max-height: 80px;
    margin-bottom: 20px;
}

#popup-overlay a.btn-close:before {
    content: "";
    display: block;
    position: absolute;
    background-color: #002158;
    background-image: url(../images/ic-close.svg);
    background-repeat: no-repeat;
    background-position: calc(50% - 20px) calc(50% + 20px);
    background-size: 14px;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    top: -100%;
}

#popup-overlay button#close img {
    position: absolute;
}

#popup-overlay.active {
    opacity: 1;
    height: 100vh;
    transition: opacity 0.3s ease;
    pointer-events: initial;
}

#popup-overlay>div {
    max-width: 860px;
    background: white;
    margin: 1.75rem;
    padding: 70px 2rem 0 2rem;
    border: 1px solid var(--color-white);
    position: relative;
    overflow-y: auto;
    max-height: 85vh;
}
#popup-overlay .button-row {
    flex-direction:row;
    align-items: center;
}

#popup-overlay h2 {
    font-size: 40px;
}

#popup-overlay .inner {
    padding-bottom: 3rem;
}

@media (max-width: 767.99px) {
    #popup-overlay > div {
        margin: 0;
        align-self: center;
        border: none;
        width: 100%;
    }

    #popup-overlay  .inner {
        padding-bottom: 32px;
    }
}

@media (min-width: 992px) {
    #popup-overlay >div {
        padding: 35px 40px 0 40px;
        margin: 2em;
        min-width: 660px;
    }

    #popup-overlay  .inner {
        padding-bottom: 40px;
    }

    #popup-overlay a.close {
        height: 70px;
        width: 70px;
    }

    #popup-overlay a.close:before {
        background-position: calc(50% - 28px) calc(50% + 28px);
        background-size: 16px;
    }
    
    #popup-overlay .logo-wrapper > img {
        margin-bottom: 2.5rem;
    }
} */