/* Single Video Block Styles */
/*transform origin*/
.single-video-wrapper {
  position: relative;
  overflow: hidden;
}

.single-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 49.72%;
}
.single-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .single-video-container video {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
  }
}

video::-webkit-media-controls {
  display: none !important;
}

.video-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 16px;
  z-index: 10;
}

.video-control-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 1.8px 3.6px 27px 0px rgba(0, 0, 0, 0.1);
  transition: none;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@-moz-document url-prefix() {
  .video-control-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
  }
}
@supports (-webkit-mask-composite: xor) {
  .video-control-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(250.96deg, #ffffff 1.86%, rgba(255, 255, 255, 0) 50.97%, #ffffff 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
  }
}
.video-control-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.video-control-btn.play-pause {
  background-image: url("../../images/pause-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767.8px) {
  .video-control-btn.play-pause {
    background-size: 20px;
  }
}
.video-control-btn.play-pause::before {
  content: "";
}
.video-control-btn.play-pause.playing {
  background-image: url("../../images/play-icon.svg");
}
.video-control-btn.mute {
  background-image: url("../../images/sound-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767.8px) {
  .video-control-btn.mute {
    background-size: 20px;
  }
}
.video-control-btn.mute::before {
  content: "";
}
.video-control-btn.mute.muted {
  background-image: url("../../images/mute-icon.svg");
}

@media (max-width: 768px) {
  .video-controls {
    bottom: 25px;
    right: 25px;
    gap: 10px;
  }
  .video-control-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    max-width: 45px;
    max-height: 45px;
  }
}
@media (max-width: 480px) {
  .video-controls {
    bottom: 15px;
    right: 15px;
    gap: 6px;
  }
  .video-control-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
  }
}

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