.play-button {
  font-size: 0.7em;
  padding: 0.2em 0.4em;
  margin-left: 0.4em;
  vertical-align: bottom;
}
.player-title {
  padding: 0.5em 1em;
  vertical-align: middle;
  font-size: 16px;
  overflow: hidden;
}
.audio-button::before {
  content: "🔈";
}
.image-button::before {
  content: "👀";
}
.video-button::before {
  content: "▶";
}
.ctrl-button {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}
.ctrl-out {
  position: fixed;
  width: 30%;
  height: 30%;
  right: 0;
  top: 0;
}
#img-up {
  position: fixed;
  width: 50%;
  height: 70%;
  left: 0;
  bottom: 0;
}
#img-down {
  position: fixed;
  width: 50%;
  height: 70%;
  right: 0;
  bottom: 0;
}
#img-auto {
  position: fixed;
  width: 30%;
  height: 30%;
  left: 0;
  top: 0;
}
.player {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  #audio-player {
    position: fixed;
    left: 0;
    top: 0;
    margin-top: 0;
    padding: 0.5%;
    width: calc((100vw - 800px) / 2 - 0.5em);
    box-sizing: border-box;
    background: var(--good-contrast);
  }
}
@media {
  #audio-player {
    background: var(--good-contrast);
  }
  #image-player {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--good-contrast);
  }
  #image-player img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
  }
  #video-player {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--good-contrast);
  }
  #video-player video {
    max-width: 100%;
    max-height: 100%;
    height: auto;
  }
}
