
.showbottom {
  position: fixed;
  right: 205px;
  bottom: 15px;
  z-index: 996;
}

.showbottom .whiterabbit {
  font-weight: bold;

}


.whiterabbit {
  position: relative;
  display:  block;
  transform: translateX(50.4782608696px);
  text-shadow: 0 0 2px white;
  width:  125px;
  top:  9px;
  
}

.playButton {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  padding: 0;
  margin: 0 auto;
  cursor: pointer;
  user-select: none;
  background-color: #ffb03b;
}
.playButton__icon {
  box-sizing: border-box;
  display: block;
  position: absolute;
  transition: all 0.2s ease;
  width: 15px;
  height: 20px;
  transform: translateX(12.6615384615px);
  top: 10px;
  border-top: 0 solid transparent;
  border-right: 5.3333333333px solid #000;
  border-bottom: 0 solid transparent;
  border-left: 5.3333333333px solid #000;
}
.playButton.is-play .playButton__icon {
  transform: translateX(12.4782608696px);
  top: 8px;
  border-top: 12px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #000;
}



:root {
  --delay: 0;
  --duration: 800ms;
  --iterations: 1;
}

.reveal-text-hidden {

visibility:  hidden;
}

.reveal-text, .reveal-text::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.reveal-text {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  color: #000;
  white-space: nowrap;
  cursor: default;
}
.reveal-text::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f2f98b;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}


@keyframes text-revealer {
  
  0%, 50% {
    transform-origin: 0 50%;
  }
  
  60%, 100% {
    transform-origin: 100% 50%;   
  }

  
  60% {
    transform: scaleX(1);
  }
  
  100% {
    transform: scaleX(0);
  }
}