/**************************************************************************************************
   POSTS
**************************************************************************************************/
.frontend #content-main .load-more-post.incrusted-div .spinner{
    width: 80px;
    height: 80px;
    position: relative;
    margin: 200px auto;
}
.frontend #content-main .load-more-post.incrusted-div .double-bounce1, .frontend #content-main .load-more-post.incrusted-div .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.6;
    background-color: #ddd;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce_map 2.0s infinite ease-in-out;
    animation: bounce_map 2.0s infinite ease-in-out;
}

.frontend #content-main .load-more-post.incrusted-div .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes bounce_map {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce_map {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
        } 50% {
            transform: scale(1.0);
            -webkit-transform: scale(1.0);
        }
}



/**************************************************************************************************
   MAP
**************************************************************************************************/

.frontend #map-wrapper #map-loader .spinner {
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
    position: absolute;
}

.frontend #map-wrapper #map-loader .double-bounce1, .frontend #map-wrapper #map-loader .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce_map 2.0s infinite ease-in-out;
    animation: bounce_map 2.0s infinite ease-in-out;
}

.frontend #map-wrapper #map-loader .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes bounce_map {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce_map {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
        } 50% {
            transform: scale(1.0);
            -webkit-transform: scale(1.0);
        }
    }
