.cycle-pager {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 200;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

/* Hide if there's only one pager/image */
.cycle-pager span:only-child {
    display: none;
}

.cycle-pager span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    margin-right: 10px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px;
}

.cycle-pager span:last-of-type {
    margin-right: 0;
}

.cycle-pager .cycle-pager-active {
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .cycle-pager {
        bottom: 20px;
        z-index: 110;
    }
}