/* Order */
#order .items .name img {
}
#order_sent {
	padding: 20px;
}
#order_sent p {
	margin-bottom: 20px;
}

/* Customer */
.tabs {
	/*border-bottom: 1px solid #cdcdcd;*/
}
.tabs li {
	float: left;
	padding: 10px;
	text-transform: uppercase;
    background: var(--color-grey);
}
.tabs li:hover,
.tabs .selected {
	background: #000;
	
}
.tabs li:hover a,
.tabs .selected a {
	color: #fff;
}
#customer_addresses form,
#customer_infos form {
	padding: 20px 0;
}
#customer_orders .description {
	padding: 20px 0 0 0;
}
#customer_orders .orders {
	padding: 20px 0;
}
#customer_order .wrapper {
	padding: 20px 0;
}
#customer_order .items {
	margin: 20px 0 20px 0;
}


/* Customer saved orders */
.orders {
}
.orders li {
	border-top: 1px solid #cdcdcd;
	border-left: 1px solid #cdcdcd;
	border-right: 1px solid #cdcdcd;
	padding: 10px;
}
.orders li.last {
	border-bottom: 1px solid #cdcdcd;
}
.orders li:hover {
	background: #f0f0f0;
}
.orders li h3 {
	font-weight: normal;
}
#customer_order h4 {
	font-weight: normal;
	margin-bottom: 10px;
}
#customer_order h4 span {
	font-size: 18px;
	color: #000;
	padding-right: 10px;
}

/* Order */
#order {
	padding: 20px 0;
}
#order_address {
	margin-bottom: 40px;
}
#order_address button {
	margin-top: var(--default-spacing);
}
#order_address h3 {
	color: #000;
	text-transform: uppercase;
	font-size: 17px;
	margin-bottom: 5px;
	font-weight: normal;
}
table.items {
	width: 100%;
	margin-bottom: 20px;
}
table.items tr {
    display: block;
	border-top: 1px solid #CCC;
    margin-bottom: var(--default-spacing);
    padding-top: 10px;
    position: relative;
}
table.items tr.head {
	text-transform: uppercase;
	font-size: 17px;
	color: #000;
	height: 50px;
    display: none;
}
table.items tr.head .remove {
	font-size: 12px;
}
table.items td {
	padding: 5px;
    display: block;
}
table.items td.empty {
    display: none;
}
table.items tr.shipping_disabled td,
table.items tr.shipping td,
table.items tr.total td {
	padding: 5px;	
}
table.items tr.total {
    display: flex;
}
table.items tr.shipping_disabled td {
	text-align: center;
	font-weight: normal;
}
table.items tr.total {
	font-weight: normal;
	color: #000;
	text-transform: uppercase;
	font-size: 17px;
}
table.items td.total_number {
    padding-top: 0;
}
table.items td.name {
	text-transform: uppercase;
	vertical-align: middle;
}
table.items .qty,
table.items .unit_price,
table.items .remove {
	text-align: center;
}
table.items .qty,
table.items .unit_price {
    display: none;
}
table.items .remove {
    position: absolute;
    right: 0;
    top: 0;
}
table.items .qty select {
	width: 60px;
}
table.items .remove img {
	width: 10px;
}
table.items .amount {
	text-align: left;
}
table.items .amount form {
    display: inline;
}
table.items td.thumbnail {
	width: 70px;
}
#order .buttons {
	text-align: right;
	margin-bottom: 20px;
}
#order .buttons .send {
	width: 200px;
	height: 50px;
}
#order form textarea {
	height: 150px;
}
#billing_address,
#deliver_address {
	margin-bottom: var(--default-spacing);
}
@media only screen and (min-width: 768px) {
    #order_address > .wrapper {
    	display: flex;
    }
    #order_address #billing_address {
        padding-right: var(--default-spacing);
    }
    table.items tr {
        display: table-row;
        margin-bottom: 0;
        padding-top: 0;
    }
    table.items tr.total {
        display: table-row;
    }
    table.items .qty,
    table.items .unit_price,
    table.items .remove,
    table.items td.empty,
    table.items td {
        display: table-cell;
    }
    table.items tr.shipping_disabled td,
    table.items tr.shipping td,
    table.items tr.total td {
    	padding: 15px 0;	
    }
    table.items img {
        width: 50px;
    }
    table.items .remove {
        position: static;
    }
    table.items .amount span {
        display: none;
    }
}