.rotation-list h2 {
    position: absolute;
    width: 80%;
    left: 10%;
    bottom: 45%;
    text-align: center;
    color: #000;
    text-shadow: 0 0 1px #000;
    padding: 20px 0;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 13px;
    line-height: 50px;
    text-transform: uppercase;
}

.rotation-list blockquote {
    position: absolute;
    margin: 0;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 30%;
    color: #000;
    line-height: 20px;
    font-size: 1em;
    font-weight: 400;
}

.rotation-list blockquote p {
    width: 50%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 767px) {
    .rotation-list blockquote {
        top: 10%;
        bottom: auto;
    }
    .rotation-list blockquote p {
        width: 100%;
    }
}

.rotation-list cite {
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    font-style: italic;  
    padding-top: 1em;
}

.rotation-nav-controls .rotation-item {
    position: absolute;
    z-index: 1000;
    top: 50%;
    text-decoration: none;
    cursor: pointer;
    margin-top: -40px;
    width: 40px;
    height: 40px;
    border: 8px solid #ddd;
    border: 8px solid rgba(150, 150, 150, 0.4);
    text-indent: -9999px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rotation-nav-controls .rotation-prev {
    left: 5%;
    border-right: none;
    border-top: none;
}

.rotation-nav-controls .rotation-next {
    right: 5%;
    border-left: none;
    border-bottom: none;
}

.rotation-pagination {
    position: absolute;
    z-index: 1000;
    left: 0;
    bottom: 2%;
    height: 30px;
    width: 100%;
    text-align: center;
    margin: 0;
}

.rotation-pagination li {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-decoration: none;
    margin: 6px;
    background: #ddd;
    background: rgba(150, 150, 150, 0.4);
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.4), inset 0 1px 1px rgba(0, 0, 0, 1);
}

.rotation-pagination li a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-indent: -9999px;
}

.rotation-pagination li a.current {
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.4), inset 0 1px 1px rgba(0, 0, 0, 0.1), 0 0 0 5px rgba(255, 255, 255, 0.5);
}

.rotation-pagination li a.current:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}