/*HORIZONTAL*/

.scrollbar.horizontal {
    width: 100%;
    height: 12px;
    overflow: none;
    position: relative;
}

.scrollbar.horizontal .arrow {
    position: absolute;
    height: inherit;
    width: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.scrollbar.horizontal .left-arrow {
    left: 0;
}

.scrollbar.horizontal .right-arrow {
    right: 0;
}

.scrollbar.horizontal .slider-bed {
    position: absolute;
    background-color: #EEE;
    border-radius: 0px;
    height: inherit;
    left: 10px;
    right: 10px;
}

.scrollbar.horizontal .slider {
    position: absolute;
    height: inherit;
    background-color: #CCC;
    border-radius: inherit;
    left: 0;
}

.scrollbar.horizontal .slider:hover {
    background-color: #999;
}


/*HORIZONTAL END*/


/*VERTICAL*/

.scrollbar.vertical {
    width: 16px;
    height: 100%;
    overflow: none;
    position: relative;
    float:right;
}

.scrollbar.vertical .arrow {
    position: absolute;
    left: 0;
    width: inherit;
    height: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.scrollbar.vertical .slider-bed {
    position: absolute;
    background-color: #f1ecde;
    width: inherit;
    border-radius:0 !important;
    top: 0px;
    bottom: 0px;
    left: 0;
}

.scrollbar.vertical .slider {
    position: absolute;
    width: inherit;
    background-color: #d6c79b;
    top: 0;
}

    .scrollbar.vertical .slider:hover {
        background-color: #d6c79b;
    }


/*VERTICAL END*/

.unselectable {
    -moz-user-select: none !important;
    -o-user-select: none !important;
    -khtml-user-select: none !important;
    -webkit-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.default-cursor {
    cursor: default !important;
}