
.slider {
	--progress: 0%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 48px;
	margin-bottom: 64px;
  padding-left: 20px;
  padding-right: 20px;
}

.slider-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.slider-input {
  position: relative;
  appearance: none;
  cursor: pointer;
  width: 100%;
  background-color: transparent;
  outline: none;
}

.slider-input::-webkit-slider-thumb {
  appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.66);
}

.slider-input::-webkit-slider-thumb:focus-visible {
  ring: 2px solid rgba(79, 70, 229, 0.3);
}

.slider-input::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.slider-input::-moz-range-thumb:focus-visible {
  ring: 2px solid rgba(79, 70, 229, 0.3);
}

.slider-progress {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 6px;
  background-color: #DEDEDE;
  border-radius: 9999px;
  overflow: hidden;
}

.slider-progress::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #34589b, #34589b);
  mask-image: linear-gradient(to right, white var(--progress), transparent var(--progress));
}

.slider-progress::after {
  content: "";
  position: absolute;
  inset: 0;
/*   background: repeating-linear-gradient(
    to right, 
    transparent, 
    transparent calc(25% - 1px), 
    rgba(255, 255, 255, 0.7) calc(25% - 1px), 
    rgba(255, 255, 255, 0.7) calc(25% + 1px)
  ); */
}

.slider-markers {
	list-style: none !important;
	padding: 0 10px;
	display: flex;
	position: relative;
}

.slider-marker {
	position: absolute;
	transform: translateX(calc(5px - 50%));
  user-select: none;
}


.slider-marker span {
	font-size: 13px;
	color: #333;
}

.slider-marker:last-of-type {
	position: absolute;
	transform: translateX(calc(-10px - 50%));
}

.slider-marker:nth-of-type(even) {
	top: -60px;
}

.slider-title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px !important;
  padding-top: 0;
}

.pewc-total-field-wrapper > p:not(:last-child) {
  display: block !important;
}

.pewc-total-field-wrapper > p > span {
  font-size: 20px;
  font-weight: bold;
}