.batch-scroll {
    width: 100%;
    height: 100%;
    position: relative;
}
.batch-scroll .nav-control {
    width: 30px;
    height: 100%;
    position: absolute;
}
.batch-scroll .nav-control .nav-icon {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    font-size: 25px;
    margin-top: -0.5em;
    color: #333333;
    opacity: 0;
    transition: opacity 0.1s linear;
}
.batch-scroll .nav-control.enabled {
    cursor: pointer;
}
.batch-scroll .nav-control.enabled .nav-icon {
    opacity: 1;
}
.batch-scroll .nav-control.previous {
    top: 0;
    left: 0;
}
.batch-scroll .nav-control.next {
    top: 0;
    right: 0;
}
.batch-scroll .scroll-viewport {
    height: 100%;
    position: absolute;
    left: 30px;
    right: 30px;
    box-sizing: border-box;
    overflow: hidden;
}
.batch-scroll .visible-content {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    left: 0;
    transition: all 0.25s ease-in-out;
}
.batch-scroll .scroll-content {
    height: 100%;
}
