/* Consent Video Placeholder */
.consent-video-container {
  position: relative;
  background: #eee;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.7777777778;
}
.heading.video .consent-video-container {
  position: unset;
  background: unset;
  aspect-ratio: auto;
}
.portrait .consent-video-container {
  aspect-ratio: 0.5625;
}
.consent-video-container iframe, .consent-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.consent-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #999;
  color: #fff;
  padding: 20px;
  z-index: 2;
  text-align: center;
}
.consent-video-placeholder p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.consent-video-placeholder .btn_type {
  margin: 0 auto;
  display: table;
}
.consent-video-blocked ~ .consent-video-placeholder {
  display: flex;
}
.unblocked .consent-video-placeholder {
  display: none;
}
.consent-video-blocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Magnific Popup Integration */
.mfp-iframe-scaler .mfp-consent-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  padding: 40px;
  z-index: 2;
  text-align: center;
}
.mfp-iframe-scaler .mfp-consent-placeholder .consent-video-message p {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
}
.mfp-iframe-scaler .mfp-consent-placeholder .consent-video-message .btn_type {
  margin: 0 auto;
}
