/* CSS Document */

/* =============== DEFAULT HTML - BUTTONS =============== */



.left > table.form td,
.right > table.form td {
	display: block;
}
table.list {
	width: 100%;
	margin-bottom: 15px;
	border-collapse: collapse;
	border-top: 1px solid #e3e3e3;
	border-left: 1px solid #e3e3e3;
	border-right: 1px solid #e3e3e3;
}
table.list td {
	padding: 7px;
}
table.list td {
	border-bottom: 1px solid #e3e3e3;
}
table.list td.name {
	text-align: left;
}
table.list td.model {
	width:170px;
}
table.list .right {
	text-align: right;
}
table.list thead td {
	font-weight: 600;
	border-bottom: 1px solid #e3e3e3;
}
table.list tbody td {
	vertical-align: middle;
	border-bottom: 1px solid #e3e3e3;
}
table.list tbody td.quantity input[type='text'] {
	text-align:center;
	min-width: 30px;
}
table.list tbody td.quantity input[type='image'],
table.list tbody td.quantity img {
	top: 4px;
	padding: 0;
	border: none;
	position: relative;
	background-color: #fff;
}
table.list tbody td.price,
table.list tbody td.total {
	color: #C64132;
}
table.list tbody span.stock {
	color: #F00;
	font-weight: 600;
}


/* table.list input.qty {
  width:3.5em !important;
  margin-top:5px;
} */





/* CART */
.cart-info {
	margin: 20px 0;
}
.cart-info table {
	border-right: 1px solid #e3e3e3;
}
.cart-info table td {
	border-right: none;
	text-align: center;
}
.cart-info table td.quantity {
	white-space: nowrap;
}

.cart-info table td.quantity .action{
	display: none;
}

.cart-info table td.image img {
	width:47px;
	height:47px;
}

.cart-info a {
	font-weight: 600;
}
.cart-module {
	padding-bottom: 20px;
}
.cart-module > div {
	display: none;
}
.cart-total {
	border-top: 1px solid #DDDDDD;
	overflow: auto;
	padding-top: 8px;
	margin-bottom: 15px;
}
.cart-total table {
	float: right;
}
.cart-total td {
	padding: 3px;
	min-width: 100px;
	text-align: right;
}
.cart-total td.total {
	color: #E15452;
}


/* Iphone 5 landscape */
@media(max-width:480px) {
	.cart-info table td.model input{
		width:100%;
	}
}

.quantity-container {
    display: flex;
    align-items: center;
    border: 1px solid #8f8f8f;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px
}

.quantity-container button {
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.quantity-btn:hover {
    color: #d61717;
    fill: #d61717
}

.quantity-btn.minus {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.quantity-btn.plus {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px
}

.quantity-container input[type=text] {
    width: 100px;
    text-align: center;
    font-size: 18px;
    pointer-events: none
}

.quantity-selector input[type=number] {
    -webkit-appearance: textfield;
    appearance: textfield;
    -moz-appearance: textfield
}

.quantity-input {
    width: 60px!important;
    height: 30px!important;
    text-align: center!important;
    border: #a3a3a3!important;
    outline: 0!important;
    font-size: 1.5rem;
    border-right: 1px solid!important;
    border-left: 1px solid!important;
}

input.qty.quantity-input {
    width: 55px!important;
	margin-top: 0!important;
}

input::-webkit-inner-spin-button,input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.cart-quantity-container {
    display: flex;
    align-items: center;
    gap: .2rem;
    justify-content: center
}

/* table td.quantity .action {
    display: flex;
    align-items: center;
    height: 32px;
    gap: .2rem
} */

@media screen and (max-width: 640px) {
    .cart-quantity-container {
        display:flex;
        flex-direction: column
    }
}


input.qty {
    border: 0px solid #ffffff;
    box-shadow: 0 0 0px 0 #ffffff inset;
    background-color: #ffffff;
    padding: 5px 5px;
    width: 100%;
    margin-bottom: 0;
}