.loader-conainer {
    display: none;
}

.loader-box {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.5);
    z-index: 1002;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 250px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 36px;
    background: #1CA9E7;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: -52px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 115px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 270px;
    }
    50%, 100% {
        top: 24px;
        height: 200px;
    }
}


  
@media only screen and (max-width: 1024px) {
    @keyframes lds-facebook {
        0% {
            top: 8px;
            height: 64px;
        }
        50%, 100% {
            top: 24px;
            height: 32px;
        }
    }

    .lds-facebook {
        height: 80px;
    }

    .lds-facebook div {
        width: 16px;
    }

    .lds-facebook div:nth-child(1) {
        left: 8px;
    }

    .lds-facebook div:nth-child(2) {
        left: 32px;;
    }

    .lds-facebook div:nth-child(3) {
        left: 56px;
    }  
}
  