body.splash-active {
    overflow: hidden;
}

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.splash-screen--exit {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-logo {
    width: 96px;
    height: 96px;
}

.splash-logo svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.splash-logo-base {
    fill: #ffffff;
    stroke: #2ecc71;
    stroke-width: 2.5;
    paint-order: stroke fill;
}

.splash-logo-fill {
    fill: #2ecc71;
}

.splash-fill-mask {
    transform: scaleY(0);
    transform-box: fill-box;
    transform-origin: center bottom;
    animation: splashLogoFill 1.4s ease-in-out 0.35s forwards;
}

@keyframes splashLogoFill {
    to {
        transform: scaleY(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .splash-fill-mask {
        animation: none;
        transform: scaleY(1);
    }

    .splash-screen {
        transition: none;
    }
}
