/**
 * BigConnect Cookie Consent Hyvä
 * Minimal CSS additions for cookie consent banner
 */

#cookie-consent-banner {
    animation: slideUp 0.3s ease-out;
    z-index: 99999 !important;
}

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

#cookie-consent-banner [x-cloak] {
    display: none !important;
}
