.rotation-container {
    position: relative;
    width: 100%;
    height: 250px;
    margin: 0 auto;
}

.rotation-container ul {
    list-style-type: none;
    padding: 0;
}

.rotation-viewport {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.rotation-list {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rotation-list li {
    position: absolute;
    margin: 0;
    line-height: 1.4em;
    clear: none;
    height: 100%;
    width: 100%;
}

.rotation-nav-controls {
    display: none;
}

.rotation-nav-controls .rotation-item {
    position: absolute;
    z-index: 1000;
    bottom: 2%;
    width: 5%;
}

.rotation-nav-controls .rotation-prev {
    left: 5%;
}

.rotation-nav-controls .rotation-next {
    right: 5%;
}

.rotation-pagination {
    position: absolute;
    padding: 0;
    z-index: 1000;
    left: 10%;
    bottom: 0;
    text-align: center;
    width: 80%;
}

.rotation-pagination li {
    display: inline-block;
    margin: 6px;
}

.rotation-pagination li a {
    display: block;
    width: 100%;
    height: 100%;
}


@media (max-width: 768px){
    .rotation-container {
        height: 350px;
    } 
    .rotation-viewport {
        height: 350px;
    }
}