@keyframes headerIn {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes contactWave {

    0%,
    70% {
        opacity: 0;
        transform: scale(1);
    }

    76% {
        opacity: 0.28;
    }

    100% {
        opacity: 0;
        transform: scale(1.42);
    }
}

.phone-chooser:not([hidden]),
.lightbox:not([hidden]) {
    animation: panelIn 180ms ease both;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}