/* Loading posts image */
#easy-scroll-loading-posts {
    margin: 20px 0;
    text-align: center;
}

/* No more posts */
#easy-scroll-no-more-posts {
    margin: 21px 0;
    opacity: 0;
    text-align: center;
    font-size: 20px;
}

#easy-scroll-no-more-posts img {
    max-height: 70%;
    margin-bottom: 15px;
}

/* Footer */
#easy-scroll-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

#easy-scroll-footer.show {
    opacity: 0.3;
    visibility: visible;
}

#easy-scroll-footer.hide {
    opacity: 0 !important;
    visibility: hidden !important;
}

#easy-scroll-footer .easy-scroll-message {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-style: italic;
    font-weight: bold;
}

@media screen and (max-width: 520px) {
    #easy-scroll-footer .easy-scroll-message {
        font-size: 19px !important;
    }
}

#easy-scroll-footer .easy-scroll-arrow {
    position: absolute;
    bottom: 20px;
    max-width: 10%;
}

#easy-scroll-footer .easy-scroll-arrow img {
    position: relative;
    max-width: 100%;
}

#easy-scroll-footer .easy-scroll-arrow.left {
    left: 20px;
}

#easy-scroll-footer .easy-scroll-arrow.right {
    right: 20px;
}

#easy-scroll-footer .easy-scroll-arrow img {
    -webkit-animation: bounce 1s infinite;
    -moz-animation: bounce 1s infinite;
    -o-animation: bounce 1s infinite;
    animation: bounce 1s infinite;
}

@-webkit-keyframes bounce {
    0% {
        top: 0;
    }
    50% {
        top: -20px;
    }
    100% {
        top: 0;
    }
}

@-moz-keyframes bounce {
    0% {
        top: 0;
    }
    50% {
        top: -20px;
    }
    100% {
        top: 0;
    }
}

@-o-keyframes bounce {
    0% {
        top: 0;
    }
    50% {
        top: -20px;
    }
    100% {
        top: 0;
    }
}

@keyframes bounce {
    0% {
        top: 0;
    }
    50% {
        top: -20px;
    }
    100% {
        top: 0;
    }
}