.range {
    -webkit-appearance: none;
    width: 300px;
    height: 8px;
    background: linear-gradient(90deg, #17A8B5 50%, #A6D9DE 50%);
    border-radius: 30px;
    outline: none;
    opacity: 0.9;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin-bottom: 40px;
  }
  
  .range:hover {
    opacity: 1;
  }
  
  .range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 50%;
    border: 7px solid   #DF4171;
    width: 22px;
    height: 22px;
    background: #FFABC5;
    cursor: pointer;
  }
  
  .range::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 50%;
    border: 7px solid   #DF4171;
    width: 8px;
    height: 8px;
    background: #FFABC5;
    cursor: pointer;
  }

.card p{
    text-align: center;
    color: #DF4171;
    font-size: 0.85rem;
    font-weight: 600;
}


@media (min-width: 0px) and (max-width: 576px) {
    .range{
      width: 70vw;
    }
}