@import url('../plugins/plugins.css?v=1.1.2');
:root{
	--c-black:#282829;
	--c-cream:#fff5e9;
	--c-peach:#E8DCC6;
	--c-green:#58833F;
	--c-green-blue:#D8E4D6;
	--c-green-light:#DEEF21;
	--c-green-dark:#2E4123;
	--c-gray:#CACACA;
	--font-family: Muller, Tahoma, Arial, Helvetica, Verdana, sans-serif;
	--font-size:14px;
	--font-size-18:18px;
	--font-size-12:12px;
	--font-size-10:10px;

	--get-color1:#69DC4C;
	--get-color2:#EB6F29;
	--get-color3:#23221F;
	--get-color4:#F5CA2F;
	--get-color5:#FF5674;
	--get-color6:#FFFFFF;
	--get-color7:#FF0000;
	--get-color8:#E6E6E6;
	--scroll-fix:0;
}
html {
	scroll-behavior: smooth;
}
body{
	font-family: var(--font-family);
	font-size: var(--font-size);
	line-height:1.3;
	color: var(--c-black);
	height:100%;
	min-height: 100vh;
	position:relative;
	background:var(--c-cream);
}
main{
	min-height:calc(100vh - 105px);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, .fw-bold, b, strong {
	font-weight: 700;
}
.fs-18{
	font-size:var(--font-size-18);
}
.fs-12{
	font-size:var(--font-size-12);
}
.fs-10{
	font-size:var(--font-size-10);
}
.hide{
	display:none !important;
}
.btn {
	--bs-btn-font-weight: 700;
	--bs-border-radius:68px;
	--bs-btn-line-height: 16px;
	--bs-btn-font-size: 16px;
	padding:14px 20px 11px 20px;
	--bs-btn-border-width:1px;
	display:inline-flex;
	align-items:center;
	height:54px;
	--bs-btn-disabled-opacity:1;
}
.btn span{
	font-weight: 500;
}
.btn-lg {
	height:56px;
	--bs-border-radius-lg:68px;
}
.btn-100{
	width:355px;
	display:flex;
	max-width:100%;
	position:relative;
	text-overflow:ellipsis;
}
.btn-outline-secondary {
	--bs-btn-color: var(--c-black);
	--bs-btn-border-color:rgba(40, 40, 41, 0.2);
	--bs-btn-hover-color: var(--c-black);
	--bs-btn-hover-bg: var(--c-cream);
	--bs-btn-hover-border-color: var(--c-black);
	--bs-btn-active-color: var(--c-black);
	--bs-btn-active-bg: var(--c-cream);
	--bs-btn-active-border-color: var(--c-black);
	--bs-btn-disabled-color: var(--c-gray);
	--bs-btn-disabled-bg: var(--c-gray);
	--bs-btn-disabled-border-color: rgba(40, 40, 41, 0.2);
}
.btn-outline-secondary.active,
.btn-success {
	--bs-btn-color: var(--c-cream);
	--bs-btn-bg: var(--c-green-dark);
	--bs-btn-border-color: var(--c-green-dark);
	--bs-btn-hover-color: var(--c-cream);
	--bs-btn-hover-bg: var(--c-green-dark);
	--bs-btn-hover-border-color: var(--c-green-dark);
	--bs-btn-active-color: var(--c-cream);
	--bs-btn-active-bg: var(--c-green);
	--bs-btn-active-border-color: var(--c-green);
	--bs-btn-disabled-color: var(--c-cream);
	--bs-btn-disabled-bg: var(--c-gray);
	--bs-btn-disabled-border-color: var(--c-gray);
}
.btn-outline-secondary.active{
	--bs-btn-active-bg: var(--c-green-dark);
	--bs-btn-active-border-color: var(--c-green-dark);
}
.btn-outline-secondary.active:active{
	--bs-btn-active-bg: var(--c-green);
	--bs-btn-active-border-color: var(--c-green);
}

.header{
	background:var(--c-peach);
	position:sticky;
	top:0;
	z-index:1000;
	border-bottom:2px solid var(--c-cream);
}
.header img{
	width:100px;
}
.header a{
	height:62px;
	align-items:center;
	justify-content:center;
}
.menu-dishes-wrap{
	position: relative;
	overflow-x: unset;
}
.menu-nav-links{
	overflow-x:auto;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	margin-right:calc(var(--bs-gutter-x)/2*-1);
	margin-left:calc(var(--bs-gutter-x)/2*-1);
	position: sticky;
	top: 60px;
	background: var(--c-cream);
	z-index:5;
	box-shadow:0 2px 2px var(--c-cream);
}
.menu-nav-link::-webkit-scrollbar {
	display: none;
}
.menu-nav-tab{
	gap:10px;
	padding-left:calc(var(--bs-gutter-x)/2);
	padding-right:calc(var(--bs-gutter-x)/2);
	min-width: fit-content;
}
.menu-nav-tab.with-owl{
	gap:0;
	padding-left:0;
	padding-right:0;
	min-width: auto;
}
.owl-carousel_nav .owl-dots{
	display:none;
}
.with-owl .owl-carousel .owl-stage-outer{
	padding:0 20px 0 8px;
}
.menu-nav-links .btn{
	height:38px;
	--bs-btn-line-height: 14px;
	--bs-btn-font-size: 14px;
}
.menu-dish-inner{
	border-radius: 10px;
	padding: 20px;
	background: var(--c-peach);
	height: 100%;
	display:flex;
	flex-direction:column;
	cursor:pointer;
}
.dish-img-wrap{
	position:relative;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	height:240px;
}
.dish-img-wrap img{
	max-width:100%;
	object-fit:contain;
}
.dish-tags{
	position:absolute;
	top:10px;
	left:10px;
}
.dish-tags > span{
	border-radius: 68px;
	padding: 9px 12px 7px 12px;
	background:var(--c-green-light);
	color: var(--c-green-dark);
	font-weight:bold;
}
.dish-title{
	font-size:var(--font-size-18);
}
.dish-description{

}
.dish-params{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-top:auto;
}
.dish-kkal{
	color: rgba(47, 66, 36, 0.6);
}
.e-icon{
	border:none;
	background:transparent;
	outline:none;
	padding:0;
	width:14px;
	height:14px;
	vertical-align:top;
}
.e-icon.icon-info{
	background:url("../img/info.svg") no-repeat center center;
}
.e-tooltip {
	--bs-tooltip-bg: var(--c-green-light);
	--bs-tooltip-color: var(--c-black);
	--bs-tooltip-opacity: 1;
	z-index:2;
}

.cart-wrap{
	position:sticky;
	bottom:15px;
	z-index:10;
}
.modal-pm {
	--bs-modal-width: 680px;
	--bs-modal-padding: 0 10px 10px 10px;
	--bs-modal-bg: var(--c-cream);
	--bs-modal-border-color: var(--c-cream);
	--bs-modal-border-width: 0;
	--bs-modal-header-padding-x: 10px;
	--bs-modal-header-padding-y: 20px;
	--bs-modal-header-padding: 20px 10px;
	--bs-modal-header-border-color: var(--c-cream);
	--bs-modal-header-border-width: 0;
}
.menu-dish-inner-lg {
	border-radius: 0;
	padding: 0;
	background: transparent;
	height: auto;
	cursor:auto;
}
.modal-pm .dish-img-wrap img {
	max-height: 420px;
}
.e-btn{
	border:none;
	background:transparent;
	display:inline-flex;
	align-items:center;
	width:50px;
	height:50px;
	background-size:contain;
	transition:opacity 0.15s linear;
}
.e-btn:active, .e-btn:hover{
	opacity:0.5;
}
.e-btn-close{
	background:var(--c-cream) url("../img/close.svg") no-repeat center center;
}
.e-btn-back{
	background:var(--c-cream) url("../img/back.svg") no-repeat center center;
}
.steps .step{
	opacity:0;
	visibility:hidden;
	transition:visibility 0.15s linear, opacity 0.15s linear;
	overflow: hidden;
	height: 0;
}
.steps .step.active{
	opacity:1;
	visibility:visible;
	height: auto;
	overflow: visible;
}
.menu-dish-inner-sm .dish-img-wrap {
	height: 150px;
}
.modal-pm.modal-dish .modal-header {
	z-index: 100;
	background: rgba(255, 245, 233, 0.9);
}
.modal-pm.modal-dish .modal-body {
	margin-top: -90px;
	padding-top: 90px;
}
.sticky-btns-wrap{
	height:90px;
}
.sticky-btns{
	box-shadow: 10px -6px 24px 0 rgba(0, 0, 0, 0.1);
	background: var(--c-cream);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
}
.modifier-item{
	text-align:center;
	border-radius: 10px;
	padding: 10px;
	background:var(--c-peach);
	min-height:122px;
	height:100%;
	display:flex;
	flex-direction:column;
}
.modifier-item.selected, .modifiers-selected .modifier-item{
	background:var(--c-green-blue);
}
.modifier-img{
	margin-top:auto;
	height:50px;
	position:relative;
	overflow:hidden;
}
.modifier-img img{
	height:50px;
	width:auto;
}
.modifier-name{
	line-height:1.1;
}
.modifier-group-name{
	line-height:1.2;
	color: rgba(40, 40, 41, 0.5);
	padding:5px 0;
}
.modifier-count{
	height:24px;
	margin:-4px auto 0 auto;
	display:flex;
	max-width:100%;
	width:90px;
	visibility:hidden;
	opacity:0;
	transition:all 0.15s ease-in-out;
}
.modifier-item.selected .modifier-count, .modifiers-selected .modifier-item .modifier-count{
	visibility:visible;
	opacity:1;
}
.modifier-count .btn{
	height:24px;
	width:24px;
	min-width:24px;
	text-align:center;
	padding:1px 0 0 0;
	justify-content:center;
	line-height:1;
	font-size:10px;
	align-items:center;
}
.modifier-count .btn + .btn{
	margin-left:auto;
}
.btn.modifier-count-minus{
	color:rgba(40, 40, 41, 0.5);
}
.btn.modifier-count-plus{
	padding-top:2px;
	margin-left:auto;
}
.btn.modifier-count-minus:hover{
	color:#282829;
	background-color:transparent;
}
.dish-modifiers{
	padding-bottom:20px;
}
.modifiers-selected{
	margin-bottom:20px;
}
.modifiers-selected::after{
	content:'';
	border-bottom:1px solid  rgba(40, 40, 41, 0.4);
	display:block;
	position:absolute;
	left:0;
	right:0;
}
.modifiers-group > b{
	margin-bottom:15px;
	display:block;
}
.dish-card-min{
	gap:10px;
	border-radius: 10px;
	padding: 10px;
	background:var(--c-peach);
	margin-bottom:20px;
}
.dish-card-min .dish-img-wrap{
	width:50px;
	min-width:50px;
	height:50px;
}
.dish-card-min .dish-img-wrap img{
	width:50px;
	height:auto;
}
.dish-card-name, .dish-card-min .dish-price{
	padding-top:7px;
}
.card-sticky .dish-card-min{
	position:fixed;
	left:70px;
	right:70px;
	z-index:100;
	top:5px;
	flex-direction:column;
	text-align:center !important;
	background:transparent;
	gap:2px;
}
.card-sticky .dish-card-min > div{
	margin:0 auto;
	padding-top:0;
	transform:scale(1.2);
}
.card-sticky .dish-card-min .dish-img-wrap, .card-sticky .dish-card-min .dish-params{
	display:none;
}
.dish-card-min-wrap{
	min-height:90px;
}


@media (min-width: 768px){
	.sticky-btns-wrap .sticky-btns {
		position: absolute;
	}
	.card-sticky .dish-card-min {
		left:0;
		right:0;
		background: var(--c-peach);
		top:-2px;
		border-radius:0;
	}
}




















