.aae-a-video {
  aspect-ratio: 16/9;
}
.aae-a-video .aae-a-video-poster,
.aae-a-video .aae-a-video-mount {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
  aspect-ratio: auto;
}
.aae-a-video .aae-a-video-poster {
  z-index: 1;
  transition: opacity 0.2s ease;
}
.aae-a-video.is-playing .aae-a-video-poster {
  opacity: 0;
  pointer-events: none;
}
.aae-a-video .aae-a-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.aae-a-video .aae-a-video-playbtn {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.aae-a-video.is-playing .aae-a-video-playbtn {
  opacity: 0;
  pointer-events: none;
}
.aae-a-video[data-aae-video-playbtn-enabled=false] .aae-a-video-playbtn {
  display: none;
}
.aae-a-video .aae-a-video-playbtn:hover,
.aae-a-video .aae-a-video-playbtn:focus-visible {
  transform: scale(1.08);
}
.aae-a-video .aae-a-video-playbtn:active {
  transform: scale(0.94);
}
.aae-a-video[data-aae-video-playbtn-pulse=true] .aae-a-video-playbtn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: aae-a-video-playbtn-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes aae-a-video-playbtn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.aae-a-video-mount {
  background: #000;
}

.aae-a-video-native,
.aae-a-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.aae-a-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.aae-a-video-clickzone {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.aae-a-video-controls {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.aae-a-video:hover .aae-a-video-controls,
.aae-a-video:focus-within .aae-a-video-controls,
.aae-a-video:not(.is-playing) .aae-a-video-controls {
  opacity: 1;
}

.aae-a-video.is-playing.is-controls-hidden .aae-a-video-controls {
  opacity: 0;
}

.aae-a-video.is-playing.is-controls-hidden:hover .aae-a-video-controls,
.aae-a-video.is-playing.is-controls-hidden:focus-within .aae-a-video-controls {
  opacity: 1;
}

.aae-a-video-progress {
  position: relative;
  flex: 1 1 auto;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: height 0.15s ease;
}
.aae-a-video-progress:hover {
  height: 6px;
}

.aae-a-video-progress-fill {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0%;
  border-radius: 2px;
  background: #ffffff;
  pointer-events: none;
}

.aae-a-video-time {
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: 12px;
  color: #ffffff;
}

.aae-a-video-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
}
.aae-a-video-btn:hover, .aae-a-video-btn:focus-visible {
  opacity: 0.8;
}

.aae-a-video-icon-play[hidden],
.aae-a-video-icon-pause[hidden],
.aae-a-video-icon-unmuted[hidden],
.aae-a-video-icon-muted[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .aae-a-video-playbtn,
  .aae-a-video-poster,
  .aae-a-video-controls,
  .aae-a-video-progress {
    transition: none;
  }
  .aae-a-video-playbtn::after {
    animation: none;
  }
}
/*# sourceMappingURL=video.css.map */
