body {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4em;
	color: #727272;
	background: url('/assets/images/backgrounds/bg-body.png') center center repeat, #f5f5f5;
    scroll-behavior: smooth;
}

button {
	border: none;
	border-radius: 0;
	padding: 0;
}

* {
    -webkit-tap-highlight-color: transparent;
}

.container-fluid {
	max-width: 1164px;
}
/*Header*/
.header {
	background: #F5F5F5;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
	position: sticky;
	top: 0;
	z-index: 100;
	overflow: hidden;
}

.header__logo {
	padding: 0 0 14px;
}

.header__logo img {
	max-height: 63px;
}

.header,
.header__main {
	height: 82px;	
}

.header__main {
	transition: max-width .3s;
}

.main-menu-btn {
	display: flex;
	width: 32px;
	height: 32px;
	background: transparent;
	position: relative;
	margin-bottom: 14px;
}

.main-menu-btn > span {
	width: 28px;
	height: 3px;
	border-radius: 3px;
	background: #2E2D2D;
	position: absolute;
	left: 2px;
	opacity: 1;
	transition: top .3s, opacity .3s, transform .3s;
}

.main-menu-btn > span:nth-child(1) {
	top: 7px;
}

.main-menu-btn > span:nth-child(2) {
	top: 15px;
}

.main-menu-btn > span:nth-child(3) {
	top: 23px;
}

.main-menu-btn.active span:nth-child(1),
.main-menu-btn.active span:nth-child(3) {
	top: 15px;
}

.main-menu-btn.active span:nth-child(1) {
	transform: rotate(-45deg);
	transform-origin: center center;
}

.main-menu-btn.active span:nth-child(3) {
	transform: rotate(45deg);
	transform-origin: center center;
}

.main-menu-btn.active > span:nth-child(2) {
	opacity: 0;
}

/*Header: phone*/
.header__phone {
	display: flex;
	align-items: center;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 17px;
	line-height: 1.52em;
	color: #FFFFFF;
}

.header__phone:before {
	content: "";
	width: 20px;
	height: 20px;
	background: url('/assets/images/elements/ico-phone.svg') center center /contain no-repeat;
	margin-right: 8px;
}

.header__phone:hover:before {
	animation: heartBeat 2s;
	
}

/*Header: navigation*/
.header-nav {
	display: none;
	width: 100%;
	height: 320px;
	background-color: #F5F5F5;
	padding: 36px 16px 23px 16px;
	position: fixed;
	top: 70px;
	left: 0;
	z-index: 100;
}

.header-nav__list {
	display: flex;
	flex-direction: column;
	height: 100%;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

li.item.active a:after{
	content: "";
	display: block;
	position: absolute;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #2E2D2D;
    transition: width 0.5s;
}

.header-nav__list a {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.2;
	color: #2E2D2D;
	transition: color .3s;
	position: relative;
}

.header-nav__list a:after {
	content: "";
	display: block;
	position: absolute;
    right: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #2E2D2D;
    transition: width 0.5s;
}

.header-nav__list a:hover:after {
	width: 100%;
	left: 0;
}

.header-nav__list .account-link__item {
	padding-left: 38px;
}

.header-nav__list .header__phone {
	font-weight: 600;
	font-size: 18px;
}

.header-nav__list .item {
	margin: 0 0 21px;
}
.header-nav__list .item.menu-extra {
	position: relative;
	padding-left: 34px;
}
.header-nav__list .item.menu-extra:before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url('/assets/images/elements/ico-time.svg') center center /contain no-repeat;
	position: absolute;
	top: calc(50% - 15px);
	left: 0;
}
.header-nav__list .item.menu-extra a {
	font-weight: 700;
}
.header-nav__list .item.top-row {
	display: block;
	margin-bottom: 30px;
}

/*Header: language*/
.lang-link {
	display: none;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.2;
	color: #2E2D2D;
	margin: 0 30px 20px 30px;
	transition: color .3s;
	position: relative;
}

.lang-link:after {
	content: "";
	display: block;
	position: absolute;
    right: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #2E2D2D;
    transition: width 0.5s;
}

.lang-link:hover:after {
	width: 100%;
	left: 0;
}

.header-nav__list .lang-link {
	display: flex;
	align-items: center;
	width: 32px;
	height: 32px;
	margin: 0;
}
/*Header: account*/
.account-link {
	display: none;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25em;
	color: #2E2D2D;
	z-index: 1;
	cursor: pointer;
	margin: 0 0 16px;
}

.header-nav__list .account-link {
	display: flex;
	border-right: 1px solid #616161;
	margin: 0;
}

.account-link__item {
	height: 30px;
	padding: 5px 0 5px 30px;
	position: relative;	
	transition: color .3s;
}

.account-link__item:before {
	content: "";
	width: 30px;
	height: 30px;
	background-color: #1D1D1B;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.account-link__item.auth:before {
	-webkit-mask: url('/assets/images/elements/ico-auth-user.svg') center center /contain no-repeat;
}

.account-link__item.auth.active:before {
	background-color: #339E36;
}

.account-link__item.not-auth:before {
	-webkit-mask: url('/assets/images/elements/ico-user.svg') center center /contain no-repeat;
}
.account-link__item > span {
	position: relative;
}

.account-link__item > span:after {
	content: "";
	display: block;
	position: absolute;
    right: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #2E2D2D;
    transition: width 0.5s;
}

.account-link__item:hover > span:after {
	width: 100%;
	color: #FF6700;
	left: 0;
}

/*Header: cart*/
.cart-link {
	display: flex;
	padding-right: 9px;
	position: relative;
	margin: 0 0 16px;
}

.cart-link__qty {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 11px;
	line-height: 1.2em;
	text-align: center;	
	color: #fff;
	background-color: #339E36;
	height: 18px;
    min-width: 18px;
    border-radius: 18px;
    padding: 3px;
	position: absolute;
	right: 0;
	transform: translateY(-50%);
}

.cart-link__ico {
	width: 30px;
	height: 30px;
	background-color: #2E2D2D;
	-webkit-mask: url('/assets/images/elements/ico-dish.svg') center center /22px no-repeat;
}


.cart-link__sum {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 18px;
	line-height: 1.2em;
	color: #FFFFFF;
	text-transform: uppercase;
}

.cart-link__sum > i {
	font-style: normal;
	font-weight: 400;
	font-size: 0.68em;
}

/*Common*/
.control-row {
	margin: 0 0 12px;
}

.control-row .input-title {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2em;
	color: #010101;
	margin: 0 0 8px;
}

.control-row .label {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2em;
	color: #696969;
	margin: 0 0 6px;
}

.control-row .label i {
	font-style: normal;
	color: #FF6700;
}

.control-row textarea,
.control-row input:not([type="checkbox"], [type="radio"]) {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 45px;
	height: 45px;
	width: 100%;
	border: 1px solid #8C8C8C;
	border-radius: 10px;
	padding: 0 16px;
}

.control-row textarea,
.control-row input {	
	color: #727272;
	background: #fff;
}

.control-row textarea.accented,
.control-row input.accented {
	border-color: #C93B3B;
}

.control-row textarea {
	line-height: 1.2em;
	min-height: 80px;
	padding: 16px;
	resize: none;
}
.control-row textarea.password-field {
	color: transparent;
	min-height: 20px;
	text-shadow: 0 0 5px rgba(0,0,0,0.95);
	padding: 12px 16px;
}
.control-row textarea.password-field.isVisible {
	color: #727272;
	text-shadow: none;
}
.control-row input::placeholder {
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.23em;
	color: #B7B7B7;
}

.control-row select {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2em;
	color: #696969;
	height: 45px;
	background: url('/assets/images/elements/ico-select.svg') right 17px center no-repeat, #FFFFFF;
	border: 1px solid #8C8C8C;
	border-radius: 10px;
	padding: 0 35px 0 16px;
}

.radio-wrapper,
.checkbox-wrapper {
	position: relative;
	margin-bottom: 8px;
}

.radio-wrapper input[type="radio"],
.checkbox-wrapper input[type="checkbox"] {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.radio-wrapper .label,
.checkbox-wrapper .label {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.2em;
	color: #696969;
	min-height: 21px;
	padding-left: 30px;
	-webkit-user-select: none;
	user-select: none;
	position: relative;
	cursor: pointer;
}

.radio-wrapper .label::selection,
.checkbox-wrapper .label::selection {
	background-color: transparent;
	color: #696969;
}

.radio-wrapper .label:before,
.checkbox-wrapper .label:before {
	content: "";
	display: inline-block;
	width: 21px;
	height: 21px;
	background: #FFFFFF;
	border: 1px solid #8C8C8C;
	border-radius: 5px;
	position: absolute;
	top: 0;
	left: 0;
	transition: border-color .3s;
}

.radio-wrapper .label.accented:before,
.checkbox-wrapper .label.accented:before {
	border-color: #C93B3B;
}

.radio-wrapper .label:after,
.checkbox-wrapper .label:after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 11px;
	background: #1D1D1B;
	border-radius: 1px;
	position: absolute;
	top: 5px;
	left: 5px;
	opacity: 0;
	transition: opacity .2s;
}

.radio-wrapper input[type="radio"]:checked + .label:after,
.checkbox-wrapper input[type="checkbox"]:checked + .label:after {
	opacity: 1;
}

.page-title h1 {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2em;
	color: #2E2D2D;
	margin: 36px 0 16px;
}

.text-box :where(h1,h2,h3,h4) {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.4em;
	color: #450A0A;
	margin: 0 0 16px
}

.text-box p {
	margin: 0 0 16px;
}

.text-box img {
	display: block;
    max-width: 100%;
    height: auto;
	margin: 24px 0;
}

.page-main-text {
	margin: 0 0 128px;
}

.bottom-text {
	max-width: 850px;
	padding: 72px 0 64px;
	margin: 0 auto;
}

.breadcrumb {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 24px 0 0;
}

.breadcrumb_item {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4em;
	text-decoration: underline;
	color: #450A0A;
}

.breadcrumb .separator {
	padding: 0 5px;
}

.breadcrumb .separator,
.breadcrumb_item:last-child {
	text-decoration: none;
	color: #727272;
}

.auth-popup-overlay,
.menu-overlay {
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(29, 29, 27, 0.8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
}

.auth-popup-overlay {
	z-index: 255;
}

/*Main page: slider*/
.main-slider {
	position: relative;
}

.main-slider .owl-dots {
	display: flex;
	justify-content: center;
	height: 40px;
	width: 100%;
	padding: 16px 0;
	position: absolute;
	left: 0;
	bottom: 0;
}

.main-slider .owl-dot {
	width: 8px;
	height: 8px;
	border-radius: 8px;
	background-color: transparent;
	padding: 0;
	margin-right: 6px;
	border: 1px solid #fff;
}

.main-slider .owl-dot.active {
	background-color: #fff;
}

.main-slider__item img {
	width: 100%;
}

/*Main page: categories content - timeline*/
.timeline {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 18px 0 23px;	
}
.menu-extra-page .timeline  {
	padding-bottom: 16px;
}
.menu-extra-page .loader-container {
	padding-top: 0;
	padding-bottom: 32px;
}
.main-page-timeline {
	margin: 0 -10px;
}

.timeline__item {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border: 1px solid #2E2D2D;
	border-radius: 100%;		
	color: #2E2D2D;
	padding: 1px;
	margin: 0 2px;
	cursor: pointer;
	transition: border-color .3s, color .3s;
}

.main-page-timeline .timeline__item {	
	width: 48px;
	height: 48px;
	margin: 0 1px;
}

@media(max-width: 359px) {
	.main-page-timeline .timeline__item {	
		width: 43px;
		height: 43px;		
	}
}

.main-page-timeline .timeline__item.weekend {
    color: #C93B3B;
}
.timeline__item.weekend

.timeline__item::selection, .timeline__item *::selection{
	background: transparent;
}

.timeline__title {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2em;
	color: #010101;
}

.timeline__item:last-child {
	margin-right: 0;
}

.timeline__item .content-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	border-radius: 100%;
	border: 1px solid #2E2D2D;
	transition: border-color .3s;
}

.timeline__item.active {
	color: #fff;
	border-color: #339E36;
	background-color: #339E36;
}

.timeline__item.active .content-wrapper {
	background-color: #339E36;
	border: 1px solid #FFFFFF;
}

.timeline__item:not(.active):hover {
	border-color: #339E36;
	color: #339E36;
}

.timeline__item:not(.active):hover .content-wrapper {
	border-color: #339E36;
}

.timeline__item .weekday {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 8px;
	line-height: 1.2em;
	margin-bottom: 2px;
}

.timeline__item .date {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 11px;
	line-height: 1.2em;
}

/*Main page: lunch content*/
.loader-container {
	padding: 40px 0 32px;
}
.b-lunch-wrapper {
	position: relative;
	box-shadow: 6px 0 4px -4px rgba(0, 0, 0, 0.1) inset, -6px 0 4px -4px rgba(0, 0, 0, 0.1) inset;
}

.dish-select_pointer {
	width: 327px;
	height: 100%;
	border: 4px solid #fade8c;
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
	margin: 0 auto;
	pointer-events: none;
}

.dish-select_pointer .title {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 11px;
	line-height: 1.2;
	color: #FFFFFF;
	text-align: center;
	background-color: #339E36;
	border-radius: 10px 10px 0px 0px;
	width: min(80%, 173px);
	padding: 12px 10px 10px;
	margin: 0 auto;
	transform: translateY(-100%);
}
.dish-select_pointer .title-option {
	display: none;
}
.dish-select {
	padding: 8px 0 16px;
	position: relative;
}
.dish-select:last-child {
	padding-bottom: 10px;
}

.dish-select .owl-nav.disabled {
	display: block !important;
}
.category-title {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	color: #2E2D2D;
	display: block;
	padding: 24px 0 16px 24px;
}
.category-title.first-title {
	padding-top: 0;
}
.owl-nav button {
	width: 50px;
	height: 50px;
	background: #FFFFFF;
	border-radius: 100px;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
	position: absolute;
	top: 25%;
	z-index: 10;
	transition: background-color .3s;
	touch-action: manipulation;
}

.owl-nav button:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #BDBDBD;
	position: absolute;
	top: 0;
	left: 0;
	transition: background-color .3s;
}



.owl-nav .owl-prev {
	left: -10px;
}

.owl-nav .owl-prev:before {
	-webkit-mask: url('/assets/images/elements/ico-arrowLeft.svg') center center /42px no-repeat;
}

.owl-nav .owl-next {
	right: -10px;
}
.loader-container {padding-left: 10px;padding-right:10px;margin:0 -10px;}
.owl-nav .owl-next:before {
	-webkit-mask: url('/assets/images/elements/ico-arrowRight.svg') center center /42px no-repeat;
}

/*Main page: categories content - add to cart lunch*/
.lunch-total {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 32px 0 0;
	padding: 0;
}

.lunch-total .qty-widget {
	width: 118px;
}

.qty-widget {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	position: relative;
}

.qty-widget__input {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	color: #1D1D1B;
	text-align: center;
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #BDBDBD;
	border-radius: 50px;
	padding: 0 25px;
	-webkit-user-select: none;
	user-select: none;
}

.qty-widget__input::selection {
	background-color: transparent;
	color: #000000;
}

.qty-widget__controls {
	width: 28px;
	height: 28px;
	background: #FFFFFF;
	border: 1px solid #BDBDBD;
	border-radius: 40px;
	position: absolute;
	z-index: 10;
	cursor: pointer;	
}

.qty-widget__controls:hover {
	background-color: #1D1D1B;
	transition: background-color .3s;
}

.qty-widget__controls:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #1D1D1B;
	position: absolute;
	top: 0;
	left: 0;
}

.qty-widget__controls:hover:after {
	background-color: #fff;
	transition: background-color .3s;
}

.qty-widget__controls.minus {
	left: -14px;
}

.qty-widget__controls.minus:after {
	-webkit-mask: url('/assets/images/elements/ico-minus.svg') center center /16px no-repeat;
}

.qty-widget__controls.plus {
	right: -14px;
}

.qty-widget__controls.plus:after {
	-webkit-mask: url('/assets/images/elements/ico-plus.svg') center center /16px no-repeat;
}

.lunch-total__amount {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 18px;
}
.lunch-total__energy {
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	color: #2E2D2D;
	margin-bottom: 24px;
}
.lunch-total__energy .value {
	display: inline-block;
	padding-left: 36px;
	position: relative;
}
.lunch-total__energy .value:before {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	background: url('/assets/images/elements/ico-fire.svg') center center /contain no-repeat;
	position: absolute;
	top: calc(50% - 16px);
	left: 0;
}
.lunch-total__amount .price {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 800;
	font-size: 25px;
	line-height: 1.2em;
	color: #696969;
}

.lunch-total__amount .price > i {
	font-style: normal;
	font-weight: 400;
	font-size: 0.68em;
	text-transform: uppercase;	
}

.lunch-total__amount .price {
	color: #004714;	
}

.lunch-total__amount .price.price__old {
	font-size: 21px;
	line-height: 1.2em;
	color: #696969;
	margin-right: 16px;
	position: relative;
}

.lunch-total__amount .price__old:after {
	content: "";
	width: calc(100% + 10px);
	height: 2px;
	background-color: #696969;
	border-radius: 2px;
	position: absolute;
	top: 50%;
	left: -5px;
}

.lunch-total_bread {
	margin: 0 0 16px;
}

.default-btn {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2em;
	text-transform: uppercase;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	width: min(100%, 367px);
	min-height: 60px;
	background-color: #2E2D2D;
	border: none;
	border-radius: 50px;
	padding: 5px 25px;
	cursor: pointer;
	transition: background-color .3s;
}

.default-btn:hover {
	background-color: #339E36;
}
/*Main page: product block*/
.product-block {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	border: 2px solid #DCDCDC;
	border-radius: 10px;
	overflow: hidden;
	transition: background-color .3s;
	_cursor: pointer;
}
.product-block.disabled {
    /*opacity: .3;
    pointer-events: none;*/
}
.product-block_img {
	position: relative;
}
.product-block_img .product-icons {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 5px;
}
.product-block_img .product-icons_item {
	width: 40px;
	height: 40px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: -5px;
	filter: drop-shadow(0px 1.14583px 3.4375px rgba(0, 0, 0, 0.5));
}
.product-block_title {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	color: #696969;
	text-align: center;
	min-height: 65px;
	padding: 5px;
	transition: color .3s;
}
.product-block.empty-product {
	background-color: #fff !important;
}
.product-block_title .product-energy {
	display: block;
	font-style: italic;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	margin: 4px 0 0;
}
.dish-select .owl-item.center {
	z-index: -1;
}

.owl-item.center .product-block {
	_background-color: #C7ECC8;
}

.owl-item.center .product-block_title {
	color: #1D1D1B;
}
.dish-select .owl-item {
	transition: opacity .45s;
}
.dish-select .owl-item:not(.center){
	opacity: .25;
}
.product-block.product-block-extra {
	background-color: #fff;
}
.product-block.product-block-extra .product-block_title {
	text-align: left;
	min-height: 0;
	padding: 16px 12px 0 16px;
}
.product-block.product-block-extra .product-energy {
	padding-left: 25px;
	    margin: 4px 0 8px;
	position: relative;
}
.product-block.product-block-extra .product-energy:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url('/assets/images/elements/ico-fire.svg') center center /contain no-repeat;
	position: absolute;	
	top: calc(50% - 10px);
	left: 0;
}
.product-block_price {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-size: 18px;
	line-height: 1.2;
	color: #696969;
	padding: 0 16px 16px;
}
.product-block_price .value {
	font-weight: 600;
}
.product-block_price .curr {
	font-weight: 400;
	font-size: 0.83em;
	text-transform: uppercase;
}
.product-block_btn {
	font-size: 14px;
	text-transform: initial;
    width: min(100%, 140px);
	min-height: 38px;
    padding: 5px 18px;
    margin: auto auto 16px auto;
}

.owl-item.active .product-block.product-block-extra .product-block_title {
	color: #1D1D1B;
}

/*Popup: product description*/
.popup-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 250;	
	pointer-events: none;
}

.popup-box {
	width: min(100%, 1128px);
	max-height: calc(100% - 40px);
	border-radius: 15px;
	background-color: #F5F5F5;
	position: relative;
	z-index: 1;
	overflow-y: auto;
	overflow-x: hidden;
	pointer-events: auto;
	margin: 20px;
}

.popup-box:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url('/assets/images/backgrounds/bg-popup.png') center center repeat;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.3;
}

.popup-content {
	--bs-gutter-x: 36px;
}

.popup-close-bnt {
	width: 48px;
	height: 48px;
	background-color: #696969;
	-webkit-mask: url('/assets/images/elements/ico-close.svg') center center /32px no-repeat;
	border: none;
	position: absolute;
	top: 8px;
	right: 9px;
	cursor: pointer;
	transition: background-color .3s;
}

.popup-close-bnt:hover {
	background-color: #1D1D1B;
}

.popup-image {
	padding: 56px 20px 14px 20px;
}

.popup-image img {
	border-radius: 10px;
	margin: 0 auto;
}

.popup-title {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2em;
	color: #1D1D1B;
}
/*Product popup*/
.product-popup-info {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 20px 20px;
}

.product-popup-info .popup-title {
	border-bottom: 1px dashed #BDBDBD;
	padding: 0 0 24px;
	margin: 0 0 16px;
}
.product-popup-info .product-weight {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25;
	color: #2E2D2D;
	margin-right: 24px;
}
.product-popup-info .product-energy {
	font-style: italic;
	font-size: 16px;
	line-height: 1.25;
	color: #2E2D2D;
}
.product-popup-info .text-box {
	flex: 1 0 auto;
	margin: 30px 0 0;
}

.popup-box .product-options {
	padding: 0 0 20px;
}
.popup-box .size-select-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: 0;
}

.popup-box .size-select-wrapper .input-title {
	margin: 0 0 10px;
}

.popup-box .size-select-wrapper select {
	width: min(100%, 258px);
}

.product-popup-info .timeline {
	padding: 0 0 52px;
}

.product-popup-info .timeline__title {
	margin: 0 0 16px;
}

.product-popup-info .timeline__item {
	width: 80px;
	height: 80px;
	margin-right: 6px;
}

.product-popup-info .timeline__item.active {
	border-color: #629B1A;
    background-color: #629B1A;
}

.product-popup-info .timeline__item.active .content-wrapper {
	background-color: #629B1A;
}

.product-popup-info .timeline__item .weekday {
	font-size: 12px;
	line-height: 1.25em;
}

.product-popup-info .timeline__item .date {
	font-size: 14px;
	line-height: 1.23em;
}

.product-popup-info .price {
	display: flex;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 28px;
	line-height: 1.2em;
	color: #333333;
	_margin: 0 0 16px;
}

.product-popup-info .price i {
	font-style: normal;
	font-weight: 400;
	font-size: 0.68em;
	text-transform: uppercase;
}


.product-popup__btn {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25em;
	width: min(100%, 290px);
	min-height: 60px;
	background-color: #FF6700;
	border-color: #FF6700;
}

/*Contacts page*/
.contacts-page {
	margin: 0 0 128px;
}

.contacts-page .page-title h1 {
	margin: 36px 0 32px;
}
/*Contacts page: address*/
.contacts-page__info .address {
	list-style-type: none;
	border-top: 1px dashed #BDBDBD;
	border-bottom: 1px dashed #BDBDBD;
	padding: 34px 0 36px;
	margin: 0;
}

.contacts-page__info .address__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.4em;
	color: #1D1D1B;
	padding-left: 49px;
	position: relative;
}

.contacts-page__info .address__item:before {
	content: "";
	width: 37px;
	height: 37px;
	background-color: #339E36;
	position: absolute;
	left: 0;
}

.contacts-page__info .title {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.5em;
	color: #696969;
}

.contacts-page__info .phone {
	font-weight: 600;
	font-size: 19px;
	margin-bottom: 24px;
}

.contacts-page__info .phone:before {
	-webkit-mask: url('/assets/images/elements/ico-phone.svg') center center /contain no-repeat;
}

.contacts-page__info .location:before {
	-webkit-mask: url('/assets/images/elements/ico-location.svg') center center /contain no-repeat;
}
/*Contacts page: requisites*/
.contacts-page__info .text-box {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.4em;
	color: #1D1D1B;
	padding: 36px 0;
	border-bottom: 1px dashed #BDBDBD;
}

.contacts-page__info .text-box p {
	margin: 0 0 7px;
}
/*Contacts page: seo text*/
.contacts-page__text {
	padding: 36px 0;
}
/*Contacts page: contact form*/
.order-registration__form {
	max-width: 350px;
	margin: 36px 0 0;
}

.form-title {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.22em;
	color: #1D1D1B;
	margin: 0 0 20px;
}

.contact-form__btn {
	width: 100%;
	margin: 4px 0 0;
}
/*Cart page*/
.cart-page {
	margin: 0 0 128px;
}

.cart-page .page-title h1 {
	margin-bottom: 40px;
}
/*Cart page: order registration*/
.order-registration-wrapper {
	overflow: hidden;
}
.order-registration-wrapper > .row {
	--bs-gutter-x: 46px;
}

.order-registration {
	padding-bottom: 10px;
}

.order-registration__date {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 16px;
	line-height: 1.25em;
	color: #339E36;
	padding: 10px 5px 8px 5px;
	border-bottom: 1px dashed #BDBDBD;
}

/*Cart page: product list*/
.order-registration__products {
	list-style-type: none;
	padding: 16px 0 0;
	margin: 0;
}

.ordered-product {
	border-bottom: 1px dashed #BDBDBD;
	padding: 0 40px 16px 0;
	margin: 0 0 16px;
	position: relative;
}

.ordered-product__info {
	padding: 0 16px 0 0;
	_margin: 0 0 10px;
}

.ordered-product__info .img-wrapper {
	flex: 0 0 auto;
    width: 124px;
	height: 92px;
	margin: 0 0 12px;
}

.ordered-product__info img {
	width: 100%;
	height: 100%;
	object-fit: cover;	
	border-radius: 10px;
}

.ordered-product__info .description {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.ordered-product__info .description__title {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25em;
	color: #1D1D1B;
	margin: 0 0 4px;
}

.ordered-product__info .description__item {
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2em;
	color: #696969;
}

.ordered-product .qty-widget {
	width: 90px;
	margin: 0 8px 10px 8px;
}

.ordered-product .qty-widget__input {
	font-size: 14px;
	height: 35px;
	line-height: 35px;
	padding: 0 17px;
}

.ordered-product .qty-widget__controls {
	width: 22px;
	height: 22px;
}

.ordered-product .qty-widget__controls.minus {
	left: -8px;
}

.ordered-product .qty-widget__controls.minus:after {
    -webkit-mask: url('/assets/images/elements/ico-minus.svg') center center /13px no-repeat;
}

.ordered-product .qty-widget__controls.plus {
	right: -8px;
}

.ordered-product .qty-widget__controls.plus:after {
    -webkit-mask: url('/assets/images/elements/ico-plus.svg') center center /13px no-repeat;
}

.ordered-product__price {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 20px;
	line-height: 1.2em;
	color: #696969;
	text-align: left;
	padding: 0 8px;
}

.ordered-product__price i {
	font-style: normal;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.2em;
	text-transform: uppercase;
}
.ordered-product__price .product-energy {
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	color: #696969;
	display: block;
	margin: 8px 0 0;
}
.ordered-product__btn {
	width: 32px;
	height: 32px;
	background-color: #696969;
	-webkit-mask: url('/assets/images/elements/ico-close.svg') center center /contain no-repeat;
	position: absolute;
	right: 0;
	cursor: pointer;
	transition: background-color .3s;
}

.ordered-product__btn:hover {
	background-color: #1D1D1B;
}

.order-registration__total {	
	padding: 0 40px 0 0;
	margin: 28px 0 0 0;
}

.order-registration__total .title {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25em;
	color: #1D1D1B;
	text-align: right;
	padding-right: 30px;
	padding-bottom: 8px;
}
.order-registration__total .energy-title {
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	color: #696969;
	padding-right: 30px;
}

.order-registration__total .sum {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 24px;
	line-height: 1.2em;
	color: #1D1D1B;
	padding-bottom: 8px;
}
.order-registration__total .energy-sum {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25;
	color: #696969;
}
/*Cart page: order form*/
.order-options {
	padding: 12px 0;
}

.order__btn {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25em;
	width: 100%;
	min-height: 50px;
}

/*Cart page: user info*/
.order-registration__info {
	max-width: 350px;
	margin-top: 48px;
}

.order-registration__info .info-title {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	color: #696969;
	margin: 0 0 13px;
}

.order-registration__info .user-info {
	background-color: #FFFFFF;
	border: 1px solid #BDBDBD;
	border-radius: 10px;
	padding: 26px 16px;
	margin: 0 0 16px;
}

.order-registration__info .title {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	color: #696969;
}

.order-registration__info .user-info__id {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	color: #339E36;
}

.order-registration__info .user-info__company {
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	color: #3E3E3E;
}

.order-registration__info .separator {
	border-top: 1px dashed #BDBDBD;
	margin: 16px -2px 24px -2px;
}

.order-registration__info .user-info__name {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 19px;
	line-height: 23px;
	color: #1D1D1B;
	margin: 6px 0 13px 0;
}

/*Account page*/
.account-page {
	margin: 0 0 128px;
}

.account-page .default-btn {
	min-height: 32px;
	width: auto;
	min-width: 135px;
	padding: 5px 16px;
	margin: 0 0 16px;
}

.account-page .page-title h1 {
	margin-bottom: 48px;
}

.greeting {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2em;
	color: #1D1D1B;
	margin: 0 0 16px;
}

.greeting__username {
	color: #339E36;
}

.logout-btn {
	display: inline-block;
    background-color: #C93B3B;
	line-height: 1.6;
	font-weight: 500;
	    min-width: 72px !important;
	min-height: 32px;
	width: auto;
	text-transform: none;
	position: relative;
	top: 12px;
}
.account-page .page-title h1 {
	margin-top: 16px !important;
}
.user-orders {
	--bs-gutter-x: 20px;
}

.user-orders__header {
	border-bottom: 1px solid #C8C8C8;
	padding: 56px 0 26px 32px;
}

.user-orders__header .timeline {
	justify-content: flex-start;
	padding: 0;
}

.user-orders__header .timeline__item {
	pointer-events: none;
	position: relative;
}

.user-orders__header .timeline__item:after {
	content: "";
	display: block;
    border-bottom: 12px solid #C8C8C8;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    position: absolute;
    left: 50%;
    bottom: -27px;
    transform: translateX(-50%);
}


.user-orders__header .order-sum {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 800;
	font-size: 25px;
	line-height: 1.2em;
	color: #450A0A;
	text-align: center;
	min-width: 90px;
}

.user-orders__header .order-sum i {
	font-style: normal;
	font-weight: 500;
	font-size: 0.68em;
	text-transform: uppercase;
}

.user-orders__list {
	list-style-type: none;
	padding: 38px 0 0;
	margin: 0;
}

.user-orders__list .ordered-product {
	padding-right: 0;
}

.user-orders__list .ordered-product:last-child {
	border: none;
}

.user-orders__list .qty-widget.completed {
	margin: 12px 0 8px;
}
@media(min-width:768px){
	.user-orders__list .qty-widget.completed {
		margin: 0 0 8px;
	}
}

.user-orders__list .qty-widget.completed input {
	background-color: #E7E7E7;
}
.ordered-product__info .description__item.item-rating .menu-item {
	min-height: 28px;
}
.order-rating-title{display:block;font-family:'Montserrat',sans-serif;font-style:normal;font-weight:700;font-size:16px;line-height:1.25;color:#450A0A;margin-bottom:5px}
.order-rating{display:flex;align-items:center;}
.order-rating_item{width:20px;height:20px;margin-right:8px;position:relative;cursor:pointer}
.order-rating_item:before,.order-rating_item:after{content:"";display:block;width:100%;height:100%;background:url(/assets/images/elements/ico-rating-star.svg) center center /contain no-repeat;position:absolute;top:0;left:0;opacity:1}
.order-rating_item:after{background:url(/assets/images/elements/ico-rating-star_active.svg) center center /contain no-repeat;opacity:0}
.order-rating_item.active:before{opacity:0}
.order-rating_item.active:after{opacity:1}
.order-rating_item:last-child{margin-right:0}
.lunch-rating{padding:0 0 5px}
.lunch-rating .order-rating{min-height:28px;padding:5px 0 0}
.lunch-rating .order-rating_item{width:20px;height:20px}
@media(min-width:576px) {
	.lunch-rating {
		padding: 18px 0 0;
	}
}
@media(min-width:768px){
	.order-rating-title,
	.order-rating {
		margin-right: 10vw;
	}
}
@media(min-width:1200px){
	.order-rating-title,
	.order-rating {
		margin-right: 288px;
	}
}
/*Authorization pop-up*/
.auth-popup-wrapper {
	z-index: 300;
}

.auth-popup {
	width: min(100%, 794px);
	_height: 540px;	
	padding: 48px 0 30px;
}
.auth-popup .control-row {
	position: relative;
}

.auth-popup__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 396px;
	height: 100%;
	padding: 0 15px;
	margin: 0 auto;
}

.auth-popup__content .popup-title {
	text-align: center;
	margin: 0 0 16px;
}

.auth-popup__content .text-box {
	font-size: 15px;
	text-align: center;
	margin: 0 0 42px;
}

.auth-popup__btn {
	min-height: 60px;
}

/*Footer*/
@media (min-width: 1200px) {
    #page {
        min-height:100vh;
        padding-bottom: 340px;
    }

    .footer {
        min-height: 340px;
        margin-top: -340px;
    }
}

.footer {
	background: url('/assets/images/backgrounds/bg-footer.png') center center /cover, #2E2D2D;
}
/*Footer: navigation*/
.footer__top {
	border-top: 1px solid #313131;
	border-bottom: 1px solid #313131;
}

.footer__top > .container-fluid,
.footer__top .row,
.footer-nav {
	height: 100%;
}

.footer__top .row {
	--bs-gutter-x: 20px; 
}

.footer-nav {
	list-style-type: none;
	padding: 0;
	margin: 36px 0 0;
}

.footer-nav a {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.2;
	color: #F5F5F5;
	position: relative;
}

.footer-nav a:after {
	content: "";
	display: block;
	position: absolute;
    right: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #F5F5F5;
    transition: width 0.5s;
}

.footer-nav a:hover:after {
	width: 100%;
	left: 0;
}

.footer-nav .item:not(:last-child) {
	margin: 0 0 24px;
}
/*Footer: contacts*/
.footer__main {
	padding: 64px 0;
}

.footer__main .row {
	--bs-gutter-x: 10px;
}

.footer-contacts {
	list-style-type: none;
	padding: 0;
	margin: 10px 0 0;
}

.footer-contacts_item {
	padding-left: 45px;
	position: relative;
}

.footer-contacts_item:first-child {
	margin: 0 0 30px;
}

.footer-contacts_item .title {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.5;
	color: #D9D9D9;
}

.footer-contacts_item a {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 23px;
	line-height: 1.52;
	color: #FFFFFF;
}

.footer-contacts_item strong {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
}

.footer-contacts_item:before {
	content: "";
	display: block;
	width: 37px;
	height: 37px;
	background-color: #339E36;
	position: absolute;
	top: 8px;
	left: 0;
}

.footer-contacts_item.phone:before {
	-webkit-mask: url('/assets/images/elements/ico-phone.svg') center center /contain no-repeat;
}

.footer-contacts_item.location:before {
	-webkit-mask: url('/assets/images/elements/ico-location.svg') center center /contain no-repeat;
}

.footer-contacts_item.phone:hover:before {
	animation: heartBeat 2s;
}
/*Footer: social links*/
.footer__main .social-links {
	margin: 24px 0 0;
}

.social-links__item {
	width: 40px;
	height: 40px;
	border: 1px solid #339E36;
	border-radius: 40px;
	background-color: transparent;
	margin: 0 16px 0 0;
	position: relative;
}

.social-links__item:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #339E36;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.social-links__item:hover {
	background-color: #339E36;
	transition: background-color .3s;
	
}

.social-links__item:hover:before {
	background-color: #2E2D2D;
	transition: background-color .3s;
}

.social-links__item:last-child {
	margin: 0;
}

.social-links__item.facebook:before {
	-webkit-mask: url('/assets/images/elements/ico-facebook.svg') center center /12px no-repeat;
}

.social-links__item.instagram:before {
	-webkit-mask: url('/assets/images/elements/ico-instagram.svg') center center /29px no-repeat;
}
/*Footer: subscribe*/
.subscribe-form {
	width: 100%;
	margin: 36px 0 0;
	position: relative;
}

.subscribe-form:before {
	content: "";
	width: calc(100% + 1.5rem);
	height: 1px;
	background-color: #313131;
	position: absolute;
	top: 0;
	left: -0.75rem;
}

.subscribe-form .label {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.2em;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.subscribe-form .control-row {
	margin: 0;
	position: relative;
}

.subscribe-form .label,
.subscribe-form .control-row {	
	max-width: 450px;
}

.subscribe-form .control-row input {
	color: #fff;
	background: #2E2D2D;
	border: 1px solid #8C8C8C;
	padding-right: 42px;
	transition: border-color .3s;
}


.subscribe-form .control-row.accented input {
	border-color: #C93B3B;
}

.subscribe-form__button {
	width: 42px;
	height: 100%;
	background: transparent;
	border: none;
	border-radius: 10px;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}

.subscribe-form__button:after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 5px;
	background-color: #339E36;
	-webkit-mask: url('/assets/images/elements/ico-send.svg') center center /contain no-repeat;
	position: absolute;
	top: 13px;
	right: 13px;
	transition: background-color .3s;
}

.subscribe-form__button:hover:after {
	background-color: #014E16;
}
.local-cover {
	background: url(/assets/images/backgrounds/bg-body.png) center center repeat,  #f5f5f5;
}
.local-cover:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url('/assets/images/elements/loader.svg') top center /500px no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.payment-ico {
    margin: 12px 0 0;
}
.payment-ico img {
	height: 28px;
}
/*Footer: copyright*/
.footer__bottom {
	height: 40px;
	border-top: 1px solid #666666;
	padding: 11px 0;
}

.copyright {
	display: flex;
	align-items: center;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.4em;
	color: #8D8D8D;
}

.copyright:before {
	content: "";
	width: 15px;
	height: 15px;
	background: url('/assets/images/elements/ico-copyright.svg') center center /contain no-repeat;
	margin-right: 3px;
}
#restore-pass-email .auth-popup__btn {
	margin: 24px 0 0;
}
.set-new-password-form {
	margin: 0 0 32px;
}
.policy-checkbox {
	display: none;
	margin: 0 0 24px;
}
.pay-inline {
	display: flex;
    align-items: center;
	background: #e9e9e9;
    border: 1px solid #666666;
    color: #555;
	margin: 0 0 16px;
}
.pay-inline:hover {
	color: #fff;
}
.pay-inline.active {
	color: #fff;
	background: #0089ff;
    border: 1px solid #0089ff;
}
.pay-inline:not(.active) .fa-check-square {
	display: none;
}
.pay-inline.active .fa-square {
	display: none;
}
@media(min-width: 375px) {
.main-menu-btn{margin-right:28px}
.account-link{display:flex;margin-right:30px}
.lang-link{display:flex;}
.header-nav__list .item.top-row{display:none}
.category-carousel button{top:35px}
.main-page-timeline .timeline__item {margin: 0 2px;}
}
@media(min-width: 576px) {
.product-block_img .product-icons_item {
	width: 55px;
	height: 55px;
	margin-right: -10px;
}
.product-block_title {font-size: 14px;padding:14px}
.dish-select_pointer .title{font-size: 15px}
.cart-link{padding-right:17px;margin: 0 0 20px;}
.cart-link__qty{font-size:13px;height:23px;min-width:23px;border-radius:23px;padding:4px}
.cart-link__ico{-webkit-mask-size: contain}
.category-carousel button{top:22%}
.main-page-timeline .timeline__item,.timeline__item{width:55px;height:55px}
.main-page-timeline {margin: 0;}
.ordered-product__info{margin:0}
.ordered-product__info .description{padding:0 0 0 20px;margin:0}
.ordered-product .qty-widget{margin:0 8px}
.ordered-product__price{text-align:center}
.product-popup-info .timeline__item{width:110px;height:110px;padding:3px}
.product-popup-info .timeline__item .weekday{font-size:16px}
.product-popup-info .timeline__item .date{font-size:22px}
.popup-title{font-size:25px}
.footer-nav{margin: 20px 0 0;}
.copyright{font-size:14px}
.product-block_btn {
	font-size: 15px;
    width: min(100%, 155px);
}
.dish-select .owl-item:not(.center){
	opacity: 1;
}
.dish-select .owl-item:not(.active){
	opacity: .25;
}
}
@media(min-width: 768px) {
.category-carousel button{top:40px}
.product-title{font-size:18px}
.product-price{font-size:25px;margin-left:16px}
.product-block__info{min-height:70px;margin:26px 16px 10px}
.lunch-total .qty-widget{width:162px}
.qty-widget__input{font-size:22px;height:55px;line-height:55px}
.qty-widget__controls{width:40px;height:40px}
.qty-widget__controls.minus{left:-20px}
.qty-widget__controls.plus{right:-20px}
.lunch-total__amount .price{font-size:35px}
.lunch-total__amount .price.price__old{font-size:30px;margin-right:22px}
.lunch-total__energy{margin-bottom:46px}
.lunch-total .default-btn{font-size:18px;min-height:70px}
.popup-image img{max-height: 100%;}
.popup-box .product-options{padding:0 0 38px}
.product-popup-info{padding:72px 53px 42px 0}
.product-popup-info .price{font-size:40px}
.contacts-page__info .phone{margin-bottom:0}
}
@media(min-width: 992px) {
.product-block_btn {width: min(100%, 173px);}
.product-block_title {font-size: 17px;}
.category-carousel .item{padding:24px 0 45px}
.category-carousel button{--btn-size:50px;top:60px}
.category-carousel__title{font-size:18px}
.category-content__list{--bs-gutter-x:24px}
.timeline{padding:24px 0 40px}
.main-page-timeline .timeline__item,.timeline__item{width:120px;height:120px;padding:3px;margin:0 8px}
.timeline__item .weekday{font-size:18px}
.timeline__item .date{font-size:24px}
.product-popup-info .timeline__title{margin:0}
.product-popup-info .price{margin:0}
.popup-box .size-select-wrapper{align-items:center}
.popup-box .size-select-wrapper .input-title{margin:0 36px 0 0}
.popup-image{padding:48px 0 48px 42px}
.footer__top{height:76px}
.footer__logo{margin-bottom:16px}
.footer__logo img{height:auto}
.subscribe-form{margin:0}
.subscribe-form:before{display:none}
.order-registration__info{margin: 0;}
.bottom-text {padding: 72px 0 128px;}
}
@media(min-width: 1200px) {
.header__logo img{max-height:3.29vw}
.header__main{max-width:1024px;/*margin:0 auto*/}
.header-nav{display:block!important;width:auto;height:auto;padding:0 0 20px;position:static}
.header-nav__list{flex-direction:row}
.header-nav__list .item{margin:0 48px 0 0}
.header-nav__list .item.menu-extra{margin:0 26px 0 0}
.header-nav__list .item:last-child{margin:0}
.account-link{margin-right:0}
.account-link__item{padding:5px 0 5px 38px}
.lang-link{margin:0 0 22px 58px}
.cart-link{height:50px;background-color:#339E36;border-radius:50px 0 0 50px;padding:13px 8px 13px 25px;margin:auto 0;position:absolute;top:0;bottom:0;right:0;transform:translateX(calc(100% - 52px));transition:transform .3s;box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);}
.cart-link.active{transform:translateX(0)}
.cart-link__ico{width:20px;height:20px;margin-right:11px; background-color: #fff}
.cart-link__qty{font-weight:700;color:#2E2D2D;background-color:#fff;right:auto;left:0;transform:translateX(-50%)}
.owl-nav button {width:70px;height:70px;}
.popup-box__content .btns-wrapper{margin-top:0}
.order-registration__form{margin:0}
.popup-box{margin:36px 12px;}

.dish-select .owl-item:not(.active){
	opacity: 0;
}
.owl-nav .owl-prev {left:10px;}
.owl-nav .owl-next {right:10px;}
.b-lunch-wrapper {
	box-shadow: none;
}
.category-title {
	padding: 24px 0 16px 96px;
}
.owl-nav button:hover {
	background-color: #F5F5F5;
}

.owl-nav button:hover:before {
	background-color: #2E2D2D;
}
}
@media(min-width: 1400px) {
.header__main{max-width:100%}
.owl-nav button {width:100px;height:100px;top:70px}
.owl-nav .owl-prev {left:-50px;}
.owl-nav .owl-next {right:-50px;}
.owl-nav .owl-prev {left:-20px;}
.owl-nav .owl-next {right:-20px;}
.loader-container {padding-left: 50px;padding-right: 50px;margin:0 -50px;}
}
@media(min-width: 1600px) {
	/*.header-nav__list .item{margin:0 36px 0 0}*/
	.header-nav__list .item.menu-extra{margin:0 46px 0 0}
}




.product-block_img img, .lunch-item img{
	cursor: pointer;
}









.with-cutlery {
	display: flex;
    align-items: center;
	background: #e9e9e9;
    border: 1px solid #666666;
    color: #555;
	margin: 0 0 16px;
}
.with-cutlery:hover {
	color: #fff;
}
.with-cutlery.active {
	color: #fff;
	background: #0089ff;
    border: 1px solid #0089ff;
}
.with-cutlery:not(.active) .fa-check-square {
	display: none;
}
.with-cutlery.active .fa-square {
	display: none;
}




.notice-popup{
	width: 656px;
	max-width: 100%;
	padding: 8px;
	border-radius: 15px;
	min-height: 200px;
	overflow: visible;
	background: #fff;
	margin-top: 65px;
}
.notice-popup .popup-box:before{
	display: none !important;
}
.notice-popup .popup-close-bnt{
	top: -40px;
	right: -40px;
	background: #fff;
}

.notice-popup .img-promo{
	background-size: cover;
	background-repeat: no-repeat;
	aspect-ratio: 1.5;
	border-radius: 7px 7px 0 0;
	position: relative;
}
.notice-popup .img-promo:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.notice-popup .txt-message{
	color: #727272;
	padding: 8px;
	margin-top: -70px;
	z-index: 5;
	position: relative;
}

.notice-popup .txt-message h2{
	color: #1D1D1B;
}

.notice-popup .txt-message p{
	width: 485px;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

.notice-popup .action-button{
	text-align: center;
	padding-bottom: 35px;
}

.notice-popup .action-button a{
	display: inline-block;
	height: 38px;
	line-height: 38px;
	cursor: pointer;
	border-radius: 38px;
	background: #2E2D2D;
	color: #fff;
	padding: 0 32px;
}

@media(max-width: 430px){
	.notice-popup-wrap{
		padding: 8px;
	}
	.notice-popup .popup-close-bnt{
		top: -44px;
    	right: -10px
	}
	.notice-popup{
		margin-top: 42px;
	}
}

@media(min-width: 576px){
	.pop-share-button{
		display: none;
	}
}
.d-share{
	display: none;
}
@media(min-width: 576px){
	.d-share{
		display: block;
	}
}







