* {
  box-sizing: border-box;
}

a {
  display: block;
}

button {
  font-size: 16px;
}

h3 {
  font-size: xx-large;
}
@media (max-width: 768px) {
  h3 {
    font-size: medium;
    margin: 0;
  }
}

body {
  background: #eeeeee;
  margin: 0;
  height: 100vh;
  font-family: Arial, sans-serif;
}
@media (max-width: 768px) {
  body {
    display: block;
  }
}

.main {
  margin-left: 200px;
  background-color: #eeeeee;
  padding: 16px;
  height: fit-content;
  min-height: 100%;
}
@media (max-width: 768px) {
  .main {
    width: 100%;
    margin-left: auto;
  }
}

nav {
  width: 200px;
  background-color: #FFFFFF;
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
}

#header-mobile {
  display: none;
  background-color: #FF9900;
  color: #FFFFFF;
  min-height: 50px;
  padding: 16px 16px;
  font-size: x-large;
}
@media (max-width: 768px) {
  #header-mobile {
    display: block;
    align-items: center;
  }
}
#header-mobile .title {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
}

.header {
  background-color: #eeeeee;
  padding: 16px 16px 16px 16px;
  margin-left: 200px;
}
@media (max-width: 768px) {
  .header {
    background-color: #FF9900;
    margin-left: 0;
    margin-top: -1px;
    padding: 0px 16px 16px 16px;
  }
}
@media (max-width: 768px) {
  .header #infos {
    display: none;
  }
}

#nav-btn {
  position: absolute;
  width: fit-content;
  padding: 8px;
  cursor: pointer;
}
#nav-btn:hover {
  background-color: #E0E0E0;
}

#nav-mobile {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #222222;
  overflow-x: hidden;
  padding-top: 50px;
  transition: 0.5s;
}
#nav-mobile > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#nav-mobile .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  text-decoration: none;
  color: darkgrey;
}
#nav-mobile .link {
  margin: 16px;
  border: none;
}
#nav-mobile .link.active {
  color: #FFFFFF;
}

.body {
  transition: margin-left 0.5s;
}

.flex {
  display: flex;
  align-items: center;
}

.wrap {
  flex-wrap: wrap;
}

.space-between {
  justify-content: space-between;
}

.top-menu {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.mb {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .mb {
    margin-bottom: 16px;
  }
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.ml {
  margin-left: 8px;
}

.ml-2 {
  margin-left: 16px;
}

.bg-dkgrey {
  background-color: #E0E0E0;
  padding: 8px;
  border-radius: 8px;
}

.scrollview {
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
}

.slider {
  display: flex;
}

.space * {
  margin-right: 16px;
}

.logo {
  margin-top: 16px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #222222;
}

.link {
  display: flex;
  align-items: center;
  color: darkgrey;
  padding: 8px;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 16px;
  border: 1px solid #eeeeee;
}

.link:hover {
  color: #222222;
}

.font-lightgrey {
  color: #ddd;
}

.hidden {
  display: none;
}

.btn {
  background-color: #FF9900;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #FF9900;
}

.btn:hover {
  background-color: #222222;
  border: 1px solid #222222;
}

.lightgrey {
  background-color: #eeeeee;
  border: 1px solid darkgrey;
  color: #222222;
}

.btn.lightgrey:hover {
  background-color: #E0E0E0 !important;
  cursor: pointer;
}

.btn.lightgrey.active2:hover {
  background-color: #222222 !important;
}

.btn:disabled, .btn[disabled=true] {
  background-color: #dddddd;
  border-color: #dddddd;
}

.theme {
  padding: 8px;
  background-color: #eeeeee;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #222222;
  text-decoration: none;
}
@media (max-width: 768px) {
  .theme {
    background-color: #FF9900;
    border-color: #FF9900;
    color: #FFFFFF;
  }
  .theme.active {
    color: #222222;
  }
}
@media (min-width: 768px) {
  .theme :hover {
    background-color: #ddd;
  }
  .theme.active:hover {
    background-color: #FF9900;
    color: #222222;
  }
}

.theme-form {
  padding: 8px;
  width: 100%;
  border-radius: 8px;
  background-color: #E0E0E0;
}
.theme-form input {
  width: auto;
}
.theme-form label {
  flex: 1;
}

.secondary {
  background-color: #0099FF;
  border: 1px solid #0099FF;
}

.secondary:hover {
  border: 1px solid #222222;
}

.round {
  border-radius: 20px;
}

.search-box {
  position: relative;
  width: 50%;
}

#search {
  width: 100%;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
}

#searchResult {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  background-color: #fff;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  border-radius: 8px;
}

.searchResult-item {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  color: #222222;
  text-decoration: none;
}

.searchResult-item:hover {
  background-color: #eeeeee;
}

.recipeCard {
  flex: 0 0 auto;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

figure {
  width: 100%;
  height: 150px;
  margin: 0 0 20px 0;
}
figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
figure > svg {
  top: 50%;
  transform: translateY(50%);
  position: relative;
}
@media (max-width: 768px) {
  figure {
    height: 100px;
  }
}

p {
  margin: 0px 0px 16px 0px;
}

.tag {
  border-radius: 20px;
  background-color: #0099FF;
  color: #FFFFFF;
  padding: 8px;
}

.ingredient {
  margin: 8px;
  padding: 8px;
  border-radius: 8px;
  background-color: #E0E0E0;
}
@media (max-width: 768px) {
  .ingredient {
    width: 100%;
  }
}

.step {
  margin: 8px;
  padding: 8px;
  border-radius: 8px;
  background-color: #E0E0E0;
}

.active {
  background-color: #FF9900;
  color: #222222;
  border: 1px solid #FF9900;
}

.active2 {
  background-color: #222222;
  color: #FFFFFF;
}

/** ======= FORM ====== **/
input, select, textarea {
  border-radius: 8px;
  border: none;
  padding: 8px;
  width: 100%;
}

textarea {
  width: 100%;
}

.form-grid {
  width: 70%;
  margin: auto;
}
@media (max-width: 768px) {
  .form-grid {
    width: 100%;
  }
}

.row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  width: 100%;
  justify-items: center;
  align-items: center;
}
@media (max-width: 768px) {
  .row {
    justify-items: normal;
  }
}

.row-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .row-2.recipe-body {
    grid-template-columns: repeat(1, 1fr);
  }
}

.row-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .row-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.row-4 {
  /*grid-template-columns: repeat(4, minmax(min-content, 200px));*/
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .row-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.row-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 768px) {
  .row-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.row-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) {
  .row-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stretch {
  align-items: stretch;
}

.w-full {
  width: 100%;
}

.picture {
  width: 100%;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: transform 0.2s;
  margin-bottom: 10px;
}

.recipe-infos {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}
.recipe-infos svg {
  font-size: 1.5rem;
}

ul {
  list-style: none;
  padding: 0;
}

.form-li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-li div {
  width: 100%;
}

.recipe-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recipe-title > div {
  display: flex;
  justify-content: space-between;
}
.recipe-title > div > .tag {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 2px;
}
@media (max-width: 768px) {
  .recipe-title {
    flex-direction: column;
  }
  .recipe-title > div {
    width: 100%;
    margin-bottom: 5px;
    align-items: stretch;
  }
}

.login-form {
  width: 60%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .login-form {
    width: 100%;
  }
}

/*# sourceMappingURL=app.output.css.map */
