﻿/* progress loading */

.screen-progress-back {
    position: fixed;
    display: table;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.8);
    vertical-align: middle;
    text-align: center;
    z-index: 100000;
}

.cust-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display:flex;
    background:none;
}
    .cust-loader img{
        width:70px;
    }

    .screen-progress-back-light {
        background: rgba(0,0,0,0.5);
    }

.center-element {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

    .center-element .loading-mu-text {
        font-family:"poppins";
        color:white;
    }

.loading-mu, .loading-animation {
    display: inline-block;
    width: 60px;
}

    .loading-mu img {
        width: 100%;
        height: auto;
    }


.loading-animation {
    font-family: "montserrat";
    font-size: 20px;
    color: #fff;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.faster {
        -webkit-animation-duration: 500ms;
        animation-duration: 500ms;
    }

    .animated.slow {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

    .animated.slower {
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
    }

.round-1 {
    width: 130px;
    height: 130px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-top: #00a9b4 solid 2px;
    border-radius: 50%;
    animation: round-1 infinite 1s ease-in-out;
}

@keyframes round-1 {
    0% {
        transform: rotate(360deg);
    }
}


.round-2 {
    width: 170px;
    height: 170px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-bottom: #00a9b4 solid 2px;
    border-radius: 50%;
    animation: round-2 infinite 1s ease-in-out;
}



@keyframes round-2 {
    0% {
        transform: rotate(-360deg);
    }
}

.round-3 {
    width: 210px;
    height: 210px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-left: #00a9b4 solid 2px;
    border-radius: 50%;
    animation: round-1 infinite 1s ease-in-out;
}

.round-4 {
    width: 250px;
    height: 250px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-right: #00a9b4 solid 2px;
    border-radius: 50%;
    animation: round-2 infinite 1s ease-in-out;
}


/* progress loading end */
