/**
 * The challenge here to support "playable queries" and "direction" at the same time and allow mixins like:
 *   @include query(max-width-550())
 *   @include query(max-width-550(), ltr())
 *   @include query(max-width-550(), rtl())
 */
.controlButton {
  display: flex;
  padding: 0;
  cursor: pointer;
  transition-duration: .2s;
  transition-property: opacity;
  opacity: 1;
  border: 0;
  border-radius: 0;
  outline: none;
  background-color: transparent;
  justify-content: center;
  align-items: center; }
  .controlButton:hover {
    opacity: .7; }

.hidden {
  visibility: hidden !important;
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important; }

.volumeControl {
  position: relative;
  display: flex;
  user-select: none;
  transition: width .2s;
  justify-content: flex-start;
  align-items: center; }
  [data-playable-hook='player-container'][data-playable-in-full-screen="true"] .volumeControl {
    height: 35px; }
  .volumeControl:hover .volumeInputBlock, .volumeControl.isDragging .volumeInputBlock {
    width: 50px;
    margin-right: 5px;
    opacity: 1; }
    [data-playable-hook='player-container'][data-playable-in-full-screen="true"] .volumeControl:hover .volumeInputBlock, [data-playable-hook='player-container'][data-playable-in-full-screen="true"] .volumeControl.isDragging .volumeInputBlock {
      width: 90px;
      margin-right: 10px; }

.volume0Icon {
  display: none; }

.volume50Icon {
  display: none; }

.volume100Icon {
  display: none; }

.muteIcon {
  display: none; }

.muteToggle {
  width: 26px;
  min-width: 26px;
  height: 26px;
  min-height: 26px;
  padding: 0; }
  [data-playable-hook='player-container'][data-playable-in-full-screen="true"] .muteToggle {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px; }
    [data-playable-hook='player-container'][data-playable-in-full-screen="true"] .muteToggle .icon_small {
      display: none; }
    [data-playable-hook='player-container'][data-playable-in-full-screen="true"] .muteToggle .icon_big {
      display: block; }
  .muteToggle.volume0 .volume0Icon {
    display: block; }
  .muteToggle.volume50 .volume50Icon {
    display: block; }
  .muteToggle.volume100 .volume100Icon {
    display: block; }
  .muteToggle.muted .volume0Icon {
    display: block; }
  .muteToggle .icon_small {
    display: block; }
  .muteToggle .icon_big {
    display: none; }

.volumeInputBlock {
  position: relative;
  display: block;
  width: 0;
  height: 25px;
  margin-left: 2px;
  transition: opacity .2s, width .2s;
  opacity: 0; }
  [data-playable-hook='player-container'][data-playable-in-full-screen="true"] .volumeInputBlock {
    margin-left: 5px; }

.progressBar {
  position: absolute;
  top: 11.5px;
  height: 2px;
  padding: 0; }

.volume:after {
  position: absolute;
  top: -3px;
  right: -4px;
  width: 8px;
  height: 8px;
  content: '';
  transition: opacity .2s;
  border-radius: 50%; }
  [data-playable-hook='player-container'][data-playable-in-full-screen="true"] .volume:after {
    top: -4px;
    right: -5px;
    width: 10px;
    height: 10px; }

.background {
  width: 100%; }

.hitbox {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  height: 25px;
  cursor: pointer;
  opacity: 0; }

:global [data-playable-focus-source='key'] [data-playable-hook='volume-control'] .focus-within:local.volumeInputBlock,
:global [data-playable-focus-source='script'] [data-playable-hook='volume-control'] .focus-within:local.volumeInputBlock {
  width: 50px;
  margin-right: 5px;
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(56, 153, 236, 0.8); }
  [data-playable-hook='player-container'][data-playable-in-full-screen="true"] :global [data-playable-focus-source='key'] [data-playable-hook='volume-control'] .focus-within:local.volumeInputBlock, [data-playable-hook='player-container'][data-playable-in-full-screen="true"]
  :global [data-playable-focus-source='script'] [data-playable-hook='volume-control'] .focus-within:local.volumeInputBlock {
    width: 90px;
    margin-right: 10px; }
