/* Force quantity inputs to be text boxes instead of sliders */
input[type="range"].form-control-range {
    appearance: none;
    -webkit-appearance: none;
    height: auto;
}

/* Style quantity inputs as regular text boxes */
.configoption-qty-input input[type="range"],
input.qty[type="range"] {
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    width: 100px;
    height: 38px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

/* Alternative: Hide range input and show number input */
.qty-selector input[type="range"] {
    display: none !important;
}

.qty-selector input[type="number"],
input.config-qty-input {
    display: inline-block !important;
    width: 100px;
    height: 38px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
