<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.noscroll {
    overflow: hidden;
}

.popup {
    z-index: 10;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}

.popup-inner {
    position: absolute;
    width: 420px;
    height: auto;
    top: 50%;
    left: 50%;
    margin-top: -160px;
    margin-left: -210px;
    background: #fe0;
    padding: 16px;
    text-align: center;
}

.popup-header h2 {
    margin: 8px;
}

.popup-header {
    margin-bottom: 16px;
}

.popup-inner input {
    color: #0f0f0f;
    font-size: 16px;
    padding: 4px;
    border-radius: 0px;
    outline-color: #fff126;
    box-shadow: none;
    border: 1px solid #000;
    background: #fff;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
}

.popup-inner a {
    display: block;
    color: #0f0f0f;
    font-size: 1em;
    line-height: 1em;
}

.popup-inner label {
    display: block;
}

.popup-inner label.inline-label {
    display: inline;
}

.popup-inner input[type='checkbox'] {
    width: auto;
    min-width: 0;
    vertical-align: -2px;
    margin-right: 3px;
}

.popup-inner button {
    width: 220px;
    padding: 7px 30px;
    border: 2px solid #000;
    background-color: #000;
    color: #fe0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}

.popup-inner button:hover {
    background-color: #fe0;
    color: #000;
}

.popup-inner a.popup-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 250ms;
}

.popup-inner a.popup-close-button:hover {
    opacity: 1;
}

#popup-register .popup-inner {
    width: 480px;
    margin-left: -240px;
    height: auto;
}

#popup-register button {
    margin-top: 8px;
}

.popup-inner textarea {
    color: #0f0f0f;
    font-size: 16px;
    padding: 4px;
    border-radius: 0px;
    outline-color: #fff126;
    box-shadow: none;
    border: 1px solid #000;
    background: #fff;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    height: 80px;
}

.popup-inner select {
    color: #0f0f0f;
    font-size: 16px;
    padding: 4px;
    border-radius: 0px;
    outline-color: #fff126;
    box-shadow: none;
    border: 1px solid #000;
    background: #fff;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
}

.w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede;
}

@media (max-width: 520px) {
    .popup {
        overflow: auto;
    }

    .popup-inner {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 0;
        margin-left: 0;
        width: 100%;
        height: auto;
        min-height: 100%;
    }

    #popup-register .popup-inner {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 0;
        margin-left: 0;
        width: 100%;
        height: auto;
    }
}
</pre></body></html>