/*
 *  SimpleBar.js - v1.1.3
 *  Scrollbars, simpler.
 *  https://grsmto.github.io/simplebar/
 *
 *  Made by Adrien Grsmto from a fork by Jonathan Nicol
 *  Under MIT License
 */
 


.dishDvScroll_in {

}
	  
.simplebar {
	overflow-y: scroll;
}
.simplebar.horizontal {
	overflow-x: scroll;
	overflow-y: hidden;
}
			
			  
	  
	  
	  
.simplebar, [data-simplebar-direction] {
  position: relative;
  overflow: hidden;
  -webkit-overflow-scrolling: touch; /* Trigger native scrolling for mobile, if not supported, plugin is used. */
}
  .simplebar .simplebar-scroll-content,
  [data-simplebar-direction] .simplebar-scroll-content {
    overflow-y: scroll;
    overflow-x:hidden;
  }

  [data-simplebar-direction="horizontal"] .simplebar-scroll-content,
  .simplebar.horizontal .simplebar-scroll-content {
    overflow-x: scroll;
    overflow-y: auto;
  }

.simplebar-track {
  z-index: 99;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 11px;
}
  .simplebar-track .simplebar-scrollbar {
    position: absolute;
    right: 2px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    min-height: 10px;
    width: 7px;
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    background: #333;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
  }
  .simplebar-track:hover .simplebar-scrollbar {
    /* When hovered, remove all transitions from drag handle */
    opacity: 0.7;
    -webkit-transition: opacity 0 linear;
    -moz-transition: opacity 0 linear;
    -o-transition: opacity 0 linear;
    -ms-transition: opacity 0 linear;
    transition: opacity 0 linear;
  }
    .simplebar-track .simplebar-scrollbar.visible {
      opacity: 0.7;
    }

[data-simplebar-direction="horizontal"] .simplebar-track,
.simplebar.horizontal .simplebar-track {
  top: auto;
  left: 0;
  width: auto;
  height: 11px;
}
  [data-simplebar-direction="horizontal"] .simplebar-track .simplebar-scrollbar,
  .simplebar.horizontal .simplebar-track .simplebar-scrollbar {
    right: auto;
    top: 2px;
    height: 7px;
    min-height: 0;
    min-width: 10px;
    width: auto;
  }


.simplebar-scroll-content{
	/*width:107% !important;
	/*height:150px !important;*/
}






















