
.wrapper *{font-family: 'Poppins',sans-serif;}

  .wrapper {
    width:100%;
    background-color: #fff;
    padding: 20px 25px 40px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper header h2 {
    font-size: 24px;
    font-weight: 600;
  }
  
  .wrapper header p {
    font-size: 15px;
    margin-top: 5px;
  }
  
  .wrapper .price-input {
    display: flex;
    width: 100%;
    margin: 30px 0 35px;
  }
  
  .wrapper .price-input .field {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
  }
  
  .price-input input {
    width: 100%;
    height: 100%;
    outline: none;
    border: 1px solid #999;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    margin-left: 12px;
  }
  
  .price-input input::-webkit-outer-spin-button,
  .price-input input::-webkit-inner-spin-button {
    display: none;
  }
  
  .wrapper .seperator {
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
  }
  
  .wrapper .slider {
    height: 5px;
    position: relative;
    background-color: #ddd;
    border-radius: 5px;
  }
  
  .wrapper .progress {
    position: absolute;
    height: 100%;
    left: 5%;
    right: 65%;
    background-color: #4070f4;
    border-radius: 5px;
  }
  
  .wrapper .range-input {
    position: relative;
  }
  
  .wrapper .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    pointer-events: none;
    background: none;
    appearance: none;
    accent-color: #4070f4;
  }
  
  .wrapper .range-input input::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
    background-color: #4070f4;
    border-radius: 50%;
    pointer-events: auto;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  }
  