
/* contact form button */
.contact-submit-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-submit-content {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-submit-content.invisible {
    visibility: hidden;
}

.btn-loading-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn-loading-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    animation: btn-loading-pulse 0.9s infinite ease-in-out;
    opacity: 0.75;
}

.btn-loading-indicator span:nth-child(2) {
    animation-delay: 0.15s;
}

.btn-loading-indicator span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes btn-loading-pulse {
    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.4;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 15px;
    right: 15px;
    max-width: 420px;
    z-index: 1090;
}

@media (min-width: 768px) {
    .cookie-consent {
        left: auto;
        right: 30px;
        width: 420px;
    }
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__card {
    padding: 24px;
    background-color: #fff;
    border-radius: 10px;
}

.cookie-consent__header h6 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cookie-consent__header p {
    color: #5b5d63;
}

.cookie-consent__preferences {
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-consent__item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 0;
}

.cookie-consent__item + .cookie-consent__item {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-consent__item strong {
    display: block;
    font-size: 15px;
    color: #232323;
}

.cookie-consent__item p {
    margin-bottom: 0;
    font-size: 14px;
    color: #5b5d63;
}

.cookie-consent__badge {
    align-self: center;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background-color: rgba(35, 35, 35, 0.08);
    color: #232323;
    white-space: nowrap;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cookie-consent__btn {
    border: 1px solid rgba(35, 35, 35, 0.2);
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 14px;
    background-color: #fff;
    color: #232323;
    transition: all 0.2s ease;
}

.cookie-consent__btn--primary {
    background-color: var(--base-color, #2946f3);
    border-color: var(--base-color, #2946f3);
    color: #fff;
}

.cookie-consent__btn--ghost {
    border-color: transparent;
    color: #5b5d63;
}

.cookie-consent__btn:hover {
    opacity: 0.9;
}

.cookie-settings-link {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 12px;
    font-size: 14px;
}

.cookie-settings-link:hover {
    color: #fff;
}

.consent-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    height: 100%;
    width: 100%;
    background-color: rgba(35, 35, 35, 0.8);
    color: #fff;
    border-radius: 6px;
}

@media (max-width: 991px) {
    #configurator .hero-row {
        align-items: flex-start !important;
    }

    #configurator .hero-column {
        height: auto !important;
    }

    #configurator .hero-right-visual {
        margin-bottom: -90px;
    }
}

#configurator.full-screen {
    min-height: 100vh;
    height: auto;
}

.recaptcha-wrapper .consent-placeholder {
    background-color: #f8f8f8;
    color: #232323;
    border: 1px dashed rgba(35, 35, 35, 0.2);
}

.recaptcha-wrapper {
    min-height: 120px;
}
