#slider
{
	display: inline-flex;
    vertical-align: middle;
}

#slider > *:not([type="text"])
{
    margin-top: 4px;
}

*
{
    outline: none;
}

input[type="range"]
{
    -webkit-appearance: none;
    margin: 0;
    border: 1px solid #141414;
    background-color: #141414;
    width: 70px;
    cursor: pointer;
    height: 12px;
    vertical-align: middle;
}

input[type="range"]::-webkit-slider-thumb
{
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background-color: #DBDBDB;
}

#increment,
#decrement
{
    width: 14px;
    height: 14px;
    background-color: #141414;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
}

#increment
{
    background-image: url("../images/slider_plus.png");
}

#decrement
{
    background-image: url("../images/slider_minus.png");
}

[type=text]
{
    width: 40px;
    margin-left: 5px;
    cursor: text;
    font-size: 12px;
    color: #999999;
    border: 1px solid #000000;
    height: 20px;
    background-color: #393939;
    padding: 0 4px 0 4px;    
}

input[type=text]:not([disabled])
{
    cursor: text;
}

input[type=text]:hover
{
    background-color: #555555;
}
input[type=text]:focus
{
    color: #EEEEEE;
}