.cart_item-inserted {
	overflow: visible;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	z-index: 99;
}

.cart_item-inserted > input {
	position: absolute;
	opacity: 0;
}

.cart_item-inserted > div {
	overflow: auto;
	padding: 20px;
	display: none;
	justify-content: center;
	max-width: none;
	height: 100vh;
	position: relative;
}

.cart_item-inserted > input:checked + label + div {
	display: flex;
}

.cart_item-inserted > label {
	background: transparent;
}

.cart_item-inserted > input:checked + label {
	background: rgba(0,0,0,.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: background 1s;
	z-index: 99;
}

.cart_item-inserted > div > div {
	color: #000;
	background: #FFF;
	border-radius: 15px;
	overflow: hidden;
	margin: auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	max-width: 1200px;
	max-width: var(--web-width);
	position: relative;
	z-index: 100;
	box-shadow: 0 10px 20px -10px rgba(0,0,0,.25);
}

.cart_item-inserted > div > div > div:first-child {
	text-align: center;
	margin: 20px 5px;
}

.cart_item-inserted > div > div > div:last-child {
	margin-left: -20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	direction: rtl;
}

.cart_item-inserted > div > div > div:last-child > * {
	color: #888;
	background: #DDD;
	border: none;
	border-radius: 5px;
	font: inherit;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	margin: 20px 0 0 20px;
	padding: 12px 20px;
	cursor: pointer;
	direction: ltr;
}

.cart_item-inserted > input:focus + div > div > div > label {
	outline: 1px dotted #000;
	outline-offset: -10px;
}

.cart_item-inserted > div > div > div:last-child > *.primary {
	color: #FFF;
	background: #4B2;
}

.cart_item-inserted > div > div > div:last-child > *:focus {
	outline: 1px dotted #000;
	outline-offset: -10px;
}

.cart_item-inserted > div > div > div:last-child > *.primary:focus {
	outline-color: #FFF;
}

.cart_order-steps {
	margin: 36px -2px 20px -2px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.cart_order-steps > li {
	margin: 0;
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.cart_order-steps > li > * {
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	margin: 0;
	padding: 0 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
}

.cart_order-steps > li > * > span:first-child {
	flex: 0;
	display: inline-flex;
	align-items: center;
}

.cart_order-steps > li > * > span:last-child {
	font-size: 90%;
	flex: 1;
}

.cart_order-steps > li > * > span:first-child:before,
.cart_order-steps > li > * > span:first-child:after {
	content: '';
	background: #4B2;
	text-align: center;
	height: 3px;
	position: absolute;
	left: 0;
	right: 50%;
	z-index: 0;
}

.cart_order-steps > li > * > span:first-child:after {
	left: 50%;
	right: 0;
}

.cart_order-steps > li:first-child > * > span:first-child:before {
	display: none;
}

.cart_order-steps > li:last-child > * > span:first-child:after {
	display: none;
}

.cart_order-steps > li > * > span:first-child > i {
	color: #4B2;
	background: #FFF;
	border-radius: 50%;
	font-size: 150%;
	z-index: 1;
	box-shadow: -4px 0 0 0 #FFF, 4px 0 0 0 #FFF;
}

.cart_order-steps > li.current > * > span:first-child:after {
	background: #DDD;
}

.cart_order-steps > li.current > * > span:first-child > i {
	color: #E30613;
}

.cart_order-steps > li.current ~ li > * > span:first-child:before,
.cart_order-steps > li.current ~ li > * > span:first-child:after {
	background: #DDD;
}

.cart_order-steps > li.current ~ li > * > span:first-child > i {
	color: #DDD;
}

.cart_order-steps > li > h1 {
	color: #E30613;
	padding-top: 6px;
	padding-bottom: 6px;
}

.cart_order-steps > li > a {
	color: #4B2;
	padding-top: 6px;
	padding-bottom: 6px;
	position: relative;
	z-index: 1;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.cart_order-steps > li.current ~ li > a {
	color: #CCC;
}

.cart_order-steps > li > *:focus {
	outline: 1px dotted #000;
	outline-offset: -1px;
}

.cart_content {
	margin-top: 40px;
}

.cart_content > table {
	border-collapse: collapse;
	width: 100%;
}

.cart_content > table img {
	vertical-align: top;
	object-fit: contain;
}

.cart_content > table th,
.cart_content > table td {
	font: inherit;
}

.cart_content > table > thead {
	display: none;
}

.cart_content > table > thead > tr > th:not(:empty) {
	padding: 0 10px 5px 10px;
}

.cart_content > table > thead > tr > th.availability {
	text-align: left;
	padding-left: 20px;
}

.cart_content > table > tbody {
	border-top: 1px solid #DDD;
}

.cart_content > table > tbody > tr > td {
	vertical-align: baseline;
	padding: 20px;
}

.cart_content > table > tbody > tr:nth-child(3n + 1) {
	display: none;
}

.cart_content > table > tbody > tr:nth-child(3n + 1) > td {
	padding-bottom: 0;
}

.cart_content > table > tbody > tr:nth-child(3n + 1) > td > div {
	display: flex;
	align-items: center;
}

.cart_content > table > tbody > tr:nth-child(3n + 1) > td > div > span.image {
	display: inline-block;
	align-self: flex-start;
}

.cart_content > table > tbody > tr:nth-child(3n + 1) > td > div > span.image > img {
	margin-right: 20px;
}

.cart_content > table > tbody > tr:nth-child(3n + 1) > td > div > span.product {
	display: inline-block;
	flex: 1;
}

.cart_content > table > tbody > tr:nth-child(3n + 1) > td > div > span.product > a {
	color: inherit;
	font-weight: 600;
	text-decoration: none;
}

.cart_content > table > tbody > tr:nth-child(3n + 2) > td:not(.image) {
	padding-bottom: 10px;
	height: 100%;
}

.cart_content > table > tbody > tr:nth-child(3n + 3) {
	border-bottom: 1px solid #DDD;
}

.cart_content > table > tbody > tr:nth-child(3n + 3) > td {
	vertical-align: top;
	padding-top: 0;
	padding-bottom: 0;
}

.cart_content > table > tbody > tr:nth-child(3n + 3) > td > div {
	margin-bottom: 20px;
}

.cart_content > table > tbody > tr > td.image {
	vertical-align: top;
	padding-left: 0;
	padding-right: 0;
}

.cart_content > table > tbody > tr > td.image > img {
	margin-left: 20px;
}

.cart_content > table > tbody > tr > td.product {
	width: 100%;
}

.cart_content > table > tbody > tr > td.product > a {
	color: inherit;
	font-weight: 600;
	text-decoration: none;
}

.cart_content > table > tbody > tr > td.unit_price {
	text-align: right;
	white-space: nowrap;
	padding-right: 0;
}

.cart_content > table > tbody > tr > td.unit {
	padding-left: 0;
}

.cart_content > table > tbody > tr > td.unit > span {
	vertical-align: inherit;
}

.cart_content > table > tbody > tr > td.quantity {
	text-align: center;
	white-space: nowrap;
}

.cart_content > table > tbody > tr > td.quantity > span {
	overflow: hidden;
	margin-top: -10px;
	margin-bottom: -10px;
	display: flex;
}

.cart_content > table > tbody > tr > td.quantity > span > a {
	color: #FFF;
	background: #FFF;
	border: 1px solid #CCC;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2em;
	height: 2em;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.cart_content > table > tbody > tr > td.quantity > span > a:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.cart_content > table > tbody > tr > td.quantity > span > a:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.cart_content > table > tbody > tr > td.quantity > span > a:focus {
	border: 1px dotted #000;
}

.cart_content > table > tbody > tr > td.quantity > span > a:before {
	content: '';
	background: #888;
	display: block;
	width: .75em;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cart_content > table > tbody > tr > td.quantity > span > a.increase:after {
	content: '';
	background: #888;
	display: block;
	width: 2px;
	height: .75em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cart_content > table > tbody > tr > td.quantity > span > a:hover {
	color: #008EF5;
	background: #008EF5;
	border-color: transparent;
	z-index: 1;
}

.cart_content > table > tbody > tr > td.quantity > span > a.disabled:hover {
	color: #A0DCFB;
	background: #A0DCFB;
}

.cart_content > table > tbody > tr > td.quantity > span > a:hover:before,
.cart_content > table > tbody > tr > td.quantity > span > a:hover:after {
	background: #FFF;
}

.cart_content > table > tbody > tr > td.quantity > span > span {
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	flex: 1;
	display: flex;
	align-items: center;
	min-width: 3.5em;
}

.cart_content > table > tbody > tr > td.quantity > span > span > input.quantity {
	color: inherit;
	background: transparent;
	border: none;
	font: inherit;
	text-align: center;
	text-overflow: ellipsis;
	padding: 4px 5px 3px 5px;
	max-width: 3.5em;
	-moz-appearance: textfield;
}

.cart_content > table > tbody > tr > td.quantity > span > span > input.quantity::-webkit-inner-spin-button,
.cart_content > table > tbody > tr > td.quantity > span > span > input.quantity::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.cart_content > table > tbody > tr > td.quantity > span > span > span.quantity {
	border: 1px solid transparent;
	margin: -6px auto;
	padding: 5px 10px;
	display: inline-block;
	min-width: 3.5em;
}

.cart_content > table > tbody > tr > td.total_price {
	text-align: right;
	white-space: nowrap;
}

.cart_content > table > tbody > tr > td.remove > a {
	color: #FFF;
	background: #FFF;
	border: 1px solid #CCC;
	border-radius: 5px;
	margin-top: -10px;
	margin-bottom: -10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2em;
	height: 2em;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.cart_content > table > tbody > tr > td.remove > a:before {
	content: '';
	background: #888;
	display: block;
	width: 3px;
	height: .8em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.cart_content > table > tbody > tr > td.remove > a:after {
	content: '';
	background: #888;
	display: block;
	width: .8em;
	height: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.cart_content > table > tbody > tr > td.remove > a:hover:before,
.cart_content > table > tbody > tr > td.remove > a:hover:after {
	background: #FFF;
}

.cart_content > table > tbody > tr > td.dec_quantity > a:focus,
.cart_content > table > tbody > tr > td.inc_quantity > a:focus,
.cart_content > table > tbody > tr > td.remove > a:focus {
	border: 1px dotted #000;
	outline: none;
}

.cart_content > table > tbody > tr > td.remove > a:hover {
	color: #E30613;
	background: #E30613;
	border-color: transparent;
}

.cart_content > table > tfoot > tr > th {
	text-align: right;
}

.cart_content > table > tfoot > tr > th > table {
	border-collapse: collapse;
	display: inline-table;
}

.cart_content > table > tfoot > tr > th > table > tbody > tr > * {
	vertical-align: bottom;
	padding: 20px 20px 0 20px;
}

.cart_content > table > tfoot > tr > th > table > tbody > tr.total-price > th {
	font-weight: 600;
}

.cart_content > table > tfoot > tr > th > table > tbody > tr.total-price > td {
	font-weight: 700;
}

.cart_content > table > tfoot > tr > th > table > tbody > tr > th > span {
	display: inline-block;
}

.cart_coupon {
	margin-top: 30px;
}

.cart_coupon > div:first-child {
	margin-bottom: 10px;
}

.cart_coupon > div:last-child {
	background: #FFF;
	border-radius: 5px;
	white-space: nowrap;
	display: inline-flex;
}

.cart_coupon > div:last-child > * {
	display: inline-block;
}

.cart_coupon > div:last-child > div > input {
	color: #5A5A5A;
	background: transparent;
	border: 3px solid #4B2;
	border-right: none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	font: inherit;
	text-align: center;
	padding: 9px 10px 9px 8px;
	width: 8.5em;
}

.cart_coupon > div:last-child > div > input:focus {
	outline: none;
	box-shadow: none;
}

.cart_coupon > div:last-child > div > button {
	color: #FFF;
	background: #4B2;
	border: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 12px 20px;
}

.cart_coupon > div:last-child > div > button::-moz-focus-inner {
	border: none;
}

.cart_coupon > div:last-child > div > button:focus {
	outline: 1px dotted #000;
	outline-offset: -10px;
}

.cart_delivery-and-payment {
	margin: -10px -20px -30px -20px;
	padding: 15px 5px;
	display: flex;
	flex-wrap: wrap;
}

.cart_delivery-and-payment > div {
	padding: 15px;
	flex: 1;
}

.cart_delivery-and-payment > div.country {
	flex-basis: 100%;
}

.cart_delivery-and-payment > div > fieldset {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: 0 5px 15px -5px rgba(0,0,0,.15);
}

.cart_delivery-and-payment > div > fieldset > legend {
	border: 1px solid #DDD;
	border-bottom: none;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding: 20px 20px 19px 20px;
	display: block;
	width: 100%;
	float: left;
}

.cart_delivery-and-payment > div > fieldset > legend + * {
	clear: left;
}

.cart_delivery-and-payment > div > fieldset > legend strong {
	font-weight: 700;
}

.cart_delivery-and-payment > div.country > fieldset > div {
	background: rgba(12,174,97,.15);
	border: 1px solid #4B2;
	border-width: 3px;
	border-radius: 5px;
	margin-left: -2px;
	margin-right: -2px;
	display: flex;
	align-items: center;
}

.cart_delivery-and-payment > div.country > fieldset > div > span:last-child {
	flex: 0;
}

.cart_delivery-and-payment > div.country > fieldset > div > span:first-child {
	flex: 1;
}

.cart_delivery-and-payment > div.country > fieldset > div > span > select {
	background: transparent;
	border: none;
	outline: none;
	font: inherit;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 20px;
	width: 100%;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.cart_delivery-and-payment > div.country > fieldset > div > span > select::-ms-expand {
	display: none;
}

.cart_delivery-and-payment > div.country > fieldset > div > span > select:focus {
	outline: 1px dotted #000;
	outline-offset: -2px;
}

.cart_delivery-and-payment > div.country > fieldset > div > span > button {
	background: transparent;
	border: 0;
	font: inherit;
	font-weight: 600;
	padding: 20px;
}

.cart_delivery-and-payment > div > fieldset > div > div {
	margin-bottom: -1px;
}

.cart_delivery-and-payment > div > fieldset > div > div > input {
	margin: 0;
	position: absolute;
	opacity: 0;
	transform: translate(calc(-50% + 21px + .75em), calc(-100% + 23px + 1.5em));
	cursor: pointer;
}

.cart_delivery-and-payment > div > fieldset > div > div > div.label {
	border: 1px solid #DDD;
	padding: 10px;
	display: flex;
	position: relative;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.cart_delivery-and-payment > div > fieldset > div > div > div.label > label {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	cursor: pointer;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked:not(:disabled) + div.label > label {
	z-index: 1;
}

.cart_delivery-and-payment > div > fieldset > div > div > div.label > div:not(:last-child) {
	padding: 10px;
}

.cart_delivery-and-payment > div > fieldset > div > div > div.label > div:last-child {
	padding: 5px 0;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.cart_delivery-and-payment > div > fieldset > div > div > div.label > div:last-child > * {
	padding: 5px 10px;
}

.cart_delivery-and-payment > div > fieldset > div > div > div.label > div:last-child > *:first-child {
	font-weight: 600;
	flex: 1;
}

.cart_delivery-and-payment > div > fieldset > div > div > div.label > div:last-child > .ndash {
	display: none;
}

.cart_delivery-and-payment > div > fieldset > div > div > div.label > div:last-child > .price {
	font-weight: 600;
	text-align: right;
}

.cart_delivery-and-payment > div > fieldset > div > div > div.label > div:last-child > div {
	font-size: 85%;
	padding-top: 0;
	flex-basis: 100%;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label i.input {
	background: #FFF;
	border: 2px solid #AAA;
	border-radius: 50%;
	margin-top: -1px;
	margin-bottom: -1px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label i.input:after {
	content: '';
	background: #4B2;
	border-radius: 50%;
	display: block;
	width: 0%;
	height: 0%;
	position: relative;
	opacity: 0;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:not(:disabled) + div.label {
	cursor: pointer;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:not(:checked) + div.label:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:focus + div.label {
	outline: 1px dotted #000;
	outline-offset: -5px;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked:not(:disabled) + div.label {
	background: rgba(12,174,97,.15);
	border-color: #4B2;
	border-width: 3px;
	border-radius: 5px;
	margin-left: -2px;
	margin-right: -2px;
	padding: 8px 10px;
	z-index: 1;
	box-shadow: 0 5px 10px -5px rgba(0,0,0,.2);
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked:not(:disabled) + div.label i.input {
	border-color: rgba(12,174,97,.85);
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked + div.label i.input:after {
	width: 70%;
	height: 70%;
	opacity: 1;
	transition: all 150ms ease-in-out;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked:disabled + div.label {
	background: rgba(187,187,187,.1);
	border-color: #BBB;
	z-index: 1;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked:disabled + div.label i.input:after {
	background: #BBB;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:disabled + div.label i.input {
	background: #DDD;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:disabled + div.label > div {
	color: #888;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label select.branch {
	color: inherit;
	background: transparent;
	border: 2px solid transparent;
	font: inherit;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: -3px -2px;
	padding: 0;
	width: 100%;
	position: relative;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked:not(:disabled) + div.label select.branch {
	z-index: 1;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label select.branch::-ms-expand {
	display: none;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label select.branch:invalid {
	box-shadow: none;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label select.branch:focus:invalid {
	border-color: #4B2;
}

/* Bug fix pro Waterfox Classic, Basilisk a Pale Moon */
.cart_delivery-and-payment > div > fieldset > div > div > input + div.label select.branch:not(:focus) > option:not([selected]) {
	display: none;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label span.branch {
	display: flex;
	position: relative;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label span.branch:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label span.branch > select {
	flex: 1;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked + div.label span.branch > select:invalid {
	color: #FFF;
	background: #4B2;
	border: 2px solid #4B2;
	border-radius: 5px;
	margin: -3px -10px;
	padding: 0 8px;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label span.branch > span {
	color: #FFF;
	background: #4B2;
	border-radius: 5px;
	margin: -3px 0 -3px 15px;
	padding: 2px 10px;
}

.cart_delivery-and-payment > div > fieldset > div > div > input + div.label span.branch > span:focus {
	outline: 1px dotted #FFF;
	outline-offset: -2px;
	box-shadow: none;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked + div.label span.branch > span {
	z-index: 2;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:not(:checked) + div.label span.branch > span {
	display: none;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked + div.label span.branch > select:invalid {
	margin-right: 0;
}

.cart_delivery-and-payment > div > fieldset > div > div > input:checked + div.label span.branch > select:invalid + span {
	color: transparent;
	background: transparent;
	margin: 0;
	position: absolute;
	top: -3px;
	left: -10px;
	right: 0;
	bottom: -3px;
	z-index: 2;
}

.cart_delivery-and-payment > div.price {
	text-align: right;
	flex-basis: 100%;
}

.cart_delivery-and-payment > div.price > table {
	display: inline-table;
}

.cart_delivery-and-payment > div.price > table > tbody > tr > * {
	font-weight: 400;
	vertical-align: bottom;
	padding: 20px 20px 0 20px;
}

.cart_delivery-and-payment > div.price > table > tbody > tr:last-child > th {
	font-weight: 600;
}

.cart_delivery-and-payment > div.price > table > tbody > tr:last-child > td {
	color: #4B2;
	font-size: 115%;
	font-weight: 700;
}

.cart_select-branch {
	overflow: visible;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	z-index: 99;
}

.cart_select-branch > input {
	position: absolute;
	opacity: 0;
}

.cart_select-branch > div {
	overflow: auto;
	padding: 20px;
	display: none;
	max-width: none;
	height: 100vh;
	position: relative;
}

.cart_select-branch > input:checked + label + div {
	display: flex;
}

.cart_select-branch > div > label {
	background: transparent;
}

.cart_select-branch > input:checked + label {
	background: rgba(0,0,0,.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: background 1s;
	z-index: 99;
}

.cart_select-branch > div > div {
	color: #000;
	background: #FFF;
	border-radius: 15px;
	overflow: hidden;
	margin: 67px auto 0 auto;
	display: flex;
	width: 100%;
	max-width: 1200px;
	max-width: var(--web-width);
	position: relative;
	z-index: 100;
	box-shadow: 0 10px 20px -10px rgba(0,0,0,.25);
}

.cart_select-branch > div > div > div:first-child {
	display: flex;
	flex-direction: column;
	flex: 0 0 25%;
	z-index: 999;
	box-shadow: 0 0 10px rgba(0,0,0,.25);
}

.cart_select-branch > div > div > div.map {
	border: 1px solid #DDD;
	overflow: hidden;
	flex: 1 0 75%;
	position: relative;
}

.cart_select-branch > div > div > div > h2 {
	border-bottom: 1px solid #DDD;
	font-weight: 500;
	padding: 15px 20px;
	flex: 0;
}

.cart_select-branch > div > div > div > h2 > label {
	color: #000;
	background: #FFF;
	background-clip: padding-box;
	border: 2px solid rgba(0,0,0,.2);
	border-radius: 4px;
	font-size: 18px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 999;
	cursor: pointer;
}

.cart_select-branch > input:focus + label + div > div > div > h2 > label {
	outline: 1px dotted #000;
	outline-offset: -4px;
}

.cart_select-branch > div > div > div > h2 > label > i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
}

.cart_select-branch > div > div > div > h2 > label:hover > i {
	background: #F4F4F4;
}

.cart_select-branch > div > div > div > div.input {
	border-bottom: 1px solid #DDD;
	margin-bottom: -1px;
}

.cart_select-branch > div > div > div > div.input > input {
	border: none;
	padding: 14px 20px;
	width: 100%;
}

.cart_select-branch > div > div > div > div.input > input:focus {
	outline: none;
	box-shadow: none;
}

.cart_select-branch > div > div > div > div.output {
	overflow: auto;
	margin-top: 1px;
	scrollbar-color: #DDD #F4F4F4;
	scrollbar-width: thin;
}

.cart_select-branch > div > div > div > div.output:empty {
	display: none;
}

.cart_select-branch > div > div > div > div.output > a {
	border-bottom: 1px solid #DDD;
	font-size: 85%;
	padding: 15px 20px;
	margin-top: -1px;
	display: block;
	cursor: pointer;
}

.cart_select-branch > div > div > div > div.output > a:focus {
	outline: 1px dotted #000;
	outline-offset: -3px;
	box-shadow: none;
}

.cart_select-branch > div > div > div.map > div {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
/*
.cart_select-branch > div > div > div.map > div .leaflet-tile-pane {
	filter: saturate(1.5);
}
*/
.cart_order-summary {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}

.cart_order-summary > div {
	margin-top: 30px;
	flex: 1 0 50%;
}

.cart_order-summary > div > table {
	border-collapse: collapse;
	width: 100%;
}

.cart_order-summary > div > table > caption {
	border-bottom: 1px solid #DDD;
	font-weight: 700;
	text-align: left;
	padding: 0 20px 5px 20px;
}

.cart_order-summary > div > table > tbody > tr > * {
	text-align: left;
	vertical-align: baseline;
}

.cart_order-summary > div > table > tbody > tr > th {
	font-weight: normal;
	white-space: nowrap;
	padding:  5px 10px 0 20px;
	width: 30%;
}

.cart_order-summary > div > table > tbody > tr > td:first-child {
	word-break: break-word;
	padding:  5px 20px 0 20px;
}

.cart_order-summary > div > table > tbody > tr > td:not(:first-child) {
	font-weight: 600;
	padding:  5px 20px 0 10px;
}

.cart_help {
	border-top: 1px solid #DDD;
	font-weight: 600;
	text-align: center;
	margin: 50px 0 20px 0;
	padding-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cart_help > div > span {
	display: inline-block;
}

.cart_help > div > a {
	font-size: 225%;
}

.cart_help > div > a:focus {
	outline: 1px dotted #000;
	box-shadow: none;
}

.cart_total-price {
	border-top: 1px solid #DDD;
	font-size: 225%;
	font-weight: 600;
	text-align: center;
	margin: 40px 0 20px 0;
	padding-top: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
}

.cart_total-price > div:last-child {
	text-align: right;
	padding-left: 20px;
}

.cart_total-price > div > div:first-child {
	color: #4B2;
	font-size: 115%;
	font-weight: 700;
}

.cart_total-price > div > div:last-child {
	color: #888;
	font-size: 40%;
	font-weight: 400;
	margin-top: -.5em;
}

.cart_consent {
	border-top: 1px solid #DDD;
	margin: 40px 0 20px 0;
	padding: 40px 0 0 20px;
	display: flex;
	flex-direction: column;
}

.cart_consent > div {
	margin-top: 10px;
	display: flex;
}

.cart_consent > div > input[type="checkbox"] {
	margin-left: 5px;
	position: absolute;
	opacity: 0;
}

.cart_consent > div > input[type="checkbox"] + label {
	position: relative;
	top: -1px;
}

.cart_consent > div > input[type="checkbox"] + label > i.input {
	background: #FFF;
	border: 2px solid #AAA;
	border-radius: 15%;
	margin-right: 10px;
	display: inline-block;
	flex: 0 0 auto;
	width: 1.5em;
	height: 1.5em;
}

.cart_consent > div > input[type="checkbox"]:checked + label >  i.input {
	border-color: #4B2;
	transition: border-color 150ms ease-in-out;
}

.cart_consent > div > input[type="checkbox"] + label >  i.input:after {
	content: '';
	border-right: 3px solid #4B2;
	border-bottom: 3px solid #4B2;
	display: block;
	width: 0%;
	height: 0%;
	position: relative;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%) rotate(45deg);
	filter: drop-shadow(0 0 #4B2);
}

.cart_consent > div > input[type="checkbox"]:focus + label >  i.input {
	outline: 1px dotted #000;
	outline-offset: -4px;
}

.cart_consent > div > input[type="checkbox"]:checked + label >  i.input:after {
	width: 25%;
	height: 50%;
	top: 45%;
	opacity: 1;
	transition: all 150ms ease-in-out;
}

.cart_order-sent > h2 {
	margin: 20px 0;
}

.cart_order-sent > table {
	border-collapse: collapse;
	margin: 20px 0;
}

.cart_order-sent > table th {
	padding-right: .25em;
}

@media (max-width: 1200px) {

	.cart_content > table > thead > tr > th:first-child,
	.cart_content > table > thead > tr > th.availability {
		display: none;
	}

	.cart_content > table > tbody > tr:nth-child(3n + 1) {
		display: table-row;
	}

	.cart_content > table > tbody > tr:nth-child(3n + 2) > td {
		padding-top: 15px;
	}

	.cart_content > table > tbody > tr:nth-child(3n + 2) > td.image,
	.cart_content > table > tbody > tr:nth-child(3n + 2) > td.product {
		display: none;
	}

	.cart_content > table > tbody > tr:nth-child(3n + 2) > td.availability {
		width: 100%;
	}

	.cart_content > table > tfoot > tr > th:first-child {
		display: none;
	}

	.cart_delivery-and-payment > div {
		flex-basis: 100%;
	}

}

@media (max-width: 850px) {

	.cart_select-branch > div > div > div:first-child {
		flex-basis: 30%;
	}

	.cart_select-branch > div > div > div.map {
		flex-basis: 70%;
	}

}

@media (max-width: 700px) {

	.cart_content > table > thead > tr {
		display: none;
	}

	.cart_content > table > tbody > tr:nth-child(3n + 2) {
		margin-top: 15px;
		display: grid;
	}

	.cart_content > table > tbody > tr:nth-child(3n + 2) > td[data-th] {
		padding-top: 10px;
		padding-bottom: 10px;
		display: flex;
		align-items: center;
	}

	.cart_content > table > tbody > tr:nth-child(3n + 2) > td[data-th]:before {
		content: attr(data-th) ': ';
		text-align: left;
		padding-right: 20px;
		flex-basis: 50%;
	}

	.cart_content > table > tbody > tr > td.unit_price {
		padding-right: 20px;
	}

	.cart_content > table > tbody > tr > td.unit {
		display: none;
	}

	.cart_content > table > tbody > tr > td.quantity > span {
		margin-left: -11px;
	}

	.cart_content > table > tbody > tr > td.quantity > span > a.decrease {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		margin-right: -1px;
	}

	.cart_content > table > tbody > tr > td.quantity > span > span {
		border-left: 1px solid #CCC;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
		order: -1;
	}

	.cart_content > table > tbody > tr > td.quantity > span > span > input.quantity {
		text-align: left;
		margin-top: -10px;
		margin-bottom: -10px;
	}

	.cart_content > table > tbody > tr > td.quantity > span > span > span.quantity {
		text-align: left;
	}

	.cart_content > table > tbody > tr > td.remove {
		padding-bottom: 20px;
		display: flex;
	}

	.cart_content > table > tbody > tr > td.remove:before {
		content: '';
		padding-right: 10px;
		flex-basis: 50%;
	}

	.cart_content > table > tbody > tr > td.remove > a {
		margin-left: -1px;
		padding-left: 10px;
		padding-right: 10px;
		display: inline-flex;
		width: auto;
	}

	.cart_content > table > tbody > tr > td.remove > a:before {
		display: none;
	}

	.cart_content > table > tbody > tr > td.remove > a:after {
		content: attr(data-text);
		color: #000;
		background: transparent;
		white-space: nowrap;
		width: auto;
		height: auto;
		position: relative;
		top: 0;
		left: 0;
		transform: none;
	}

	.cart_content > table > tbody > tr > td.remove > a:hover:after {
		color: #FFF;
		background: transparent;
	}

	.cart_content > table > tbody > tr > td.remove > a > span {
		display: none;
	}

	.cart_select-branch > div > div {
		flex-direction: column;
	}

	.cart_select-branch > div > div > div:first-child {
		flex-basis: 0;
		max-height: 50%;
	}

	.cart_select-branch > div > div > div.map {
		flex-basis: 100%;
	}

	.cart_order-summary > div {
		flex-basis: 100%;
	}

	.cart_order-summary > div > table > tbody > tr > th {
		width: 40%;
	}

}

@media (max-width: 550px) {

	.cart_content > table > tfoot > tr > th > table {
		width: 100%;
	}

	.cart_content > table > tfoot > tr > th > table > tbody > tr {
		border-bottom: 1px solid #DDD;
		padding-bottom: 20px;
		display: grid;
	}

	.cart_content > table > tfoot > tr > th > table > tbody > tr > th {
		text-align: left;
	}

	.cart_content > table > tfoot > tr > th > table > tbody > tr > td {
		padding-top: 5px;
	}

}

@media (max-width: 500px) {

	.cart_content > table > tbody > tr > td.quantity > span {
		overflow: visible;
	}

	.cart_content > table > tbody > tr > td.quantity > span > a {
		display: none;
	}

	.cart_content > table > tbody > tr > td.quantity > span > span {
		border: none;
	}

	.cart_content > table > tbody > tr > td.quantity > span > span > input.quantity {
		background: #FFF;
		border: 1px solid #CCC;
		border-radius: 5px;
		text-align: center;
		margin-left: -5px;
		padding-left: 10px;
		padding-right: 10px;
		max-width: 5em;
	}

	.cart_content > table > tbody > tr > td.quantity > span > span > span.quantity {
		background: #FFF;
		border: 1px solid #CCC;
		border-radius: 5px;
		outline: none;
		margin-left: -5px;
		padding-left: 10px;
		padding-right: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 2em;
		position: relative;
		cursor: pointer;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		-o-user-select: none;
		user-select: none;
	}

	.cart_content > table > tbody > tr > td.quantity > span > span > span.quantity:focus {
		border: 1px dotted #000;
	}

	.cart_content > table > tbody > tr > td.quantity > span > span > span.quantity:hover {
		color: #FFF;
		background: #008EF5;
		border-color: transparent;
	}

}

@media (max-width: 410px) {

	.cart_item-inserted > div {
		padding-left: 0;
		padding-right: 0;
	}

	.cart_item-inserted > div > div {
		border-radius: 0;
	}

	.cart_order-steps > li:not(.current) {
		display: none;
	}

	.cart_select-branch > div {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
	}

	.cart_select-branch > div > div {
		border-radius: 0;
	}

}