.wf_splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-200);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 9999;
    text-align: center;
}
.wf_splash.visible {
    display: flex;
}
.wf_splash.hidden {
    opacity: 0;
    visibility: hidden;
}
.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%;
}