/* BREWER_LOT2_VIDEO_HOTSPOT_CSS_START */
.brewer-video-hotspot,
.brewer-video-hotspot * {
  box-sizing: border-box;
  font-family: Poppins, Helvetica, Arial, sans-serif;
}

.brewer-video-hotspot {
  overflow: visible;
  pointer-events: auto;
  z-index: 10005;
}

.brewer-video-hotspot__button {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
}

.brewer-video-hotspot__pulse,
.brewer-video-hotspot__ring,
.brewer-video-hotspot__orb,
.brewer-video-hotspot__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
}

.brewer-video-hotspot__pulse {
  width: 18px;
  height: 18px;
  background: rgba(244, 197, 0, 0.58);
  animation: brewerVideoPulse 1.8s ease-out infinite;
}

.brewer-video-hotspot__ring {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 18px rgba(244, 197, 0, 0.78), 0 0 4px rgba(0, 0, 0, 0.48);
  transition: width 220ms ease, height 220ms ease, border-color 220ms ease, border-width 220ms ease, box-shadow 220ms ease;
}

.brewer-video-hotspot__orb {
  width: 18px;
  height: 18px;
  background: #f4c500;
  box-shadow: 0 0 14px rgba(244, 197, 0, 0.98);
}

.brewer-video-hotspot__play {
  width: 26px;
  height: 26px;
  opacity: 0;
  background: #f4c500;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.28);
  transition: opacity 180ms ease, transform 220ms ease;
}

.brewer-video-hotspot__play::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #181818;
}

.brewer-video-hotspot.is-hovered .brewer-video-hotspot__ring,
.brewer-video-hotspot__button:hover .brewer-video-hotspot__ring,
.brewer-video-hotspot.is-modal-open .brewer-video-hotspot__ring {
  width: 70px;
  height: 70px;
  border-width: 7px;
  border-color: #f4c500;
  box-shadow: 0 0 28px rgba(244, 197, 0, 0.98), 0 0 9px rgba(0, 0, 0, 0.48);
}

.brewer-video-hotspot.is-hovered .brewer-video-hotspot__play,
.brewer-video-hotspot__button:hover .brewer-video-hotspot__play,
.brewer-video-hotspot.is-modal-open .brewer-video-hotspot__play {
  opacity: 1;
  transform: translate(44px, -50%);
}

.brewer-video-hotspot__preview {
  position: absolute;
  left: 42px;
  top: 50%;
  width: 292px;
  min-height: 208px;
  padding: 12px;
  color: #ffffff;
  background: rgba(20, 20, 20, 0.94);
  border: 1px solid rgba(244, 197, 0, 0.52);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scale(0.94);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  pointer-events: none;
}

.brewer-video-hotspot.is-hovered .brewer-video-hotspot__preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.brewer-video-hotspot__button:hover ~ .brewer-video-hotspot__preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.brewer-video-hotspot__thumbnail {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000000;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.brewer-video-hotspot__preview-kicker {
  margin-top: 10px;
  color: #f4c500;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brewer-video-hotspot__preview-title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.brewer-video-hotspot__preview-text {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.brewer-video-hotspot__modal {
  position: fixed;
  inset: 0;
  z-index: 10080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.64);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
  pointer-events: none;
}

.brewer-video-hotspot.is-modal-open .brewer-video-hotspot__modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.brewer-video-hotspot__panel {
  position: relative;
  width: min(860px, calc(100vw - 48px));
  max-height: min(86vh, 760px);
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto;
  overflow: hidden;
  color: #ffffff;
  background: rgba(18, 18, 18, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.brewer-video-hotspot__header {
  padding: 20px 56px 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brewer-video-hotspot__label {
  color: #f4c500;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.brewer-video-hotspot__title {
  margin-top: 5px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.16;
}

.brewer-video-hotspot__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #181818;
  background: #f4c500;
  cursor: pointer;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  pointer-events: auto;
}

.brewer-video-hotspot__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  background: #000000;
}

.brewer-video-hotspot__frame-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  pointer-events: none;
}

.brewer-video-hotspot__frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
}

.brewer-video-hotspot__body {
  max-height: 178px;
  overflow-y: auto;
  padding: 18px 22px 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-line;
}

.brewer-video-hotspot__body::-webkit-scrollbar {
  width: 4px;
}

.brewer-video-hotspot__body::-webkit-scrollbar-thumb {
  background: #f4c500;
}

@keyframes brewerVideoPulse {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5.2);
  }
}

@media (max-width: 720px) {
  .brewer-video-hotspot__preview {
    display: none;
  }

  .brewer-video-hotspot__modal {
    align-items: stretch;
    padding: 12px;
  }

  .brewer-video-hotspot__panel {
    width: 100%;
    max-height: none;
    margin: auto 0;
    grid-template-rows: auto auto minmax(130px, 1fr);
  }

  .brewer-video-hotspot__header {
    padding: 18px 54px 14px 18px;
  }

  .brewer-video-hotspot__title {
    font-size: 22px;
  }

  .brewer-video-hotspot__body {
    max-height: 34vh;
    padding: 16px 18px 20px;
  }
}
/* BREWER_LOT2_VIDEO_HOTSPOT_CSS_END */
