
.form-row {
	display:table-row;
}

.form-label {
	display:table-cell;
	padding:.5em 1em;
}

.form-input {
	display:table-cell;
}

.cart {
	margin:0 auto;
	/*
	display:flex;
	flex-direction:column;
	*/
	display:table;
	width:92%;
	min-width:530px;
	border-collapse: separate;
    border-spacing: 0 1.73em;
	/*border:1px solid #cecece;*/
}

.cart-header {
	display:table-row;
	background-color:#f5f5f5;
}

.cart-header div {
	display:table-cell;
	vertical-align:top;
	padding: .5em;
	text-align:center;
	/*display:flex;*/
	/*justify-content:center;*/
	/*align-items:center;*/
}

.cart-item {
	display:table-row;
	/*height: 92px;*/
/*
	display:flex;
	flex-direction:row;
	justify-content: space-between;
	*/
	/*padding: .7em .3em;*/
	/*height: 120px;*/
	/*border-bottom: 1px solid #aaa;*/
}

.cart-item > div {
	display:table-cell;
	vertical-align:middle;
	padding: .25em;
	/*border-top: 1px solid #cecece;*/
	/*display:flex;*/
	/*justify-content:center;*/
	/*align-items:center;*/
}

.cart-item > .image {
	width:15.5%;
}

.cart-item > .image > div {
	height: 72px;
    text-align: center;
	margin: .5em 0;
}

.cart-item > .title {
	width:31.25%;
	font-size:1.1em;
	padding-left: 1em;
	color:#504a4a;
}

.cart-item > .quantity {
	text-align:center;
	padding-left: .25em;
	padding-right: .25em;
	width: 120px;
}


.cart-item > .quantity > .remove {
	cursor:pointer;
}

.cart-item > .quantity > .add {
	cursor:pointer;
}

.cart-item > .quantity > input {
	width:3.8em;
	text-align:center;
	padding: .5em 0 .4em 0;
}

.cart-item > .unitPrice {
	/*width: 80px;*/
	/*font-size: 1.2em;*/
	text-align:center;
	padding-left: .25em;
	padding-right: .25em;
	width:12.5%;
}

.cart-item > .price {
	/*width: 80px;*/
	/*font-size: 1.2em;*/
	text-align:center;
	padding-left: .25em;
	padding-right: .25em;
	width:15%;
	color: #504a4a;
    font-size: 1.2em;
    font-weight: 500;
}

.cart-item > .endFunctions {
	text-align:center;
}

.summary {
	border: 1px solid #ededed;
	background-color:#f9f9f9;
	padding: 1em;
	border-radius: 2px;
    box-sizing: border-box;
	margin-top: 1.6em;
}

.customerInfo {
	border: 1px solid #ededed;
	background-color:#f9f9f9;
	padding: 1em;
	border-radius: 2px;
    box-sizing: border-box;
}

.checkoutItemCount {
	font-size:1.1em;
}

.summaryPriceTable {
	display: table;
	margin: 1em auto;
}

.totalPrice {
	display: table-row;
}

.totalPrice div {
	display: table-cell;
}

.totalPrice .label {
	width:30%;
	padding: 0 1em;
}

.totalPrice .value {
	font-size: 2em;
	font-weight:500;
	color:#504a4a;
}

.finalizeOrder {
	border: 1px solid #ededed;
	background-color:#f9f9f9;
	padding: 1em;
	border-radius: 2px;
    box-sizing: border-box;
    text-align:center;
}

.finalizeOrder > button {
	width:90%;
	padding: 1em;
}

.sidebar {
	width:90%;
	margin: 0 auto;
}

input[name=expiryMonth] {
	width:2.2em;
	margin:.15em;
}

input[name=expiryYear] {
	width:3.2em;
}

input[name=cvcNumber] {
	width:3em;
}

#stripeControls2 {
	background-color: rgb(253 253 253);
	padding: 0.83em 1em;
	text-align: center;
	border: .3em solid #ededed;
}

[data-errname] {
	display:none;
	color:#f1165d;
	font-size: .833em;
	font-weight:500;
}

@media screen and (min-width: 240px) and (max-width: 799px) {

.cart {
	width:96%;
	min-width:auto;
	border:0;
}

.cart-item {
	height: 80px;
}

.cart-item > div {
	display:table-cell;
	vertical-align:top;
	padding: 1em .15em;
	/*display:flex;*/
	/*justify-content:center;*/
	/*align-items:center;*/
}

.quantity > .remove {
	display:none;
}

.quantity > .add {
	display:none;
}

.summary {
	border: 0;
	margin: 0 auto;
}

}

