<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#check-newsletter {
    accent-color: #E60096;
}

#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    z-index: 1;
}

#popup-comment- {
  display: none;
}

#popup-content {
    background: #fff;
    padding: 50px;
    text-align: center;
    border-radius: 8px;
    max-width: 470px;
}

#popup-content input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.checkboxes {
    text-align: left;
    margin-top: 10px;
}

.checkboxes label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.checkboxes span {
    line-height: 1.35;
}

.checkboxes a {
    color: #E60096;
    transition: 0.5s;
}

.checkboxes a:hover {
    color: #b6005e;
}

.checkboxes input[type="checkbox"] {
    margin-right: 10px;
}
</pre></body></html>