/***** OVERLAYER ******/
#overlayer {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.9);
}

/****** LOADER ******/
.sura-loader {
    display: block;
    width: 100px;
    /* height: 100px; */
    top: 45%;
    left: 50%;
    position: sticky;
    z-index: 2001;
}

@supports (-webkit-touch-callout: none) {

    .sura-loader {

        width: 100px;
        /* height: 100px; */
        top: 45%;
        left: 40%;
        position: fixed;
        z-index: 2002;
    }

}

.sura-loader div {
    position: absolute;
    border: 4px solid #de8086;
    opacity: 1;
    border-radius: 50%;
    animation: sura-loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.sura-loader div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes sura-loader {
    0% {

        top: 50px;
        left: 50px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/***** END LOADER *****/