@charset "UTF-8";

.slideContainer {
    width: 75%;
}

.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 10px;
	background: linear-gradient(90deg, rgb(10, 60, 117), rgb(214, 214, 214) 0%);
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
	border-radius: 12px;
	/* box-shadow: 0px 1px 10px 1px black; */
	}
  
  .slider:hover {
	opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 40px;
	height: 40px;
    background: grey;
	cursor: pointer;
	border-radius: 50%;
  }
  
  .slider::-moz-range-thumb {
	width: 40px;
	height: 40px;
	cursor: pointer;
	border-radius: 50%;
    background: grey;
  }