body {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
}

#tape-reel {
  width: min(449px, 100%);
  aspect-ratio: 449 / 283;
  position: relative;
  margin: 0 auto;
}
#tape {
  position: relative;
  margin: 0;
}

#tape-reel .frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  opacity: 0;
  pointer-events: none;
}

#tape-reel .frame.active {
  opacity: 1;
}

#info{
  margin: 0.5em 0;
}
#tape figcaption {
  position: absolute;
  z-index: 20;

  left: 80px; /* will be overridden by JS if you want */
  top: 21%;
  transform: translateY(-50%);

  font-family: "Parisienne", cursive;
  text-align: left;
  margin: 0;

  line-height: 1; /* responsive + stabilizes height */
  white-space: nowrap;
}

.playMe {
  margin: 0.5em 0;
  cursor: pointer;
  display: table;
}

.playMe:hover {
color: blue
}
#showControl {
  margin: 0.5em 0;
  cursor: pointer;
  color: blue;
}

.show {
  display: block;
}
.hide {
  display: none;
}

.blink {
  -webkit-animation: 1s linear infinite condemned_blink_effect; /* for Safari 4.0 - 8.0 */
  animation: 1s linear infinite condemned_blink_effect;
}

/* for Safari 4.0 - 8.0 */
@-webkit-keyframes condemned_blink_effect {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes condemned_blink_effect {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

figure{
  margin:0;
}

.bottom{
  float:none;
  clear: both;
  padding-top: .05em;
}
/* Use a media query to add a breakpoint at 800px: */
@media screen and (min-width: 801px) {
  .left, .right {
    width: 50%;
    float: left;
  }
   .right {
    width: 45%;
    float: left;
    margin-left: 1em;
  }
}

/* audio bar */

.kk-volume{
  display:flex;
  align-items:center;
  gap:12px;
}

/* wrapper so label sits above bar */
.kk-volwrapper{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.kk-vollabel{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  margin-bottom: 0px;
  opacity: 0.7;
  margin-top: 5px;
color: #007791 ;
}

/* nicer mute button */
.kk-mute{
  width:32px;
  height:32px;
  border-radius:6px;
  border:1px solid rgba(0,0,0,0.25);
  background:#eee;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.kk-mute:hover{
  background:#ddd;
}

/* draw simple speaker icon */
.kk-icon-volume{
  width:14px;
  height:14px;
  background:black;
  clip-path: polygon(
    0% 40%, 25% 40%, 45% 20%, 45% 80%,
    25% 60%, 0% 60%
  );
}