@keyframes wf_splash_child_fade_in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.wf_splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    text-align: center;
}
.wf_splash.visible:not(.hidden) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.wf_splash.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 1s ease, visibility 1s ease;
    -moz-transition: opacity 1s ease, visibility 1s ease;
    -o-transition: opacity 1s ease, visibility 1s ease;
    transition: opacity 1s ease, visibility 1s ease;
}
.content_bg_splash_animation {
    background-color: var(--background-blue-dark);
    background-image: url('/images/start_bg_logo.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    z-index: 0;
    opacity: 0;
}
.wf_splash .content_bg_splash_animation {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}
.wf_splash_logo,
.wf_splash_text,
.wf_splash_version {
    position: relative;
    z-index: 1;
    opacity: 0;
}
.wf_splash.visible:not(.hidden) .content_bg_splash_animation,
.wf_splash.visible:not(.hidden) .wf_splash_logo,
.wf_splash.visible:not(.hidden) .wf_splash_text,
.wf_splash.visible:not(.hidden) .wf_splash_version {
    -webkit-animation: wf_splash_child_fade_in 0.3s ease both;
    animation: wf_splash_child_fade_in 0.3s ease both;
}
.wf_splash.visible:not(.hidden) .wf_splash_logo {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
}
.wf_splash.visible:not(.hidden) .wf_splash_text {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.wf_splash.visible:not(.hidden) .wf_splash_version {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}
.wf_splash_text {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    height: 64px;
}
.wf_splash_version {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}
