/**
 * Overlay da animação Lottie ao iniciar o site
 */
#arteeciencia-lottie-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: opacity 0.5s ease-out;
}

#arteeciencia-lottie-splash.arteeciencia-lottie-splash-hidden {
    opacity: 0;
    pointer-events: none;
}

#arteeciencia-lottie-splash .arteeciencia-lottie-container {
    width: 100%;
    max-width: 90vmin;
    height: auto;
    max-height: 90vh;
}

#arteeciencia-lottie-splash .arteeciencia-lottie-container svg {
    width: 100%;
    height: auto;
    display: block;
}
