/*!
 * jQuery ClassyScroll
 * http://www.class.pm/projects/jquery/classyscroll
 *
 * Copyright 2011 - 2013, Class.PM www.class.pm
 * Written by Marius Stanciu - Sergiu <marius@picozu.net>
 * Licensed under the GPL Version 3 license.
 * Version 1.1.0
 *
*/

.scrollbars:hover .scrollbar-path-vertical {
  opacity: 1;
}
.scrollbar-path-vertical, .scrollbar-path-horizontal {
  position: absolute;
  background: #DDD;
  background: rgba(0,0,0,.1);
  z-index: 100;
  -webkit-transition: opacity .25s;
     -moz-transition: opacity .25s;
      -ms-transition: opacity .25s;
       -o-transition: opacity .25s;
          transition: opacity .25s;
}
.scrollbar-path-horizontal {
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
}
.scrollbar-path-vertical {
  right: 4px;
  top: 54px !important;
  bottom: 6px !important;
  height: auto !important;
  width: 8px;
}
.scrollbar-path-vertical {
}
.scrollbar-path-horizontal {
}
.scrollbar-handle{
  position: relative;
  top: 0;
  left: 0;
  background: #BBB;
  background: rgba(0,0,0,.2);
  -webkit-transition: background .25s;
     -moz-transition: background .25s;
      -ms-transition: background .25s;
       -o-transition: background .25s;
          transition: background .25s;
}
.scrollbar-handle:hover, .scrollbar-handle:active {background: rgba(0,0,0,.4);}
.scrollbar-path-vertical .scrollbar-handle {
  height: 20%;
  width: 100%;
}
.scrollbar-path-horizontal .scrollbar-handle {
  width: 20%;
  height: 100%;
}
.scrollbar-path-vertical, .scrollbar-path-horizontal, .scrollbar-handle {
  border-radius: 5px;
}
.scrollbar-content {
  padding: 0;
  float: none !important;
}