
/* Styles for the price input container */
.price-input-container {
    width: 100%;
}

.price-input .price-field {
    display: flex;
    margin-bottom: 22px;
}
  
.price-field input {
    /*flex: 1;*/
	width:50px;
    height: 20px;
    font-size: 13px;
	font-weight:bold;
    font-family: "verdana";
    border-radius: 9px;
    text-align: left;
    border: 0px;
    background:none;
}

.price-input {
    width: 100%;
    font-size: 19px;
    color: #555;
}

/* Remove Arrows/Spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.slider {
    width: 100%;
}

.slider {
    height: 10px;
    position: relative;
    background: #e4e4e4;
    border-radius: 5px;
}

.slider .price-slider {
    height: 100%;
	 left: 10%;
    right: 50%;
    position: absolute;
    border-radius: 5px;
    /*background: #01940b;*/
    background:#97ce41;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    top: -9px;
    pointer-events: none;
    cursor: pointer;
    -webkit-appearance: none;
}

/* Styles for the range thumb in WebKit browsers */
input[type="range"]::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 70%;
    background: darkgreen;
    pointer-events: auto;
    -webkit-appearance: none;
}