.input-range-wrapper{
	margin-top: 15px;
}

input[type="range"] {
		-webkit-appearance: none;
 		appearance: none;   
    width: 100%;
    background: #FFE4E9;
    outline: none;
    transition: opacity 0.2s;
		border-radius: 16px;
}

input[type="range"]:hover {
    opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
		-webkit-appearance: none;
 		appearance: none; 
    width: 25px !important;
    height: 25px !important;
    background: #fff !important;
    cursor: pointer;
		border: 3.75px solid #ED1A3B;
    border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    width: 25px !important;
    height: 25px !important;
    background: #fff !important;
    cursor: pointer;
		border: 3.75px solid #ED1A3B;
    border-radius: 50%;
}

input[type="range"]::-moz-range-progress {
	background: #ED1A3B;
	border-top-left-radius: 16px;
	border-bottom-left-radius: 16px;
	height: 11px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
  color: #727272;
	font-weight: 500;
	font-size: 18px;
	line-height: 48px;
}

@media (max-width: 576px){
	.input-range-wrapper{
		margin-top: 9px;
	}
	
	input[type="range"]::-webkit-slider-thumb {
    width: 14px !important;
    height: 14px !important;
		border: 2px solid #ED1A3B;
	}

	input[type="range"]::-moz-range-thumb {
		width: 14px !important;
		height: 14px !important;
		border: 2px solid #ED1A3B;
	}
	
	input[type="range"] {
		border-radius: 9px;
	}
	
	input[type="range"]::-moz-range-progress {
		border-top-left-radius: 9px;
		border-bottom-left-radius: 9px;
		height: 6px;
	}
	
		.range-labels {
			font-size: 10px;
			line-height: 26px;
	}
}