﻿
.loader-wraper{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(255,255,255,0.6);
    z-index:100;
    display:none;
}


.loader-container{
    position:absolute;
    top:50%;
    left:50%;
    transform :translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 992px){
    .loader-container {
        position: fixed;
    }
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 76px;
    height: 76px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #0978e6;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 2s cubic-bezier(0, 0.2, 0.6, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.7s;
        }

        .lds-ripple div:nth-child(3) {
            animation-delay: -1.3s;
        }

@-moz-keyframes lds-ripple {
    0% {
        top: 35px;
        left: 35px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}

@-webkit-keyframes lds-ripple {
    0% {
        top: 35px;
        left: 35px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}

@keyframes lds-ripple {
    0% {
        top: 35px;
        left: 35px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}
