.price-input {
    width: 100%;
    display: flex;
    margin: 20px 0;
}

.price-input .field {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 76px;
    align-items: start;
}

.field input {
    width: 100%;
    height: 50px;
    gap: 5px;
    padding: 16px;
    outline: none;
    font-size: 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #DEE0EA80;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.slider {
    height: 2px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider .progress {
    height: 100%;
    left: 25%;
    right: 30%;
    position: absolute;
    border-radius: 5px;
    background: #FF8640;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #FF8640;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #FF8640;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.title-price {
    font-weight: 400;
    font-size: 15px;
    color: #939393;
}
