@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg);
    }
}
 

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to { 
        -webkit-transform: rotate(360deg);
    }
}

.load {
    width: 50px;
    height: 50px;
    opacity: 1;
    margin: 0 auto;
    border:solid 5px #79bf44;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
     -webkit-transition: all 0.9s ease-in;
    -webkit-animation-name:             rotate; 
    -webkit-animation-duration:         1.0s; 
    -webkit-animation-iteration-count:  infinite;
    -webkit-animation-timing-function: linear;
        
         transition: all 0.5s ease-in;
    animation-name:             rotate; 
    animation-duration:         1.0s; 
    animation-iteration-count:  infinite;
    animation-timing-function: linear; 
}

#loading-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.8;
    z-index: 8888;
}

#blur-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.8;
    z-index: 8888;
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: #3399ff;
    z-index: 9999;
}

#load-round {
    display: block;
}

.loading-flex {
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 295px;
}

.loading-text {
    display: inline-block;
    font-family: 'Roboto-Regular', Arial;
    font-size: 17px;
    margin: 0 auto;
}

.loading-text span {
    display: inline-block;
}

.load-element {
    display: block;
    margin: 16% auto 0 auto;
}

#loading-content-2 {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
}

.margin-top { margin-top: 260px; }

@media(max-width: 629px) {
    
    .load {
        margin-top: 80%;
    }

    .load-element {
        margin: 50% auto 0 auto;
    }
}