.c-popup {
  display: none;
  background-color: var(--background-color-gray-dark);
  width: 100%;
  border-top: 1px solid var(--background-color-reverse);
}
.slot.slot-skin.slot-sold:not(:has(iframe)) ~ div .c-popup {
  display: none;
}
.o-wrapper.obg-base.u-relative.iub--active .c-popup {
  display: none;
}
.c-popup.popup--state-opened {
  --_c-popup-display:block;
  animation: popup-fade-in 0.7s forwards ease;
  display: var(--_c-popup-display);
}
[data-premium--product^=WEB_FULL] .c-popup.popup--state-opened, [data-premium--product^=WEB_PLUS] .c-popup.popup--state-opened {
  --_c-popup-display: none;
}
.c-popup__container {
  --_row-gap: 1rem;
  display: grid;
  grid-template-rows: repeat(3, auto);
  row-gap: var(--_row-gap);
  column-gap: 1rem;
  grid-template-areas: "logo" "content" "cta";
}
@media screen and (min-width: 740px) {
  .c-popup__container {
    --_row-gap: unset;
    grid-template-rows: auto;
    grid-template-columns: repeat(5, 1fr) auto;
    grid-template-areas: "content content content cta cta icon" "content content content . . .";
  }
}
@media screen and (min-width: 1280px) {
  .c-popup__container {
    --_row-gap: unset;
    grid-template-rows: auto;
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: "logo content content content cta cta" "logo content content content . .";
  }
}
@media screen and (min-width: 740px) {
  .c-popup #open-pop-up:checked ~ .c-popup__icon--chevron {
    transform: rotate(180deg);
    align-self: center;
  }
}
.c-popup #open-pop-up:checked ~ .c-popup__icon--chevron-up {
  display: none;
}
@media screen and (min-width: 740px) {
  .c-popup #open-pop-up:checked ~ .c-popup__icon--chevron-up {
    display: block;
  }
}
.c-popup #open-pop-up:checked ~ .c-popup__icon--chevron-down {
  display: none;
}
@media screen and (min-width: 740px) {
  .c-popup #open-pop-up:checked ~ .c-popup__content {
    align-self: center;
  }
}
@media screen and (min-width: 740px) {
  .c-popup #open-pop-up:checked ~ .c-popup__cta--primary {
    grid-column-end: 5;
  }
}
@media screen and (min-width: 1280px) {
  .c-popup #open-pop-up:checked ~ .c-popup__cta--primary {
    grid-column-end: 6;
  }
}
.c-popup #open-pop-up:checked ~ .c-popup__cta--secondary {
  display: none;
}
@media screen and (min-width: 740px) {
  .c-popup #open-pop-up:checked ~ .c-popup__cta--secondary {
    display: block;
    grid-column-start: 5;
  }
}
@media screen and (min-width: 1280px) {
  .c-popup #open-pop-up:checked ~ .c-popup__cta--secondary {
    grid-column-start: 6;
  }
}
.c-popup__icon {
  position: absolute;
  top: 0;
}
.c-popup__icon a {
  color: unset;
}
.c-popup__icon--close {
  --_icon-close-display:flex;
  display: var(--_icon-close-display);
  align-items: center;
  justify-content: center;
  right: 16px;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 740px) {
  .c-popup__icon--close {
    --_icon-close-display: none;
  }
}
.c-popup__icon--chevron {
  --_icon-chevron-display:none;
  --_icon-position: relative;
  display: var(--_icon-chevron-display);
  transition: transform 0.3s linear;
}
@media screen and (min-width: 740px) {
  .c-popup__icon--chevron {
    --_icon-chevron-display: block;
    position: var(--_icon-position);
    grid-area: icon;
  }
}
@media screen and (min-width: 1280px) {
  .c-popup__icon--chevron {
    right: -70px;
    --_icon-position: absolute;
  }
}
.c-popup__icon--chevron-up {
  --_icon-chevron-display: none;
}
.c-popup__logo {
  --_logo-display:none;
  --_logo-justify-self:flex-end;
  grid-area: logo;
}
@media screen and (min-width: 740px) {
  .c-popup__logo {
    display: var(--_logo-display);
  }
}
@media screen and (min-width: 1280px) {
  .c-popup__logo {
    border-right: 1px solid #d9d9d9;
    padding-right: 1rem;
    --_logo-display: block;
    justify-self: var(--_logo-justify-self);
  }
  .c-popup__logo svg {
    max-width: 190px;
  }
  .c-popup__logo--dossier {
    --_logo-justify-self: unset;
  }
  .c-popup__logo--dossier svg {
    max-width: 135x;
  }
}
.c-popup__content {
  grid-area: content;
}
@media screen and (min-width: 1280px) {
  .c-popup__content {
    align-self: center;
  }
}
.c-popup__title--dossier {
  color: #161616;
  padding: 0.2rem 0.3rem;
  background-color: #FFFF00;
}
.c-popup__paragraph {
  opacity: 1;
  display: block;
  transition: opacity 0.3s linear, display 0.3s linear;
  line-height: calc(1em + 4px);
  font-family: var(--font-sans-grotesk);
  font-size: 0.875rem;
  font-weight: 400;
}
.c-popup__cta {
  grid-area: cta;
  align-self: start;
  grid-auto-rows: 0;
}
.c-popup__cta--secondary {
  display: none;
}
@media screen and (min-width: 740px) {
  .c-popup_closed {
    display: none;
    height: 0;
    max-height: 0;
    opacity: 0;
  }
}

@keyframes popup-fade-in {
  from {
    transform: translateY(calc(100% + 50px));
  }
  to {
    transform: translateY(0);
  }
}