@charset "utf-8";
/* CSS Document */

/* Style.css */

.main { 
	background-color: #fff; 
	border-radius: 15px; 
	box-shadow: 0 0 20px
		rgba(0, 0, 0, 0.2); 
	padding: 20px; 
	transition: transform 0.2s; 
	width: 600px; 
} 

.main:hover { 
	transform: scale(1.05); 
} 

.gfg { 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	font-size: 24px; 
	font-weight: 600; 
	color: #01940b; 
} 

.custom-wrapper { 
	margin: auto; 
	width: 90%; 
	padding: 0px; 
	position: relative; 
} 

.header h2 { 
	font-size: 30px; 
	color: #01940b; 
	display: flex; 
	justify-content: center; 
	padding: 20px; 
} 

/* Styles for the price input container */
.price-input-container { 
	width: 100%; 
} 

.price-input { 
	display: flex; 
} 

.price-field { 
	display: flex; 
	width: 50%;
	justify-content: center;
	align-items: center;
} 

.price-field span { 
	margin: 5px 5px 0px 5px; 
	font-size: 14px; 
} 

.price-field input {
	width: 50%;
} 

.price-input { 
	width: 100%; 
	font-size: 19px; 
	color: #555; 
} 

.range-input { 
	position: relative; 
	display: flex;
	width: 90%;
	margin: 0px auto;
	justify-content: center;
	align-items: center;
} 

.min-range, .max-range {
	width: 80%;
}

/* UPDATED SLIDER CSS */
input[type=range] {
  -webkit-appearance: none;
	appearance: none;
  margin: 18px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 24px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -9px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #367ebd;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 24px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}
input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}	
