theme-video-media {
  position: relative;
  display: block;
  width: 100%;
}

.theme-video-media video,
.theme-video-media iframe {
  width: 100%;
  height: auto;
}

.theme-video-media__poster {
  position: relative;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
theme-video-media[data-autoplay="true"] .theme-video-media__poster{
 opacity: 0;
}
theme-video-media[data-loaded="true"] .theme-video-media__poster{
 opacity: 0;
}

.theme-video-media__poster img,
.theme-video-media__poster svg {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-video-media__play-button {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  z-index: 3;
  display: flex;
  width: 15%;
  min-width: 36px;
  max-width: 88px;
  aspect-ratio: 1;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transform: translate(-50%, -50%);
}

/* .theme-video-media__play-button:hover {
  transform: translate(-50%, -50%) scale(1.11);
} */

.theme-video-media__play-button-icon {
  z-index: 3;
  width: 100%;
  height: 100%;
}

.theme-video-media__media {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.theme-video-media__media.active {
  z-index: 2;
}

.theme-video-media--empty {
  width: 100%;
  height: 848px;
}

@media (max-width: 959px) {
  .theme-video-media--empty {
    height: 188px;
  }
}
svg.icon.icon-video-play.theme-video-media__play-button-icon circle {
    fill: #b78a5f;
}

svg.icon.icon-video-play.theme-video-media__play-button-icon path {
    fill: #ffffff !important;
}
.theme-video-media__play-button {
    transform: unset;
    inset-block-start: unset;
    inset-inline-start: unset;
    right: 20px;
    bottom: 23px;
    width: 44px;
    height: 44px;
}