/* CleverReach Newsletter-Popup – Typografie an KVI-Design angepasst */

.bgcolor-1 { background-color: #fff; }
.bgcolor-2 { background-color: #fff; }
.color-1 { color: #082137; }
.color-2 { color: #000; }
.aux-color-1 { color: #fff; }
.aux-bgcolor-1 { background-color: #000; }

.cr-web-row {
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

.cr-maxwidth {
    max-width: 360px;
}

.cr-nope {
    display: none !important;
}

.cr-web-wrapper {
    display: flex;
    justify-content: center;
}

.cr-web-row ul,
.cr-web-row li {
    flex-direction: row;
}

.cr-web-row ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.cr-web-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.cr-web-form input:not([type="checkbox"]),
.cr-web-form button {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    border-radius: 0;
    border-style: solid;
    border-width: var(--kvi-line-weight, 1px);
    border-color: var(--kvi-line-color, #000);
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
}

.cr-web-row li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-direction: row;
    width: 100%;
}

.cr-web-form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    min-height: 14px;
    margin: -2px 0 0;
    padding: 0;
    border-radius: 0;
    border: var(--kvi-line-weight, 1px) solid var(--kvi-line-color, #000);
    background: #fff;
    flex-shrink: 0;
    cursor: pointer;
    vertical-align: middle;
}

.cr-web-form input[type="checkbox"]:checked {
    background-color: var(--kvi-line-color, #000);
}

.cr-web-row li label {
    padding: 0;
    font-weight: 400;
}

.cr-web-form button {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    background-color: var(--kvi-line-color, #000);
    border-color: var(--kvi-line-color, #000);
    cursor: pointer;
}

.cr-web-form button:hover {
    background-color: #333;
    border-color: #333;
}

.cr-web-form label,
.cr-web-label {
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    padding: 8px 0 4px;
    font-style: normal;
    line-height: 1.5;
    color: #000;
    text-align: left;
}

.cr-web-form label.required::after,
.cr-web-label.required::after {
    content: ' *';
}

.cr-text {
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

.cr-popup h1 {
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 18px;
    margin: 0;
    color: #000;
}

.cr-popup .cr-hinweis {
    font-size: 12px;
    line-height: 1.45;
}

.cr-popup a {
    color: #000;
    text-decoration: underline;
}

.cr-popup a:hover {
    color: #333;
}

.cr-popup {
    position: fixed;
    display: none;
    min-width: 200px;
    padding: 0;
}

.cr-popup form {
    box-shadow: rgba(0, 0, 0, 0.2) 0 4px 16px;
    background: #fff;
}

.cr-popup-show {
    display: block !important;
    z-index: 20000;
}

.cr-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    z-index: 100;
    background: #fff;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    right: 0;
    top: 0;
    margin: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.cr-close-icon {
    width: 14px;
    height: 14px;
    display: block;
    pointer-events: none;
}

.cr-close:hover,
.cr-close:focus,
.cr-close:focus-visible,
.cr-close:active {
    background: #fff;
    outline: none !important;
    border: none !important;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2) !important;
}

#cr-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 10000;
    animation: cr-fade-in 0.5s;
}

.cr-bottom-right {
    top: auto;
    bottom: 16px;
    right: 16px;
    left: auto;
    transform: none;
}

@media only screen and (max-width: 768px) {
    .cr-web-row {
        width: 100%;
    }

    .cr-maxwidth {
        max-width: calc(100vw - 32px);
    }

    .cr-bottom-right {
        bottom: 12px;
        right: 12px;
        left: 12px;
    }
}

@keyframes cr-fade-in {
    0% { opacity: 0; }
}

@keyframes cr-slide-bottom {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cr-popup.cr-popup-show:not(.cr-popup-persist) {
    animation: cr-slide-bottom 0.5s ease;
}
