/*HORIZONTAL*/

.scrollbar.horizontal {
    width: 100%;
    height: 12px;
    overflow: none;
    position: relative;
	margin-top: 20px;
}

.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;
    background-image: url(icon-arrow-left.svg);
}

.scrollbar.horizontal .right-arrow {
    right: 0;
    background-image: url(icon-arrow-right.svg);
}

.scrollbar.horizontal .slider-bed {
    position: absolute;
    background-color: #D9D9D9;
    border-radius: 3px;
    height: 3px;
    left: 0;
    right: 0;
}

.scrollbar.horizontal .slider {
    position: absolute;
    height: 13px;
    background-color: #3F78CC;
    border-radius: 7px;
    left: 0;
	margin-top: -5px;
}

.scrollbar.horizontal .slider:hover {
    background-color: #3F78CC;
}


/*HORIZONTAL END*/


/*VERTICAL*/

.scrollbar.vertical {
    width: 12px;
    height: 100%;
    overflow: none;
    position: relative;
}

.scrollbar.vertical .arrow {
    position: absolute;
    left: 0;
    width: inherit;
    height: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.scrollbar.vertical .top-arrow {
    background-image: url(icon-arrow-up.svg);
    top: 0;
}

.scrollbar.vertical .bottom-arrow {
    background-image: url(icon-arrow-down.svg);
    bottom: 0;
}

.scrollbar.vertical .slider-bed {
    position: absolute;
    background-color: #EEE;
    border-radius: 5px;
    width: inherit;
    top: 10px;
    bottom: 10px;
    left: 0;
}

.scrollbar.vertical .slider {
    position: absolute;
    width: inherit;
    background-color: #CCC;
    border-radius: inherit;
    top: 0;
}

.scrollbar.vertical .slider:hover {
    background-color: #999;
}


/*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;
}