html, body {
	margin: 0;
	padding: 0;
}

body {

	font-size: 18px;
	font-family: 'Optima', -apple-system, 'Helvetica Neue';
	background: white;
	font-size:18px;
}

h1 {color:rgb(58, 115, 67);}


header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-self: stretch;
	background: #000000;
	height: 60px;
	padding: 10px 0;
	position: fixed;
	width:100%;
	z-index: 99;
	clear: both;
}

header > * {
	margin: 0 1em;
	max-height:100%;
}

header * {
  display: block;
}

header > a {
	display: flex;
	align-items: center;
	justify-content: space-around;
	align-self: stretch;
}

header > a > img {
	display: block;
	height: 100%;
}

header .language-picker {
	position: relative;
	border-radius: 4px;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-self: center;
	font-family: -apple-system, 'Helvetica Neue';
}

header .language-picker .carret {
	height: 16px;
	width: 16px;
	margin:2px;
}

header .language-picker .current-language {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	width: 30px;
	height: 22.5px;
	border-radius: 4px;
	margin:4px;
}

header .language-picker .dropdown {
	display: none;
	position: absolute;
	flex-direction: column;
	justify-content: space-between;
	right: 0;
	top:100%;
	background: black;
	border-radius: 4px;
	background: rgb(23,40,68);
	z-index:999;
	color: white;
	padding: 4px;
	border-top-right-radius: 0px;
	overflow: auto;
	max-height: 77vh;
}

html[dir=rtl] header .language-picker .dropdown {
	right: auto;
	left: 0;
}

header .language-picker:hover {
	background: rgb(23,40,68);
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	z-index: 9999;
}

header .language-picker:hover .dropdown {
	display:flex;
}

header .language-picker .dropdown .option {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 40px;
	padding: 4px;
}

header .language-picker .dropdown .option:hover {
	background: rgba(0,0,0,0.4);
	cursor: pointer;
}

header .language-picker .dropdown .option .flag {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	width: 30px;
	height: 22.5px;
	border-radius: 4px;
	margin: 4px;
}

header .language-picker .dropdown .option .label {
	white-space: nowrap;
	margin: 4px;
}

header .menu-btn {
	height: 30px;
	margin-right: calc(32px + 1em);
}

/* Start 1 */

@media screen and (max-width: 700px) {

}

@media screen and (min-width: 900px) {

}

a {
	color: inherit;
}

/* Start menu list */

.menu {
	padding: 10px;
}

.menu section {
	break-inside: avoid-column;
	margin: -10px;
	padding: 10px;
	padding-top:1px;
	margin-top:10px;
}

.menu section.highlight {
	background: rgba(0, 0, 0, 0.07);
	color: black;
}

.menu .menu-list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.menu .menu-item {
	display: flex;
	justify-content: space-between;
	margin:5px 0;
}

.menu .menu-item-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.menu .menu-item-content-upper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu .menu-text {
    flex-grow: 1;
    flex-shrink: 1;
    padding-right: 10px;
    line-height: 1.5;
}

.menu .menu-text .menu-main-text {
	font-weight:bold;
}

.menu .menu-text .menu-sub-text {
	font-style:italic;
}

.menu .menu-price {
	padding: 0 10px;
	flex-shrink: 0;
	line-height: 1.5;
}

.menu .menu-info {
	flex-shrink: 0;
	height: 16px;
	width: 16px;
	background: gold;
	color: white;
	font-size: 16px;
	margin:0;
	padding: 0;
	text-align: center;
	font-weight: bold;
	border-radius: 8px;
}

.menu .alergen-item {
	width: 70px; 
	flex-shrink:0;
	display:flex;
	flex-direction:column;
	align-items:center;
	font-size: 12px; 
	color:red; 
	flex-grow: 0;
}

.menu .alergen-icon {
	height:32px;
	width:32px;
	margin:5px;
}

.menu .alergen-text {
	margin:5px;
	text-align:center;
}

table {
  border-collapse: collapse;
}

td {
	padding: 4px;
}

a {
	text-decoration: none;
}

main {
	max-width: 800px;
	margin: 0 auto;	
	padding: 1em;
}

main p {
	text-align: justify;
	font-size: 1.1em;
  line-height: 1.35; 
  margin-bottom: 1em; 
  hyphens: auto;
}

main img {
  width: 100%;
  max-height: 50vh;
  object-fit: cover;
}

#menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  max-width: 90%;
  height: 100%;
  background-color: #fff;
  transition: left 0.3s ease-in-out;
  z-index: 9999;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

#menu.open {
  left: 0;
}

#close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

#menu ul {
  list-style: none;
  margin: 50px 0 0 0;
  padding: 0;
}

#menu ul li {
  margin: 10px 0;
}

#menu ul li a {
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  border-radius: 4px;
}

#menu ul li a:hover {
  background: #183152;
  color: white;
}

main button {
	margin: 0 auto;
	padding: 10px;
	background: gold;
	color: black;
	border: none;
	font-size: 18px;
	display: block;
}

summary {
	font-weight: bold;
}