/*********************************
4. Cart
*********************************/

.cart_section {
	width: 100%;
	padding-top: 93px;
	padding-bottom: 111px;
}

.cart_title {
	font-size: 30px;
	font-weight: 500;
}

.cart_items {
	margin-top: 50px;
}

.cart_list {
	border: solid 1px #e8e8e8;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.cart_item {
	width: 100%;
	padding: 10px;
	padding-right: 30px;
	border-bottom: 1px solid #c5c5c5;
}

.cart_item_image {
	width: 133px;
	height: auto;
	min-height: 133px;
	float: left;
	white-space: nowrap;
	text-align: center;
}

.cart_item_image_helper {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.cart_item_image img {
	max-width: 100%;
}

.cart_item_info {
	width: calc(100% - 133px);
	float: left;
	padding-top: 18px;
}

.cart_item_name {
	margin-left: 7.53%;
}

.cart_item_title {
	font-size: 14px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.5);
}

.cart_item_text {
	font-size: 18px;
	margin-top: 35px;
	word-break: break-word;
}

.cart_item_text.options {
	font-size: 13px;
}

.cart_item_text span {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 11px;
	-webkit-transform: translateY(4px);
	-moz-transform: translateY(4px);
	-ms-transform: translateY(4px);
	-o-transform: translateY(4px);
	transform: translateY(4px);
}

.cart_item_price {
	text-align: right;
}

.cart_item_total {
	text-align: right;
}

.order_total {
	width: 100%;
	height: 60px;
	margin-top: 30px;
	border: solid 1px #e8e8e8;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
	padding-right: 30px;
	padding-left: 10px;
}

.order_total_title {
	display: inline-block;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.5);
	line-height: 30px;
}

.order_total_amount {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	margin-left: 26px;
	line-height: 30px;
}

.cart_buttons {
	margin-top: 60px;
	text-align: right;
}

.cart_button_clear {
	display: inline-block;
	border: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 48px;
	color: rgba(0, 0, 0, 0.5);
	background: #FFFFFF;
	border: solid 1px #b2b2b2;
	padding-left: 35px;
	padding-right: 35px;
	outline: none;
	cursor: pointer;
	margin-right: 26px;
}

.cart_button_clear:hover {
	border-color: #0e8ce4;
	color: #0e8ce4;
}

.cart_button_checkout {
	display: inline-block;
	border: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 48px;
	color: #FFFFFF;
	padding-left: 35px;
	padding-right: 35px;
	outline: none;
	cursor: pointer;
	vertical-align: top;
}

.button_container {
	width: 117px;
}

.product_quantity span {
	display: block;
	height: 50px;
	font-size: 16px;
	font-weight: 300;
	color: rgba(0, 0, 0, 0.5);
	line-height: 50px;
	float: left;
}

.quantity_buttons {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 29px;
	border-left: solid 1px #e5e5e5;
}

.quantity_inc,
.quantity_dec {
	height: 48px;
	width: 30px;
	line-height: 48px;
	border: none;
	background-color: #fff;
	display: inline-block;
	text-align: center;
	user-select: none;
	cursor: pointer;
}

.quantity_inc {
	border-right: 1px solid #b1b1b1;
	border-bottom: 1px solid #b1b1b1;
	border-top: 1px solid #b1b1b1;
}

.quantity_dec {
	border-left: 1px solid #b1b1b1;
	border-bottom: 1px solid #b1b1b1;
	border-top: 1px solid #b1b1b1;
}

.quantity_control i {
	font-size: 11px;
	color: rgba(0, 0, 0, 0.3);
	pointer-events: none;
}

.quantity_label {
	line-height: 48px;
	display: inline-block;
	width: 40px;
	height: 48px;
	text-align: center;
	background-color: #fff;
	user-select: none;
	cursor: pointer;
	border-top: 1px solid #b1b1b1;
	border-bottom: 1px solid #b1b1b1;
	margin-right: -4px;
	margin-left: -4px;
}

.removeProduct {
	cursor: pointer;
	color: rgba(223, 128, 128, 0.5);
}

.removeProduct:hover {
	color: rgba(0, 0, 0, 0.7);
}

.product-price,
.product_total_price {
	font-size: 20px;
	font-weight: bold;
	line-height: 50px;
}

.product-price-diffrence {
	font-size: 16px;
	position: absolute;
	top: -28px;
	left: 0px;
}

#clearCartBtn {
	display: block;
	width: fit-content;
}
