.ellipsis {
  white-space: nowrap; /* 1 */
  text-overflow: ellipsis; /* 2 */
  overflow: hidden;
}

.popup-open {
  overflow: hidden;
}

.paragraph--type--lunch.paragraph-lunch--veggie-yes .teaser .img-holder:before {
  content: "";
  background: url("../../images/Leaf-1.svg") no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: white;
  border-radius: 50px;
}
.paragraph--type--lunch.paragraph-lunch--gluten-free-yes .teaser .img-holder:after {
  content: "";
  background: url("../../images/Glutenfree.svg") no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 50px;
  top: 10px;
  background-size: contain;
}
.paragraph--type--lunch.paragraph-lunch--gluten-free-yes:not(.paragraph-lunch--veggie-yes) .teaser .img-holder:after {
  right: 10px;
  top: 10px;
}
.paragraph--type--lunch .teaser {
  background-color: #fff;
  margin-bottom: 8.523%;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0px 10px 30px 5px rgba(0, 0, 0, 0.1);
  min-height: 290px;
  position: relative;
  transition: transform 300ms ease 0ms, box-shadow 300ms ease 0ms;
}
.paragraph--type--lunch .teaser:hover {
  box-shadow: 0px 10px 30px 6px rgba(0, 0, 0, 0.1);
  transform: scaleX(1.05) scaleY(1.05);
}
.paragraph--type--lunch .teaser .popup-opener {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  z-index: 1;
}
.paragraph--type--lunch .teaser .img-holder {
  position: relative;
  height: 190px;
}
.paragraph--type--lunch .teaser .img-holder img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.paragraph--type--lunch .teaser .text-holder {
  padding: 20px;
}
.paragraph--type--lunch .teaser h3 {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #3d3d3d;
  margin: 0;
}
.paragraph--type--lunch .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: saturate(180%) blur(5px);
  display: none;
  z-index: 99;
  padding: 50px 10px;
}
.paragraph--type--lunch .inner .h2 {
  font-family: "Lexend", Helvetica, Arial, Lucida, sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .paragraph--type--lunch .inner .h2 {
    font-size: 42px;
  }
}
.paragraph--type--lunch .inner .inner-content {
  padding: 50px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  box-shadow: 0 3px 10px -1px rgba(0, 0, 0, 0.3), 0 2px 50px 2px rgba(0, 0, 0, 0.2);
  background-color: #ccdcf0;
  border-radius: 30px;
  max-height: calc(100vh - 100px);
  overflow: auto;
  max-width: calc(100vw - 20px);
  width: 100%;
}
@media (min-width: 768px) {
  .paragraph--type--lunch .inner .inner-content {
    width: 90%;
  }
}
.paragraph--type--lunch .inner .row {
  width: 80%;
  max-width: 1080px;
  margin: auto;
  position: relative;
  padding: 2% 0;
  display: block;
}
@media (min-width: 1024px) {
  .paragraph--type--lunch .inner .row {
    display: flex;
    justify-content: space-between;
  }
}
.paragraph--type--lunch .inner .inner-images {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .paragraph--type--lunch .inner .inner-images {
    margin-bottom: 0;
    width: 47.25%;
  }
}
.paragraph--type--lunch .inner .inner-images img {
  vertical-align: top;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 30px 5px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .paragraph--type--lunch .inner .inner-text {
    width: 47.25%;
  }
}
.paragraph--type--lunch .inner .close {
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
  font-size: 40px;
  font-weight: 400;
  right: 20px;
  top: 20px;
  position: absolute;
  color: #333;
  height: 30px;
  line-height: 30px;
  opacity: 0.7;
  transition: all 0.3s;
  width: 30px;
  padding: 0;
  background: transparent;
  border: 0;
  transition: all 0.3s ease-in-out;
}
.paragraph--type--lunch .inner .close:hover {
  color: #000;
  opacity: 1;
  transform: scale(1.1);
}

html[lang=fr] .paragraph--type--lunch .inner .inner-content {
  background-color: #f8bbc3;
}