.msc-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 10px;
  -ms-touch-action: none;
      touch-action: none;
  top: 5px;
  cursor: pointer;
  height: calc(100% - 10px);
}

.msc-wrapper .msc-scrollbar .msc-track {
  position: absolute;
  background: rgba(122, 122, 122, 0.5);
  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;
}

.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: #6f996c;
}

.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);
}

.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);
  top: 5px;
  background: rgba(255, 255, 255, 0.8);
  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: 3px solid transparent;
  right: 2px;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-down::before {
  border-bottom: none;
  border-top-color: rgba(77, 77, 77, 0.5);
  bottom: 3px;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-up::before {
  border-bottom-color: rgba(77, 77, 77, 0.5);
  border-top: none;
  top: 3px;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-up:hover::before {
  border-bottom-color: #6f996c;
}

.msc-wrapper.with-arrows .msc-scrollbar .msc-btn-down:hover::before {
  border-top-color: #6f996c;
}

.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 */
.msc-content{
    margin-right: -10px !important;
    width: calc(100% + 16px) !important;
}
#fading{
    width: 100%;
    height: 100%;
    min-height: 40vh;
    min-width: 350px;
}