/*HORIZONTAL*/

.scrollbar.horizontal {
    /*   width: 100%;
      height: 12px;
      overflow: none;
      position: relative;*/
     width: 85%;
      height: 4px;
      overflow: none;
      position: relative;
      padding-bottom: 10px;
      padding-left: 0;
      margin-left: 0;
      top: 3px;
}
/*
.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: #EEE;
    border-radius: 5px;
    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: 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;
}