/*.scroll-viewport {
  overflow: hidden;
  position: relative;
}*/
.scroll-overview {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
}

/*

save this

.flex-container .scroll-overview {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  list-style: none;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    padding-top: 5px;
    -webkit-flex-flow: row wrap;
    width: 100%;
    height: auto;
}

*/


.flex-container {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    padding-top: 5px;
    -webkit-flex-flow: row wrap;
    /* width: 100%; */
    height: auto;
    overflow-y: scroll;
    /*right: -19px;*/
    /*bottom: 0;*/
    padding-bottom: 600px;
    padding-top: 20px;
    /*padding-right: 15px;*/
}

/*.scroll-bar {
  background-color: rgba(0,0,0,0);
  border-radius: 3px;
  position: absolute;
  top: 0;
  right: 240px;
  width: 5px;
  transition: 0.6s ease-in-out opacity;
  height: 100%;
  z-index: 1;
}*/

#sidebar-wrapper .scroll-bar {
  background-color: rgba(0,0,0,0);
  border-radius: 3px;
  position: absolute;
  top: 0;
  right: 0px;
  width: 5px;
  transition: 0.6s ease-in-out opacity;
  height: 100%;
  z-index: 1;
}

#sidebar-wrapper-right .scroll-bar {
  background-color: rgba(0,0,0,0);
  border-radius: 3px;
  position: absolute;
  top: 0;
  right: 240px;
  width: 5px;
  transition: 0.6s ease-in-out opacity;
  height: 100%;
  z-index: 1;
}
/*
#page-content-wrapper .scroll-bar {
  background-color: rgba(0,0,0,0);
  border-radius: 3px;
  position: absolute;
  top: 0;
  right: 0px;
  width: 5px;
  transition: 0.6s ease-in-out opacity;
  height: 100%;
  z-index: 9999;
}
*/


.scroll-bar.disable {
  display: none;
}
.scroll-bar.visible {
  opacity: 1 !important;
}
.scroll-bar:hover {
  opacity: 1 !important;
}
.scroll-thumb {
  background-color: rgba(255,255,255,0);
  border-radius: 5px;
  height: 20px;
  width: 3px;
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 1px;
}
body.scroll-no-select {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
