@media (max-width: 767.98px) {
  .video {
    padding: 0 1.875rem;
  }
}
.video--color-secondary {
  background-color: var(--color-secondary);
  box-shadow: -50vw 0 var(--color-secondary), 50vw 0 var(--color-secondary);
}
.video__wrapper {
  transform-origin: center center;
  transition: transform 0.1s linear;
  width: 100%;
}
.video__player-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video__video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--color-on-primary);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: background-color 300ms ease, transform 300ms ease;
}
@media (min-width: 768px) {
  .video__play-btn {
    width: 7.5rem;
    height: 7.5rem;
  }
}
.video__play-btn svg {
  width: 1.875rem;
  height: 1.875rem;
  margin-left: 0.3125rem;
}
.video__play-btn svg polygon {
  fill: var(--color-primary);
  transition: fill 300ms ease;
}
.video__play-btn:hover {
  background-color: var(--color-on-primary);
  transform: translate(-50%, -50%) scale(1.1);
}
.video__play-btn--hidden {
  opacity: 0;
  pointer-events: none;
}

/*# sourceMappingURL=video.css.map */
