:root {
	--color-added-to-cart: #148514;
}
.sidecart {
	position: fixed;
	top: 0; bottom: 0;
	left: 100%;
	width: 420px;
	color: black;
	background-color: #fff;
	z-index: 1500;
	transition: transform 0.3s;
	display: flex;
	flex-flow: column;
	padding: var(--br-mob) 0;
}
@media (max-width: 576px) {
	.sidecart {
		width: 100%;
	}
}
.sidecart-open {
	transform: translate(-100%);
}
.cart-header {
	height: 40px;
	border-bottom: 1px solid #E9E9E9;
	display:flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--br-mob);
}
.cart-header .close {
	padding: 10px;
	margin-right: -10px;
}
.cart-header .icon-cart img {
	width: 18px;
}
.cart-header .close img {
	width: 18px;
}
.cart-middle {
	flex: 1;
	overflow-y: hidden;
}
#cart-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
}
.products-list {
	overflow-y: auto;
}
.empty-cart {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;	
}
.cart-item {
	width: 100%;
	border-bottom: 1px solid #E9E9E9;
	padding: 10px var(--br-mob) 4px var(--br-mob);
	--a-r: var(--a-r-prod);
	overflow: hidden;
}
.cart-item .image {
	width: 68px;
}
.cart-item .description {
	flex: 1;
	display: flex;
	flex-flow: column nowrap;
	padding-left: 10px;
}
.cart-item .header {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.cart-item .header .name {
	width: calc(100% - 32px);
}
.cart-item .header .button {
	width: 32px;
}
[data-function='remove'] {
	padding: 5px;
	margin-left: 10px;
	margin-right: -5px;
}
[data-function='remove'] img {
	width: 16px;
}
.cart-item .options {
	display: flex;
	flex-flow: row wrap;
	flex: 1;
	align-items: flex-start;
	width: 100%;
}
.cart-item .options small {
	display: inline-flex;
	margin: 0 6px 10px 0;

}
.cart-item .options span {
	border: 1px solid lightgray;
	padding: 0 10px 0 10px;
	margin: 0 0 0 5px;
}
.cart-item .quantity {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 10px;
}
.cart-item .quantity div {
	height: 30px;
}
.cart-item .quantity button{
	font-size: 1.2em;
	background-color: lightgrey;
	color: black;
	margin: 0;
	width: 30px;
}
.quantity input[type="text"] {
	padding: 3px 8px;
	border-radius: 0;
	height: auto;
}
.cart-quantity-input {
	height: 100%;
	text-align: center;
	border: 2px solid #A6A6A6;
	padding: 0;
}
[data-cart-notify] {
	color: red;
	font-size: 12px;
	height: 12px;
	margin-top: 3px;
}
.coupon-wrapper {
	padding: 10px var(--br-mob);
}
.coupon-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.coupon-section input[type="text"] {
	margin-right: 12px;
}
.coupon-section #coupon-btn {
	height: 34px;
}
.coupon-section #coupon-btn-remove {
	color: var(--c-error);
	padding: 5px;
}
.coupon-section #coupon-btn-remove img {
	width: 14px;
}
.totals-list {
	border-top: 1px solid #E9E9E9;
	padding: 10px var(--br-mob);
}
.totals-list > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/* .totals-list > div:not(:last-child) {
	padding-bottom: 5px;
} */
.added-to-cart {
	animation: added-to-cart 0.8s ease-in-out;
}
@keyframes added-to-cart {
  0% {background-color: var(--c-green);}
	50% {background-color: var(--color-added-to-cart);}
	100% {background-color: var(--c-green);}
}
.cart-button .btn.disabled {
	width: 100%;
}
.cart-button {
	padding: 0 var(--br-mob);
}