#slideshow {
    position: relative;
}
#slideshow-pagination {
    position: absolute;
    left: 50%;
    bottom: 67px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
#slideshow-pagination .page {
    width: 12px;
    height: 12px;
    margin: 0 9px;
    background: #fff;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    outline: none;
}
#slideshow-pagination .page.active-page {
    background: #f0555a;
}
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 500px) {
    #slideshow-pagination {
        right: 0;
        left: unset;
        bottom: 10px;
    }
}