<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * CF7 Conditional Actions - Frontend Styles
 */

 .cf7ca-redirect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cf7ca-redirect-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cf7ca-redirect-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #2271b1;
    animation: cf7ca-spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

.cf7ca-redirect-message {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    color: #333;
}

@keyframes cf7ca-spin {
    to {
        transform: rotate(360deg);
    }
}</pre></body></html>