/****************************************************************************************/
body[empty="false"] #cart .empty,
body[empty="true"] #cart .products,
body[empty="true"] #cart .bottom {
	display: none;
}
/****************************************************************************************/
#cart .empty {
	margin-top: 90px;
	text-align: center;
}

#cart .empty .content {
	display: flex;
	justify-content: center;
	align-items: center;
}
#cart .empty img {
	width: calc(128px * 0.23) !important;
	height: calc(112px * 0.23) !important;
}
#cart .empty h2 {
	margin-left: 15px;
	font-size: 2.4rem;
	font-weight: normal;
}

#cart .empty .button {
	margin-top: 130px;
}
/****************************************************************************************/
#cart .products {
	margin-top: 43px;
	width: 100%;
}

#cart .products .price,
#cart .products .quantity {
	white-space: nowrap;
}

#cart .products .price {
	text-align: right;
}

#cart .tax {
	font-size: 1.35rem;
	font-weight: normal;
}
/*******************************************/
#cart .products .image img {
	max-width: 140px;
	aspect-ratio: 500 / 357;
}

#cart .products .discounts {
	margin-top: 2px;
	font-size: 1.35rem;
}
#cart [icon="discount"] {
	transform: translateY(1px);
}

#cart .products .price .original {
	font-size: 1.4rem;
	text-decoration: line-through;
	opacity: 0.7;
}
/*******************************************/
#cart input[type="number"]::-webkit-inner-spin-button,
#cart input[type="number"]::-webkit-outer-spin-button {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

#cart .products .quantity .layout {
	display: flex;
}

#cart .products .quantity .input {
	padding: 3px;
	border-style: solid;
	border-width: 1px;
	display: flex;
}

#cart .products .quantity .number {
	padding-top: 1px;
	display: flex;
	align-items: center;
}

#cart .products .quantity input {
	width: 30px;
	font-size: 1.6rem;
	border: none;
	text-align: center;
}

#cart .products .quantity button {
	border: none;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 600ms cubic-bezier(0.19, 1.00, 0.22, 1.00);
}
#cart .products .quantity .layout:not(:hover) button {
	opacity: 0.2;
}
#cart .products .quantity button [icon] {
	display: flex;
	justify-content: center;
	align-items: center;
}

#cart .products .quantity .trash {
	padding: 2px 0 0 5px;
	display: flex;
	align-items: center;
}
#cart .products .quantity .trash [icon] {
	transform: scale(1.15);
}
/*******************************************/
#cart .error {
	font-size: 1.4rem;
	line-height: 1.9rem;
	color: #DD1D1D;
}
/****************************************************************************************/
#cart .bottom .discounts:empty {
	display: none;
}
#cart .bottom .discounts .title {
	margin-right: 15px;
	font-size: 1.5rem;
}

#cart .bottom .total .label {
	font-size: 1.8rem;
	font-weight: bold;
}
#cart .bottom .total .value {
	margin-left: 10px;
	font-size: 2rem;
}

#cart .bottom .delivery {
	font-size: 1.4rem;
}

#cart .bottom form [button] {
	letter-spacing: 0.05rem;
}

#cart .bottom input[type="submit"] {
	display: none;
}
/*******************************************/
#cart .bottom .discounts {
	margin-bottom: 15px;
}
/*******************************************/
#cart .bottom textarea {
	margin-top: 4px;
	padding: 4px;
	width: 100%;
	resize: vertical;
}
/****************************************************************************************/
#cart .bottom .note h3 {
	display: inline-block;
}

#cart .bottom .note h3 + span {
	font-size: 1.55rem;
}
/****************************************************************************************/