{% css %}

.videoWithSound,
.videoTube {
  position: relative;
  z-index: 1;
  /* Safari mobile bug */
}

.videoWithSound .muteIcon {
  position: absolute;
  z-index: 1;
  top: 22rem;
  right: 22rem;
  width: 22rem;
  height: 22rem;
  mix-blend-mode: difference;
}

@media screen and (max-width: 800px) {
  .videoWithSound .muteIcon {
    top: 14rem;
    right: 10rem;
    width: 20rem;
    height: 20rem;
  }
}

.videoTube .paused {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 66rem;
  height: 66rem;
  cursor: pointer;
  transition: 200ms;
}

.videoTube:hover .paused {
  filter: invert();
  transition: 0s;
}

{% endcss %}