/* Style.css */

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

.custom-wrapper {
    margin: 0;
    margin-top: 20px;
    width: 100%;
    position: relative;
}
.custom-wrapper span {
    color: #806248;
    margin: 0 1px 0 3px;
    font-size: 17px;
    font-weight: bold;
    position: relative;
}
/* Styles for the price input container */
.price-input-container {
    width: 100%;
}

.price-input .price-field {
    margin-bottom: 5px;
}

.price-field input {
    flex: 1;
    text-align: center;
    border: 0px;
    width: 20px;
    background: #d4cabe;
}

.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-container {
    width: 100%;
}

.slider-container {
    height: 10px;
    position: relative;
    background: #e9e9e9;
}

.slider-container .price-slider {
    height: 100%;
    left: 25%;
    right: 15%;
    position: absolute;
    border-radius: 5px;
    background: #806248;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    top: -7px;
    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: 4px solid #806248;
    border-radius: 0px;
    background: #FFF;
    pointer-events: auto;
    -webkit-appearance: none;
}
