*{
    position: relative;
}

.viascroll .viascroll-content{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.viascroll .viascroll-horizontal{
    position: absolute;
    bottom: 1px;
    right: 10px;
    left: 5px;
    height: 10px;
    background-color: #c5c5cb;
    opacity: 0;
    transition: opacity 0.3s linear 0.2s;
    z-index: 1;
}

.viascroll .viascroll-horizontal .viascroll-handle{
    position: absolute;
    left: 0;
    bottom: 2px;
    top: 2px;
    width: 20%;
    background-color: #86878d;
    min-width: 30px;
}

.viascroll .viascroll-vertical{
    position: absolute;
    bottom: 10px;
    right: 1px;
    top: 5px;
    width: 10px;
    background-color: #c5c5cb;
    opacity: 0;
    transition: opacity 0.3s linear 0.2s;
    z-index: 1;
}

.viascroll:hover .viascroll-horizontal,
.viascroll:hover .viascroll-vertical{
    opacity: 0.8;
    transition: opacity 0.5s;
}

.viascroll .viascroll-vertical .viascroll-handle{
    position: absolute;
    left: 2px;
    right: 2px;
    top: 0;
    height: 20%;
    background-color: #86878d;
    min-height: 30px;
}

.viascroll.native .viascroll-vertical,
.viascroll.native .viascroll-horizontal{
    visibility: hidden;

}