﻿/************************************
touch style
************************************/
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}
.quantity input.qty
{
    width: 26px;
    height: 30px;
    margin: 0px;
    position: relative;
    padding: 0px 10px 0px;
    font-size: 14px;
    text-align: center;
    float: none;
    z-index: 10;
    border-radius: 0;
    border-left: 0px solid #aaa;
    border-top: 1px solid #aaa;
    border-right: 0px solid #aaa;
    border-bottom: 1px solid #aaa;
    font-weight: bold;
}
.quantity .plus, .quantity .minus
{
    width: 28px;
    height: 32px;
    position: relative;
    padding: 0px;
    text-align: center;
    font-size: 14px;
    border-radius: 0;
    border: 1px solid #aaa;
    cursor: pointer;
}
.quantity .plus
{
    float: right !important;
    margin: 0px;
    border-radius: 0px 3px 3px 0px;
    border: 1px solid #aaa;
    background-color: #ececec;
}
.quantity .plus:hover
{
    background-color: #ccc;
}
.quantity .minus
{
    float: left;
    border-radius: 3px 0px 0px 3px;
    border: 1px solid #aaa;
    background-color: #ececec;
}
.quantity .minus:hover
{
    background-color: #ccc;
}
.minusV
{
    margin: 0px;
    padding: 0px;
    height: 25px;
    width: 32px;
    border-radius: 0px 0px 3px 3px;
    border: 1px solid #aaa;
    background-color: #ececec;
}
.plusV
{
    margin: 0px;
    padding: 0px;
    height: 25px;
    width: 32px;
    border-radius: 3px 3px 0px 0px;
    border: 1px solid #aaa;
    background-color: #ececec;
}
.input-number-V
{
    height: 25px;
    width: 24px;
    text-align: center;
    border: 1px solid #ccc;
    font-weight: bold;
    z-index: 1000;
}
