.diamond-val, .coin-val{
  color: #191919;
  font-weight: 600;
  font-size: 2em;
  line-height: 1;
}
.converter-range,
.converter-range-2 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 250px;
    height: 18px;
    border: none;
    border-radius: 4px;
    overflow: hidden;
}

.converter-range::-webkit-slider-thumb,
.converter-range-2::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: #1C90FB;
    border: 0px solid #1C90FB;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    margin-top: -7px;
    clip-path: polygon(
        100% 0,
        2px 0,
        0 7px,
        -100vmax 7px,
        -100vmax 11px,
        0 11px,
        2px 100%,
        100% 100%
    );
}

.converter-range::-moz-range-thumb,
.converter-range-2::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    background-color: #1C90FB;
    border: 0px solid #1C90FB;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    margin-top: -7px;
}

.converter-range::-webkit-slider-runnable-track,
.converter-range-2::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 4px;
    border: 0px solid #fff;
    box-shadow: 0px 0px 0px #353535;
    background: #F1F1F2;
}