/* Container for the slider and labels */ .slider-container { display: flex; align-items: center; } /* Labels for the ends of the slider */ .slider-label { flex: 0 0 auto; /* Prevent labels from stretching */ margin: 0px 8px; /* Adjust margin as needed */ color: #A9A9A9; /* Set the font color to match the grey of the slider */ } .slider { -webkit-appearance: none; width: 60%; height: 10px; border-radius: 5px; background: #d3d3d3; outline: none; opacity: 0.7; -webkit-transition: .2s; transition: opacity .2s; } /* Safari, Chrome,... */ .slider::-webkit-slider-thumb { visibility: hidden; } .slider.thumb-visible::-webkit-slider-thumb { visibility: visible; -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #046aaa; cursor: pointer; } /* Firefox */ .slider::-moz-range-thumb { visibility: hidden; } .slider.thumb-visible::-moz-range-thumb { visibility: visible; width: 20px; height: 20px; border-radius: 50%; background: #046aaa; cursor: pointer; } /* Edge */ .slider::-ms-thumb { visibility: hidden; } .slider.thumb-visible::-ms-thumb { visibility: visible; width: 20px; height: 20px; border-radius: 50%; background: #046aaa; cursor: pointer; }