#uv-vte-year-range.slider-wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
  font-family: arial;
  overflow: visible !important;
  margin: 30px 0 45px;
}

#uv-vte-year-range .ui-slider {
  background: #efefef;
  border: 1px solid #d2d2d2;
  height: 10px;
  position: relative;
  border-radius: 2px;
  padding-top: 5px;
}

#uv-vte-year-range .ui-slider-range {
  background: #71c0ff55;
  height: 16px;
  position: absolute;
  transform: translateY(-9px);
}

#uv-vte-year-range .ui-slider-range:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
}

#uv-vte-year-range .ui-slider-handle {
  background: #00557f;
  position: absolute;
  width: 12px;
  height: 24px;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  z-index: 10;
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  transition: width 0.1s;
}

.ui-slider-handle {
  &:before {
    content: "\2261";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
  }
}

#uv-vte-year-range .ui-slider-handle:focus {
  outline: none;
}

#uv-vte-year-range .ui-slider-handle:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

#uv-vte-year-range .ui-state-active {
  background: #00aaff;
}

#uv-vte-year-range .range-wrapper {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

#uv-vte-year-range .range {
  font-size: 1.4em;
  white-space: nowrap;
  letter-spacing: 0.02em;
  color: #00557f;
  z-index: 10;
  position: relative;
}

#uv-vte-year-range .range:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 6px solid #71c0ff33;
}

#uv-vte-year-range .range-value {
  width: 60px;
  padding: 0 0 4px;
  text-align: center;
  display: inline-block;
  transition: background 0.1s;
  font-weight: bold;
}

#uv-vte-year-range .range-value.flash {
  color: #00aaff;
}

#uv-vte-year-range .range-divider {
  width: 1px;
  display: inline-block;
}

#uv-vte-year-range .range-divider:after {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 1px;
  height: 50%;
  background: #b3b3b3;
  content: '';
}

#uv-vte-year-range .marker {
  position: absolute;
  left: 0;
  bottom: -38px;
  transform: translateX(-50%);
  background: none;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 500;
  color: #3a3a3a;
  white-space: nowrap;
  cursor: pointer;
  z-index: 2;
  font-size: 1.1em;
}

#uv-vte-year-range .marker:after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 8px;
  background: #b3b3b3;
}

#uv-vte-year-range .tick {
  position: absolute;
  left: 0;
  bottom: -13px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 1;
}

#uv-vte-year-range .tick:after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 4px;
  background: #c4c4c4;
}

#uv-vte-year-range .marker.last-marker {
  left: auto;
  right: 0;
  transform: translateX(50%);
}

@media (max-width: 48em) { /* 768px */
    #uv-vte-year-range .marker {
        font-size: .9em;
        letter-spacing: -.7px;
    }
    #uv-vte-year-range .marker.first-marker {
        padding-left: 10px;
    }
    #uv-vte-year-range .marker.last-marker {
        padding-right: 10px;
    }
    .marker[data-value$="5"] {
        display: none;
    }
    #uv-vte-year-range .marker::after {
        top: -10px;
    }
}
