.in_stock {
    color: green;
    border: 1px solid green;
    padding: 3px 18px;
    width: fit-content;
    margin: 10px auto 0;
    font-size: 12px;
    font-family: 'Roboto-Condensed-Bold';
    cursor: context-menu;
    border-radius: 2px;
    text-align: center;
}

.price-slider {
    margin: auto;
    text-align: center;
    position: relative;
    display: flex;
    width: 75%;
}

.price-slider .input-price-range {
    position: absolute;
    overflow: visible;
    border-width: 1px;
    border-style: solid;
    height: 10px;
    font-weight: bold;
    background: #1da1f2;
    border: #1da1f2;
    border-radius: 4px;
}

.input-price-number {
    border: 1px solid #ddd;
    text-align: center;
    -moz-appearance: textfield;
    display: block;
    float: left;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding: 4px;
    width: 70px;
    height: 20px;
    line-height: 20px;
    outline: 0;
    vertical-align: text-bottom;
    -webkit-appearance: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 2px;
}

.input-price-number::-webkit-outer-spin-button,
.input-price-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.input-price-number:invalid,
.input-price-number:out-of-range {
    border: 2px solid #e60023;
}

.input-price-range {
    -webkit-appearance: none;
    width: 100%;
}

.input-price-range:focus {
    outline: none;
}

.input-price-range:focus::-webkit-slider-runnable-track {
    background: #1da1f2;
}

.input-price-range:focus::-ms-fill-lower {
    background: #1da1f2;
}

.input-price-range:focus::-ms-fill-upper {
    background: #1da1f2;
}

.input-price-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: #1da1f2;
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

.input-price-range::-webkit-slider-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid #1da1f2;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #a1d0ff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
}

.input-price-range::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: #1da1f2;
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

.input-price-range::-moz-range-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid #1da1f2;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #a1d0ff;
    cursor: pointer;
}

.input-price-range::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.input-price-range::-ms-fill-lower,
.input-price-range::-ms-fill-upper {
    background: #1da1f2;
    border-radius: 1px;
    box-shadow: none;
    border: 0;
}

.input-price-range::-ms-thumb {
    z-index: 2;
    position: relative;
    box-shadow: 0px 0px 0px #000;
    border: 1px solid #1da1f2;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #a1d0ff;
    cursor: pointer;
}