.rc-slider {
  position: relative;
  height: 80px;
  padding: 0;
  width: 100%;
  border-radius: 0;
  -ms-touch-action: none;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-versus-mode .rc-slider {
  height: 50px;
}

.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-slider-rail, .rc-slider-track {
  position: absolute;
  -webkit-mask-position: center left;
  mask-position: center left;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: auto 100%;
  mask-size: auto 100%;
}

.rc-slider-rail {
  width: 100%;
  height: 80%;
  top: 10%;
  opacity: .5;
}

.rc-slider-track {
  left: 0;
  top: 0;
  bottom: 0;
  height: 80%;
  top: 10%;

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: opacity .3s ease-in-out;
}

.rc-slider-roundedMask .rc-slider-rail,
.rc-slider-roundedMask .rc-slider-track {
  mask-image: url("/static/images/rounded_bar.svg");
  -webkit-mask-image: url("/static/images/rounded_bar.svg");
}

.rc-slider-squareMask .rc-slider-rail,
.rc-slider-squareMask .rc-slider-track {
  mask-image: url("/static/images/squared_bar.svg");
  -webkit-mask-image: url("/static/images/squared_bar.svg");
}

@supports (-ms-ime-align:auto) and (not (font-variation-settings:normal)) {
  /* Microsoft Edge */
  .rc-slider-roundedMask .rc-slider-rail,
  .rc-slider-roundedMask .rc-slider-track,
  .rc-slider-squareMask .rc-slider-rail,
  .rc-slider-squareMask .rc-slider-track {
    background-image: url("/static/images/line_white.svg");
    background-size: auto 100%;
  }
}

.rc-slider-handle {
  position: absolute;
  bottom: 0;
  margin-left: -7px;
  margin-top: -5px;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.rc-slider-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.rc-slider-handle:focus {
  outline: none;
}

.rc-slider-mark {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
}

.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: white;
  top: -35px;
  font-size: 12px;
  text-transform: uppercase;
  width: 100px;
  margin-left: -50px;
  text-align: center;
  font-weight: 700;
  opacity: .65;
  transform: none;
}

div:not(.markers-decorator) .rc-slider-mark-text {
  top: -30px;
  opacity: 1;
}

.rc-slider-mark-text-active {
  /* color: #666; */
}

.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: .5;
}

.markers-decorator .rc-slider-dot {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8px 0 8px;
  border-color: white transparent transparent transparent;
  position: absolute;
  top: 0;
  margin-left: -8px;
}

.markers-decorator .rc-slider-dot:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 99px;
  top: 0;
  margin-left: -1px;
  background-color: #999;
  opacity: .5;
}

.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}

.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}

.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px;
}

.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px;
}

.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  margin-bottom: -7px;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}

.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}

.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}

.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}

.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}

.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}

.rc-slider-tooltip-zoom-down-leave {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}

.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}

.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}

.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}

@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}

.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-slider-tooltip-hidden {
  display: none;
}

.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}

.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}

.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}

/* Disable click event on range/slider */
.rc-slider {
  pointer-events: none;
}

.rc-slider-handle {
  pointer-events: auto;
}