/**
 * RC Preloader Curtain Styles
 * Version: 3.0
 */

html, body {
    margin: 0;
    padding: 0;
    opacity: 1 !important;
}

body {
    overflow-x: hidden;
}

#rc-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    pointer-events: none;
}

.rc-curtain {
    position: fixed;
    inset: 0;
    z-index: 999999;
    transform: translateY(0) translateZ(0);
    background-color: #F2CA53;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateY(0) translateZ(0);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.rc-curtain.is-hidden {
    display: none !important;
    transform: none !important;
    -webkit-transform: none !important;
}
