html {
  scroll-behavior: smooth;
  caret-color: transparent;
};

.filled-dark {
	fill: #272075;
}

.filled-light {
	fill: #F0EEFF;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 7px;
  background: #d3d3d3;
  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;
  border-radius: 50%;
  background: #5A4FCF;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #5A4FCF;
  cursor: pointer;
}

/* tooltip */
.tooltip {
    outline:none;
}
.tooltip strong {
    line-height:30px;
}
.tooltip:hover {
    text-decoration:none;
}
.tooltip span {
    z-index:10;
    display:none;
    padding:14px 20px;
    margin-top:38px;
    margin-left:-160px;
    width:240px;
    line-height:16px;
}
.tooltip:hover span {
    display:inline;
    position:absolute;
    border:2px solid #FFF;
    color:#EEE;
    background:#000;
}
.tooltip span {
    border-radius:1px;
    box-shadow: 0px 0px 4px 2px #666;
    opacity: 0.85;
}
.pos {
    display: inline;
    position: relative;
    text-decoration: none
}
.pos:hover:before {
    display:inline;
    border: solid;
    border-color: #333 transparent;
    border-width: 0px 6px 6px 6px;
    bottom: 2px;
    content:"";
    left: 50%;
    position: absolute;
    z-index: 99;
}



/* end tooltip*/

.toolinput {
    background-color: inherit;
    border-bottom-color: white;
    border-left: none;
    border-width: 1px;
    color: white;
    border-right: none;
    border-top: none;
    justify-content: right;
    text-align: right;
    font-size: inherit;
    font-family: inherit;
}

.toolinput:focus-visible {
    outline: none;
    caret-color: white;
}