/* slideshow images (for most of the demos, these are the actual "slides") */
.cycle-slideshoew {
    /* 
    some of these styles will be set by the plugin (by default) but setting them here
    helps avoid flash-of-unstyled-content
    */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    display: block;
}

/* in case script does not load */
.cycle-slideshow img:first-child {
    position: static;
    z-index: 100;
}

/* pager */
.cycle-pager {
    z-index: 999;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.cycle-pager span {
    font-size: 90px;
    width: 36px;
    height: 16px;
    display: inline-block;
    color: white;
    cursor: pointer;
    opacity: 0.7;
}

.cycle-pager span.cycle-pager-active {
    color: #9061a7;
}

.cycle-pager > * {
    cursor: pointer;
}