@charset "utf-8";
/*
 * Consent gate for YouTube embeds — pairs with custom/onetrust/js/consent-video.js.
 * Mirrors the standard Toyota "video blocked by consent" treatment used on
 * toyota.co.th so the notice looks the same across TMT sites.
 *
 * Compiled from ../scss/consent-video.scss by hand — keep both files in step.
 */
/* Wraps a blocked in-flow iframe so the notice can cover exactly the box the
   site's own CSS gives that iframe (e.g. `.vdo iframe { width; height }`). */
.pdpa-video-slot {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

/* Base notice. Used in the flow where a slot needs its own box;
   the --overlay modifier covers an existing box. */
.pdpa-info-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: url("https://www.toyota.co.th/media/general/yt-cookie-consent-bg-default.webp") center/cover no-repeat #000;
  text-align: center;
}
/* Covers a slot that is already sized — the lightbox, a popup video box. */
.pdpa-info-box--overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  aspect-ratio: auto;
}
.pdpa-info-box .overlay-text {
  z-index: 2;
  max-width: 90%;
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--font-saraban-light, "Sarabun Light"), sans-serif;
  text-align: center;
}
.pdpa-info-box .title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.pdpa-info-box .desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
}
.pdpa-info-box .btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #eb081e;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.pdpa-info-box .btn:hover {
  background: #ff7878;
}

@media (max-width: 991px) {
  .pdpa-info-box .overlay-text {
    padding: 14px;
  }
  .pdpa-info-box .title {
    font-size: 15px;
  }
  .pdpa-info-box .desc {
    margin-bottom: 14px;
    font-size: 12px;
  }
  .pdpa-info-box .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}
/* --- toyotasitevisit slots --- */
/* Venue video lightbox: the iframe is absolutely positioned inside a
   padding-bottom box, so the notice is appended alongside it. */
.video-lightbox__video .pdpa-info-box {
  z-index: 2;
}

/* Landing-page popups (tas_footer): `.vdo` is a fixed-size box whose iframe is
   sized with height: 100%, so the slot has to pass that height through. */
.popup__cheewa-panavet .detail .vdo .pdpa-video-slot,
.popup__greentown .detail .vdo .pdpa-video-slot,
.popup__itc .detail .vdo .pdpa-video-slot,
.popup__plant-tour .detail .vdo .pdpa-video-slot,
.popup__tsi .detail .vdo .pdpa-video-slot,
.popup__whiteroad .detail .vdo .pdpa-video-slot {
  height: 100%;
}
