.cart-product-descr-wrap {
	margin-bottom: 20px;
	order: -1;
}

.cart-product-descr {
	display: flex;
	border: 1px solid #eee;
	margin-bottom: 15px;
}

.cart-product-descr-image,
.cart-product-descr-title,
.cart-product-descr-added {
	display: flex;
	align-items: center;
}

.cart-product-descr-image {
	width: 120px;
	border-right: 1px solid #eee;
}

.cart-product-descr-image img {
	width: 100%;
	height: auto;
}

.cart-product-descr-added {
	width: 100px;
	font-size: 18px;
	border-left: 1px solid #eee;
}

.cart-product-descr-info {
	padding: 10px 20px;
	width: calc(100% - 120px - 100px);
}

.cart-product-descr-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.cart-product-descr-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cart-product-descr-added {
	justify-content: center;
	color: #969696;
}

@media only screen and (max-width : 776px) {
	.cart-product-descr-info {
		padding: 10px;
	}

	.cart-product-descr-added {
		width: 75px;
	}

	.cart-product-descr-info {
		width: calc(100% - 120px - 75px);
	}
}

@media only screen and (max-width : 576px) {
	.cart-product-descr {
		flex-direction: column;
		text-align: center;
	}

	.cart-product-descr-title {
		justify-content: center;
	}

	.cart-product-descr-image,
	.cart-product-descr-info,
	.cart-product-descr-added {
		width: 100%;
	}

	.cart-product-descr-info {
		padding-left: 15px;
		padding-right: 15px;
	}

	.cart-product-descr-image img {
		max-width: 100px;
		margin: 15px auto 10px auto;
	}

	.cart-product-descr-added {
		padding: 5px;
		border-top: 1px solid #eee;
		border-left: none;
	}
	
}

		


