.popup-overlay {
    position: fixed;
    z-index: 105;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    overflow: auto;
}
.popup {
    display: block;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 58px);
    max-width: 610px;
    margin: auto;
    padding: 2.25rem 2.25rem 2.5rem;
    background: #ffffff;
    box-shadow: 0px 5px 12px 0 rgb(0 0 0 / 40%);
}
.popup-title {
    position: relative;
}
.popup-title h2 {
    margin-top: 0;
    font-size: 2.25rem;
}
.popup-content {
    line-height: 1.8;
    font-size: 1rem;
}
.popup-content p {
}
.popup-content p:last-of-type {
    margin-bottom: 0;
}
a.popup__survey {
    padding: 10px 35px 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    border: 2px solid #000000;
}
a.popup__survey_secondary {
    margin-left: 15px;
    padding: 10px 35px 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    background: #00558B;
    border: 2px solid #000000;
}
button.popup-close {
    display: block;
    position: absolute;
    z-index: 1;
    top: -1.75rem;
    right: -1.75rem;
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border: 0;
    overflow: hidden;
}
button.popup-close:after {
    content: '\f057';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 32px;
    width: 32px;
    height: 32px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: bold;
    font-size: 1.6em;
    text-rendering: auto;
    text-indent: 0;
    text-align: center;
    color: #000000;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
button.popup-close:focus {
    outline: none;
}
button.popup-close:focus:after,
button.popup-close:hover:after {
    opacity: 1;
}
.popup a.popup__survey:hover {
    color: #000000;
    background: #FFFFFF;
}
.popup a.popup__survey_secondary:hover {
    background: #000000;
    background: #FFFFFF;
}
.popup a.popup-hidden-end-link {
    position: absolute;
    display: block;
    overflow: hidden;
    height: 0;
    width: 0;
}
@media screen and (min-width: 786px) {
    .popup {
        padding: 2.5rem 3.5rem 3.5rem;
    }
    button.popup-close {    
        top: -1rem;
        right: -2rem;
    }
}