.btn-bd-primary {
    --bs-btn-font-weight: 300;
    --bs-btn-color: #000000;
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: #601ee5;;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #6628e0;
    --bs-btn-hover-border-color: #6628e0;
    --bs-btn-focus-shadow-rgb: #601ee5;;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c7;
    --bs-btn-active-border-color: #5a23c7;
}


/* slider */
input[type=range] {
  -webkit-appearance: none;
  margin: 20px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  background: #0C6DFD;
  border-radius: 25px;
}
input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0,0,0, 1);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #0C6DFD;
}
.range-wrap{
  width: auto;
  position: relative;
}
.range-value{
  position: absolute;
  top: -50%;
}
.range-value span{
  width: 40px;
  height: 30px;
  line-height: 24px;
  text-align: center;
  background: #0C6DFD;
  color: #fff;
  font-size: 15px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 6px;
}
.range-value span:before{
  content: attr(textContent);
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #0C6DFD;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -2px;
}

.tooltip-inner {
    max-width: 700px
}

/* slider done */