@charset "UTF-8";

@-webkit-keyframes sparklyBits {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes sparklyBits {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@font-face {
	font-family: "IBMPlexSans";
	src: url(../fonts/IBMPlexSans-Bold.woff2) format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IBMPlexSans";
	src: url(../fonts/IBMPlexSans-BoldItalic.woff2) format("woff2");
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "IBMPlexSans";
	src: url(../fonts/IBMPlexSans-LightItalic.woff2) format("woff2");
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "IBMPlexSans";
	src: url(../fonts/IBMPlexSans-Italic.woff2) format("woff2");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "IBMPlexSans";
	src: url(../fonts/IBMPlexSans-Medium.woff2) format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IBMPlexSans";
	src: url(../fonts/IBMPlexSans-Regular.woff2) format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IBMPlexSans";
	src: url(../fonts/IBMPlexSans-MediumItalic.woff2) format("woff2");
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "IBMPlexSans";
	src: url(../fonts/IBMPlexSans-SemiBold.woff2) format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-accent: #eb6011;
	--color-primary: #3a2866;
}

.wrapper > .main,
html.lock {
	overflow: hidden;
}

body {
	color: var(--color-primary);
	background: #e4e1fa url(../img/bg.png);
	font: 1rem "IBMPlexSans", sans-serif;
}

.container {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	max-width: 1530px;
	margin: 0 auto;
	padding: 0 15px;
}

.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow-x: hidden;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
}

.wrapper > .main {
	flex: 1 1 auto;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
}

.notfound {
	padding-bottom: 50px;
	text-align: center;
}

.notfound h2,
.notfound__title {
	text-transform: uppercase;
	color: #211b19;
}

.notfound h2 {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	margin: auto;
	padding: 10px 4px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #e4e1fa;
	font-size: 24px;
	font-weight: 400;
}

.notfound__title {
	position: relative;
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content;
	margin: 0 auto;
	font-size: 236px;
}

.header-menu__body {
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	-webkit-font-feature-settings: "cpsp" on;
	font-feature-settings: "cpsp" on;
}

.header-menu__body .main-menu__list {
	flex: 1 1 100%;
	margin-top: 10px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
}

.header-menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin: -5px -10px;
	font-size: 14px;
	-ms-flex-wrap: wrap;
}

.header-menu__list li {
	margin: 5px 10px;
}

.header-menu__list li a {
	position: relative;
	display: block;
	padding: 7px 10px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header-menu__list li a:hover,
.header-menu__list li.current-menu-item a {
	background-color: var(--color-accent);
}

.header-menu__icon,
.product__count .variation dt {
	display: none;
}

.modal,
.ui-img img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modal {
	position: fixed;
	z-index: 999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	visibility: hidden;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	-webkit-transition: all var(--transition-time);
	-o-transition: all var(--transition-time);
	transition: all var(--transition-time);
	opacity: 0;
	background-color: rgba(228, 225, 250, 0.9);
	--transition-time: 0.3s;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	-ms-flex-wrap: wrap;
}

.modal-container {
	position: relative;
	width: 850px;
	min-height: 120px;
	margin: 50px auto;
	padding: 30px;
	cursor: default;
	border-radius: 6px;
	background-color: #fff;
}

.modal-close {
	position: absolute;
	z-index: 1;
	top: 15px;
	right: 15px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	border: 0;
	background: 0 0;
}

.modal-close:after,
.modal-close:before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 2px;
	height: inherit;
	margin: 0 auto;
	content: "";
	-webkit-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
	border-radius: 5px;
	background-color: var(--color-primary);
}

.modal-close:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.modal-close:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.modal-close:hover:after,
.modal-close:hover:before {
	background-color: var(--color-accent);
}

.modal.open {
	visibility: visible;
	opacity: 1;
}

.modal-effect--1 .modal-container {
	-webkit-transition: all var(--transition-time);
	-o-transition: all var(--transition-time);
	transition: all var(--transition-time);
	-webkit-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
}

.modal-effect--1.open .modal-container {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.modal-effect--2 .modal-container {
	-webkit-transition: all var(--transition-time)
		cubic-bezier(0.25, 0.5, 0.5, 0.9);
	-o-transition: all var(--transition-time) cubic-bezier(0.25, 0.5, 0.5, 0.9);
	transition: all var(--transition-time) cubic-bezier(0.25, 0.5, 0.5, 0.9);
	-webkit-transform: translateX(20%);
	-ms-transform: translateX(20%);
	transform: translateX(20%);
	opacity: 0;
}

.modal-effect--2.open .modal-container {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

.modal-effect--3 .modal-container {
	-webkit-transition: all var(--transition-time);
	-o-transition: all var(--transition-time);
	transition: all var(--transition-time);
	-webkit-transform: translateY(30%);
	-ms-transform: translateY(30%);
	transform: translateY(30%);
	opacity: 0;
}

.modal-effect--3.open .modal-container {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.modal-effect--4 .modal-container {
	-webkit-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg);
	opacity: 0;
}

.modal-effect--4 .modal-container,
.modal-effect--4.open {
	-webkit-transition: all var(--transition-time);
	-o-transition: all var(--transition-time);
	transition: all var(--transition-time);
}

.modal-effect--4.open .modal-container {
	-webkit-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	opacity: 1;
}

.modal-effect--5.modal {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.modal-effect--5 .modal-container {
	-webkit-transform: translateZ(600px) rotateX(20deg);
	transform: translateZ(600px) rotateX(20deg);
	opacity: 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.modal-effect--5.open .modal-container {
	-webkit-transition: all var(--transition-time) ease-in;
	-o-transition: all var(--transition-time) ease-in;
	transition: all var(--transition-time) ease-in;
	-webkit-transform: translateZ(0) rotateX(0deg);
	transform: translateZ(0) rotateX(0deg);
	opacity: 1;
}

.modal-effect--6 {
	top: 0;
}

.modal-effect--6 .modal-container {
	-webkit-transition: all var(--transition-time);
	-o-transition: all var(--transition-time);
	transition: all var(--transition-time);
	-webkit-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	opacity: 0;
}

.modal-effect--6.open .modal-container {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.modal-effect--7.modal {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.modal-effect--7 .modal-container {
	-webkit-transition: all var(--transition-time);
	-o-transition: all var(--transition-time);
	transition: all var(--transition-time);
	-webkit-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	opacity: 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.modal-effect--7.open .modal-container {
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;
}

.modal-effect--8.modal {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.modal-effect--8 .modal-container {
	-webkit-transition: all var(--transition-time);
	-o-transition: all var(--transition-time);
	transition: all var(--transition-time);
	-webkit-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	opacity: 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.modal-effect--8.open .modal-container,
.modal-effect--9.open .modal-container {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

.modal-effect--9.modal {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.modal-effect--10 .modal-container,
.modal-effect--9 .modal-container {
	-webkit-transition: all var(--transition-time);
	-o-transition: all var(--transition-time);
	transition: all var(--transition-time);
	opacity: 0;
}

.modal-effect--9 .modal-container {
	-webkit-transform: rotateX(-60deg);
	transform: rotateX(-60deg);
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.modal-effect--10 .modal-container {
	-webkit-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}

.modal-effect--10.open .modal-container {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.modal-effect--11.modal {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.modal-effect--11 .modal-container {
	-webkit-transition: all var(--transition-time);
	-o-transition: all var(--transition-time);
	transition: all var(--transition-time);
	-webkit-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-webkit-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.modal-effect--11.open .modal-container {
	-webkit-transform: translateZ(0) translateX(0) rotateY(0deg);
	transform: translateZ(0) translateX(0) rotateY(0deg);
	opacity: 1;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
	label {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		align-items: center;
		line-height: 1.3;
		--active-inner: #fff;
		--background: #fff;
		--border: #9f9f9f;
		--disabled: #f6f8ff;
		--focus: 2px rgba(0, 0, 0, 0.1);
		-webkit-box-align: center;
		-ms-flex-align: center;
	}

	input[type="checkbox"]:not(.switch),
	input[type="radio"]:not(.switch) {
		border-radius: 3px;
	}

	input[type="checkbox"]:not(.switch):after,
	input[type="radio"]:not(.switch):after {
		width: 11px;
		height: 11px;
		opacity: 0;
		background-image: url("data:image/svg+xml,%3Csvg width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L7 11L16 2' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	input[type="checkbox"].switch,
	input[type="radio"].switch {
		min-width: 37px;
		min-height: 21px;
		border-radius: 11px;
	}

	input[type="checkbox"].switch:after,
	input[type="radio"].switch:after {
		position: absolute;
		right: 0;
		left: 0;
		width: var(--wh);
		height: var(--wh);
		margin-left: var(--ml);
		border-radius: 50%;
		background: var(--ab, var(--border));
		--ml: 3px;
		--wh: 13px;
	}

	input[type="checkbox"].switch:checked,
	input[type="radio"].switch:checked {
		--ab: var(--active-inner);
	}

	input[type="checkbox"].switch:checked:after,
	input[type="radio"].switch:checked:after {
		margin-left: calc(100% - (var(--wh) + var(--ml)));
	}

	input[type="checkbox"].switch:disabled:not(:checked):after,
	input[type="radio"].switch:disabled:not(:checked):after {
		opacity: 0.6;
	}

	input[type="radio"] {
		border-radius: 50% !important;
	}

	input[type="checkbox"],
	input[type="radio"] {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		align-self: baseline;
		justify-content: center;
		align-items: center;
		min-width: 24px;
		min-height: 24px;
		margin: 0 10px 0 0;
		cursor: pointer;
		-webkit-transition: background 0.3s, border-color 0.3s,
			-webkit-box-shadow 0.2s;
		-o-transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
		transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
		transition: background 0.3s, border-color 0.3s, box-shadow 0.2s,
			-webkit-box-shadow 0.2s;
		vertical-align: top;
		border: 2px solid var(--bc, var(--border));
		outline: 0;
		background: var(--b, var(--background));
		-webkit-appearance: none;
		-moz-appearance: none;
		-webkit-box-align: center;
		-webkit-box-pack: center;
		-ms-flex-align: center;
		-ms-flex-item-align: baseline;
		-ms-flex-pack: center;
	}

	input[type="checkbox"]:after,
	input[type="radio"]:after {
		display: block;
		content: "";
		-webkit-transition: margin 0.5s cubic-bezier(0.2, 0.85, 0.32, 1.2),
			opacity 0.3s;
		-o-transition: margin 0.5s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s;
		transition: margin 0.5s cubic-bezier(0.2, 0.85, 0.32, 1.2), opacity 0.3s;
		opacity: 1;
	}

	input[type="checkbox"]:checked,
	input[type="radio"]:checked {
		--b: var(--color-accent);
		--bc: var(--color-accent);
	}

	input[type="checkbox"]:checked::after,
	input[type="radio"]:checked::after {
		opacity: 1;
	}

	input[type="checkbox"]:disabled,
	input[type="radio"]:disabled {
		cursor: not-allowed;
		opacity: 0.9;
		--b: var(--disabled);
	}

	input[type="checkbox"]:disabled:checked,
	input[type="radio"]:disabled:checked {
		--b: var(--disabled-inner);
		--bc: var(--border);
	}

	input[type="checkbox"]:disabled + label,
	input[type="radio"]:disabled + label {
		cursor: not-allowed;
	}

	input[type="checkbox"]:hover:not(:checked):not(:disabled),
	input[type="radio"]:hover:not(:checked):not(:disabled) {
		--bc: var(--color-accent);
	}

	input[type="checkbox"]:focus,
	input[type="radio"]:focus {
		-webkit-box-shadow: 0 0 0 var(--focus);
		box-shadow: 0 0 0 var(--focus);
	}
}

.ui-img {
	position: relative;
	overflow: hidden;
}

.ui-img img {
	position: absolute;
	-o-object-fit: cover;
	object-fit: cover;
}

.ui-title {
	margin-bottom: 20px;
	text-align: center;
	text-transform: uppercase;
	font-size: 42px;
	font-weight: 700;
	font-style: italic;
}

.ui-info__btn {
	display: block;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 20px auto 0;
	padding: 15px 30px;
	text-align: center;
	color: #fff;
	border-radius: 50px;
	background-color: var(--color-accent);
	font-size: 34px;
}

.ui-info__message {
	padding: 30px 0;
	text-align: center;
	background-color: #e4e1fa;
	font-size: 16px;
}

.button,
.ui-btn {
	display: inline-block;
	padding: 10px 30px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	border: 0;
	border-radius: 4px;
	background-color: var(--color-accent);
	font-size: 16px;
	font-weight: 900;
}

.button:hover,
.ui-btn:hover {
	background-color: var(--color-primary);
}

.ajax-loading {
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

.ajax-loading #sparkles > path {
	position: absolute;
	-webkit-animation: sparklyBits 1000ms infinite;
	animation: sparklyBits 1000ms infinite;
	fill: var(--color-primary);
}

.ajax-loading #burrito > path {
	fill: var(--color-primary);
}

.ajax-loading #sparkles > path:nth-child(1) {
	-webkit-animation-delay: 35ms;
	animation-delay: 35ms;
}

.ajax-loading #sparkles > path:nth-child(2) {
	-webkit-animation-delay: 70ms;
	animation-delay: 70ms;
}

.ajax-loading #sparkles > path:nth-child(3) {
	-webkit-animation-delay: 105ms;
	animation-delay: 105ms;
}

.ajax-loading #sparkles > path:nth-child(4) {
	-webkit-animation-delay: 140ms;
	animation-delay: 140ms;
}

.ajax-loading #sparkles > path:nth-child(5) {
	-webkit-animation-delay: 175ms;
	animation-delay: 175ms;
}

.ajax-loading #sparkles > path:nth-child(6) {
	-webkit-animation-delay: 210ms;
	animation-delay: 210ms;
}

.ajax-loading #sparkles > path:nth-child(7) {
	-webkit-animation-delay: 245ms;
	animation-delay: 245ms;
}

.ajax-loading #sparkles > path:nth-child(8) {
	-webkit-animation-delay: 280ms;
	animation-delay: 280ms;
}

.ajax-loading #sparkles > path:nth-child(9) {
	-webkit-animation-delay: 315ms;
	animation-delay: 315ms;
}

.ajax-loading #sparkles > path:nth-child(10) {
	-webkit-animation-delay: 350ms;
	animation-delay: 350ms;
}

.ajax-loading #sparkles > path:nth-child(11) {
	-webkit-animation-delay: 385ms;
	animation-delay: 385ms;
}

.ajax-loading #sparkles > path:nth-child(12) {
	-webkit-animation-delay: 420ms;
	animation-delay: 420ms;
}

.ajax-loading #sparkles > path:nth-child(13) {
	-webkit-animation-delay: 455ms;
	animation-delay: 455ms;
}

.ajax-loading #sparkles > path:nth-child(14) {
	-webkit-animation-delay: 490ms;
	animation-delay: 490ms;
}

.ajax-loading #sparkles > path:nth-child(15) {
	-webkit-animation-delay: 525ms;
	animation-delay: 525ms;
}

.ajax-loading #sparkles > path:nth-child(16) {
	-webkit-animation-delay: 560ms;
	animation-delay: 560ms;
}

.ajax-loading #sparkles > path:nth-child(17) {
	-webkit-animation-delay: 595ms;
	animation-delay: 595ms;
}

.ajax-loading #sparkles > path:nth-child(18) {
	-webkit-animation-delay: 630ms;
	animation-delay: 630ms;
}

.ajax-loading #sparkles > path:nth-child(19) {
	-webkit-animation-delay: 665ms;
	animation-delay: 665ms;
}

.ajax-loading #sparkles > path:nth-child(20) {
	-webkit-animation-delay: 700ms;
	animation-delay: 700ms;
}

.ajax-loading #sparkles > path:nth-child(21) {
	-webkit-animation-delay: 735ms;
	animation-delay: 735ms;
}

.ajax-loading #sparkles > path:nth-child(22) {
	-webkit-animation-delay: 770ms;
	animation-delay: 770ms;
}

.ajax-loading #sparkles > path:nth-child(23) {
	-webkit-animation-delay: 805ms;
	animation-delay: 805ms;
}

.ajax-loading #sparkles > path:nth-child(24) {
	-webkit-animation-delay: 840ms;
	animation-delay: 840ms;
}

.ajax-loading #sparkles > path:nth-child(25) {
	-webkit-animation-delay: 875ms;
	animation-delay: 875ms;
}

.ajax-loading #sparkles > path:nth-child(26) {
	-webkit-animation-delay: 910ms;
	animation-delay: 910ms;
}

.ajax-loading #sparkles > path:nth-child(27) {
	-webkit-animation-delay: 945ms;
	animation-delay: 945ms;
}

.ajax-loading #sparkles > path:nth-child(28) {
	-webkit-animation-delay: 980ms;
	animation-delay: 980ms;
}

.ajax-loading #sparkles > path:nth-child(29) {
	-webkit-animation-delay: 1015ms;
	animation-delay: 1015ms;
}

.wp-block-image {
	max-width: 100%;
	margin: 0;
}

.wp-block-image img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-style: none;
	-o-object-fit: contain;
	object-fit: contain;
}

.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="text"],
.wpcf7-form textarea {
	display: block;
	width: 100%;
	max-height: 105px;
	padding: 12px 9px;
	border: 2px solid var(--color-primary);
	border-radius: 5px;
	background-color: transparent;
}

.wpcf7-form .wpcf7-form-control-wrap {
	display: block;
}

.product-response__attributes li + li,
.wpcf7-form .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	margin-top: 10px;
}

.products,
.wpcf7-form__footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-ms-flex-wrap: wrap;
}

.wpcf7-form__footer {
	position: relative;
	align-items: center;
	margin-top: 30px;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.wpcf7-form__footer .wpcf7-spinner {
	position: absolute;
}

.products {
	overflow: hidden;
	margin: -11px -15px 30px;
}

.product {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex: 0 1 calc(33.3333333333% - 30px);
	align-items: space-between;
	max-width: 490px;
	margin: 11px 15px;
	padding: 15px;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.4);
	-webkit-box-align: space-between;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 calc(33.3333333333% - 30px);
	-ms-flex-align: space-between;
}

.product h2 {
	margin: 0;
	line-height: 1;
}

.product__variations {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	margin-top: auto;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
}

.product__variations .product__footer + .product__footer {
	margin-top: 16px;
	border-top: 3px solid #c7c3e3;
}

.product__img {
	position: relative;
	overflow: hidden;
	align-self: flex-start;
	min-width: 150px;
	margin: 0 30px 0 0;
	border-radius: 6px;
	background-color: #fff;
	-ms-flex-item-align: start;
}

.product__img picture {
	display: block;
	padding: 0 0 100%;
}

.product__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	-webkit-box-direction: normal;
	-webkit-box-flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-pack: justify;
	-ms-flex: 1;
	-ms-flex-direction: column;
	-ms-flex-pack: justify;
}

.product__description {
	font-size: 14px;
	line-height: 114%;
}

.product__description h2 {
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: 700;
	font-style: italic;
}

.product__description h3 {
	margin: 5px 0 0;
}

.product__attr,
.product__footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.product__footer {
	justify-content: space-between;
	align-items: flex-end;
	padding-top: 14px;
	-webkit-box-align: end;
	-webkit-box-pack: justify;
	-ms-flex-align: end;
	-ms-flex-pack: justify;
}

.product__attr {
	flex-wrap: wrap;
	align-items: center;
	margin: -2px -5px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
}

.product__attr > * {
	margin: 2px 5px;
}

.product__weight {
	color: var(--color-accent);
	font-size: 16px;
	font-weight: 400;
	font-style: italic;
}

.product__price {
	font-size: 30px;
	font-weight: 500;
	font-style: italic;
	line-height: 0.95;
}

.product__count {
	font-size: 20px;
	font-weight: 700;
	font-style: italic;
}

.product__count .variation,
.product__count .variation dd {
	margin: 0;
}

.product__btn,
.product__btn .cart-icon path {
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.product__btn {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	overflow: hidden;
	align-items: center;
	margin-left: 10px;
	padding: 13px 16px;
	border: 0;
	border-radius: 4px;
	background-color: var(--color-accent);
	font-size: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.product__btn:hover {
	background-color: var(--color-primary);
}

.product__btn .cart-icon {
	width: 20px;
	height: 20px;
}

.product__btn .cart-icon path {
	fill: #fff;
}

.product__btn.added .cart-icon::before,
.product__btn.loading .cart-icon::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: url("data:image/svg+xml,%3Csvg version='1.1' id='loader-1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='20px' height='20px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cpath fill='white' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");
}

.product__btn.added .cart-icon svg,
.product__btn.loading .cart-icon svg {
	opacity: 0;
}

.product__btn.added .cart-icon::before {
	content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 48 48' fill='none' stroke='white' stroke-width='3' stroke-dasharray='100'%3E%3Cpath id='check' d='M 12,22 L 22,31 L 36,13' stroke-dashoffset='0'%3E%3Canimate attributeName='stroke-dashoffset' from='100' to='0' repeatCount='indefinite' dur='2s'%3E%3C/animate%3E%3C/path%3E%3C/svg%3E");
}

.product .added_to_cart.wc-forward {
	display: none;
}

.woocommerce-products-header {
	padding: 35px 0;
}

.product-response {
	display: grid;
	grid-gap: 20px 38px;
}

.product-response__img {
	overflow: hidden;
	padding: 0 0 78.655%;
	border-radius: 6px;
}

.product-response__img img {
	background-color: #f9f9f7;
}

.product-response__info h2 {
	line-height: 1;
}

.attribute li,
.product-response__info,
.product-response__info form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.product-response__group--item + .product-response__group--item,
.product-response__info,
.product-response__info form {
	flex-direction: column;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
}

.product-response__info form {
	height: 100%;
}

.product-response__accent {
	color: var(--color-primary);
	font-size: 13px;
}

.product-response__footer {
	justify-content: space-between;
	align-items: flex-end;
	margin-top: auto;
	padding-top: 20px;
	-webkit-box-align: end;
	-webkit-box-pack: justify;
	-ms-flex-align: end;
	-ms-flex-pack: justify;
}

.product-response__footer,
.product-response__group,
.product-response__group--item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	-ms-flex-wrap: wrap;
}

.product-response__group {
	justify-content: space-between;
	align-items: stretch;
	-webkit-box-align: stretch;
	-webkit-box-pack: justify;
	-ms-flex-align: stretch;
	-ms-flex-pack: justify;
}

.product-response__group--item {
	align-items: center;
	margin-left: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.product-response__group--item + .product-response__group--item {
	flex: 0;
	-webkit-box-flex: 0;
	-ms-flex: 0;
}

.product-response__group .added_to_cart {
	display: none;
}

.product-response__attributes {
	position: relative;
	margin-top: 15px;
	color: #828282;
	font-size: 14px;
}

.product-response__attributes.ui-decor::before {
	margin-bottom: 11px;
}

.product-response__attributes.ui-decor::after {
	margin-top: 11px;
}

.product-response__hot {
	margin-top: auto;
}

.wc-qty__input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -5px;
	border-radius: 4px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
}

.wc-qty__input > * {
	margin: 5px;
}

.wc-qty label {
	display: none;
	padding-bottom: 5px;
}

.wc-qty .minus,
.wc-qty .plus {
	width: 23px;
	height: 23px;
	padding: 1px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	border: 2px solid var(--color-accent);
	border-radius: 50%;
	background-color: #fff;
	line-height: 0;
}

.wc-qty .minus:hover,
.wc-qty .plus:hover {
	color: #fff;
	background-color: var(--color-accent);
}

.attribute li {
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}

.attribute__label {
	flex: 0 1 50%;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 50%;
}

.woocommerce-info {
	margin-bottom: 20px;
	text-align: center;
	font-size: 20px;
}

.content-single {
	max-width: 800px;
	margin-top: 10px;
	margin-bottom: 40px;
}

.woocommerce-message {
	margin-bottom: 20px;
	text-align: center;
	color: var(--color-accent);
}

.woocommerce-message a {
	display: block;
	color: var(--color-primary);
	font-weight: 700;
}

.quantity input {
	width: 100px;
	padding: 2px 20px;
	text-align: center;
	border: 2px solid var(--color-accent);
	border-radius: 60px;
	font-size: 22px;
}

.cart-list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}

.cart-list__item:not(:last-child) {
	margin-bottom: 33px;
}

.cart-list__item picture {
	display: block;
	overflow: hidden;
	flex: 1 1 100%;
	margin: 0 0 20px;
	padding: 0 0 50%;
	border-radius: 6px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
}

.cart-list__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
}

.cart-list__img img {
	background-color: #ecf1d7;
}

.cart-list__info {
	flex: 1 1 100%;
	margin: 0 0 20px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
}

.cart-list__title {
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 700;
}

.cart-list__description {
	margin-top: 5px;
	font-size: 14px;
	line-height: 114%;
}

.cart-list__count {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex: 1;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	-ms-flex-align: center;
}

.cart-list__count label {
	display: none;
}

.cart-list__count .wc-qty {
	flex: 0 0 auto;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
}

.cart-list__price {
	margin-left: 28px;
	font-size: 24px;
	font-weight: 700;
}

.cart-list__item--close {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
	margin-left: 20px;
	cursor: pointer;
	border: 0;
	background: 0 0;
}

.cart-list__item--close:after,
.cart-list__item--close:before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 1.4px;
	height: inherit;
	margin: 0 auto;
	content: "";
	-webkit-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
	border-radius: 5px;
	background-color: var(--color-primary);
}

.cart-list__item--close:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.cart-list__item--close:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.cart-list__item--close:hover:after,
.cart-list__item--close:hover:before,
.main-menu__list li a:hover,
.main-menu__list li.current-menu-item a {
	background-color: var(--color-accent);
}

.cart-totals {
	display: grid;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 24px;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	grid-gap: 10px 20px;
}

.cart-totals__price {
	padding: 2px 30px;
	text-align: center;
	border: 2px solid var(--color-accent);
	border-radius: 4px;
	font-weight: 700;
}

.cart-totals a {
	text-decoration: none;
	color: #fff;
}

.checkout-totals {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: -5px -15px;
	padding-top: 40px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-ms-flex-wrap: wrap;
}

.checkout-totals > * {
	margin: 5px 15px;
}

.checkout-totals__fee {
	flex: 1 1 100%;
	text-align: center;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
}

.checkout-totals__price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2px 30px;
	text-align: center;
	color: var(--color-accent);
	border: 2px solid var(--color-accent);
	border-radius: 4px;
	font-size: 18px;
	font-weight: 700;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

.checkout-totals__price strong {
	margin-left: 5px;
}

.checkout-totals__text {
	line-height: 1.3;
}

.checkout-totals__wrapper {
	display: grid;
	grid-gap: 10px 20px;
}

.cart-update {
	display: none;
	margin-top: 40px;
	text-align: center;
}

.cart-update .button {
	text-transform: uppercase;
	border: 0;
	background: 0;
	font-size: 14px;
}

.woocommerce-cart-form,
.woocommerce-checkout {
	position: relative;
}

.woocommerce-cart-form__loading,
.woocommerce-checkout__loading {
	visibility: hidden;
	opacity: 0;
}

.woocommerce-cart-form.processing .woocommerce-cart-form__loading,
.woocommerce-checkout.processing .woocommerce-cart-form__loading {
	z-index: 10;
	visibility: visible;
	opacity: 1;
}

div.blockOverlay {
	z-index: 9 !important;
	border-radius: 10px;
	background-color: #e4e1fa !important;
}

.return-to-shop {
	text-align: center;
}

.return-to-shop a {
	text-decoration: none;
	text-transform: uppercase;
}

.main-checkout__form {
	flex: 1 1 auto;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
}

.main-checkout__warning {
	padding: 10px 20px;
	text-align: center;
	color: #f3f5e9;
	background-color: var(--color-primary);
	font-size: 16px;
}

.woocommerce-billing-fields h3 {
	display: none !important;
}

.woocommerce-billing-fields__field-wrapper input,
.woocommerce-billing-fields__field-wrapper select {
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	border: 2px solid var(--color-primary);
	border-radius: 4px;
	background-color: transparent;
}

.woocommerce-billing-fields__field-wrapper select {
	font-weight: 500;
}

.woocommerce-billing-fields__field-wrapper select > option:first-child {
	display: none;
}

.woocommerce-billing-fields__field-wrapper .form-row {
	display: grid;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-billing-fields__field-wrapper .billing_driveway {
	font-size: 16px;
}

#order_review_heading,
.woocommerce-additional-fields,
.woocommerce-billing-fields__field-wrapper .optional {
	display: none;
}

.woocommerce-billing-fields__field-wrapper .required {
	text-decoration: none;
	color: var(--color-primary);
}

.woocommerce-billing-fields__field-wrapper label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	font-size: 16px;
	line-height: 1;
	-webkit-box-direction: reverse;
	-webkit-box-orient: horizontal;
	-webkit-box-pack: end;
	-ms-flex-direction: row-reverse;
	-ms-flex-pack: end;
}

.wc_payment_methods,
.woocommerce-checkout-review-order-table tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}

.wc_payment_methods {
	margin: -5px -10px;
	padding: 10px 0;
	font-size: 18px;
}

.wc_payment_methods .wc_payment_method {
	margin: 5px 10px;
}

.woocommerce-shipping-methods {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
}

.woocommerce-shipping-methods li {
	margin: 10px;
}

.woocommerce-checkout-review-order-table {
	margin-bottom: 20px;
}

.woocommerce-checkout-review-order-table tr {
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.woocommerce-checkout-review-order-table tr th {
	width: 205px;
	margin: 10px 0;
	text-align: left;
}

.woocommerce-checkout-review-order-table tr td {
	font-size: 18px;
}

.woocommerce-checkout-review-order {
	margin-top: 50px;
	margin-bottom: 50px;
}

.woocommerce-checkout-review-order .order-checkout__title,
.woocommerce-checkout-review-order th {
	padding-right: 70px;
	font-size: 24px;
	font-weight: 400;
}

.woocommerce-checkout-payment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
}

.woocommerce-NoticeGroup {
	margin-top: 50px;
	color: var(--color-primary);
}

.woocommerce-NoticeGroup strong {
	color: #4f4f4f;
}

.woocommerce-invalid-required-field input {
	border-color: var(--color-primary);
}

.checkout_coupon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: -5px;
	padding-bottom: 20px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	-ms-flex-wrap: wrap;
}

.checkout_coupon input {
	height: 40px;
	padding: 5px 10px;
	border: 2px solid var(--color-primary);
	border-radius: 4px;
	background-color: #fff;
}

.checkout_coupon > * {
	margin: 5px;
}

.woocommerce-form-coupon > p:first-child {
	flex: 1 1 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
}

.woocommerce-error {
	margin: 30px 0;
	color: red;
}

.info h1 span,
.woocommerce-error li + li {
	margin-top: 5px;
}

.info h1 b,
.woocommerce-privacy-policy-text a {
	color: var(--color-accent);
}

.header {
	padding: 5px 0;
	background-color: var(--color-primary);
}

.header__left,
.header__right,
.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: justify;
	-ms-flex-align: center;
	-ms-flex-pack: justify;
	-ms-flex-wrap: wrap;
}

.header__wrapper {
	color: #fff;
}

.header__left,
.header__right {
	flex: 1 1 auto;
	padding: 10px 0;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
}

.header__center {
	width: 76px;
	height: 73px;
	margin-right: 50px;
	margin-bottom: -30px;
	margin-left: 50px;
}

.header__contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 10px 0;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
}

.header__contacts > span {
	margin-right: 14px;
}

.header__social {
	padding: 0 20px;
}

.logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -5px -10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
}

.logo > img {
	margin: 5px 10px;
}

.logo__main {
	width: 200px;
	height: 32px;
}

.logo__food {
	width: 130px;
	height: 24px;
}

.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -8px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
}

.social__item {
	display: block;
	width: 35px;
	height: 35px;
	margin: 8px;
}

.logo > img,
.phone::before,
.social__item img {
	-o-object-fit: contain;
	object-fit: contain;
}

.info h1,
.main-menu__list li a,
.phone {
	text-transform: uppercase;
	font-weight: 700;
}

.phone {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	font-size: 14px;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.phone:hover::before {
	-webkit-transform: rotate(15deg);
	-ms-transform: rotate(15deg);
	transform: rotate(15deg);
}

.phone::before {
	width: 30px;
	height: 30px;
	margin-right: 3px;
	content: url(../img/icons/phone.svg);
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
	line-height: 0;
}

.cart-icon {
	position: relative;
	width: 20px;
	height: 20px;
}

.cart-btn,
.cart-btn__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.cart-btn {
	overflow: hidden;
	height: 35px;
	margin: 5px 0;
	padding: 0 19px 0 15px;
	color: #fff;
	border: 0;
	border-radius: 4px;
	background-color: var(--color-accent);
}

.cart-btn__wrapper {
	flex-direction: column;
	justify-content: center;
	height: 100%;
	margin-left: 15px;
	padding-left: 15px;
	border-left: 3px solid var(--color-primary);
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-pack: center;
	-ms-flex-direction: column;
	-ms-flex-pack: center;
}

.cart-btn__count {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.cart-btn__price {
	margin-top: -2px;
	text-align: center;
	text-transform: lowercase;
	font-size: 10px;
	font-weight: 600;
}

.main-menu {
	margin: 35px 0 30px;
}

.main-menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: -5px -15px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-ms-flex-wrap: wrap;
}

.main-menu__list li {
	margin: 5px 15px;
}

.info h1,
.main-menu__list li a {
	letter-spacing: 0.1em;
	font-style: italic;
}

.main-menu__list li a {
	display: block;
	padding: 7px 10px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #fff;
	font-size: 18px;
}

.main__body {
	padding: 20px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.4);
}

.info {
	padding-top: 45px;
	padding-bottom: 20px;
}

.info__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: -10px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-ms-flex-wrap: wrap;
}

.info__uds {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 20px;
	text-align: center;
	margin-top: 40px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	font-style: italic;
}

.info__wrapper > * {
	margin: 10px;
}

.info h1 {
	font-size: 24px;
	line-height: 104%;
}

.info h1 span {
	display: block;
	font-size: 18px;
	font-weight: 500;
}

.contact-group {
	font-size: 18px;
	font-weight: 400;
	line-height: 139%;
}

.contact-group::before {
	display: block;
	width: 20px;
	height: 20px;
	margin-top: 3px;
	margin-right: 5px;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
	line-height: 0;
	-o-object-fit: contain;
	object-fit: contain;
}

.contact-group.delivery::before {
	content: url(../img/icons/phone.svg);
}

.contact-group.address::before {
	content: url(../img/icons/map.svg);
}

.contact-group.working::before {
	content: url(../img/icons/time.svg);
}

.category__list,
.contact-group__section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.contact-group__section {
	flex-direction: column;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
}

.category__list {
	flex-wrap: wrap;
	margin: -15px;
	-ms-flex-wrap: wrap;
}

.category__list li {
	position: relative;
	overflow: hidden;
	flex: 1 1 100%;
	height: 220px;
	margin: 15px;
	border-radius: 4px;
	background-color: var(--color-primary);
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
}

.category__list li a,
.category__title {
	position: relative;
	display: block;
	width: 100%;
}

.category__list li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	height: 100%;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
}

.category__list li a:hover {
	border: 20px solid var(--color-accent);
}

.category__list li a:hover .category__title {
	background-color: rgba(235, 96, 17, 0.8);
}

.category__title {
	z-index: 1;
	padding: 8px 15px;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	text-align: center;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background-color: rgba(58, 40, 102, 0.8);
	font-size: 24px;
	font-weight: 600;
	font-style: italic;
	line-height: 139%;
}

.category__title b {
	font-style: normal;
}

.category__title > span:first-child {
	font-weight: 300;
}

.category__title > span:last-child {
	font-weight: 400;
	font-style: normal;
}

.category__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.category__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.post {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin: -20px;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	-ms-flex-wrap: wrap;
}

.post__item {
	flex: 1 1 auto;
	margin: 20px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
}

.post__img {
	display: block;
	margin-bottom: 20px;
	padding: 0 0 64%;
}

.post__text {
	font-size: 16px;
	line-height: 125%;
}

.post__text h2 {
	margin-bottom: 30px;
	text-align: center;
	font-size: 36px;
	line-height: 111%;
}

.post__text b,
.post__text strong {
	color: var(--color-accent);
	font-size: 18px;
	line-height: 111%;
}

.post ul li:before {
	padding-right: 3px;
	content: "- ";
}

.footer {
	margin-top: 60px;
	padding: 30px 0 40px;
	color: #fff;
	background-color: var(--color-primary);
}

.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	margin: -10px auto;
	letter-spacing: 0.1em;
	font-size: 13px;
	font-weight: 600;
	-webkit-box-align: baseline;
	-webkit-box-pack: justify;
	-ms-flex-align: baseline;
	-ms-flex-pack: justify;
	-ms-flex-wrap: wrap;
}

.footer__wrapper > * {
	margin: 10px 0;
}

.footer__info {
	flex: 0 1 auto;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
}

.footer__dev {
	color: var(--color-accent);
	font-size: 12px;
}

.info-text {
	display: block;
}

.info-text__address::before {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 3px;
	content: url(../img/icons/map.svg);
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
}

.info-text__policy {
	display: block;
	margin-top: 5px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	letter-spacing: normal;
	text-transform: lowercase;
	color: #8e70d9;
	font-size: 12px;
}

.info-text__policy:hover {
	color: #fff;
}

.woocommerce-error {
	text-align: center;
	color: red;
	font-size: 1.5rem;
	margin-bottom: 1em;
}
.grecaptcha-badge {
	visibility: hidden;
}

.webp body {
	background: #e4e1fa url(../img/bg.webp);
}

.header__logo {
	margin-right: 20px;
}

.country-selector {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 3;
	color: #fff;
	padding: 0 20px;
}

/* body.country-selector--active {
	overflow: hidden;
} */
body.country-selector--active .country-selector {
	z-index: 10;
	font-weight: 600;
	color: #000;
}
body.country-selector--active .country-selector::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border-radius: 50px;
	pointer-events: none;
	background-color: #fff;
	z-index: -1;
}
body.country-selector--active::before {
	content: "";
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 2;
}

select.country-switcher > option[value="AU"]:not([selected]) {
	display: none !important;
}

select.country-switcher {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	font-size: 16px;
	color: currentColor;
	background-image: none;
	background-color: transparent;
	border: none;
	-ms-word-break: normal;
	word-break: normal;
	outline: none;
	padding: 0;
}

@media (min-width: 575.98px) {
	.cart-list__item picture {
		flex: 0 1 153px;
		max-height: 153px;
		margin: 0 48px 0 0;
		padding: 0 0 12.5%;
		-webkit-box-flex: 0;
		-ms-flex: 0 1 153px;
	}

	.cart-totals {
		grid-template-columns: repeat(2, 240px);
	}

	.info__block {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

@media (min-width: 767.98px) {
	.header-menu__body .main-menu__list {
		display: none;
	}

	.header-menu__body {
		align-items: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
	}

	.header-menu__list {
		align-items: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
	}

	.header-menu__list li a {
		border-radius: 4px;
	}

	.product-response {
		grid-template-columns: minmax(45%, 1fr) 1fr;
	}

	.checkout-totals__wrapper {
		grid-template-columns: repeat(2, 240px);
	}

	.main-menu__list li a {
		padding: 8px 20px;
		border-radius: 4px;
		background-color: var(--color-primary);
		font-size: 14px;
	}

	.category__list li {
		flex: 1 1 calc(50% - 30px);
		-webkit-box-flex: 1;
		-ms-flex: 1 1 calc(50% - 30px);
	}
}

@media (min-width: 991.98px) {
	.cart-list__info {
		flex: 1;
		margin: 0 40px 0 0;
		-webkit-box-flex: 1;
		-ms-flex: 1;
	}

	.main__body {
		max-width: 80%;
		margin: 0 auto;
		padding: 40px;
	}

	.category__list li {
		flex: 1 1 calc(33.3333333333% - 30px);
		-webkit-box-flex: 1;
		-ms-flex: 1 1 calc(33.3333333333% - 30px);
	}

	.post__item {
		flex: 0 0 calc((100% - 80px) / 2);
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc((100% - 80px) / 2);
	}
}

@media (max-width: 1530px) {
	.notfound h2 {
		font-size: calc(12px + 12 * ((100vw - 320px) / 1210));
	}

	.notfound__title {
		font-size: calc(86px + 150 * ((100vw - 320px) / 1210));
	}

	.header-menu {
		position: fixed;
		top: 0;
		left: 0;
		visibility: hidden;
		overflow-x: hidden;
		overflow-y: auto;
		justify-content: flex-start;
		width: 100%;
		height: 100%;
		padding: 20px 0;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		opacity: 0;
		background: rgba(58, 40, 102, 0.98);
		-webkit-box-pack: start;
		-ms-flex-pack: start;
	}

	.header-menu__body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		-ms-flex-wrap: wrap;
	}

	.header-menu__list {
		flex: 1 1 100%;
		flex-direction: column;
		margin: 0;
		color: #fff;
		font-size: 18px;
		font-weight: 400;
		-webkit-box-direction: normal;
		-webkit-box-flex: 1;
		-webkit-box-orient: vertical;
		-ms-flex: 1 1 100%;
		-ms-flex-direction: column;
	}

	.header-menu__list a {
		padding: 10px;
	}

	.header-menu.open {
		z-index: 5;
		visibility: visible;
		padding: 0;
		opacity: 1;
	}

	.header-menu__icon {
		position: relative;
		display: block;
		width: 30px;
		height: 22px;
		margin-left: 20px;
		padding: 0;
		cursor: pointer;
		border: 0;
		background: 0 0;
	}

	.header-menu__icon span,
	.header-menu__icon::after,
	.header-menu__icon::before {
		position: absolute;
		z-index: 1;
		left: 0;
		width: 100%;
		height: auto;
		-webkit-transition: -webkit-transform 0.2s;
		-o-transition: transform 0.2s;
		transition: transform 0.2s;
		transition: transform 0.2s, -webkit-transform 0.2s;
		border-top: 2px solid #fff;
		border-radius: 5px;
	}

	.header-menu__icon::after,
	.header-menu__icon::before {
		content: "";
	}

	.header-menu__icon::before {
		top: 0;
	}

	.header-menu__icon::after {
		bottom: 0;
	}

	.header-menu__icon span {
		top: 50%;
		-webkit-transform: scale(1) translate(0, -50%);
		-ms-transform: scale(1) translate(0, -50%);
		transform: scale(1) translate(0, -50%);
	}

	.header-menu__icon.active,
	.header-menu__icon.focus {
		position: fixed;
		z-index: 10;
		top: 10px;
		right: 10px;
	}

	.header-menu__icon.active span {
		-webkit-transform: scale(0) translate(0, -50%);
		-ms-transform: scale(0) translate(0, -50%);
		transform: scale(0) translate(0, -50%);
	}

	.header-menu__icon.active::before {
		top: auto;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.header-menu__icon.active::after {
		bottom: auto;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.header-menu__icon--bg {
		right: -100px;
		-webkit-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all 0.5s ease;
		opacity: 0;
	}

	.header-menu__icon.focus {
		z-index: 999;
	}

	.header-menu__icon.focus > .header-menu__icon--bg {
		position: absolute;
		z-index: 0;
		top: -50px;
		right: -45px;
		width: 100px;
		height: 100px;
		opacity: 1;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.9);
	}

	.modal-container {
		max-width: 95%;
		margin: 10px auto;
	}

	.ui-title {
		font-size: calc(24px + 18 * ((100vw - 320px) / 1210));
	}

	.button,
	.ui-btn {
		font-size: calc(14px + 2 * ((100vw - 320px) / 1210));
	}

	.product__count {
		font-size: calc(14px + 6 * ((100vw - 320px) / 1210));
	}

	.quantity input {
		width: calc(70px + 30 * ((100vw - 320px) / 1210));
		font-size: calc(16px + 6 * ((100vw - 320px) / 1210));
	}

	.cart-list__price {
		font-size: calc(16px + 8 * ((100vw - 320px) / 1210));
	}

	.cart-totals {
		padding-top: calc(30px + 20 * ((100vw - 320px) / 1210));
		padding-bottom: calc(30px + 20 * ((100vw - 320px) / 1210));
	}

	.woocommerce-checkout-review-order {
		margin-top: calc(30px + 20 * ((100vw - 320px) / 1210));
		margin-bottom: calc(10px + 40 * ((100vw - 320px) / 1210));
	}

	.header__left,
	.header__right {
		flex: 0 1 auto;
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
	}

	.header__left {
		justify-content: flex-start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
	}

	.header__center {
		display: none;
	}

	.logo__main {
		width: calc(130px + 70 * ((100vw - 320px) / 1210));
	}

	.logo__food {
		width: calc(80px + 50 * ((100vw - 320px) / 1210));
	}

	.phone::before {
		width: calc(20px + 10 * ((100vw - 320px) / 1210));
		height: calc(20px + 10 * ((100vw - 320px) / 1210));
	}

	.post__text {
		font-size: calc(14px + 2 * ((100vw - 320px) / 1210));
	}

	.post__text h2 {
		font-size: calc(24px + 12 * ((100vw - 320px) / 1210));
	}

	.post__text b,
	.post__text strong {
		font-size: calc(16px + 2 * ((100vw - 320px) / 1210));
	}

	.footer {
		padding: 30px 0;
	}

	.footer__wrapper {
		flex-direction: column;
		align-items: center;
		text-align: center;
		-webkit-box-align: center;
		-webkit-box-direction: normal;
		-webkit-box-orient: vertical;
		-ms-flex-align: center;
		-ms-flex-direction: column;
	}

	.footer__dev {
		padding-top: 20px;
	}
}

@media (max-width: 1530px) and (max-width: 767.98px) {
	.header-menu__list li,
	.header-menu__list li + li {
		margin: 0;
	}
}

@media (max-width: 1115.98px) {
	.product {
		flex: 1 1 calc(33.3333333333% - 30px);
		-webkit-box-flex: 1;
		-ms-flex: 1 1 calc(33.3333333333% - 30px);
	}
}

@media (max-width: 991.98px) {
	.header__left,
	.header__right {
		flex: 1 1 100%;
		justify-content: center;
		-webkit-box-flex: 1;
		-webkit-box-pack: center;
		-ms-flex: 1 1 100%;
		-ms-flex-pack: center;
	}
}

@media (max-width: 767.98px) {
	.modal-container {
		margin-bottom: 65px;
		padding: 20px;
	}

	.modal-close {
		top: 6px;
		right: 6px;
		width: 15px;
		height: 15px;
	}

	.product {
		flex: 1 1 auto;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
	}

	.main-menu {
		display: none;
	}

	.main-menu__list {
		flex-direction: column;
		margin: 0;
		-webkit-box-direction: normal;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
	}

	.main-menu__list li {
		margin: 0;
		border-top: 1px solid #2e1d58;
	}

	.info-text__address {
		display: block;
	}
}

@media (max-width: 575.98px) {
	.products {
		margin: -10px -7px;
	}

	.product {
		flex: 1 1 46%;
		flex-direction: column;
		margin: 10px 7px;
		-webkit-box-direction: normal;
		-webkit-box-flex: 1;
		-webkit-box-orient: vertical;
		-ms-flex: 1 1 46%;
		-ms-flex-direction: column;
	}

	.product h2 {
		font-size: 16px;
	}

	.product__img {
		width: 100%;
		margin: 0 0 15px;
	}

	.product__text {
		width: 100%;
	}

	.product__weight {
		font-size: 12px;
	}

	.product__price {
		font-size: 18px;
	}

	.product__btn {
		padding: 5px;
	}

	.info__wrapper {
		flex-direction: column;
		align-items: center;
		text-align: center;
		-webkit-box-align: center;
		-webkit-box-direction: normal;
		-webkit-box-orient: vertical;
		-ms-flex-align: center;
		-ms-flex-direction: column;
	}

	.contact-group::before {
		margin: 0 auto;
	}
}

@media (max-width: 1530px) and (min-width: 767.98px) {
	.header-menu__body {
		height: 100%;
	}
}

@media (min-width: 575.98px) and (max-width: 1530px) {
	.cart-list__item picture {
		margin-right: calc(20px + 28 * ((100vw - 320px) / 1210));
	}
}
