/* Please define your custom styles here */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
}

ul {
  width: 70%;
  margin-left: 15%;
  text-align: left;
  margin-top: 2rem;
}

li{
  margin-top: 1rem;
}

p{
  margin-top: 2rem;
  width: 70%;
  margin-left: 15%;
}

input[type="radio"] {
  -ms-transform: scale(2.5); /* IE 9 */
  -webkit-transform: scale(2.5); /* Chrome, Safari, Opera */
  transform: scale(2.5);
}


html,body{
  display: grid;
  height: 100%;
  text-align: center;
  place-items: center;
  background: #ffffff;
}

.wrapper-range{
  height: 0px;
  width: 600px;
  margin: 150px auto;
  background: #fff;
  border-radius: 10px;
  padding: 0 180px 0 180px;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.1);
}

.field{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  flex-wrap
}
.field .value{
  position: absolute;
  font-size: 18px;
  color: #045fa4;
  font-weight: 600;
}
.field .value.left{
  left: -152px;
}
.field .value.right{
  right: -150px;
}
.field input {
  flex: 1 1 auto;
}

.sliderValue{
  position: relative;
  width: 100%;
}
.sliderValue span{
  position: absolute;
  height: 45px;
  width: 45px;
  transform: translateX(-70%) scale(0);
  font-weight: 500;
  top: -40px;
  line-height: 55px;
  z-index: 2;
  color: #fff;
  transform-origin: bottom;
  transition: transform 0.3s ease-in-out;
}

.sliderValue span.show{
  transform: translateX(-70%) scale(1);
}

.sliderValue span:after{
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background: #045fa4;
  border: 3px solid #fff;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-bottom-left-radius: 50%;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.1);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.range input::-webkit-slider-thumb{
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
  background: #045fa4;
  border: 1px solid #045fa4;
  cursor: pointer;
}

 

.range input::-moz-range-progress{
  background: #664AFF;
}