/* CSS Document */
/* Savings Calculator Section */
#commute-range-out,
#mileage-range-out {
  bottom: 14px;
  left: -3%;
  z-index: 10;
  color: #fff;
  position: relative;
  /* background-image: url(/storage/images/icons/range-slider-output-bg.svg); */
  height: 32px;
  width: 32px;
  background: #000;
  border-radius: 50%;
  /* padding-left: 8px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

#commute-range,
#mileage-range {
  /*  -webkit-appearance: none !important;
  -moz-appearance: none !important; */
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  outline: none;
  width: 100%;
  height: 8px;
}

#commute-range::-webkit-slider-thumb,
#mileage-range::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
}

#commute-range::-moz-range-thumb,
#mileage-range::-moz-range-thumb {
  width: 15px;
  height: 15px;
  color: var(--clr-black);
  background-color: var(--clr-black);
  box-shadow: none;
}

#commute-range-out:after,
#mileage-range-out:after {
  transform: rotate(45deg);
  bottom: -2px;
  content: "";
  position: absolute;
  z-index: -1;
  height: 16px;
  width: 16px;
  background: #000;
  left: 8px;
}



input {
  outline: none;
  border: none;
  display: block;
  line-height: 1.2em;
  font-size: 14pt;
}








/* Savings Calculator Section */
#magnus-ex-savings-meter-section h1, #magnus-ex-savings-meter-section .h1 {
  margin-bottom: 40px;
}

#magnus-ex-savings-meter-section .commute,
#magnus-ex-savings-meter-section .mileage,
#magnus-ex-savings-meter-section .savings {
  padding: 16px 16px 42px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  height: 150px;
}

#magnus-ex-savings-meter-section .range-slider-two {
  width: 100%;
  background-color: #868e96;
  background-color: #adb5bd;
  border-radius: 8px;
}
/* Mouse-over effects */
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ff4500 !important;
  color: red !important;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  background-image: linear-gradient(#11181c, #11181c) !important;
  position: relative;
  bottom: 4px;
}

input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
  background-image: linear-gradient(#c1c8cd, #c1c8cd);
  border-radius: 8px;
  height: 8px;
}