
/**
  Type of content : promotional - Main
*/
.promotional-full:not(.promotional-full--video) .hero-content::before {
  display: none;
}

.promotional__main {
  position: relative;
  padding: 4rem 0;
}
.promotional__main::before {
  content: '';
  background: url('../../images/background-light-blue.svg');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
}
.promotional__main::after {
  content: '';
  background: url('../../images/background-blue.svg');
  background-repeat: no-repeat;
  width: 389px;
  height: 594px;
  right: 0;
  bottom: -280px;
  position: absolute;
  z-index: -1;
}
.promotional__main--wrapper {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--principal-basics-ultralight-grey, #F8F8F8);
  background: var(--principal-basics-white, #FCFCFC);
  box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  padding: 2.5rem;
  margin:  auto;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 795px;
}

.promotional__bibliography,
.promotional__bibliography-title,
.promotional__description {
  color: var(--pf-brand-primary-70);
}

.promotional__description {
  font-size: 1rem;
  line-height: 160%;
  position: relative;
}
.promotional__bibliography {
  position: relative;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 400;
  line-height: 130%;
  word-break: break-word;
}
.promotional__full {
  display: flex;
  flex-direction: column;
}
.promotional__full img{
  margin: 0 auto;
}
.promotional__iframe iframe {
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: none;
}
.promotional__introduction-media {
  display: none;
}
.promotional__introduction-media.disabled {
  display: block;
  filter: blur(7px);
  margin-bottom: 3rem;
  margin-top: 2rem;
  pointer-events: none;
}
.promotional__bibliography-title {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
.promotional__bibliography--no-log {
  margin-top: 3rem;
}

.promotional__rating {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.promotional__rating p {
  margin: 0;
}
.promotional__full .media--type-promotional {
  display: none;
}
.promotional__locked-message {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 40px;
}
.promotional__link {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: fit-content;
  border-bottom: 2px solid var(--color-primary--6);
  transition: ease all 150ms;
  position: relative;
  margin-left: 37px;
  align-self: self-end;
}
.promotional__link::before {
  content: '';
  background-image: url('../../images/arrow-primary-light.svg');
  width: 20px;
  height: 21px;
  position: absolute;
  left: -37px;
  top: 50%;
  transform: translateY(-50%);
  transition: ease all 150ms;
  background-color: transparent;
  padding: 0.3rem;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.promotional__link:hover::before {
  background-color: var(--color-primary--7);
  background-image: url('../../images/arrow-primary-light-white.svg');
}
@media all and (min-width: 450px) {
  .promotional__rating {
    justify-content: end;
    flex-direction: row;
  }
}
@media all and (min-width: 768px) {
  .promotional__full .media--type-promotional {
    display: block;
  }
  .promotional__full.js-active .media--type-promotional {
    height: 100%;
  }
}


/**
 * promotional Iframe/Media
 */

.promotional__full.js-active .promotional__iframe,
.promotional__full.js-active .promotional__media {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  background-color: hsla(0, 0%, 0%, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promotional__full.js-active .promotional__iframe .promotional__iframe-container {
  width: 80%;
  height: fit-content;
  position: relative;
}
.promotional__full.js-active .promotional__media .promotional__media-container {
  height: 100%;
  max-height: 80%;
  width: 80%;
  position: relative;
}
.promotional__iframe-fullscreen-button-close,
.promotional__media-fullscreen-button-close {
  display: none;
}
.promotional__full.js-active .promotional__iframe-fullscreen-button-close,
.promotional__full.js-active .promotional__media-fullscreen-button-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: hidden;
  width: 30px;
  height: 30px;
  border: none;
  background-color: #fff;
  text-indent: -9999px;
  transform: translateX(50%) translateY(-50%);
  border-radius: 100%;
  filter: drop-shadow(2px 4px 6px rgba(0, 11, 44, 0.10));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  background-image: url('../../images/close-cross.svg');
}
.promotional__iframe-fullscreen-button,
.promotional__media-fullscreen-button {
  transition: ease all 150ms;
  display: inline-block;
  position: relative;
  background-color: transparent;
  border-top: 0;
  border-bottom: 2px solid var(--color-primary--6);
  border-left: 0;
  border-right: 0;
  margin: 1rem 0 1rem auto;
}
.promotional__iframe-fullscreen-button::before,
.promotional__media-fullscreen-button::before {
  content: '';
  background-image: url('../../images/fullscreen.svg');
  width: 20px;
  height: 21px;
  position: absolute;
  left: -37px;
  top: 50%;
  transform: translateY(-50%);
  transition: ease all 150ms;
  background-color: transparent;
  padding: 0.3rem;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.promotional__iframe-fullscreen-button:hover,
.promotional__media-fullscreen-button:hover {
  border-bottom: 2px solid var(--color-secondary--4);
}
.promotional__iframe-fullscreen-button:hover::before,
.promotional__media-fullscreen-button:hover::before {
  background-color: var(--color-primary--7);
  background-image: url('../../images/fullscreen-hover.svg');
}


/**
 * CTA Download mobile
 */
.promotional__mobile-download{
  margin: auto;
  display: block;
}
.media-download-mobile {
  background-color: var(--color-primary--7);
  color: #fff;
  padding: 16px 24px;
  width: fit-content;
  display: flex;
  align-items: center;
  transition: ease all 0.3s;
  gap: 1rem;
}
.media-download-mobile::after {
  content: '';
  display: block;
  background: url('../../images/cta/arrow-white.svg');
  width: 21px;
  height: 15px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media all and (min-width: 768px) {
  .promotional__mobile-download{
    display: none;
  }
}


/**
  * Promotional message
  */

.promotional__message {
  background-color: var(--color-secondary--4);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 8px;
  line-height: 120%;
  width: fit-content;
  position: relative;
}
.promotional__separator {
  max-width: 426px;
  width: 100%;
  height: 1px;
  max-width: 426px;
  background: #C7CCD1;
}


/**
 * Specific code for promotional hero
 */
.promotional-full .hero-content__title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.promotional-full .hero-content__subtitle {
  margin: 0;
}
.promotional-full .hero-content__target {
  background-color: var(--color-secondary--5);
  color: #fff;
  font-size: 14px;
  padding: 4px 8px;
  line-height: 120%;
  width: fit-content;
  position: relative;
}
.promotional-full .hero-content__visa {
  color: #454D54;
  font-size: 14px;
  padding-top: 24px;;
}

.hero-content__image--filtered picture{
  filter: blur(7px);
  opacity: 0.25;
}

.promotional__card-push {
  width: fit-content;
  margin: auto;
  padding: 64px 0 0;
}
