.load-more-spinner {
    margin: 0 10px 0 auto;
    display: inline-block;
    text-align: center;
}

.load-more-spinner__bounce {
	margin-right: 2px;
	margin-bottom: 1px;
    width: 7px;
    height: 7px;
    background-color: #ccc;
    border-radius: 100%;
    display: inline-block;
}

.load-more-spinner_animate .load-more-spinner__bounce {
    -webkit-animation: sk-bouncedelay 0.9s infinite ease-in-out both;
    animation: sk-bouncedelay 0.9s infinite ease-in-out both;
}

.load-more-spinner__bounce:nth-child(1) {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.load-more-spinner__bounce:nth-child(2) {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% { 
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% { 
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@media screen and (min-width: 640px) {
	.pages-nav-show-more-btn {
		display: none;
	}
    .pages-nav-show-more-btn_photo-video {
        display: inline-block;
    }
}

