.diet-list-carousel {
  display: block;
  position: relative;
  margin-top: 0;
}
@media screen and (max-width: 1700px) {
  .diet-list-carousel {
    max-width: calc(100% - 200px) !important;
  }
}
.diet-list-carousel .diet {
  flex-grow: 0;
  flex-shrink: 0;
  width: 280px;
}

.diet {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  box-sizing: border-box;
}
.diet .diet__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.diet .diet__title .title {
  transition: 300ms ease-in-out;
  text-align: center;
}
@media screen and (max-width: 1250px) {
  .diet .diet__title .title {
    font-size: 20px;
  }
}
.diet .diet__title .diet__lead {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
@media screen and (max-width: 1250px) {
  .diet .diet__title .diet__lead {
    font-size: 14px;
  }
}
.diet .diet__image {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  margin-top: auto;
}
.diet .diet__image .diet__img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  transition: 300ms ease-in-out;
}
.diet .diet__image:before {
  content: "";
  z-index: 1;
  position: absolute;
  width: 274px;
  max-width: 90%;
  aspect-ratio: 1.2342342342;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  filter: blur(10px);
  border-radius: 50%;
}
.diet .diet__data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2F2F2F;
  margin-top: auto;
}
.diet .diet__data .diet__data-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.diet .diet__data .diet__data-item .diet__data-item-name {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  color: #777777;
  text-transform: uppercase;
  text-align: center;
}
.diet .diet__data .diet__data-item .diet__data-item-value {
  font-size: 12px;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
.diet .diet__data .diet__data-item .diet__data-item-value span {
  margin: 0 5px;
  color: #FF144A;
}
.diet .diet__price {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: baseline;
}
.diet .diet__price .diet__price-value {
  font-family: "Domaine Text", serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1em;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .diet .diet__price .diet__price-value {
    font-size: 20px;
  }
}
.diet .diet__price .diet__price-value span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .diet .diet__price .diet__price-value span {
    font-size: 14px;
  }
}
.diet .diet__price .diet__price-sup {
  font-size: 12px;
  font-weight: 400;
  line-height: 1em;
  align-self: flex-start;
  padding-top: 7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .diet .diet__price .diet__price-sup {
    padding-top: 4px;
    font-size: 10px;
  }
}
.diet .diet__price .diet__price-sub {
  font-size: 12px;
  font-weight: 400;
  line-height: 1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .diet .diet__price .diet__price-sub {
    font-size: 10px;
  }
}
.diet:hover .diet__image .diet__img {
  transform: rotate(45deg);
}
.diet:hover .diet__title .title {
  color: #FDC703;
}
.diet.diet--carousel, .diet.diet--scroll {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .diet.diet--carousel, .diet.diet--scroll {
    padding-bottom: 0;
  }
}
.diet.diet--carousel .diet__data, .diet.diet--scroll .diet__data {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, #1C1D1C 30.5%, rgba(28, 29, 28, 0) 100%);
  z-index: 2;
  opacity: 0;
  padding: 15px 0 100px;
  border-bottom: none;
}
.diet.diet--carousel .button, .diet.diet--scroll .button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  opacity: 0;
  transition: 300ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .diet.diet--carousel .button, .diet.diet--scroll .button {
    opacity: 1;
    position: initial;
    bottom: 0;
    margin-top: auto;
  }
}
.diet.diet--carousel:hover .button, .diet.diet--scroll:hover .button {
  bottom: 0;
  opacity: 1;
}
.diet.diet--carousel:hover .diet__data, .diet.diet--scroll:hover .diet__data {
  opacity: 1;
  top: 60px;
}

.diets-info.diets-info--upper {
  margin-bottom: 30px;
  margin-top: -30px;
}
.diets-info.diets-info--lower {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .diets-info.diets-info--lower {
    margin-top: 0;
  }
}/*# sourceMappingURL=lovecatering-diet-carousel.css.map */