/* ==========================================================================
   NOUISLIDER - Базовые стили для range slider
   Минимальная версия для работы библиотеки
   ========================================================================== */

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform-origin: 0 0;
  transform-style: preserve-3d;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal {
  height: 4px;
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  right: -10px;
  top: -8px;
}

.noUi-vertical {
  width: 4px;
}

.noUi-vertical .noUi-handle {
  width: 20px;
  height: 20px;
  right: -8px;
  bottom: -10px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -10px;
  right: auto;
}

.noUi-target {
  background: #e0e0e0;
  border-radius: 4px;
}

.noUi-connects {
  border-radius: 4px;
}

.noUi-connect {
  background: #000;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 3px solid #fff;
  border-radius: 50%;
  background: #000;
  cursor: default;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
}

.noUi-handle:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.noUi-active {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 4px;
}

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

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-connects {
  border-radius: 4px;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}
