/* CTA Popup by Mirco */
.cta-popup-wrapper {
    display: inline-block;
}

.cta-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99998;
}

.cta-popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 560px);
    max-height: 90vh;
    overflow: auto;
    padding: 42px 40px 36px;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
    z-index: 99999;
}

.cta-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: currentColor;
    font-size: 30px;
    line-height: 30px;
    cursor: pointer;
    opacity: 0.75;
}

.cta-popup-close:hover {
    opacity: 1;
}

.cta-popup-modal h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

.cta-popup-modal p {
    margin-bottom: 18px;
}

.cta-popup-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
}

.cta-popup-error {
    margin-top: 10px;
    color: #cc1818;
    font-size: 14px;
}
