.main-container {
  padding-left: 50px;
  padding-right: 50px;
  max-width: 1440px;
  margin: 0 auto;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.close-box-img {
  height: 24px;
  width: 24px;
  margin-bottom: 16px;
  object-fit: unset;
  object-position: unset;
  border-radius: 0px;
}

.attriebutes {
  display: flex;
  gap: 16px;
  padding-top: 30px;
  padding-bottom: 16px;
  width: 100%;
}

.attriebutes img {
  width: 16px;
  height: 16px;
}

h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  text-align: start;
}

.attriebutes-container {
  display: flex;
  align-items: center;
  border-radius: 16px;
  gap: 6px;
  background-color: rgb(230, 232, 235);
  padding-left: 5px;
  padding-right: 5px;
}

hr {
  border-bottom: 2px solid black;
}

form {
  padding-top: 16px;
}

input {
  width: 150px;
}

.recipes {
  display: flex;
}

label {
  padding-right: 32px;
  font-size: 24px;
}

.recipes-value {
  display: flex;
}

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

li {
  margin-bottom: 0.3rem;
}

ul li:nth-child(odd) {
  background-color: rgb(230, 232, 235);
}

ul li:nth-child(even) {
  background-color: #ffffff;
}

ul li {
  padding: 6px 12px;
  border-radius: 4px;
}

.table-ben {
  width: 100%;
  padding-top: 16px;
  margin-bottom: 0.3rem;
}

.table-ben td {
  padding: 6px 12px;
  border-radius: 4px;
}

.table-ben tbody:nth-child(odd) {
  background-color: rgb(230, 232, 235);
}

.table-ben tbody:nth-child(even) {
  background-color: #ffffff;
}

.me {
  display: flex;
  align-items: center;
  gap: 30px;
}

.me p {
  font-weight: bold;
}

.me img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.slideshow {
  position: relative;
  max-width: 100%;
  margin: 1rem auto;
  overflow: hidden;
  border-radius: 12px;
  height: 50vh;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.slide-image {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .main-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .preparation-info {
    display: contents;
  }
}

@media (max-width: 600px) {
  .attriebutes {
    flex-direction: column;
  }

  @media (max-width: 485px) {
    .recipes {
      flex-direction: column;
    }

    .attriebutes {
      flex-direction: column;
    }

    .me {
      flex-direction: column;
    }

    .me p {
      text-align: center;
      font-weight: bold;
    }

    .slide-image {
      height: auto;
    }

    .slideshow {
      height: auto;
      z-index: 0;
    }
  }
}
