$thumbSize: 16px;
$trackHeight: 4px;

/* Containers */
.range-wrapper-base {
  position: relative;
  max-width: 240px;
}

.range-wrapper-styled {
  padding: 0 ($thumbSize * 0.5);
  box-sizing: border-box;
}

.range-container-base {
  position: relative;
}

.range-container-styled {
  height: $thumbSize;
  box-sizing: border-box;
}

.disabled {
  opacity: 0.5;
}

/* Thumbs */
.thumb-base {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(-50%, -50%);
}

.thumb-styled {
  border: 0;
  padding: 0;
  outline: 0;
  width: $thumbSize;
  height: $thumbSize;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(51, 51, 51, 0.2);
  box-sizing: border-box;
}

/* Tracks */
.track-base {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.available-base {
  left: 0;
  right: 0;
}

.available-styled {
  height: $trackHeight;
  border-radius: $trackHeight * 0.5;
  background: #ebebeb;
}

.selected-styled {
  height: $trackHeight;
  border-radius: $trackHeight * 0.5;
  background: #1f84db;
}
