.r-menu-module {
  margin-top: 20px;
}

.r-menu-module__photo {
  width: 100%;
  height: 325px !important;
  min-width: 175px;
  object-fit: cover;
  border: 0.25rem solid black;
  border-radius: 10px;
  box-shadow: -10px 10px 10px 0px rgba(0,0,0,0.75);
}

.r-menu-module__items {
  display: flex;
  margin: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.r-menu-module__info {
  width: 100%;
  margin-top: 20px;
}

.r-menu-module__title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid black;
  align-items: center;
}

.r-menu-module__text {
  padding-top: 20px;
}

.r-menu-module__row > * {
  transition:
      opacity 300ms ease,
      transform 300ms ease;
  will-change: opacity, transform;
}

.r-menu-module__row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.r-menu-module__price {
  width: 20%;
  text-align: right;
}

.r-menu-module__header {
  margin-bottom: 50px
}

.r-menu-module__footer {
  margin-top: 50px;
}

.r-menu-module__footer figure {
  border: none;
}

.fancybox-caption-wrap {
  text-align: center;
}

.fancybox-caption {
  font-size: 24px;
}

@media (min-width: 992px) {
    .r-menu-module__photo {
        width: 30%;
        height: 175px !important;
        max-width: 175px;
    }

    .r-menu-module__price {
        width: 25%;
    }

    .r-menu-module__items {
        flex-wrap: nowrap;
        flex: 0 0 calc(50% - 25px);
    }

    .r-menu-module__info { 
      margin-left: 20px;
      margin-top: 0;
    }
}