﻿/* Remove all box-shadow and text-shadow from splash.css */
* {
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
}
#splashScreen {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.7s ease;
}

#splashScreen.is-hiding {
    opacity: 0;
}

#splashScreen.hidden {
    display: none;
}

#splashIcon {
    width: min(180px, 36vw);
    height: min(180px, 36vw);
    object-fit: contain;
    opacity: 0.9;
    animation: splashIconOpacityPulse 1.2s ease-in-out infinite;
}

#splashScreen.is-hiding #splashIcon {
    animation: none;
    opacity: 1;
}

@keyframes splashIconOpacityPulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

