img[style*='float: left'] {
  margin-right: 40px;
}

img[style*='float: right'] {
  margin-left: 40px;
}

.article .gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.article .gallery img {
  max-height: 250px;
  cursor: pointer;
  margin: auto;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}

.article .lightbox {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: -1;
  padding: 20px;
  display: none;
  position: fixed;
  background-color: white;
}

.article .lightbox.open {
  z-index: 10000;
  display: flex;
}

.article .lightbox img {
  margin: auto;
  max-height: 100%;
}

.article .lightbox .prev,
.article .lightbox .next,
.article .lightbox .close {
  border: none;
  font-size: 56px;
  position: absolute;
  background-color: transparent;
}

.article .lightbox .prev,
.article .lightbox .next {
  top: 50%;
  transform: translateY(-50%);
}

.article .lightbox .prev {
  left: 10px;
}

.article .lightbox .next {
  right: 10px;
}

.article .lightbox .close {
  top: 10px;
  right: 10px;
}

.articleForm input:not([type='checkbox']),
.articleForm input:not([type='radio']),
.articleForm input:not([type='hidden']),
.articleForm select,
.articleForm textarea {
  width: 100%;
  -webkit-padding: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 4px;
}

.alert {
  top: 0;
  left: 0;
  z-index: 10000;
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.6);
}

.alert .close {
  margin: auto;
  display: block;
  margin-top: 25px;
}

.alert > div {
  background-color: white;
  padding: 25px 20px 15px 20px;
  position: relative;
}

.alert .line {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 100%;
}

.alert-success .line {
  background-color: green;
}

.alert-warning .line {
  background-color: yellow;
}

.alert-error .line,
.alert-danger .line {
  background-color: red;
}

@media only screen and (max-width: 768px) {
  .article .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 576px) {
  .article .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.art_video {
  width: 100%;
  aspect-ratio: 1.77;
  border: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.formError {
  color: red;
  margin-top: 5px;
  font-weight: 600;
  grid-column: 1 / -1;
}

.lab-01 {
  visibility: hidden;
  height: 0;
}
.articleForm .formRow.lab-01 {
  margin-top: 0;
}

.rodo-02 {
  visibility: hidden;
  height: 0;
}
.articleForm .formRow.rodo-02 {
  margin-top: 0;
}

/* place */
/* place */
/* place */

.sec13 .container {
  width: 95%;
  padding: 70px 0;
  color: #262626;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.sec13 .category-title {
  text-transform: capitalize;
  font-size: var(--font-size-md);
}

.sec13 .category-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sec13 h1 {
  text-align: center;
  font-weight: 500;
  font-size: 34px;
}

.sec13 .category-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec13 h3 {
  font-weight: 500;
}

.box1300 {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-gray);
}

.box1300 .image {
  width: 100%;
  height: 50%;
}

.box1300 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box1300 .description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box1300 .ingredients {
  display: flex;
  gap: 20px;
}

.box1300 h5 {
  font-weight: 600;
  font-size: 16px;
}

.box1300 .ingredients {
  font-size: 14px;
}

.box1300 .tags {
  padding-top: 5px;
  font-size: 12px;
  opacity: 0.7;
  line-height: 1rem;
}

.box1300 .price {
  margin-top: 20px;
  font-weight: 600;
}

@media (max-width: 1210px) {
  .sec13 .category-wrap {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sec13 .category-wrap {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .sec13 .category-wrap {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .box1300 {
    width: 100%;
  }
}
