/* Preloader For Entire Website */
#cwp-preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999;
    transition: opacity 0.6s ease;
}

#cwp-preloader.loaded .fill-anim {
    animation-play-state: running;
}

#cwp-logo-loader {
    width: 200px;
    height: auto;
}

.fill-anim {
    animation: fillWater 3s ease-in-out forwards;
    animation-play-state: paused;
}

@keyframes fillWater {
    from {
        y: 119;
    }
    to {
        y: 0;
    }
}

/* Hide scrollbar during preloader */
body.cwp-preloader-active {
    overflow: hidden;
}
