.dom-home-showreel {
  position: relative;
}

.dom-home-audio-toggle {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2200;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 250ms ease,
    background 200ms ease,
    color 200ms ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.dom-home-audio-toggle.is-visible {
  opacity: 0.55;
  pointer-events: auto;
}

.dom-home-audio-toggle:focus-visible {
  outline: none;
}

.dom-home-audio-toggle.is-visible:hover,
.dom-home-audio-toggle.is-visible:focus-visible {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
  color: white;
}

.dom-home-audio-toggle.is-on {
  color: white;
  background: rgba(0, 0, 0, 0.35);
}

.dom-home-audio-toggle.is-visible.is-on {
  opacity: 0.85;
}

.audio-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  pointer-events: none;
}

.audio-toggle-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.dom-home-audio-toggle .icon-unmuted {
  display: none;
}

.dom-home-audio-toggle.is-on .icon-unmuted {
  display: block;
}

.dom-home-audio-toggle.is-on .icon-muted {
  display: none;
}

@media (max-width: 767px) {
  .dom-home-audio-toggle {
    width: 72px;
    height: 72px;
  }
  .audio-toggle-icon {
    width: 32px;
    height: 32px;
  }
}

.accent-span {
  text-transform: none;
  font-style: italic;
  display: inline;
}
