body {
  width: 100%;
  height: 100%;
}

.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  will-change: transform;
  background-color: #FFF; /* A background-color is required */
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

/* трек (фон) */
.noUi-target {
  background: rgba(255,255,255,0.4);
  border: none;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.08);
  border-radius: 999px;
}

/* активная часть */
.noUi-connect {
  background: linear-gradient(
    135deg,
    #8EC5FC,
    #A6A6FF,
    #E0C3FC
  );
  box-shadow: 0 4px 12px rgba(120,100,200,0.35);
}

/* ручка */
.noUi-handle {
  background: white;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  top: -6px;
}

/* убрать лишние полоски внутри handle */
.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.noUi-horizontal .noUi-handle {
  width: 28px;
  height: 28px;
}