/*!
 * Scrollbox v4.0.0
 * (c) 2013-2017, Max Invis1ble
 * Licensed under MIT (https://opensource.org/licenses/mit-license.php)
 */
.scrollbox-container {
    position: relative;
}
.chosen-drop .scrollbox-wrapper .scrollbox-vertical-rail, .chosen-drop .scrollbox-wrapper .scrollbox-vertical-bar{
    margin-top: 33px;
}
.chosen-container-single-nosearch .chosen-drop .scrollbox-wrapper .scrollbox-vertical-rail, .chosen-container-single-nosearch .chosen-drop .scrollbox-wrapper .scrollbox-vertical-bar{
    margin-top: 0px;
}
.scrollbox-wrapper .scrollbox-overflowed {
    overflow: hidden;
}
.scrollbox-wrapper > :first-child {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: scroll-position;
}
.scrollbox-rail,
.scrollbox-bar {
    display: block;
    position: absolute;
    z-index: 10;
}
.scrollbox-horizontal-rail,
.scrollbox-horizontal-bar {
    bottom: 0;
    left: 0;
    display: none;
}
.scrollbox-vertical-rail,
.scrollbox-vertical-bar {
    top: 0;
    right: 0;
    z-index: 101;
}
.scrollbox-rail-in,
.scrollbox-bar-in {
    display: block;
}
.scrollbox-horizontal-bar {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: left;
}
.scrollbox-vertical-bar {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: top;
}
.scrollbox-rail {
    background-color: rgb(0 0 0 / 3%);
    /*-webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;*/
    border: 1px solid #5555552b;
    /*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=3)";
    filter: alpha(opacity=3);
    -moz-opacity: 0.03;
    -khtml-opacity: 0.03;
    opacity: 0.03;*/
}
.scrollbox-bar {
    background-color: #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.scrollbox-bar:hover {
    background-color: #999999;
}
.scrollbox-bar.scrollbox-bar-captured {
    background-color: #666666;
}
.scrollbox-horizontal-rail {
    height: 7px;
}
.scrollbox-vertical-rail {
    width: 10px;
    max-height: 155px;
}
.scrollbox-horizontal-bar {
    min-width: 20px;
    height: 7px;
}
.scrollbox-vertical-bar {
    min-height: 10px;
    width: 10px;
}
