.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: rgba(211,211,211,0.02);
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}

/* primary */

.slider-primary {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #cce5ff;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border: 1px solid #b8daff;
  border-radius: 5px;
}

.slider-primary:hover {
  opacity: 1;
}

.slider-primary::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #004085;
  cursor: pointer;
  border: 1px solid #b8daff;
}

.slider-primary::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #004085;
  cursor: pointer;
  border: 1px solid #b8daff;
}

/* primary-round */

.slider-primary-round {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  background: #cce5ff;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border: 1px solid #b8daff;
  border-radius: 5px;
}

.slider-primary-round:hover {
  opacity: 1;
}

.slider-primary-round::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #004085;
  cursor: pointer;
  border: 1px solid #b8daff;
}

.slider-primary-round::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #004085;
  cursor: pointer;
  border: 1px solid #b8daff;
}

/* secondary */

.slider-secondary {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #e2e3e5;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider-secondary:hover {
  opacity: 1;
}

.slider-secondary::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #383d41;
  cursor: pointer;
}

.slider-secondary::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #383d41;
  cursor: pointer;
}

/* Success */

.slider-success {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #d4edda;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider-success:hover {
  opacity: 1;
}

.slider-success::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #155724;
  cursor: pointer;
}

.slider-success::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #155724;
  cursor: pointer;
}

/* success-round */

.slider-success-round {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  background: #d4edda;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border: 1px solid #b8daff;
  border-radius: 5px;
}

.slider-success-round:hover {
  opacity: 1;
}

.slider-success-round::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #155724;
  cursor: pointer;
  border: 1px solid #b8daff;
}

.slider-success-round::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #155724;
  cursor: pointer;
  border: 1px solid #b8daff;
}

/* danger */

.slider-danger {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #f8d7da;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider-danger:hover {
  opacity: 1;
}

.slider-danger::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #721c24;
  cursor: pointer;
}

.slider-danger::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #721c24;
  cursor: pointer;
}

/* warning */

.slider-warning {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #fff3cd;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider-warning:hover {
  opacity: 1;
}

.slider-warning::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #856404;
  cursor: pointer;
}

.slider-warning::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #856404;
  cursor: pointer;
}

