html, body {
  width: 100svw;
  height: 100svh;
  margin: 0;
  padding: 0;
  background-color: #000;
}

.video_wrapper,
.video_bx {
  width: 86.667svw;
  height: 77.0371svh;
  position: relative;
}

.video_bx {
  background-color: #000;
  position: relative;
}
.video_bx .video,
.video_bx canvas,
.video_bx iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #000;
}
.video_bx .video {
  display: none !important;
  opacity: 0;
}

#countdownVideo {
  z-index: 99;
}

#finalVideo {
  z-index: 999;
}

.countdown_wrapper {
  width: auto;
  position: absolute;
  top: 18.5svh;
  right: 1.1%;
  transition: all 0.4s ease-in-out 0s;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
}
.countdown_wrapper.show {
  opacity: 1;
  visibility: visible;
}

.flipclock {
  display: flex;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}
.flipclock * {
  box-sizing: inherit;
}

.leaf {
  display: flex;
  flex-direction: column;
  margin: 0 2.5%;
  perspective: 300px;
  box-shadow: 0 0 0.5svw rgba(0, 0, 0, 0.7);
  border-radius: 1svw;
}
.leaf::after {
  content: attr(data-label);
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 0.8svh;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 0.54svw;
  font-family: "Gene-Sans-Bold", sans-serif;
  text-transform: uppercase;
}
.leaf._3-digits .top,
.leaf._3-digits .bottom,
.leaf._3-digits .leaf-front,
.leaf._3-digits .leaf-back {
  width: 3.3svw;
}

.top,
.bottom,
.leaf-front,
.leaf-back {
  position: relative;
  display: block;
  height: 2.72svh;
  width: 3.1svw;
  background-color: #e6e7e8;
  color: #ca1d81;
  overflow: hidden;
  border-color: #2d3748;
}
.top span,
.bottom span,
.leaf-front span,
.leaf-back span {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 5.44svh;
  text-align: center;
  font-family: "Gene-Condensed-Bold", sans-serif;
  font-size: 2svw;
  line-height: 5.44svh;
  transform: translateX(-50%);
}

.top,
.leaf-front {
  border-top-left-radius: 0.8svw;
  border-top-right-radius: 0.8svw;
  margin-bottom: 2px;
  border-bottom-style: solid;
  border-bottom-width: 0;
}
.top span,
.leaf-front span {
  top: 0;
}

.leaf-front {
  position: absolute;
  z-index: 10;
}

.bottom,
.leaf-back {
  border-bottom-left-radius: 0.8svw;
  border-bottom-right-radius: 0.8svw;
  border-top-style: solid;
  border-top-width: 0;
  background-color: #ffffff;
}
.bottom span,
.leaf-back span {
  bottom: 0;
}

.leaf-back {
  position: absolute;
  top: 2.72svh;
  z-index: 10;
}

.leaf-front {
  transform-origin: bottom center;
  transform: rotateX(0deg);
  transform-style: preserve-3d;
  transition-delay: 0.3s;
}

.leaf-back {
  transform-origin: top center;
  transform: rotateX(90deg);
  transform-style: preserve-3d;
  transition-delay: 0s;
}

.bottom::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  filter: blur(10px);
}

.flip .leaf-front {
  transform: rotateX(-90deg);
  transition: transform 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
  transition-delay: 0s;
  color: black;
  background-color: rgb(99.1875, 103.5, 107.8125);
}
.flip .leaf-back {
  transform: rotateX(0deg);
  transition: transform 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
  transition-delay: 0.3s;
}
.flip .bottom::before {
  transition: height 0.3s ease-in-out;
  transition-delay: 0.15s;
  height: 100%;
}

.vimeo_video_bx iframe {
  position: absolute;
  top: 0;
  left: 0;
}