/* Fingerprint CSS - Colombia Explore Tracking Styles */

.fp-tracking-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    z-index: 9999;
    display: none;
    border: 2px solid var(--colombia-yellow);
}

.fp-tracking-consent.active {
    display: block;
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fp-consent-text {
    font-size: 0.9rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fp-consent-buttons {
    display: flex;
    gap: 0.5rem;
}

.fp-consent-btn {
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.fp-consent-accept {
    background: linear-gradient(135deg, #FCD116, #F39C12);
    color: #2C3E50;
}

.fp-consent-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 209, 22, 0.4);
}

.fp-consent-decline {
    background: #ecf0f1;
    color: #2C3E50;
}

.fp-consent-decline:hover {
    background: #bdc3c7;
}

/* Loader for fingerprint processing */
.loader-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #FCD116;
    --_m:
        conic-gradient(#0000 10%,#000),
        linear-gradient(to bottom, #000 0%, #000 100%) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn);
    }
}
