<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* POP UP ------------------------------------------------------------------- */

.pop-up::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    transition: all .25s;
    z-index: 10011;
}
.pop-up {
    visibility: visible;
    opacity: 1;
    transition: all .25s;
}
.pop-up.closed {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.pop-up-close-wrap {
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10014;
    font-size: 16px;
    text-shadow: none !important;
    height: 625px;
    width: calc(100% - 2rem);
    padding: 3rem;
    margin: 0 auto !important;
    pointer-events: none;
    background: transparent !important;
}
.pop-up-close {
    position: fixed;
    appearance: none;
    outline: 0;
    text-shadow: none !important;
    box-shadow: none !important;
    background: #0a69ce;
    color: #FFF !important;
    border: 0;
    height: 60px;
    width: 60px;
    top: -30px;
    right: -30px;
    border-radius: 50%;
    padding: 0;
    pointer-events: all;
    font-size: 1.25rem;
    transition: all .25s;
}
.pop-up-close:hover,
.pop-up-close:active,
.pop-up-close:focus {
    background: #034994;
}
.pop-up .article {
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10013;
    font-size: 16px;
    text-shadow: none !important;
    width: calc(100% - 2rem);
    height: 625px;
    overflow: auto;
    padding: 3rem;
    margin: 0 auto !important;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0 15px -5px #000;
}
@media screen and (max-width: 900px) {
    .pop-up-close-wrap,
    .pop-up .article {
      display: block;
      height: 465px;
      padding: 2rem;
    }
    .pop-up-close {
      right: -15px;
    }
}</pre></body></html>