#cart_header{
	text-align: right;
	padding-right:25px;
	padding-bottom:10px;
	position: relative;
}

#cart_text{
	float:left;
}

#cart_header:after{
	content:'';
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
	height:1px;
	background:rgba(0,0,0,.4); 
	border-radius: 50% 0 0 50%;
}

#cart_proceed{
	height: 30px;
	line-height: 30px;
	width:250px;
	margin-bottom:10px;
}

#cart_proceed:hover:after{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	background:rgba(255,255,255,.1);
}
#cart_proceed:active:after{
	background:rgba(255,255,255,.15);
}

#cart_itogo{
	font-size:110%;
}

#cart_sumprice{
	font-weight: bold;
	font-size:140%;
	margin-left:10px;
	color:#008A00;
}

.cart_item{
	display: flex;
	flex-direction: row;
	margin-bottom:15px;
	padding-bottom:10px;
	border-bottom:solid 1px rgba(0,0,0,.13);
	position: relative;
}

.cart_item.disabled:after{
	content:'';
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height: 100%;
	border-radius:10px;
	background:rgba(0,0,0,.35);
}

.cart_item > *{
	width:100%;
}

.ci_image{
	display:inline-flex;
	justify-content: center;
	align-items: center;
	width:30%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	/*border:solid 1px rgba(0,0,0,.05);*/
	/*background-color: white;*/
}

.ci_amount{
	margin-left:35px
}

.ci_info{
	margin-left:35px;
}

.ci_a_cont{
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.cl_a_amount,
.ci_a_minus,
.cl_a_plus{
	width:40px;
	padding:4px;
	text-align: center;
	border:solid 1px rgba(0,0,0,.2);
	height: 16px;
}

.ci_a_minus,
.cl_a_plus{
	width:15px;
	position: relative;
	height: 16px;
	line-height: 16px;
	cursor: pointer;
}

.ci_a_minus:hover:after,
.cl_a_plus:hover:after{
	position: absolute;
	content:'';
	top:0;
	left:0;
	width:100%;
	height: 100%;
	background:rgba(0,0,0,.05);
}

.ci_a_minus:active:after,
.cl_a_plus:active:after{
	position: absolute;
	content:'';
	top:0;
	left:0;
	width:100%;
	height: 100%;
	background:rgba(0,0,0,.1);
}

.ci_name{
	color:black;
	font-weight: bold;
	text-decoration: none;
}

.ci_name:hover{
	text-decoration: underline;
	cursor: pointer;
}

.ci_cat{
	cursor: pointer;	
}

.cart_cat.hidden{
	max-height: 50px;
	overflow:hidden;
}

.fa-times-circle{
	float:right;
	position: relative;
	top:-48px;
	color:rgba(0,0,0,.3);
	cursor: pointer;
}

.fa-times-circle:hover{
	color:rgba(0,0,0,.65);
}

@media screen and (max-width: 666px){
	.cart_item{
		display: block;
		position: relative;
	}
	.ci_info{
		display: inline-block;
		width: unset;
		margin-bottom:15px;
	}
	.ci_image{
		margin:0px auto 15px;
		display:block
	}
	.ci_amount{
		margin-left:0px;
		width:32%;
		display: inline-block;
		text-align:center;
		text-align: center;
		padding-right: 45px;
	}
	.cl_price{
		width: 49%;
		display: inline-block;
		text-align:center;
	}
	.cl_price .fa-times-circle{
		position: absolute;
		right: 0;
		top: 0;
	}
	#cart_itogo{
		white-space:nowrap;
		text-align:none
	}
	#cart_header{
		padding-right:0px;
		text-align:center
	}
	#cart_text{
		float:none
	}
	#cart_proceed{
		margin-bottom:20px
	}
}
@media screen and (max-width: 615px){
	.cart_item{
		text-align:center
	}
	.cl_price .fa-times-circle{
		right:5px
	}
	.ci_cat{
		margin-left:5px
	}
	.ci_info{
		margin-left:0px
	}
}
@media screen and (max-width: 400px){
	.ci_amount{
		text-align:center;
		margin-bottom:10px;
		padding-right:0px;
		width:auto;
		display:block
	}
	.cl_price{
		text-align:center;
		width:auto;
		display:block		
	}
}
@media screen and (max-width: 375px){
	#cart_sumprice{
		white-space:break-spaces;
		margin-left:0px;
		display:block
	}
	#cart_proceed{	
        width:calc(100% - 20px);
        overflow:hidden
	}
}