.msc-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: absolute;
}

.msc-wrapper .msc-content {
  position: absolute;
  overflow-y: scroll;
  min-width: 100%;
  padding-right: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

.msc-wrapper .msc-scrollbar {
  position: absolute;
  /*right: 3px;*/
  right: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  -ms-touch-action: none;
      touch-action: none;
  /*top: 5px;*/
  top: 0px;
  cursor: pointer;
  /*height: calc(100% - 10px);*/
  height: calc(100% - 0px);
}

.msc-wrapper .msc-scrollbar .msc-track {
  position: absolute;
  /*background: rgba(122, 122, 122, 0.5);*/
  background: #295cb5;
  /*border-radius: 5px;*/
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*-webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;*/
  border: 4px solid #0000;
}

.msc-wrapper .msc-scrollbar .msc-track .msc-handle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  border: none;
  padding: 0;
  min-height: 20px;
  cursor: pointer;
  outline: none;
  width: 100%;
  /*border-radius: inherit;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;*/
  /*background: #3f3f3f;*/
  background: #ffffff;
}

.msc-wrapper .msc-scrollbar [class*="msc-btn-"] {
  display: none;
  position: absolute;
  right: 0;
  outline: none;
  width: 100%;
  cursor: pointer;
  height: 10px;
  padding: 0;
  border: none;
  background: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*border-color: rgba(77, 77, 77, 0.5);*/
  border-color: rgba(255, 255, 255, 1);
}

.msc-wrapper .msc-scrollbar .msc-btn-up {
  top: 0px;
}

.msc-wrapper .msc-scrollbar .msc-btn-down {
  bottom: 0px;
}

.msc-wrapper.with-arrows .msc-scrollbar {
  /*height: calc(100% - 10px);*/
  height: calc(100% - 0px);
  /*top: 5px;*/
  /*background: rgba(255, 255, 255, 0.8);*/
  background: #295cb5;
  /*border-radius: 5px;
  -webkit-box-shadow: 0px 0px 4px rgba(77, 77, 77, 0.5);
          box-shadow: 0px 0px 4px rgba(77, 77, 77, 0.5);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;*/
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-up, .msc-wrapper.with-arrows .msc-scrollbar .msc-btn-down {
  display: block;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-down::before, .msc-wrapper.with-arrows .msc-scrollbar .msc-btn-up::before {
  content: " ";
  position: absolute;
  display: block;
  border: 4px solid transparent;
  right: 3px;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-down::before {
  border-bottom: none;
  /*border-top-color: rgba(77, 77, 77, 0.5);*/
  border-top-color: rgba(255, 255, 255, 1);
  bottom: 4px;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-up::before {
  /*border-bottom-color: rgba(77, 77, 77, 0.5);*/
  border-bottom-color: rgba(255, 255, 255, 1);
  border-top: none;
  top: 4px;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-up:hover::before {
  /*border-bottom-color: #3f3f3f;*/
  border-bottom-color: #ffffff;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-down:hover::before {
  /*border-top-color: #3f3f3f;*/
  border-top-color: #ffffff;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-track {
  top: 10px;
  height: calc(100% - 20px);
}

.msc-wrapper.with-fading .msc-scrollbar {
  opacity: 0;
  transition: opacity 0.3s linear;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
}

.msc-wrapper.with-fading:hover .msc-scrollbar, .msc-wrapper.using-scroll .msc-scrollbar {
  opacity: initial;
}

/*Positioning the element*/
#normal {
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
}

#with-arrows {
  top: 0;
  left: 50%;
  width: 50%;
  height: 50%;
}

#with-fading {
  top: 50%;
  left: 0;
  width: 50%;
  height: 50%;
}

#custom-styles {
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
}

#custom-styles .msc-content {
  background: black;
  color: white;
  padding: 20px;
}

#custom-styles .msc-track {
  background: none;
  width: 10px;
  border: 1px solid white;
}

#custom-styles .msc-track .msc-handle {
  background: white;
}
/*# sourceMappingURL=MoraScrollbar.css.map */