/** Shopify CDN: Minification failed

Line 31:0 Unexpected "<"
Line 74:0 Unexpected "<"

**/
.bee-countdown-wrap {
  display: flex;
  padding: var(--box-s);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bee-countdown-wrap {
    padding: var(--box-s-tb);
  }
}
@media (max-width: 767px) {
  .bee-countdown-wrap {
    padding: var(--box-s-mb);
  }
}
.bee-countdown-inner {
  width: var(--box-width);
  max-width: 96%;
}
.bee-countdown-content {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
}
<style>
/* Base */
.bee-countdown-wrap[data-anim] .bee-countdown-box {
  will-change: opacity, transform;
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .bee-countdown-wrap[data-anim] .bee-countdown-box {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Variants */
.bee-countdown-wrap[data-anim="reveal-up"] .bee-countdown-box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.bee-countdown-wrap.is-inview[data-anim="reveal-up"] .bee-countdown-box {
  opacity: 1;
  transform: translateY(0);
}

.bee-countdown-wrap[data-anim="reveal-left"] .bee-countdown-box {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.bee-countdown-wrap.is-inview[data-anim="reveal-left"] .bee-countdown-box {
  opacity: 1;
  transform: translateX(0);
}

.bee-countdown-wrap[data-anim="reveal-fade"] .bee-countdown-box {
  opacity: 0;
  transition: opacity 800ms ease;
}
.bee-countdown-wrap.is-inview[data-anim="reveal-fade"] .bee-countdown-box {
  opacity: 1;
}
</style>
