.batch-scroll-vertical {
    height: 100%;
    position: relative;
}
.batch-scroll-vertical .nav-control {
    width: 100%;
    height: 19px;
    box-sizing: border-box;
    position: absolute;
    background-color: #073455;
}
.batch-scroll-vertical .nav-control .nav-icon {
    position: absolute;
    left: calc(50% - 4px);
    font-size: 17px;
    color: #C6C3C3;
    opacity: 0;
    transition: opacity 0.1s linear;
}
.batch-scroll-vertical .nav-control:hover .nav-icon {
    color: white;
    transform: scale(1.2);
}
.batch-scroll-vertical .nav-control.previous .nav-icon {
    top: 2px;
}
.batch-scroll-vertical .nav-control.next .nav-icon {
    top: 1px;
}
.batch-scroll-vertical .nav-control.enabled {
    cursor: pointer;
}
.batch-scroll-vertical .nav-control.enabled .nav-icon {
    opacity: 1;
}
.batch-scroll-vertical .nav-control.previous {
    top: 0;
}
.batch-scroll-vertical .nav-control.next {
    bottom: 0;
}
.batch-scroll-vertical .scroll-viewport {
    position: absolute;
    top: 19px;
    bottom: 19px;
    box-sizing: border-box;
}
.batch-scroll-vertical .visible-content {
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: all 0.25s ease-in-out;
}
.batch-scroll-vertical .scroll-content {
    
}
