<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {

	--button-hover-color-background: var(--color-white);
	--button-hover-color-border: var(--light);
	--button-hover-color: var(--light);

	--button-color-background: var(--light);
	--button-color-border: var(--light);
	--button-color: var(--color-white);

}

.hidden {
	display: none !important;
}

.quick {
	position: sticky;
	top: 150px;
}

.quick-results .no-search-results {
	margin-top: 20px;
}

.quick .unit {
	display: none;
}

.quick .quick-order {
	min-height: 110px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}

.quick .quick-order form {
	position: relative;
}

.quick .quick-order form &gt; input {
	padding: 10px 12px;
	width: 100%;
	font-size: 1rem;
}

.quick .quick-order form .button {
	background-color: var(--light);
	border: none;
	color: var(--color-white);
	font-size: 1.375rem;
	height: 100%;
	padding: 7px 13px;
	position: absolute;
	right: 0;
	top: 0;
}

.quick .quick-order .search-result {
	border-bottom: 1px solid var(--medium);
	display: grid;
	color: var(--color-black);
	min-height: unset;
	grid-gap: 10px;
	grid-template-areas:
		'image title title title'
		'image actions price button';
	grid-template-columns: 100fr 72fr 111fr 50fr;
	padding: 20px 0;
}

.quick .quick-order .search-result .image {
	grid-area: image;
}

.quick .quick-order .search-result .button {
	grid-area: button;
}

.quick .quick-order .search-result .actions {
	grid-area: actions;
	margin: 9px 0 0 0;
}

.quick .quick-order .search-result .image img {
	width: 80px;
}

.quick .quick-order .search-result .title {
	grid-area: title;
}

.quick .quick-order .search-result .actions input.iz-input {
	width: 40px;
	padding: 15px 0;
	border: 1px solid var(--color-gray-5);
	margin: 0 10px;
}

.quick .quick-order .search-result .price {
	grid-area: price;
	text-align: right;
	margin-top: 9px;
}

.quick .quick-order .search-result .button {
	grid-area: button;
}

.content.orderFinished {
	display: grid;
	grid-gap: 20px;
	margin: 0 auto;
}

.orderFinished .cart .products {
	grid-template-columns: repeat(1, 1fr);
}

.quick-order-confirm .product,
.cart .products .product,
.small-cart .products .product {
	border-bottom: 1px solid var(--medium);
	display: grid;
	grid-gap: 10px;
	grid-template-areas:
		'image title title delete'
		'image title title itemprice'
		'image productoptions productoptions productoptions'
		'message message message message'
		'price price actions total';
	grid-template-columns: 20fr 14fr 20fr 16fr;
	line-height: 140%;
	padding: 0 0 20px;
}

.delivery-grid .cart .products .product,
.orderFinished .cart .products .product,
.delivery-grid .small-cart .products .product,
.orderFinished .small-cart .products .product,
.account .small-cart .products .product {
	grid-template-areas:
		'image title actions itemprice price total'
		'. productoptions productoptions productoptions message .';
	grid-template-columns: 5fr 50fr 10fr 10fr 10fr 10fr;
	padding-top: 10px;
}

.delivery-grid .cart .products .product,
.delivery-grid .small-cart .products .product {
	grid-template-areas:
		'image title actions itemprice price total delete'
		'. productoptions productoptions productoptions message . .';
	grid-template-columns: 5fr 50fr 10fr 10fr 10fr 10fr 5fr;
}

.orderFinished .cart .products .product,
.orderFinished .small-cart .products .product {
	background-color: var(--color-white);
	border-bottom: 1px solid var(--color-gray-5);

}

.cart.big-cart .products .product {
	grid-template-areas:
		'image title actions itemprice price total delete'
		'. productoptions productoptions productoptions . . .'
		'. message message message . . .';
	grid-template-columns: 10fr 50fr 10fr 10fr 10fr 10fr 5fr;
}

.cart.big-cart .products .product .unit {
	display: none;
}

.delivery-grid .cart .products .product:not(:first-child) {
	padding-top: 10px;
}

.delivery-grid .cart .products .product .message {
	display: none;
}

.cart .products .product:not(.heading) &gt; div {
	padding: 0;
}

.cart .products .product .title,
.cart .products .product .delete,
.small-cart .products .product .title,
.small-cart .products .product .delete {
	align-items: initial;
	align-self: initial;
	flex-direction: initial;
	padding: 10px 0 0 0;
}

.delivery-grid .cart .products .product .delete,
.delivery-grid .small-cart .products .product .delete {
	padding: 0;
}

.orderFinished .cart .products .product .delete,
.orderFinished .small-cart .products .product .delete,
.account .small-cart .products .product .delete {
	display: none;
}

.cart .products .product &gt; div {
	display: initial;
	align-items: initial;
}

.cart .products .product.heading {
	display: none;
}

.small-cart .products,
.big-cart .products {
	border-top: 1px solid var(--medium);
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	margin-bottom: 15px;
}

.cart:not(.small) .products .product:nth-child(2n) {
	background-color: initial;
}

.cart.big-cart .products {
	grid-template-columns: repeat(1, 1fr);
	font-size: 1rem;
	grid-column-gap: 20px;
}

.new-customer-grid {
	grid-template-columns: 3fr 2fr;
	grid-template-areas:
		'button-top button-top'
		'address cart'
		'button button';
}

.new-customer-grid .buttons.top {
	grid-area: button-top;
}

.new-customer-grid .cart .products .product {
	padding-top: 10px;
	grid-template-areas:
		'image title title .'
		'image title title itemprice'
		'image productoptions productoptions productoptions'
		'message message message message'
		'price price actions total';
}

.small-cart .product {
	padding: 20px 0;
}

.cart.big-cart .products .product {
	padding: 20px;
}

.stickySideBar .small-cart .totals .shipping,
.stickySideBar .small-cart .totals .payed,
.stickySideBar .small-cart .totals .vats,
.stickySideBar .small-cart .totals .totalinclvat {
	display: none;
}

.quick-order-confirm {
	background-color: var(--color-gray-7);
	border: var(--color-gray-3) 1px solid;
	left: 0;
	overflow: hidden;
	padding: 15px;
	position: absolute;
	top: -100%;
	transition: top .3s;
	width: 100%;
}

.quick-order-confirm.open {
	top: 0;
	transition: top .3s;
}

.quick-order-confirm .number-input {
	display: block;
	text-align: center;
}

.quick-order-confirm a.button,
.quick-order-confirm a.button.button-inverse {
	bottom: 0;
	display: block;
	position: relative;
}

.quick-order-confirm .number-input-button {
	display: none;
}

.quick-order-confirm .buttons {
	display: grid;
	grid-gap: 10px;
}

.quick-order-confirm .delete {
	display: none;
}

.quick .totals .total {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.small-cart .totals .total .currency-wrapper {
	text-align: right;
}

.small-cart .product.heading {
	display: none;
}

.product &gt; .amount {
	grid-area: amount;
}

.product &gt; .actions {
	margin-right: 20px;
}

.product &gt; .delete {
	cursor: pointer;
	text-align: right;
}

.title .maintitle,
.title .maintitle a {
	color: var(--dark);
	font: var(--font-bold);
	text-decoration: none;
}

.title .maintitle a {
	margin-bottom: 10px;
}

.title .maintitle a:hover {
	text-decoration: none;
}

.quick-order-confirm .maintitle {
	margin-bottom: 8px;
}

.quick .product .itemprice {
	grid-area: itemprice;
	align-self: flex-end;
}

.quick .product .price,
.cart-overview .product .price {
	grid-area: price;
	visibility: hidden;
}

.quick .product .total {
	grid-area: total;
	text-align: right;
}

.small-cart .totals {
	color: var(--light);
}

.small-cart .totals &gt; div,
.cart .totals &gt; div {
	display: grid;
	text-align: right;
	grid-template-columns: auto 120px;
}

.small-cart .buttons {
	margin-top: 20px;
	text-align: right;
}

.cart-overview .small-cart .buttons,
.small-cart .buttons.top {
	display: none;
}

.big-cart .buttons.top {
	margin-bottom: 20px;
}

.cart-overview .small-cart h2 {
	font-size: 1.75rem;
}

.small-cart .button {
	bottom: 0;
	position: relative;
}

.number-input-button {
	color: var(--light);
	cursor: pointer;
	font-size: 20px;
	margin-top: 5px;
}

.product-order-block .amount .iz-icon {
	font-size: 22px;
}

.orderButton {
	align-items: center;
	background-color: var(--light);
	border: 1px solid var(--light);
	color: var(--color-white);
	cursor: pointer;
	display: flex;
	grid-area: button;
	height: 40px;
	justify-content: center;
	transition: background-color .1s, color .1s;
	width: 50px;
}

.orderButton:hover {
	background-color: var(--color-white);
	color: var(--light);
}

.number-input-button-down:hover::before {
	mask-image: var(--icon-jam-minus-circle-f);
}

.number-input-button-up:hover::before {
	mask-image: var(--icon-jam-plus-circle-f);
}

.quick .quick-order .product-order-block .amount .iz-icon::before {
	background-color: currentColor;
}

.quick .quick-order .product-order-block {
	font-size: unset;
}

.quick .quick-order .search-result &gt; div {
	background-color: unset;
	margin-bottom: 0;
	padding: 0;
}

.orderButtonWrapper {
	width: 50px;
}

/* Shopping cart */
.cart,
.finished-shipping,
.finished-billing {
	background-color: var(--color-white);
	padding: 30px;
	width: 100%;
}

.finished-shipping h3,
.finished-billing h3 {
	padding-bottom: 15px;
}

.cart label {
	color: var(--light);
	font: var(--font-medium);
}

.cart .buttons {
	float: none;
	padding-bottom: 0;
	text-align: right;
}

.cart .products .product .maintitle a {
	color: var(--light);
	font: var(--font-serif);
}

.cart .buttons .button {
	bottom: 0;
	position: relative;
}

.delivery-grid {
	display: grid;
	grid-column-gap: 40px;
	grid-row-gap: 40px;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas:
		'button-top button-top'
		'pickup-delivery pickup-delivery'
		'extras extras'
		'cart cart'
		'button button';
}

.delivery-grid .buttons {
	grid-area: button;
	text-align: right;
}

.delivery-grid .buttons.top {
	grid-area: button-top;
}

.delivery-grid .cart-overview {
	grid-area: cart;
}

.errorMessage {
	display: grid;
	grid-template-columns: 50px auto;
	margin: 0;
	padding: 0;
	border-radius: 5px;
	background-color: var(--color-gray-7);
	height: 0;
	overflow: hidden;
	transition-property: height,margin,padding,border;
	transition-duration: 250ms;
}

.errorMessage.active,
.message.active .errorMessage {
	height: auto;
	margin: 20px 0;
	border: 2px solid var(--color-red);
	padding: 20px;
}

.errorMessage &gt; span {
	font-size: 2rem;
	color: var(--color-red);
}

.products .product .message,
.product-detail .product-order .message {
	display: none;
}

.products .product .message.active,
.product-detail .product-order .message.active {
	display: block;
}

.products .product .actions input.iz-input {
	width: 40px;
	padding: 15px 0;
	border: 1px solid var(--color-gray-5);
	margin: 0 10px;
}

.products .product .actions &gt; div {
	margin: 0;
}

.new-customer-grid .cart .products .product .image {
	align-items: initial;
}

.shop-container {
	background-color: var(--color-white);
	padding: 20px;
	position: sticky;
}

.shop-categories {
	background-color: var(--color-white);
	position: sticky;
	top: 153px;
	z-index: 100;
	overflow: hidden;
	height: 0;
	transition: height 250ms;
}

.shop-categories &gt; div {
	padding: 15px 0 10px 0;
}

.shop-categories .button,
.shop-products .button {
	bottom: 0 !important;
	margin: 0 1px 5px 0;
	position: relative !important;
	transition: font-size 50ms;
}

.shop-container.stuck .shop-categories .button {
	font-size: 0.8rem;
	padding: 4px;
}

.category-products {
	display: grid;
	grid-gap: 0;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 15px;
	opacity: 1;
	transition-property: opacity;
	transition-duration: 1000ms;
}

.category-products.loading {
	opacity: 0;
}

.shop-products {
	position: sticky;
}

.shop-products .emptyFilter {
	display: none;
	margin-top: 25px;
}

.shop-products .emptyFilter.active {
	display: block;
}

.shop-products .category {
	background-color: var(--color-white);
	position: sticky;
	top: 160px;
	z-index: 10;
	transition: top 250ms;
}

.shop-products .category span.iz-icon {
	position: absolute;
	display: none;
	right: 10px;
	bottom: 10px;
	width: 25px;
	height: 25px;
	color: var(--light);
}

.shop-products .category.loading span.iz-icon {
	display: block;
}

.shop-products .product-buttons {
	height: 0;
	margin-top: 8px;
	opacity: 0;
	overflow: hidden;
	transition: opacity .2s, height .2s;
}

.shop-products .category h2 {
	border-bottom: 1px solid var(--light);
	margin: 20px 0 -5px;
	padding-bottom: 9px;
}

.shop-products .product:hover .product-buttons {
	height: 80px;
	opacity: 1;
}

.shop-products .product-buttons &gt; * {
	display: block;
	font-size: 0.85rem;
	line-height: 130%;
	padding: 5px 9px;
	width: 100%;
}

.shop-products .product-buttons .button .iz-icon {
	float: right;
	font-size: 18px;
}

.shop-products .product-buttons .button:hover {
	color: var(--light) !important;
	transition: background-color, color .5s;
}

.shop-products .product {
	border: 1px solid var(--color-white);
	padding: 10px;
	transition: border .2s;
	min-height: 400px;
}

.shop-products .product:hover {
	border: 1px solid var(--light);
}

.shop-products .product:hover .product-buttons {
	opacity: 1;
}

.shop-products .product .product-image {
	aspect-ratio: 1;
	align-items: center;
	display: flex;
	justify-content: center;
	transform: scale(0.8);
	transition: transform .3s;
}

.shop-products .product .product-image img {
	mix-blend-mode: multiply;
}

.shop-products .product .product-name,
.shop-products .product .product-price {
	text-align: center;
}

.shop-products .product .product-name {
	color: var(--dark);
	margin-bottom: 10px;
}

.shop-products .product .product-price {
	color: var(--light);
}

.shop-products .product:hover .product-image {
	transform: scale(1);
}

.product-detail {
	background-color: var(--color-white);
	display: grid;
	grid-template-areas: "pbreadcrumb pbreadcrumb"
						 "pinformation porder";
	grid-template-columns: 55fr 45fr;
}

.product-detail &gt; div {
	padding: 15px;
}

.product-detail .breadcrumb {
	grid-area: pbreadcrumb;
}

.product-detail .product-information {
	border-right: 1px solid var(--dark);
	color: var(--dark);
	grid-area: pinformation;
	padding-bottom: 25px;
}

.product-detail .product-information label {
	cursor: default;
}

.product-detail .product-information .allerg {
	margin: 20px 0;
}

.product-detail .product-information .ingr,
.product-detail .product-information .season,
.product-detail .product-information .houdbr {
	margin-bottom: 20px;
}

.product-detail .product-information .season,
.product-detail .product-information .houdbr,
.product-detail .product-information .levertijd {
	font: var(--font-bold);
}

.productoptions .season {
	border: 2px solid var(--light);
	padding: 5px;
	margin: 0 0 5px;
}

.product-detail .product-information .allerg .text,
.product-detail .product-information .ingr .text {
	display: none;
}

.product-detail .product-information .allerg span.label,
.product-detail .product-information .ingr span.label {
	cursor: pointer;
	display: block;
	font: var(--font-bold);
	user-select: none;
}

.product-detail .product-information h2,
.product-detail .product-order h3 {
	color: var(--dark);
}

.product-detail .product-order {
	grid-area: porder;
}

.product-detail .product-special {
	margin-top: 15px;
}

.product-detail .product-special p {
	margin-top: 25px;
	margin-bottom: 15px;
	padding-top: 15px;
	border-top: 1px solid var(--color-gray-5);
}

.product-detail .product-special p:first-child {
	margin-top: 0;
	padding-top: 0;
	border: 0;
}

.product-detail .product-special &gt; div &gt; div:not(.input):not(.iz-file):not(.finishes) {
	display: grid;
	grid-template-columns: 20px auto 40px 80px;
	line-height: 100%;
	margin-bottom: 8px;
	width: 100%;
}

.product-detail .product-special &gt; div &gt; div.finishes {
	display: grid;
	grid-template-columns: 60fr 40fr;
	line-height: 100%;
	margin-bottom: 8px;
	width: 100%;
}

div.finishes select,
div.finishes input[type="text"]{
	width: 100%;
	overflow: hidden;
}

.product-detail .product-special input[type="radio"] {
	vertical-align: baseline;
}

.product-detail .product-special &gt; div &gt; div.input {
	margin: 0 0 12px;
	position: relative;
}

.product-detail .product-special &gt; div &gt; div.input .upload-wrapper {
	margin: 0 0 12px;
}

.product-detail .product-special &gt; div &gt; div.input .image-preview {
	margin: 0 0 12px;
	line-height: 0;
}

.product-detail .product-special &gt; div &gt; div.input textarea {
	border: 1px solid var(--color-gray-3);
	font: var(--font-regular);
	height: 80px;
	outline: none;
	padding: 25px 5px 0;
	width: 100%;
}

.product-detail .product-special .textarea-wrapper {
	margin-top: 10px;
	position: relative;
}

.product-detail .product-special .textarea-wrapper:before {
	background-color: var(--color-gray-3);
	color: var(--color-white);
	content: attr(data-info);
	display: block;
	font-size: 0.8rem;
	left: 0;
	padding-left: 7px;
	position: absolute;
	top: 0;
	width: 100%;
}

.product-detail .product-special .textarea-wrapper:after {
	color: var(--color-white);
	content: attr(data-counter);
	display: block;
	font-size: 0.9rem;
	position: absolute;
	right: 5px;
	top: -1px;
}

.product-detail .product-special .ax-main-container {
	float: none;
	width: 100%;
}

.product-special .ax-main-container .ax-file-list .ax-file-wrapper .ax-prev-container {
	border: 0;
	height: auto;
	width: 100%;
}

.product-special .ax-details,
.product-special .ax-progress-data {
	display: none;
}

.product-special .ax-main-container .ax-file-list .ax-file-wrapper {
	border: none;
	padding: 0;
}

.fileUpload .fileTemplate {
	display: none;
}

.product-special .ax-main-container .ax-main-buttons .ax-browse-c .ax-browse {
	height: 100%;
	width: 100%;
}

.fileUpload .ax-main-container .ax-button {
	position: relative;
	background-color: var(--light);
	border: 1px solid var(--light);
	color: var(--color-white);
	font-size: 1rem;
	padding: 5px;
	white-space: initial;
}

.fileUpload .ax-main-container .ax-button:hover {
	background-color: var(--color-white);
	border: 1px solid var(--light);
	color: var(--light);
	transition: background-color .1s, color .1s
}

.fileUpload .ax-main-container .progress {
	position: absolute;
	background-color: var(--dark);
	height: 100%;
	width: 0;
	left: 0;
	top: 0;
	transition-property: width;
	transition-duration: 1000ms;
}

.fileUpload .ax-main-container .ax-text {
	position: relative;
}

.product-detail .product-order .iz-icon {
	font-size: 20px;
}

.productoptions .iz-icon {
	font-size: 1.2rem;
	margin-right: 5px;
}

.productoptions .shield .iz-icon,
.product-detail .product-order .shield .iz-icon,
.option-shield .iz-icon {
	color: var(--product-shield);
}

.productoptions .logo .iz-icon,
.product-detail .product-order .logo .iz-icon,
.option-logo .iz-icon {
	color: var(--product-logo);
}

.productoptions .text .iz-icon,
.product-detail .product-order .text .iz-icon,
.option-text .iz-icon {
	color: var(--product-text);
}

.productoptions .image .iz-icon,
.product-detail .product-order .image .iz-icon,
.option-image .iz-icon {
	color: var(--product-image);
}

.productoptions .video .iz-icon,
.product-detail .product-order .video .iz-icon,
.option-video .iz-icon {
	color: var(--product-video);
}

.productoptions .parameters,
.productoptions .options,
.productoptions .finishes,
.productoptions .extras {
	display: grid;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	margin-bottom: 10px;
}

.productoptions .options {
	grid-template-areas:
		'icon text price'
		'image image .';
	grid-template-columns: 20px auto 70px;
}

.productoptions .parameters,
.productoptions .finishes,
.productoptions .extras {
	grid-template-areas: "label text price";
	grid-template-columns: 15fr 34fr 16fr;
}

.productoptions .options div:nth-child(1) {
	grid-area: icon;
}

.productoptions .parameters div:nth-child(1),
.productoptions .finishes div:nth-child(1),
.productoptions .extras div:nth-child(1) {
	grid-area: label;
}

.productoptions .parameters div:nth-child(2),
.productoptions .options div:nth-child(2),
.productoptions .finishes div:nth-child(2),
.productoptions .extras div:nth-child(2) {
	grid-area: text;
}

.productoptions .parameters div:nth-child(3),
.productoptions .options div:nth-child(3),
.productoptions .finishes div:nth-child(3),
.productoptions .extras div:nth-child(3) {
	grid-area: price;
	text-align: right;
	align-self: flex-end;
}

.productoptions .options div:nth-child(4) {
	grid-area: image;
}

.productoptions .options div:nth-child(4) img {
	width: 100%;
	max-width: 250px;
}

.product-detail .number-input {
	margin-top: 5px;
}

.product-detail .number-input input[type="number"] {
	width: 40px;
	padding: 15px 0;
	border: 1px solid var(--color-gray-5);
	margin: 0 10px;
}

.product-detail .product-order .amount {
	display: grid;
	grid-template-columns: 80px auto 50px;
	margin-top: 30px;
}

.product-detail .product-order span.label {
	margin-top: 9px;
}

.product-order-block &gt; div {
	padding: 0;
}

.product-order-block .sub-products {
	color: var(--dark);
	margin: 20px 0;
}

.product-order-block .sub-products a {
	color: var(--dark);
}

.product-order-block .sub-product {
	border-bottom: 1px solid var(--dark);
	cursor: pointer;
	display: grid;
	grid-template-columns: 45fr 50fr;
	margin: 0;
	padding: 5px;
	height: auto;
}

.product-order-block .sub-product label {
	display: block;
	height: 26px;
}

.product-order-block .sub-product.smallerOrBigger img {
	float: left;
	width: 20px;
	height: auto;
	margin: 2px 10px 0 0;
}

.product-order-block.edit .sub-product:not(.active) {
	opacity: 0.2;
}

.product-order-block:not(.edit) .sub-product:hover,
.product-order-block .sub-product.active,
.product-order-block:not(.edit) .sub-product:hover *,
.product-order-block .sub-product.active * {
	font: var(--font-bold);
	font-size: inherit;
}

.product-order-block .sub-product.active {
	cursor: initial;
}

.product-order-block .sub-product .sub-product-price {
	text-align: right;
}

.product-order-block .sub-product .sub-product-title input {
	display: none;
	margin-right: 8px;
	vertical-align: unset;
}

.product-order-block .sub-product.active .sub-product-title input {
	background-color: green;
}

.product-order-block .sub-product .sub-product-select {
	line-height: 100%;
}

.authForm.login,
.authForm.register,
.authForm.password {
	background-color: var(--color-white);
	margin: 0;
	max-width: 1220px;
	padding: 40px;
	position: relative;
	width: 100%;
}

.authForm.login button,
.authForm.login a.button,
.authForm.register button,
.authForm.register a.button,
.authForm.password button,
.authForm.password a.button {
	bottom: 0;
	position: relative;
}

.authForm.login form {
	margin-top: 25px;
}

.authForm.login h1 {
	color: var(--light);
	margin-bottom: 25px;
}

.authForm.login h2 {
	color: var(--dark);
}

.authForm.login .close-icon {
	background-color: var(--light);
	border: 1px solid var(--light);
	border-radius: 50%;
	color: var(--color-white);
	cursor: pointer;
	display: none;
	font-size: 1.6rem;
	padding: 8px 9px;
	position: absolute;
	right: 40px;
	transition: background-color .3s, color .3s;
}

.account-content {
	background-color: var(--color-white);
}

.account-navigation,
.account-content {
	padding: 20px;
}

.mobile-navigation-top .account-navigation {
	padding: 0;
}

.new-customer-grid .cart,
.new-customer-grid .authForm h1 {
	margin: 0;
}

.new-customer-grid .cart h1,
.new-customer-grid .authForm h1 {
	margin-bottom: 20px;
}

.new-customer-grid .authForm,
.new-customer-grid .shopping-cart,
.new-customer-grid .address-block,
.new-customer-grid .cart-overview {
	background-color: var(--color-white);
	padding: 20px;
}

.new-customer-grid .cart-overview {
	padding: 0;
}

.new-customer-grid .authForm {
	grid-area: address;
}

.new-customer-grid .cart {
	background-color: #fff;
	padding: 0;
}

.new-customer-grid .cart .products {
	padding: 0;
}

.new-customer-grid .cart .number-input-button {
	display: none;
}

.complete .steps .step span {
	padding: 8px 7px 12px;
}

.new-customer-grid .cart &gt; div {
	padding-left: 20px;
	padding-right: 0;
}

.frontendLogin .authForm form .block {
	margin-top: 0;
}

.frontendLogin .authForm .content.contentCenter .blockContainer &gt; div  {
	padding: 0;
}

.payment-methods-wrapper {
	background-color: var(--color-white);
	margin: 0 auto;
	padding: 20px;
}

.deliverySettings {
	background-color: var(--color-white);
	padding: 20px;
	grid-area: pickup-delivery;
}

.payment-cancelled .blockContainer:last-child &gt; div {
	background-color: var(--color-white);
	padding-bottom: 20px;
}

.deliveryTabs {
	clear: both;
	width: 100%;
	min-height: 300px;
	height: auto;
	border: 2px solid var(--light);
	margin: 20px 0;
}

.deliveryTabs .tabContainer {
	clear: both;
	width: calc(100% + 4px);
	margin: -2px 0 0 -2px;
	height: 50px;
	border-bottom: 2px solid var(--light);
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 10px;
	grid-column-gap: 0;
}

.deliveryTabs .tabContainer.tabCount-2 {
	grid-template-columns: repeat(2, 1fr);
}

.deliveryTabs .tabContainer.tabCount-3 {
	grid-template-columns: repeat(3, 1fr);
}

.deliveryTabs .tabContainer.tabCount-4 {
	grid-template-columns: repeat(4, 1fr);
}

.deliveryTabs .tabContainer &gt; div {
	background-color: var(--light);
	border-top: 2px solid var(--color-white);
}

.deliveryTabs .tabContainer &gt; div.active {
	height: calc(100% + 2px);
	border: 2px solid var(--light);
	border-bottom: 0;
	background-color: var(--color-white);
}

.deliveryTabs .tabContainer div a {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-left: 5px solid var(--color-white);
	border-right: 5px solid var(--color-white);
	text-align: center;
	padding: 12px 0 0 0;
	color: var(--color-white);
}

.deliveryTabs .tabContainer &gt; div:first-child a {
	border-left: 5px solid var(--light);
}

.deliveryTabs .tabContainer div.active a {
	color: var(--light);
	border-left-color: var(--color-white);
	border-right-color: var(--color-white);
}

.deliveryTabs .optionContainer {
	width: calc(100% - 60px);
	margin: 30px;
	position: relative;
	box-sizing: border-box;
}

.deliveryTabs .optionContainer:after,
.deliveryTabs .optionContainer .deliveryOption:after {
	display: block;
	clear: both;
	content: '';
}

.deliveryTabs .optionContainer .deliveryOption {
	display: none;
}

.deliveryTabs .optionContainer .deliveryOption.active {
	display: block;
}

.deliveryTabs .optionContainer .big {
	font: var(--font-bold);
}

.deliveryTabs .shopPickupDelivery {
	margin-top: 10px;
}

.deliveryTabs .shopPickupDelivery &gt; div:not(.message) {
	display: grid;
	grid-template-columns: 350px auto;
}

.deliveryTabs .shopPickupDelivery &gt; div.hidden {
	display: none;
}

.deliveryTabs .shopPickupDelivery label {
	display: block;
	float: left;
	margin-top: 4px;
	padding: 8px;
	font-size: 1rem;
	vertical-align: middle;
	max-width: 100%;
	cursor: default;
}

.deliveryTabs .shopPickupDelivery input[type="text"],
.deliveryTabs .shopPickupDelivery select {
	background-color: var(--color-white);
	width: 100%;
	max-width: 350px;
	border: 1px solid var(--color-gray-7);
	font: var(--font-regular);
	font-size: 1rem;
	margin-top: 4px;
	padding: 8px;
}

.deliveryTabs .shopPickupDelivery input[type="text"] {
	background: transparent var(--datepicker) no-repeat top 5px right 5px;
	background-size: 25px auto;
}

.timeBlock {
	display: grid;
	grid-template-columns: 120px auto;
	grid-row-gap: 0;
	grid-column-gap: 0;
}

.driveThrough {
	background-color: var(--color-gray-7);
	border: 1px solid var(--color-grey);
	margin: 10px 0 5px;
	padding: 10px;
}

.timeBlock:has(.deliveryMomentShippingCosts.noShow) {
	grid-template-columns: 0 auto;
}

a.button.deliveryMoment {
	background-color: var(--color-white);
	border: 1px solid var(--light);
	color: var(--dark);
	margin: 5px 5px 0 0;
	float: left;
	min-width: 142px;
}

a.button.deliveryMoment.active,
a.button.deliveryMoment:hover {
	background-color: var(--light);
	border: 1px solid var(--light);
	color: var(--color-white);
}

a.button.deliveryMoment[data-capacity="0"]:not(.active),
a.button.deliveryMoment[data-capacity="0"]:not(.active):hover {
	border: 1px solid var(--color-gray-3);
	color: var(--color-gray-3);
	cursor: default;
	background-color: var(--color-white);
	text-decoration: line-through;
}

.button.button-inverse:hover {
	background-color: var(--light);
	border: 1px solid var(--light);
	color: var(--color-white);
}

.deliveryMomentShippingCosts {
	margin: 8px 20px 0 0;
}

.deliveryMomentShippingCosts.noShow {
	margin: 0;
	width: 0;
	height: 0;
	overflow: hidden;
}

.deliveryExtras {
	background-color: var(--color-white);
	padding: 20px;
	grid-area: extras;
}

.deliveryExtras &gt; div.hidden {
	display: none;
}

.deliveryExtras label {
	display: block;
	margin: 0 0 10px 0;
}

.deliveryExtras textarea {
	width: 100%;
	height: 100px;
	resize: none;
	font: var(--font-regular);
	font-size: 0.9rem;
	border: 1px solid var(--medium);
	padding: 10px;
	margin-bottom: 10px;
	display: none;
}

.deliveryExtras textarea.active {
	display: block;
}

.deliveryExtras label:after,
.deliveryExtras textarea:after {
	display: block;
	clear: both;
	content: '';
}

.otherProduct {
	display: grid;
	grid-column-gap: 10px;
	grid-template-columns: 100px auto auto 70px;
}

.otherProduct input[type="checkbox"] {
	vertical-align: initial;
}

.order-warning {
	position: relative;
	border: 2px solid var(--light);
	padding: 10px 40px 10px 10px;
	background-color: var(--color-gray-7);
}

.order-warning .close-button {
	position: absolute;
	right: 5px;
	top: 5px;
	font-size: 20px;
	color: var(--light);
	border: 1px solid var(--light);
	background-color: var(--color-white);
}

.order-warning .close-button:hover {
	color: var(--color-black);
}

.discount &gt; div {
	width: 300px;
	float: right;
}

.discount .input,
.discount .message {
	float: right;
	width: 100%;
}

</pre></body></html>