﻿#cartModule .container {
	padding-right: 0px;
	padding-left: 0px;
	display: flex;
	flex-wrap: wrap;
}

#cart-total, #cart-detail > div, #paymentInfo, .buyer-customer,
#paymentTotalInfo, #payment-cart-detail {
	border: 2px solid #f3f4f7;
	border-left: 2px solid #f3f4f7;
	border-right: 2px solid #f3f4f7;
	margin-top: 5px;
	width: 100%;
	padding: 0;
}

#cart-total {
	margin-bottom: 5px;
}

#cart-detail > div, #paymentInfo, .buyer-customer,
#paymentTotalInfo, #payment-cart-detail {
	margin-bottom: 10px;
}
/* CSS Chọn tất cả */
.shop-card-parent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 36px;
	line-height: 40px;
	padding: 0 12px;
	background-color: #fff;
	outline: none;
	border-bottom: 1px solid #eff0f5;
}

.shop-card-left, .shop-card-right {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.shop-card-checkbox {
	margin-right: 16px;
	cursor: pointer;
}

.shop-card-title {
	font-size: 14px;
	color: #212121;
	vertical-align: middle;
	margin-right: 8px;
}
/* CSS Danh sách sản phẩm */
#cart-detail {
	padding: 0;
	max-height: 45vh;
	overflow: auto;
}

.current-price {
	font-size: 18px;
	line-height: 28px;
	color: #f57224;
	font-weight: 500;
	margin-bottom: 0px;
}

.item-price {
	font-size: 14px;
	color: #f57224;
	font-weight: 500;
	margin-bottom: 0px;
	display: flex;
	align-items: baseline;
}

	.item-price .discount-price {
		text-decoration: line-through;
		color: #757575;
		padding-right: 10px;
	}

.cart-item {
	width: 100%;
	padding: 5px 12px;
	background-color: #fff;
	font-size: 12px;
	font-weight: 400;
	text-align: left;
	border-bottom: 1px solid #eff0f5;
}

	.cart-item .cart-item-checkbox {
		float: left;
		margin-right: 16px;
	}

.cart-item-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.cart-item-left {
	display: table-cell;
	vertical-align: top;
	/*width: calc(100% - 156px - 139px);*/
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
}

	.cart-item-left .content {
		display: inline-block;
		position: relative;
		min-height: 70px !important;
	}

		.cart-item-left .content .title {
			display: block;
			width: 100%;
			max-height: 32px;
			overflow: hidden;
			text-overflow: ellipsis;
			padding-left: 0;
			font-size: 14px;
			color: #212121;
			line-height: 16px;
		}

		.cart-item-left .content .sku {
			display: block;
			margin-top: 6px;
			font-size: 12px;
			line-height: 16px;
			color: #757575;
		}

		.cart-item-left .content .good-desc {
			margin-top: 5px;
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: start;
			-ms-flex-pack: start;
			justify-content: flex-start;
			-webkit-box-align: center;
			-ms-flex-align: center;
			align-items: center;
		}

			.cart-item-left .content .good-desc .combo-Promo-text {
				margin-bottom: 0;
				margin-right: 5px;
				margin-left: 5px;
				padding: 0 10px;
				line-height: 18px;
				overflow: hidden;
				text-overflow: ellipsis;
				white-space: nowrap;
				border-radius: 17px;
				font-size: 12px;
				color: #fff;
				background: linear-gradient(45deg,#ff7094,#f10653);
			}

.cart-item-middle {
	display: table-cell;
	vertical-align: top;
	/*width: 156px;*/
	/*max-width: 156px;*/
	padding-left: 9px;
	padding-top: 2px;
	padding-bottom: 2px;
}

	.cart-item-middle .quantity {
		text-align: right;
		vertical-align: middle;
		font-size: 16px;
		line-height: 28px;
		color: #212121;
	}

.cart-item-right {
	display: table-cell;
	vertical-align: top;
	/*width: 139px;*/
	text-align: right;
	padding-top: 2px;
	padding-bottom: 2px;
}

	.cart-item-right .operations {
		font-size: 18px;
	}

@media (max-width: 767px) {
	.cart-item-left {
		width: calc(100%);
	}

	.cart-item-right, .cart-item-middle {
		width: calc(50%);
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
