body {
    --base-col: white;
}

#preloader {
    position: fixed;
    background-color: var(--base-col);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 1;
}

.wf-active #preloader.hide {
    opacity: 0;
}