.boxShoppingCart .boxButtons {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -4px;
}

.boxShoppingCart .boxButtons .button {
	margin: 4px;
}

.boxShoppingCart .list {
	margin: 50px 0;
	width: 100%;
	border-collapse: collapse;
}

.boxShoppingCart .list .tableRow {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.boxShoppingCart .list .tableCell {
	
}

.boxShoppingCart .list .tableHeader {
	
}

.boxShoppingCart .list .tableHeader .tableCell {
	padding: 0 0 5px 0;
	font-weight: bold;
	text-align: left;
}

.boxShoppingCart .list .tableSection .productImgResponsive {
	display: none;
}

.boxShoppingCart .list .tableSection .product { 
	width: 50%; 
	padding: 0 0 0 30px;
}
.boxShoppingCart .list .tableSection .trash { width: 5%; text-align: center; }
.boxShoppingCart .list .tableSection .quantity { width: 15%; text-align: center; }
.boxShoppingCart .list .tableSection .price { width: 15%; text-align: right; }
.boxShoppingCart .list .tableSection .total { width: 15%; text-align: right; padding: 0 15px 0 0; }

.boxShoppingCart .list .tableBody {
	border-top: 2px solid #eaeaea;
	border-bottom: 2px solid #eaeaea;
}

.boxShoppingCart .list .tableBody .tableRow {
	padding: 0;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
}

.boxShoppingCart .list .tableBody .tableRow .product,
.boxShoppingCart .list .tableBody .tableRow .trash,
.boxShoppingCart .list .tableBody .tableRow .quantity,
.boxShoppingCart .list .tableBody .tableRow .price,
.boxShoppingCart .list .tableBody .tableRow .total {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 12px;
}

.boxShoppingCart .list .tableBody .tableRow .product {
	justify-content: flex-start;
}

.boxShoppingCart .list .tableBody .tableRow .product .infoContent {
	display: flex;
	align-items: center;
}

.boxShoppingCart .list .tableBody .tableRow .product .info {
	padding: 0 0 0 12px;
	line-height: 1.3em;
}

.boxShoppingCart .list .tableBody .tableRow .product .info .title {
	display: block;
	font-weight: 600;
	color: #282828;
}

.boxShoppingCart .list .tableBody .tableRow .product .info .variacao {
	display: block;
	color: #a0a0a0;
}

.boxShoppingCart .list .tableBody .tableRow .trash {
	text-align: center;
}

.boxShoppingCart .list .tableBody .tableRow .quantity {
	position: relative;
}

.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox {
	width: 80px;
	height: 50px;
	border: 1px solid #c8c8c8;
	border-radius: 6px;
	background: white;
}

.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox input {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 22px);
	height: 100%;
	border: none;
	border-right: 1px solid #c8c8c8;
	background: transparent;
	font-size: 1.1rem;
	line-height: 1em;
	text-align: center;
	border-radius: 0;
}

.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox .plus {
	position: absolute;
	top: 0;
	right: 0;
	width: 22px;
	height: 50%;
	transition: background 0.3s ease;
}

.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox .minus {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 22px;
	height: 50%;
	border-top: 1px solid #c8c8c8;
	transition: background 0.3s ease;
}

.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox .plus:hover, 
.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox .minus:hover {
	background: #d8d8d8;
}

.boxShoppingCart .list .tableBody .tableRow .price {
	justify-content: flex-end;
	color: #b8b8b8;
}

.boxShoppingCart .list .tableBody .tableRow .total {
	justify-content: flex-end;
	font-weight: 500;
	color: #282828;
}

.boxShoppingCart .list .tableBody .tableRow .price .label,
.boxShoppingCart .list .tableBody .tableRow .total .label {
	display: none;
}

.boxShoppingCart .list .tableBody .tableRow.subtotal {
	padding: 5px 0;
	justify-content: flex-end;
	background: #e8e8e8;
}


/* FRETE */
.boxShoppingCart .rowFreteEntrega > .tableCell {
	width: 100%;
}

.boxShoppingCart .boxEntrega {
	display: flex;
}

.boxShoppingCart .tipoFrete {
	padding: 15px;
	width: 100%;
	max-width: 25%;
}

.boxShoppingCart .tipoFrete > label {
	display: block;
	margin: 1em 0 0 0;
	width: 100%;
	cursor: pointer;
}

.boxShoppingCart .infoFrete {
	padding: 15px 15px 15px 50px;
	margin-left: auto;
	width: 100%;
	max-width: 45%;
}

.boxShoppingCart .infoFrete #UIFreteValue {
	background: #fafafa;
	border: 1px solid #b8b8b8;
	padding: 15px;
	width: 100%;
	font-size: 0.95rem;
	line-height: 1.4em;
	color: #282828;
	border-radius: 4px;
}

.boxShoppingCart .enderecoFrete {
	padding: 15px;
	width: 100%;
}

.boxShoppingCart .enderecoFrete .endereco {
	background: #fafafa;
	border: 1px solid #b8b8b8;
	padding: 15px;
	width: 100%;
	font-size: 0.95rem;
	line-height: 1.2em;
	color: #282828;
	border-radius: 4px;
}

.boxShoppingCart .textError {
	color: #f62020;
}


/* CUPONS */
.boxShoppingCart .list .tableBody .rowCoupon {
	border-top: 0;
	border-color: #282828;
}

.boxShoppingCart .list .tableBody .rowCoupon > .tableCell {
	width: 100%;
}

.boxShoppingCart .boxCoupon {
	display: flex;
	align-items: center;
	padding: 10px;
	background: #eaeaea;
}

.boxShoppingCart .boxCoupon .info {
	padding: 0 40px 0 0;
	width: 25%;
	font-size: 0.9rem;
	text-align: right;
}

.boxShoppingCart .boxCoupon .fields {
	display: flex;
	align-items: center;
	width: 30%;
}

.boxShoppingCart .boxCoupon .fields input {
	margin: 0 10px 0 0;
}

.boxShoppingCart .boxCoupon .desc {
	padding: 0 10px;
	width: 20%;
	font-size: 0.9rem;
}

.boxShoppingCart .boxCoupon .desconto {
	margin-left: auto;
	white-space: nowrap;
	text-align: right;
}

.boxShoppingCart .coupon .couponContent {
	display: flex;
	align-items: center;
}

.boxShoppingCart .coupon input {
	max-width: 240px;
	padding: 6px 5px;
	background: #ffffff;
}

.boxShoppingCart .coupon input[type=text].gearSpinning, .boxShoppingCart .coupon input[type=text].gearSpinning {
	background-image: url(../../img/icons/icon-gear.gif);
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: 99%;
	transition: none;
}


/* TOTAL */
.boxShoppingCart .list .tableBody .rowTotal {
	justify-content: flex-end;
}

.boxShoppingCart .boxTotal {
	padding: 10px;
	text-align: right;
}





/* ########## */
/* RESPONSIVE */
/* ########## */


/* 1440px */
@media screen and (max-width: 1440px) {

}


/* 1280px */
@media screen and (max-width: 1280px) {
	.boxShoppingCart .list .tableSection .product {
		width: 45%;
	}

	.boxShoppingCart .list .tableSection .total {
		width: 20%;
	}
}


/* 1024px */
@media screen and (max-width: 1024px) {
	.boxShoppingCart .list .tableBody .tableRow.subtotal .total {
		width: 25%;
	}


	/* FRETE */
	.boxShoppingCart .boxEntrega {
		flex-wrap: wrap;
	}

	.boxShoppingCart .tipoFrete {
		width: 50%;
		max-width: none;
	}

	.boxShoppingCart .enderecoFrete {
		width: 50%;
	}

	.boxShoppingCart .infoFrete {
		width: 50%;
		max-width: none;
		padding: 15px;
	}


	/* CUPOM */
	.boxShoppingCart .boxCoupon .info {
		width: 30%;
		padding: 0 20px 0 0;
	}

	.boxShoppingCart .boxCoupon .fields {
		width: 35%;
	}
}


/* 768px */
@media screen and (max-width: 768px) {
	.boxShoppingCart .list .item.tableRow {
		display: grid;
    grid-template-areas:
			"productImgResponsive product product"
			"productImgResponsive quantity quantity"
			"productImgResponsive price total";
    grid-template-columns: 130px 200px 1fr;
		padding: 38px 50px 38px 0;
	}

	.boxShoppingCart .list .tableSection .productImgResponsive { display: block; grid-area: productImgResponsive; }
	.boxShoppingCart .list .tableSection .product { grid-area: product;	width: 100%; }
	.boxShoppingCart .list .tableSection .quantity { grid-area: quantity; width: auto; }
	.boxShoppingCart .list .tableSection .price { grid-area: price; width: 100%; }
	.boxShoppingCart .list .tableSection .total.subtotal { grid-area: total; width: 100%; }

	.boxShoppingCart .list .tableSection .trash {
		position: absolute;
    top: 50%;
    right: 6px;
		transform: translateY(-50%);
		width: auto;
    padding: 0 !important;
		font-size: 25px;
    z-index: 20;
	}

	.boxShoppingCart .list .tableHeader {
		display: none;
	}

	.boxShoppingCart .list .tableBody .tableRow .product,
	.boxShoppingCart .list .tableBody .tableRow .quantity,
	.boxShoppingCart .list .tableBody .tableRow .price,
	.boxShoppingCart .list .tableBody .tableRow .total.subtotal {
		justify-content: flex-start;
		padding: 0 12px;
		text-align: left;
	}

	.boxShoppingCart .list .tableBody .tableRow .product .infoContent img {
		display: none;
	}

	.boxShoppingCart .list .tableBody .tableRow .product .info {
		padding: 0;
	}

	.boxShoppingCart .list .tableBody .tableRow .quantity {
		margin: 14px 0 0;
	}

	.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox {
		display: flex;
		width: 160px;
    height: 40px;
	}

	.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox input {
		position: relative;
		width: calc(100% - 84px);
		border-left: 1px solid #c8c8c8;
	}

	.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox .plus {
		position: relative;
		top: auto;
		right: auto;
		width: 42px;
		height: 100%;
		font-size: 20px;
	}

	.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox .minus {
		position: relative;
		bottom: auto;
		right: auto;
		width: 42px;
		height: 100%;
		font-size: 20px;
		border-top: none;
		order: -9999;
	}

	.boxShoppingCart .list .tableBody .tableRow .price,
	.boxShoppingCart .list .tableBody .tableRow .total.subtotal {
		margin: 20px 0 0;
	}

	.boxShoppingCart .list .tableBody .tableRow .price .label,
	.boxShoppingCart .list .tableBody .tableRow .total.subtotal .label {
		display: inline-block;
		margin: 0 10px 0 0;
	}

	.boxShoppingCart .list .tableBody .tableRow.subtotal .total {
		justify-content: flex-end;
		width: 100%;
		padding: 5px 12px;
	}


	/* CUPOM */
	.boxShoppingCart .boxCoupon {
		flex-wrap: wrap;
	}

	.boxShoppingCart .boxCoupon .info {
		width: 100%;
		padding: 0;
		text-align: left;
	}

	.boxShoppingCart .boxCoupon .fields {
		width: 100%;
    margin: 14px 0 0;
	}

	.boxShoppingCart .boxCoupon .desc {
		width: 100%;
		margin: 10px 0 0;
	}

	.boxShoppingCart .boxCoupon .desconto {
		margin-top: 26px;
	}


	/* TOTAL */
	.boxShoppingCart .boxTotal {
		padding: 16px 10px;
	}
}


/* 640px */
@media screen and (max-width: 640px) {
	.boxShoppingCart .boxButtons {
		flex-wrap: wrap;
	}

	.boxShoppingCart .boxButtons .button {
		flex: 1 1 auto;
	}


	.boxShoppingCart .list .item.tableRow {
		grid-template-areas:
			"productImgResponsive product product"
			"productImgResponsive quantity quantity"
			"productImgResponsive price price"
			"productImgResponsive total total";
    grid-template-columns: 100px 1fr 1fr;
	}

	.boxShoppingCart .list .tableSection .product { width: 100%; }

	.boxShoppingCart .list .tableBody .tableRow .product .infoContent img {
		width: 82px;
	}

	.boxShoppingCart .list .tableBody .tableRow .quantity {
		margin: 14px 0 0;
	}

	.boxShoppingCart .list .tableBody .tableRow .total.subtotal {
		margin: 14px 0 0;
	}


	/* FRETE */
	.boxShoppingCart .tipoFrete,
	.boxShoppingCart .enderecoFrete,
	.boxShoppingCart .infoFrete {
		width: 100%;
		padding: 15px 5px;
	}
}


/* 480px */
@media screen and (max-width: 480px) {
	.boxShoppingCart .list .item.tableRow {
    grid-template-columns: 21.8vw 1fr 1fr;
		padding: 38px 38px 38px 0;
	}

	.boxShoppingCart .list .tableSection .trash {
		right: 0;
		font-size: 21px;
	}

	.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox {
		width: 130px;
		height: 36px;
	}

	.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox .plus,
	.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox .minus {
		width: 34px;
		font-size: 18px;
	}

	.boxShoppingCart .list .tableBody .tableRow .quantity .quantityBox input {
		width: calc(100% - 68px);
	}
}