@font-face {
    font-family: 'gilroyextrabold';
    src: url('/css/fonts/gilroy-extrabold-webfont.woff2') format('woff2'),
         url('/css/fonts/gilroy-extrabold-webfont.woff') format('woff'),
         url('/css/fonts/Gilroy-ExtraBold.otf') format('otf');
         
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gilroylight';
    src: url('/css/fonts/gilroy-light-webfont.woff2') format('woff2'),
         url('/css/fonts/gilroy-light-webfont.woff') format('woff'),
         url('/css/fonts/Gilroy-Light.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'awesome';
    src: url('/css/fonts/awesome/fontawesome-webfont.eot');
    src: url('/css/fonts/awesome/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
         url('/css/fonts/awesome/fontawesome-webfont.woff') format('woff'),
         url('/css/fonts/awesome/fontawesome-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@yellow: #fdb533;
@green: #3ecf8e;
@brown: #341607;
@red: #f32129;

::selection {
	background: @yellow;
	color: #fff;
}

::-moz-selection {
	background: @yellow;
	color: #fff;
}

body,
html {
	font-smooth: always !important;
	-webkit-font-smoothing: antialiased !important;
	-webkit-font-smoothing: subpixel-antialiased !important;
	-webkit-text-stroke: 0.45x !important;
	-webkit-text-stroke: 0.45x rgba(0, 0, 0, 0.1) !important;
}

.logged {
	text-align: right;
	margin-top: 10px;
	font-weight: bold;
}

body {
	padding: 0;
	margin: 0;
	font-family: 'gilroylight';
	background-color: #fff;
	font-weight: 400;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

#view {
	width: 100%;
	float: left;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'gilroyextrabold';
	color: @brown;
	font-weight: 600;
	line-height: 1.3;
	font-weight: normal;
	
	small {
		display: block;
		font-size: 13px;
	}
	
	a {
		color: inherit;
		font: inherit;
		text-decoration: none;
		
		&:hover {
			text-decoration: underline;
		}
	}
	
	.href {
		float: right;
		font-size: 16px;
		line-height: 32px;
		text-decoration: underline;
	}
}

.lowercase {
	text-transform: lowercase;
}

.wrapper {
	width: 92%;
	max-width: 1140px;
	position: relative;
	margin: 0 auto;
}

.center-grid {
	grid-template-columns: repeat(auto-fill, calc(300px)) !important;
	display: inline-grid !important;
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.restaurants {
	justify-items: start;
	grid-template-columns: repeat(auto-fill, calc(~"33% - 20px"));
	display: grid;
	gap: 35px;
}

.items_products {
	justify-items: start;
	grid-template-columns: repeat(auto-fill, calc(~"25% - 25px"));
	display: grid;
	gap: 25px;
}

@media (max-width: 1000px) {
	.items_products, .restaurants {
		grid-template-columns: repeat(auto-fill, calc(~"33% - 7.5px"));
	}
}

@media (max-width: 800px) and (min-width: 366px) {
	.items_products, .restaurants {
		grid-template-columns: repeat(auto-fill, calc(~"50% - 5px"));
		gap: 10px;
	}
}

@media (max-width: 365px) {
	.items_products {
		grid-template-columns: 100%;
	}
}


@media (max-width: 665px) {
	.restaurants {
		grid-template-columns: 100%;
	}
}

.w100p {
	width: 100%;
}

.mt50 {
	margin-top: 50px !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mt125 {
	margin-top: 125px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt35 {
	margin-top: 35px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt25 {
	margin-top: 25px !important;
}

.mt100 {
	margin-top: 100px !important;
}

.mt0 {
	margin-top: 0px !important;
}

.ml0 {
	margin-left: 0 !important;
}

.ml10 {
	margin-left: 10px !important;
}

.ml15 {
	margin-left: 15px !important;
}

.mb0 {
	margin-bottom: 0px !important;
}

.mb25 {
	margin-bottom: 25px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mr0 {
	margin-right: 0 !important;
}

.w20 {
	width: 20%;
	float: left;
	box-sizing: border-box;
	padding-left: 5px;
}

.w80 {
	width: 80%;
	float: left;
	box-sizing: border-box;
	padding-right: 5px;
}

.clearfix {
	width: 10px;
	height: 15px;
}

.pt0 {
	padding-top: 0 !important;
}

.pt15 {
	padding-top: 15px !important;
}

.none {
	display: none !important;
}

.desktop-none {
	display: none;
}

.float-left {
	float: left !important;
}

.float-right {
	float: right !important;
}

.loading {
	background-color: @green;;
	background-image: url('assets/loading.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	color: transparent;
	pointer-events: none;
}

.col {
	width: 100%;
	display: inline-block;
}

.col-left {
	width: 50%;
	float: left;
	box-sizing: border-box;
	padding-right: 7.5px;
}

.col-right {
	width: 50%;
	float: right;
	box-sizing: border-box;
	padding-left: 7.5px;
}

.button {
	font-size: 15px;
	font-family: 'gilroyextrabold';
	color: @brown;
	background: @yellow;
	border-radius: 35px;
	outline: none;
	display: inline-block;
	padding: 10px 25px;
	text-decoration: none;
	-webkit-appearance: none;
	transition: .3s all;
	border: 0;
	cursor: pointer;
	
	&:hover,
	&--green {
		background: @green;
		color: #fff;
	}
	
	&--green:hover {
		background: #f32129;
	}
	
	&--red {
		background: #f32129;
		color: #fff;
		
		&:hover {
			background: @green;
		}
	}
	
	&--abs {
		width: 100%;
		padding: 15px 0;
	}
	
	&--disabled {
		pointer-events: none;
		filter: grayscale(100%);
	}
	
	&--preloader {
		pointer-events: none;
		filter: grayscale(100%);
	}
	
	&.gotIt {
		background: #2ac2dc !important;
	}
}

p {
	strong {
		font-weight: normal;
		font-family: 'gilroyextrabold';
	}
}

.login-page {
	#header {
		border: 0;
	}
	
	#logo {
		margin: 0 auto;
	}
}

#logo {
	width: 115px;
	height: 40px;
	background: url('assets/logo.svg') no-repeat left center;
	display: block;
	float: left;
}

#header {
	width: 100%;
	float: left;
	padding: 15px 0;
	border-bottom: 2px solid #e3e3e3;
	position: relative;
	
	.col-left {
		width: 70%;
	}
	
	.col-right {
		width: 30%;
		
		a {
			vertical-align: middle;
		}
	}
}

nav {
	text-align: right;
	
	a {
		color: @brown;
		font-family: 'gilroyextrabold';
		text-decoration: none;
		margin: 0 5px;
		font-size: 16px;
		line-height: 40px;
	}
}

label {
	font-family: 'gilroyextrabold';
}

.input,
.textarea {
	width: 100%;
	background: #fff;
	border-radius: 3px;
	height: 35px;
	line-height: 35px;
	border: 2px solid #e3e3e3;
	box-sizing: border-box;
	outline: none !important;
	padding: 0 10px;
	display: block;
	font-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	transition: .3s all;
	
	&:focus {
		color: #495057;
		background-color: #fff;
		border-color: @yellow;
		outline: 0;
		box-shadow: 0 0 0 .2rem rgba(253, 182, 51, .25);
	}
	
	&--disabled {
		background: #e9ecef;
		pointer-events: none;
	}
}

select.input {
	background: url('assets/arrow-down.svg') no-repeat right 10px center;
	background-size: 15px;
	appearance: none;
	-webkit-appearance: none;
	line-height: normal;
}

.input-group {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
	
	label {
		width: 100%;
		display: block;
	}
}

.input-group-prepand {
	display: -ms-flexbox;
	display: flex;
	margin-right: -1px;
}

.input-group-text {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 .55rem;
	height: 31px;
	line-height: 33px;
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	font-family: 'gilroyextrabold';
	text-align: center;
	white-space: nowrap;
	color: #63686d;
	background-color: #e9ecef;
	border: 2px solid #ced4da;
	border-radius: 3px 0 0 3px;
}

.input-group-prepend-after {
	display: -ms-flexbox;
	display: flex;
	margin-left: -2px;
	
	.input-group-text {
		border-radius: 0 3px 3px 0 !important;
	}
}

.form-control {
	-ms-flex: 1 1 0%;
	flex: 1 1 0%;
	min-width: 0;
	border-radius: 0 3px 3px 0;
}

#content,
#footer
.section {
	width: 100%;
	float: left;
}

.list-categories {
	width: 100%;
	float: left;
	list-style: none;
	text-align: left;
	padding: 0;
	margin-bottom: 100px;
	margin-top: -80px;
	
	li {
		display: inline-block;
		width: 195px;
		height: 195px;
		background: #fff;
		margin-right: 36.5px;
		border-radius: 33px;
		box-shadow: 0 3px 30px rgba(0,0,0,0.06);
		border: 1px solid rgba(0,0,0,0.075);
		box-sizing: border-box;
		transition: .3s all;
		background-position: top 20px center;
		background-repeat: no-repeat;
		
		&:nth-child(2) {
			background-position: top 10px center;
		}
		
		&:nth-child(3) {
			background-position: top 50px center;
		}
		
		&:nth-child(5) {
			background-position: top 0px center;
		}
		
		a {
			display: block;
			text-decoration: none;
			width: 100%;
			height: 100%;
			text-align: center;
			line-height: 340px;
			font-family: 'gilroyextrabold';
			color: @brown;
		}
		
		&:last-child {
			margin-right: 0;
		}
		
		&:hover {
			box-shadow: 0 3px 30px rgba(0,0,0,0.1);
			transform: scale(1.02);
		}
	}
}

footer {
	width: 100%;
	margin-top: 50px;
	float: left;
	background: #f0eff4;
	
	.copyright {
		font-size: 14px;
		margin-top: 40px;
		width: 100%;
		float: left;
	}
	
	.logo {
		width: 105px;
		height: 45px;
		background: url('assets/logo.svg') no-repeat left center;
		margin: 15px 0;
		float: left;
	}
	
	.social-bar {
		width: 100%;
		float: left;
		margin-bottom: 40px;
		border-bottom: 1px solid #e2e2e2;
	}
	
	.social-sites {
		list-style: none;
		float: right;
		height: 45px;
		
		li {
			display: inline-block;
			margin-left: 15px;
		}
		
		a {
			width: 45px;
			height: 45px;
			display: block;
			text-decoration: none;
			background-size: contain !important;
			transition: .3s all;
			opacity: 1;
			
			&:hover {
				opacity: .7;
			}
			
			&.instagram {
				background: url('assets/instagram.svg') no-repeat center center;
			}
			
			&.facebook {
				background: url('assets/facebook.svg') no-repeat center center;
			}
		}
	}
}

.clear {
	clear: both;
}

.products-photos {
	position: relative;
	
	ul {
		position: absolute !important;
		right: -150px !important;
		top: -30px !important;	
	}
}

.product-order {
	width: 145px;
	float: left !important;
	margin-left: 15px; 
}

#ShopProductText, .product-text {
	max-width: 718px;
	float: left;
}

.product-text {
	width: 718px;
}

.sll3 {
	width: 33.33333333%;
	float: left;
	box-sizing: border-box;
	padding-right: 10px;
	
	&:nth-child(3n+3) {
		padding-right: 0;
	}
}

label {
	width: 100%;
	display: block;
}

.foooter-links {
	width: 100%;
	float: left;
	
	ul {
		list-style: none;
		display: inline-block;
		width: 30%;
		padding-left: 0;
		vertical-align: top;
		
		li {
			color: @brown;
			
			&.headline {
				font-family: 'gilroyextrabold';
				padding-bottom: 10px;
			}
			
			a {
				color: inherit;
				text-decoration: none;
				line-height: 25px;
				
				&:hover {
					text-decoration: underline;
				}
			}
		}
	}
}

.label {
	padding: 5px 12px;
	font-size: 14px;
	position: absolute;
	right: 18px;
	top: 15px;
	border-radius: 10px;
	font-family: 'gilroyextrabold';
	
	&--green {
		background: @green;
		color: #fff;
	}
}

.icon {
	width: 15px;
	height: 15px;
	display: inline-block;
	font: normal;
	position: relative;
	top: 2px;
	margin-right: 5px;
	
	&--pin {
		background: url('assets/pin.svg') no-repeat center center;
		height: 17px;
	}
	
	&--time {
		background: url('assets/time.svg')  no-repeat center center;
	}
}

input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
input[type="checkbox"]:not(:checked) + label,
input[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
input[type="checkbox"]:not(:checked) + label:before,
input[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.25em; height: 1.25em;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 3px;
}
/* checked mark aspect */
input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after {
  content: '\f00c';
  font-family: 'awesome';
  position: absolute;
  top: 2px; left: 2px;
  margin: auto;
  font-size: 12px;
  line-height: 0.8;
  background: @green;
  color: #fff;
  text-align: center;
  line-height: 17px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transition: all .2s;
}
/* checked mark aspect changes */
input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
input[type="checkbox"]:disabled:not(:checked) + label:before,
input[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
input[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
input[type="checkbox"]:disabled + label {
  color: #aaa;
}

input[type="radio"]:not(:checked),
input[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}
input[type="radio"]:not(:checked) + label,
input[type="radio"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
input[type="radio"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.25em; height: 1.25em;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 100%;
}
/* checked mark aspect */
input[type="radio"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after {
   content: '';
  font-family: 'awesome';
  position: absolute;
  top: 3px; left: 3px;
  margin: auto;
  font-size: 12px;
  line-height: 0.8;
  background: @green;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  transition: all .2s;
}
/* checked mark aspect changes */
input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
input[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
input[type="radio"]:disabled:not(:checked) + label:before,
input[type="radio"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
input[type="radio"]:disabled:checked + label:after {
  color: #999;
}
input[type="radio"]:disabled + label {
  color: #aaa;
}

.switcher {
	display: inline-block;
	height: 31px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 3px;
	padding: 2px;
	
	.switch {
		height: 31px;
		line-height: 31px;
		padding: 0 15px;
		background: #fff;
		font-family: 'gilroyextrabold';
		color: @brown;
		display: block;
		background: transparent;
		float: left;
		cursor: pointer;
		
		&--active {
			background: @green;
			color: #fff;
			border-radius: 3px;
		}
	}
}

.sortable,
.list-items {
	list-style: none;
	padding: 0;
	border-radius: 3px;
	border: 2px solid #e3e3e3;
	border-bottom: 0;
	
	li,
	.li {
		background: #fff;
		border-radius: 0px;
		border: 0;
		border-bottom: 2px solid #e3e3e3;
		padding: 10px;
		line-height: 1;
		cursor: move;
		transition: transform 0.3s;
		position: relative;
		vertical-align: top;
		overflow: hidden;
		
		span {
			vertical-align: top;
		}
		
		.strong {
			font-family: 'gilroyextrabold';
		}
		
		p {
			display: inline-block;
			text-align: left;
			position: absolute;
			left: 75px;
			margin-top: 25px;
		}
		
		.img {
			display: inline-block;
			width: 50px;
			height: 50px;
			background-size: contain;
			background-position: center center;
			background-repeat: no-repeat;
			margin-right: 10px;
		}
		
		&.ui-sortable-helper {
			box-shadow: 0 3px 30px rgba(0,0,0,0.06);
			border-bottom: 1px solid #fff;
		}
		
		.status {
			width: 8px;
			height: 8px;
			background: @green;
			border-radius: 100%;
			display: inline-block;
			vertical-align: middle;
			position: relative;
			top: -1px;
			margin-right: 5px;
			cursor: pointer;
			
			&.deactive {
				background: @red;
			}
		}
		
		.right {
			text-align: right;
			position: absolute;
			right: 10px;
			background: #fff;
			padding-left: 5px;
		}
		
		a.action {
			width: 17px;
			height: 17px;
			display: inline-block;
			text-decoration: none;
			vertical-align: middle;
			margin: 0 2px;
			
			&.visible {
				background: url('assets/visibility.svg') no-repeat center center;
			}
			
			&.visible-off {
				background: url('assets/visibility-off.svg') no-repeat center center;
			}
			
			&.edit {
				background: url('assets/edit.svg') no-repeat center center;
			}
			
			&.delete {
				background: url('assets/delete.svg') no-repeat center center;
			}
		}
	}
	
	.li {
		cursor: default;
		
		p {
			position: static;
			margin: 0;
			
			&.created {
				margin: 0 10px;
			}
		}
		
		.link {
			color: @yellow;
			text-decoration: none;
			font-weight: bold;
			
			&:hover {
				text-decoration: underline;
			}
		}
		
		img {
			position: relative;
			top: 3px;
			margin-right: 5px;
		}
	}
}

.list-items {
	strong {
		margin-left: 25px;
	}
	
	.strong {
		margin-right: 10px;
	}
	
	li {
		cursor: default;
	}
	
	.right {
		height: 22px;
		top: 0;
		bottom: 0;
		margin: auto;
		float: right;
		
		strong:first-child {
			margin-left: 0;
		}
	}
	
	li:first-child {
		background: #f2f2f2;
		
		.right {
			background: inherit;
		}
	}
	
	.tags {
		max-width: calc(~"100% - 130px");
		margin-top: 5px;
	}
	
	li:last-child {
		background: #f2f2f2;
		
		.right {
			background: inherit;
		}
	}
	
	.tag {
		color: @green;
		padding: 2px 5px;
		border-radius: 7px;
		margin-right: 2.5px;
		margin-bottom: 5px;
		display: inline-block;
		font-family: 'gilroyextrabold';
		border: 2px solid @green;
	}
}

#new-order-info {
	position: fixed;
	top: 120px;
	background: @red;
	font-size: 21px;
	font-family: 'gilroyextrabold';
	color: #fff;
	padding: 10px;
	padding-left: 20px;
	line-height: 1;
	border-radius: 10px 0 0 10px;
	z-index: 1000;
	display: block;
	right: 0;
	text-decoration: none;
}

.order {
	width: 100%;
	padding: 10px;
	background: #cef9e6;
	margin-top: 10px;
	float: left;
	box-sizing: border-box;
	border-radius: 10px;
	border: 2px solid #3ecf8e;
	position: relative;
	
	h1 {
		margin-top: 0;
		font-size: 24px;
		
		span {
			background: @red;
			font-size: 16px;
			color: #fff;
			padding: 5px 10px;
			color: #fff;
			border-radius: 20px;
			position: relative;
			display: inline-block;
			white-space: nowrap;
		}
	}
	
	.button {
		width: calc(~"25% - 7.5px");
		margin: 0 5px;
		float: left;
		border: 10px solid transparent;
		border-top: 20px solid transparent;
		border-bottom: 20px solid transparent;
		box-sizing: border-box;
		border-radius: 5px;
		color: #fff;
		font-size: 16px;
		padding: 0;
		
		&.first {
			margin-left: 0;
			background: @green;
			color: #fff;
		}
		
		&.green {
			background: @green;
		}
		
		&.one {
			background: @green;
			width: 100%;
		}
		
		&.last {
			margin-right: 0;
			color: #fff;
			background: @red;
		}
		
		&.print {
			width: 100%;
			padding: 0;
			height: 61px;
			background: @red url('assets/printer-white.svg') no-repeat center center;
			background-size: 35px;
		}
	}
	
	.link {
		font-size: 16px;
		color: @red;
		margin-bottom: 20px;
		font-family: 'gilroyextrabold';
	}
	
	h2 {
		font-size: 16px;
	}
	
	.label {
		top: 10px;
	}
}

.w100p {
	width: 100% !important;
}

#load_orders {
	width: 50%;
	float: left;
	box-sizing: border-box;
	padding-right: 5px;
}

#prepare_orders {
	width: 50%;
	float: right;
	box-sizing: border-box;
	padding-left: 5px;
	
	.order {
		background: #fff;
		border-color: #e3e3e3;
	}
}

.trash {
	width: 15px;
	height: 15px;
	background: url('assets/delete.svg') no-repeat center center;
	display: inline-block;
	text-decoration: none;
	margin-right: 5px;
}

.hide {
	opacity: 0;
	height: 0;
	pointer-events: none;
	transition: .3s all;
	padding: 0;
}

.gray {
	filter: grayscale(100%);
	color: #a9a9a9;
	
	span, p {
		color: #a9a9a9;
	}
}

iframe {
	width: 100%;
	border: 0;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
}

.file_upload {
	ul {
		list-style: none;
		padding: 0;
		
		li {
			a.delete_file {
				display: block;
				width: 20px;
				height: 20px;
				background: url('assets/delete.svg') no-repeat center center;
				text-decoration: none;
			}
			
			span {
				display: none;
			}
		}
	}
	
	input {
		color: #fff;
	}
}

#show-modal {
	color: @green;
	font-family: 'gilroyextrabold';
	margin-right: 10px;
}

.modal-window {
	width: 100%;
	height: 350px;
	max-width: 500px;
	text-align: center;
	line-height: 1.7;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transition: .3s opacity;
	
	&.active {
		opacity: 1;
		pointer-events: all;
	}

	&::after {
		width: 100000px;
		height: 1000000px;
		background: #000;
		content: '';
		position: absolute;
		left: -50000px;
		top: -50000px;
		z-index: -1;
		opacity: 0.25;
	}
	
	.content {
		background: #fff;
		width: 100%;
		height: 100%;
		border-radius: 25px;
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}
	
	.wrap {
		padding: 20px;
		text-align: left;
		max-height: 264px;
		overflow-x: hidden;
		overflow-y: scroll;
	}
	
	a {
		display: block;
		width: 100%;
		padding: 4px 0;
		text-decoration: none;
		color: @brown;
		text-align: center;
		transition: 0.3s all;
		
		&:hover {
			color: @red;
		}
	}
	
	#close-moda,
	.close-modal {
		position: absolute;
		width: 100%;
		float: left;
		box-sizing: border-box;
		display: block;
		text-decoration: none;
		border-top: 1px solid rgba(0, 0, 0, 0.07);
		line-height: 45px;
		padding: 0;
		color: rgba(0, 0, 0, 0.47);
		bottom: 0;
		left: 0;
	}
	
	h2 {
		font-size: 21px;
		font-weight: bold;
		text-align: center;
		margin-top: 0;
	}
	
	p {
		text-align: center;
		opacity: .8;
	}
}

#LoginForm {
	max-width: 360px;
	margin: 100px auto;
	box-sizing: border-box;
	border: 2px solid rgba(0, 0, 0, 0.1);
	padding: 20px;
	border-radius: 7px;
	box-shadow: 0px 0px 56px rgba(0,0,0,0.1);
	
	#logo {
		display: block;
		float: none;
		margin: 0 auto;
	}
	
	input, .button {
		width: 100%;
	}
	
	input.input {
		height: 45px;
		line-height: 45px;
	}
}

.opnening-hours {
	max-width: 400px;
	
	.open-hours {
		width: 100%;
		margin-bottom: 10px;
		
		strong {
			width: 80px;
			display: inline-block;
		}
		
		.holder {
			width: 140px;
			display: inline-block;
		}
	}
}

.superadmin {
	width: 100%;
	background: @red;
	position: absolute;
	left: 0;
	bottom: -42px;
	text-align: right;
	
	a {
		color: #fff !important;
	}
}

.superadmin-header {
	margin-bottom: 40px;
}

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1rem;
	background-color: #fff;
	border-collapse: collapse;
	border: 1px solid rgba(0, 0, 0, 0.1);
	
	thead {
		th {
			color: #454545;
			background-color: #e8e8e8;
			border-color: #32383e;
			vertical-align: middle;
			border-bottom: 2px solid #dee2e6;
			padding: .75rem;
			border-top: 1px solid #dee2e6;
			text-align: left;
		}
	}
	
	tbody {
		td {
			padding: .75rem;
			vertical-align: middle;
			border-top: 1px solid #dee2e6;
			transition: .3s all;
		}
		
		tr {
			transition: .3s all;
			
			&:hover {
				color: #495057;
				background-color: #e9ecef;
				border-color: #dee2e6;
			}
		}
	}
	
	a {
		color: @yellow !important;
	}
	
	span {
		padding: 6px 17px;
		background-color: #f6f6f6;
		color: #444;
		font-size: 13px;
		border-radius: 3px;
		
		&.done {
			color: #5a924b;
			background: #cde2c7;
		}
		
		&.new {
			background-color: #d1ecf8;
			color: #37a5d4;
		}
		
		&.storno {
			background-color: #F7D1D0;
			color: #c12521;
		}
	}
	
	.status {
		width: 8px;
		height: 8px;
		background: @green;
		border-radius: 100%;
		display: inline-block;
		vertical-align: middle;
		position: relative;
		top: -1px;
		margin-right: 5px;
		cursor: pointer;
		padding: 0;
		
		&.deactive {
			background: @red;
		}
	}
	
	a.action {
		width: 17px;
		height: 17px;
		display: inline-block;
		text-decoration: none;
		vertical-align: middle;
		margin: 0 2px;
		
		&.visible {
			background: url('assets/visibility.svg') no-repeat center center;
		}
		
		&.visible-off {
			background: url('assets/visibility-off.svg') no-repeat center center;
		}
		
		&.edit {
			background: url('assets/edit.svg') no-repeat center center;
		}
		
		&.delete {
			background: url('assets/delete.svg') no-repeat center center;
		}
	}
}

.fa {
	font-family: 'awesome';
	font-style: normal;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.filter-columns {
	padding: 0;
	list-style: none;
	margin-bottom: 35px;
	
	li {
		height: 45px;
		line-height: 45px;
		display: inline-block;
		font-size: 16px;
		color: #000;
		background: #f8f7f2;
		margin: 2.5px;
		cursor: pointer;
		padding: 0 15px;
		border-radius: 70px;
		transition: .35s all;
		
		&:first-child {
			margin-left: 0;
		}
		
		&:last-child {
			margin-right: 0;
		}
		
		a {
			display: block;
			text-decoration: none;
			color: inherit;
			font: inherit;
		}
		
		&:hover,
		&.active {
			background: #e7e5dc;
		}
	}
}

.logout {
	background: @red;
	height: 38px;
	float: right;
	padding: 0 10px;
	border-radius: 7px;
	
	img {
		position: relative;
		top: 7px;
	}
}

.tabs {
	display: flex;
	margin: 0 auto 0;
	padding: 0;
	float: right;
	list-style: none;
	width: 260px;
	border-radius: 7px;
	
	li {
		display: inline-block;
		width: 130px;
		background: #dee2e6;
		text-align: center;
		border: 3px solid #dee2e6;
		box-sizing: border-box;
		line-height: 2;
		
		&:first-child {
			border-radius: 7px 0 0 7px;
			border-right: 0;
			width: 127px;
		}
		
		&:last-child {
			border-radius: 0 7px 7px 0;
		}
		
		a {
			display: block;
			width: 100%;
			height: 100%;
			color: #717171;
			font-family: 'gilroyextrabold';
			text-decoration: none;
		}
		
		span {
			display: inline-block;
			background: #f32129;
			color: #fff;
			font-size: 11px;
			padding: 0 8px;
			border-radius: 100%;
			position: relative;
			top: -2px;
		}
		
		&.active {			
			a {
				color: #fff;
				background: @green;
				border-radius: 4px;
			}
		}
	}
}

.pagination {
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: .25rem;
	padding-left: 2px;
	margin: 10px auto;
	
	a,
	em {
		position: relative;
		display: inline-block;
		font-style: normal;
		font-weight: 700;
		padding: .5rem .75rem;
		margin-left: -2px;
		line-height: 1.25;
		color: @brown;
		text-decoration: none;
		background-color: #fff;
		border: 2px solid #dee2e6;
		transition: .3s all;
		
		&:hover {
			background: #e9ecef;
		}
		
		&:last-child {
			border-radius: 0 4px 4px 0;
		}
		
		&:first-child {
			border-radius: 4px 0 0 4px;
		}
	}
	
	em {
		background: #e9ecef;
	}
	
	.pag_right,
	.pag_left,
	#refresh {
		display: none;
	}
}

#rozvoz-zony {
	.input-group {
		margin-bottom: 15px;
		
		input {
			width: 100px;
			-webkit-appearance: none !important;
			-moz-appearance: none !important;
			appearance: normal !important;
			margin-right: -2px;
			border-radius: 3px 0 0 3px;
		}
		
		.input-group-text {
			border-radius: 0 3px 3px 0;
		}
	}
	
	.sll3 {
		box-sizing: border-box;
		padding: 0 80px;
	}
	
	h5 {
		font-size: 28px;
		margin-bottom: 10px;
	}
	
	.bg-blue-polygon h5 {
		color: #2b80f7;
	}
	
	.bg-danger h5 {
		color: @red;
	}
	
	.bg-warning h5 {
		color: @yellow;
	}
}

#mobile-menu {
	display: none;
}

.statistics {
	background: #e8e8e8;
	border: 2px solid #dee2e6;
	border-radius: 7px;
	color: #454545;
	float: left;
	padding: 10px;
	margin-top: -15px;
	margin-right: 25px;
	
	label {
		width: 120px;
		display: inline-block;
		line-height: 25px;
	}
}

.stat-form {
	width: 100%;
	float: left;
	margin-bottom: 20px;
	max-width: 400px;
	
	h4 {
		margin-top: 0;
		margin-bottom: 5px;
	}
}

.ordrs {
	width: 100%;
	float: left;
	justify-items: start;
	grid-template-columns: 100%;
	display: grid;
	gap: 20px;
	margin-top: 20px;
	
	.ordr {
		border: 1px solid rgb(231, 231, 231);
		border-radius: 5px;
		display: inline-block;
		width: 100%;
		box-sizing: border-box;
		padding: 10px;
		-moz-box-align: center;
		align-items: center;
		-moz-box-pack: center;
		justify-content: center;
		transition: background-color 0.15s ease-in-out 0s, box-shadow 0.35s ease-in-out 0s;
		user-select: none;
		text-decoration: none;
		position: relative;
		box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
		font-weight: bold;
		
		h3 {
			margin-bottom: 0;
		}
		
		h2 {
			small {
				font-size: 18px;
				color: #fff;
				background: @green;
				padding: 5px 10px;
				border-radius: 5px;
				display: inline-block;
				position: relative;
				top: -2px;
				
				&.red {
					background: @red;
				}
				
				&.orange {
					background: #f29b04;
				}
			}
		}
		
		ul {
			list-style: none;
			padding: 0;
			margin-bottom: 0;
			
			li {
				border-top: 1px solid rgba(0, 0, 0, 0.1);
				padding: 7px 0;
				letter-spacing: -1px;
				
				&:first-child {
					border-top: 0;
				}
				
				strong {
					font-family: 'gilroyextrabold';
				}
			}
		}
		
		button.button {
			width: 50%;
			box-sizing: border-box;
			display: block;
			float: left;
			border-radius: 5px;
			border: 3px solid #fff;
			border-bottom: 0;
			border-top: 0;
			padding: 15px 0;
			
			&.green {
				background: @green;
				color: #fff;
			}
			
			&.red {
				background: @red;
				color: #fff;
			}
		}
		
		a.button.call,
		.restaurant-call {
			width: 50%;
			box-sizing: border-box;
			display: block;
			float: left;
			border-radius: 5px;
			border: 3px solid #fff;
			font-family: 'gilroyextrabold';
			font-weight: normal;
			border-bottom: 0;
			border-top: 0;
			text-align: center;
			margin-bottom: 6px;
			padding: 15px 0;
			line-height: 1;
			position: relative;
			
			img {
				position: absolute;
				margin-left: -30px;
				margin-top: -2.5px;
			}
		}
		
		.restaurant-call {
			width: 140px;
			background: none;
			padding: 0;
			text-align: left;
			font-size: 19px;
			
			img {
				margin-right: 5px;
				position: relative;
				margin-left: 0;
				top: 5px;
			}
			
			&:hover {
				color: @brown;
			}
		}
		
		address {
			font-style: normal;
			position: relative;
			letter-spacing: -1px;
			
			span {
				color: #049552;
			}
			
			a {
				display: block;
				text-decoration: none;
				position: absolute;
				width: 100%;
				left: 0;
				height: 100%;
				top: 0;
			}
		}
		
		select {
			width: 65%;
			float: left;
		}
		
		.status {
			width: 12px;
			height: 12px;
			background: @green;
			border-radius: 100%;
			display: inline-block;
			vertical-align: middle;
			position: absolute;
			top: 10px;
			right: 10px;
			cursor: pointer;
			text-align: right;
			line-height: 3;
			
			span {
				position: absolute;
				right: 0;
				color: @green;
			}
			
			&.deactive {
				background: @red;
				
				span {
					color: @red;
				}
			}
		}
		
		.top {
			width: 100%;
			position: absolute;
			top: 0px;
			right: 10px;
			pointer-events: none;
			
			.total {
				font-size: 21px;
				text-align: right;
				float: right;
				margin: 0;
				margin-top: 3px;
				font-family: 'gilroyextrabold';
				line-height: 0;
				
				var {
					font-style: normal;
					line-height: 1.5;
					font-size: 15px;
				}
				
				&.red {
					color: @red;
				}
				
				&.green {
					color: @green;
					margin-top: 25px
				}
				
				img {
					position: relative;
					top: 5px;
					margin-right: 5px;
				}
				
				span {
					font-size: 13px;
				}
			}
			
			.courier {
				text-align: left;
				margin: 0;
				line-height: 2;
				font-weight: bold;
				color: @green;
			}
		}
	}
}

.modal-info {
	width: 100%;
	max-width: 320px;
	height: 180px;
	text-align: center;
	line-height: 1.7;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	transition: .3s opacity;
	background: #fff;
	z-index: 10000;
	overflow: hidden;
	border-radius: 7.5px;
	
	&.active {
		opacity: 1;
		pointer-events: all;
	}
	
	.wrap {
		padding: 20px;
	}
	
	#close {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		box-sizing: border-box;
		display: block;
		text-decoration: none;
		line-height: 45px;
		border-radius: 10px;
		border: 5px solid #fff;
		padding: 0;
		background: @green;
		color: #fff;
		font-family: 'gilroyextrabold';
	}
	
	p {
		line-height: 1.5;
		margin-top: 10px;
	}
}

.modal-window {
	width: 100%;
	max-width: 420px;
	text-align: center;
	line-height: 1.7;
	position: fixed;
	top: 50px;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	transition: .3s opacity;
	background: #fff;
	z-index: 10000;
	overflow: hidden;
	border-radius: 7.5px;
	
	&.active {
		opacity: 1;
		pointer-events: all;
	}

	&::before {
		width: 100000px;
		height: 1000000px;
		background: transparent;
		content: '';
		position: absolute;
		left: -50000px;
		top: -50000px;
		z-index: -1;
		opacity: 0.25;
	}
	
	.content {
		background: #fff;
		width: 100%;
		height: 100%;
		border-radius: 25px;
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}
	
	.wrap {
		padding: 20px;
		text-align: left;
		overflow-x: hidden;
		overflow-y: scroll;
		box-sizing: border-box;
		margin-bottom: 86px;
	}
	
	a {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
		margin: 0 !important;
	}
	
	h2 {
		font-size: 21px;
		font-weight: bold;
		text-align: center;
		margin-top: 0;
	}
	
	.close-modal {
		width: 45.5px;
		height: 45.5px;
		line-height: 45.5px;
		text-decoration: none;
		float: left;
		text-align: center;
		transition: .3s all;
		border-radius: 100%;
		
		&:hover {
			background: rgb(247, 247, 247);
		}
		
		svg {
			position: relative;
			top: 6px;
		}
	}
	
	p {
		text-align: center;
		opacity: .8;
		line-height: 1.2;
	}
	
	.productPrice {
		font-size: 26px;
		text-align: center;
		width: 100%;
		display: block;
		margin: 10px 0;
		margin-top: 0;
		font-family: 'gilroyextrabold';
		color: @brown;
	}
	
	label {
		span {
			pointer-events: none;
			float: right;
			font-family: 'gilroyextrabold';
			color: @brown;
		}
	}
	
	.fixed-basket {
		position: absolute;
		bottom: 0;
		background: #fff;
		width: 100%;
		box-sizing: border-box;
		left: 0;
		padding: 10px;
		box-shadow: rgba(0, 0, 0, 0.1) 0px calc(-1px) 15px;
	}
	
	.button {
		top: 0;
		width: calc(~"100% - 55px") !important;
		float: right;
		
		strong {
			font: inherit;
			color: inherit;
			display: inline-block;
			width: auto;
			margin: 0;
		}
	}
	
	.change-img {
		width: 100%;
		background: none;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		border-radius: 7.5px;
		
		&::before {
			padding-top: 75%;
			content: '';
			display: block;
		}
	}
}

#overlay {
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #000;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	transition: .3s all;
	
	&.active {
		pointer-events: all;
		opacity: .6;
	}
}

