.price-filter {
    width: min(100%, 357px);
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.75rem;
    background: transparent;
    align-self: flex-start;
}
.price-filter__inputs {
    display: flex;
    align-items: stretch;
    gap: .35rem;
}
.price-filter__fieldset {
    width: 110px;
    margin-top: -5px;
    min-width: 0;
    border-color: #dee2e6 !important;
    background: transparent;
    transition: border-color .15s ease-in-out;
}
.price-filter__fieldset:focus-within {
    border-color: #83f100 !important;
    box-shadow: none !important;
}
.price-filter__separator {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.price-filter__reset {
    flex: 0 0 auto;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.price-filter__reset:hover {
    border-bottom-color: transparent;
}
.price-filter__ok {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #000;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}
.price-filter__ok:hover {
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #000;
}
.price-filter__ok:active {
    background-color: #83f100;
    border-color: #83f100;
    color: #000;
}
.price-filter input[type="text"]::-webkit-outer-spin-button,
.price-filter input[type="text"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.price-filter input[type="text"] {
    -moz-appearance: textfield;
    color: #fff;
}

.price-filter__slider {
    position: relative;
    height: 28px;
    margin: 4px 10px 0;
}
.price-filter__track,
.price-filter__selected {
    position: absolute;
    left: 0;
    right: 0;
    top: 12px;
    height: 4px;
    border-radius: 2px;
}
.price-filter__track {
    background: #dee2e6;
}
.price-filter__selected {
    left: 0;
    right: auto;
    background: #83f100;
}
.price-filter__slider input[type="range"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 28px;
    margin: 0;
    pointer-events: none;
    appearance: none;
    background: transparent;
}
.price-filter__slider input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}
.price-filter__slider input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -7px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #83f100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    cursor: pointer;
}
.price-filter__slider input[type="range"]::-moz-range-track {
    height: 4px;
    background: transparent;
}
.price-filter__slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #83f100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    cursor: pointer;
}

@media (max-width: 575.98px) {
    .price-filter {
        width: 100%;
        min-width: 0;
    }
}