/* [project]/flowbase/src/app/(frontend)/(insecure)/landing/_components/promo/promos/PromoBillboard.module.css [app-client] (css) */
.PromoBillboard-module__wl0WLq__billboard {
  aspect-ratio: 16 / 9;
  background: #0c0e14;
  border: 1px solid #ffffff0f;
  border-radius: 16px;
  grid-template-columns: 75% 25%;
  width: 100%;
  display: grid;
  position: relative;
  overflow: hidden;
}

.PromoBillboard-module__wl0WLq__progressBar {
  z-index: 60;
  background: #ffffff0f;
  border-radius: 16px 16px 0 0;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.PromoBillboard-module__wl0WLq__progressFill {
  background: #01abc1;
  border-radius: 2px;
  height: 100%;
  animation: 18s linear forwards PromoBillboard-module__wl0WLq__progressGrow;
}

@keyframes PromoBillboard-module__wl0WLq__progressGrow {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.PromoBillboard-module__wl0WLq__replayBtn {
  color: #fff6;
  cursor: pointer;
  opacity: 0;
  background: none;
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  transition: all .2s;
  animation: .5s cubic-bezier(.16, 1, .3, 1) 1.5s forwards PromoBillboard-module__wl0WLq__endFadeUp;
  display: inline-flex;
}

.PromoBillboard-module__wl0WLq__replayBtn:hover {
  color: #01abc1;
  border-color: #01abc1;
}

.PromoBillboard-module__wl0WLq__stage {
  position: relative;
  overflow: hidden;
}

.PromoBillboard-module__wl0WLq__toolCard {
  opacity: 0;
  will-change: transform, opacity;
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  transition: opacity .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: absolute;
  transform: scale(.6)translateY(10px);
  box-shadow: 0 2px 12px #0000004d;
}

.PromoBillboard-module__wl0WLq__toolCardVisible {
  opacity: 1;
  transform: scale(1)translateY(0);
}

.PromoBillboard-module__wl0WLq__toolCardIcon {
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 17px;
  display: flex;
}

.PromoBillboard-module__wl0WLq__toolCardName {
  color: #fffc;
  white-space: nowrap;
  letter-spacing: -.01em;
  font-size: 13px;
  font-weight: 600;
}

.PromoBillboard-module__wl0WLq__toolCard:first-child {
  top: 6%;
  left: 3%;
}

.PromoBillboard-module__wl0WLq__toolCard:nth-child(2) {
  top: 4%;
  left: 45%;
}

.PromoBillboard-module__wl0WLq__toolCard:nth-child(3) {
  top: 35%;
  left: 2%;
}

.PromoBillboard-module__wl0WLq__toolCard:nth-child(4) {
  top: 38%;
  left: 46%;
}

.PromoBillboard-module__wl0WLq__toolCard:nth-child(5) {
  top: 66%;
  left: 5%;
}

.PromoBillboard-module__wl0WLq__toolCard:nth-child(6) {
  top: 64%;
  left: 44%;
}

.PromoBillboard-module__wl0WLq__toolCard:nth-child(7) {
  top: 84%;
  left: 22%;
}

.PromoBillboard-module__wl0WLq__logoWrap {
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes PromoBillboard-module__wl0WLq__logoIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%)scale(.4);
  }

  60% {
    opacity: 1;
    transform: translate(-50%, -50%)scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%)scale(1);
  }
}

.PromoBillboard-module__wl0WLq__logoWrapVisible {
  animation: .6s cubic-bezier(.16, 1, .3, 1) forwards PromoBillboard-module__wl0WLq__logoIn;
}

@keyframes PromoBillboard-module__wl0WLq__brandFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.PromoBillboard-module__wl0WLq__logoWrapVisible .PromoBillboard-module__wl0WLq__logoBrand {
  animation: .4s cubic-bezier(.16, 1, .3, 1) .3s forwards PromoBillboard-module__wl0WLq__brandFadeIn;
}

.PromoBillboard-module__wl0WLq__logoSvg {
  filter: drop-shadow(0 0 24px #01abc159);
  transition: width .4s cubic-bezier(.16, 1, .3, 1), height .4s cubic-bezier(.16, 1, .3, 1);
}

@keyframes PromoBillboard-module__wl0WLq__pulse {
  0% {
    filter: drop-shadow(0 0 24px #01abc159);
  }

  40% {
    filter: drop-shadow(0 0 40px #01abc1b3);
  }

  100% {
    filter: drop-shadow(0 0 24px #01abc159);
  }
}

.PromoBillboard-module__wl0WLq__logoPulse {
  animation: .45s ease-out PromoBillboard-module__wl0WLq__pulse;
}

.PromoBillboard-module__wl0WLq__logoBrand {
  letter-spacing: -.02em;
  white-space: nowrap;
  font-size: 24px;
  font-weight: 700;
}

.PromoBillboard-module__wl0WLq__logoFlow {
  color: #01abc1;
}

.PromoBillboard-module__wl0WLq__logoBase {
  color: #e2e8f0;
}

.PromoBillboard-module__wl0WLq__logoGlow {
  display: none;
}

.PromoBillboard-module__wl0WLq__featureLabel {
  color: #ffffffbf;
  white-space: nowrap;
  z-index: 15;
  pointer-events: none;
  opacity: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #1a1f2ef2;
  border: 1px solid #01abc126;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  position: absolute;
  left: -30%;
  box-shadow: 0 2px 12px #0003;
}

.PromoBillboard-module__wl0WLq__featureLabelIcon {
  color: #01abc1;
  font-size: 15px;
}

.PromoBillboard-module__wl0WLq__featureLabel:first-child {
  top: 8%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(2) {
  top: 18%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(3) {
  top: 28%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(4) {
  top: 38%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(5) {
  top: 48%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(6) {
  top: 58%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(7) {
  top: 68%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(8) {
  top: 78%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(9) {
  top: 12%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(10) {
  top: 22%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(11) {
  top: 32%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(12) {
  top: 42%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(13) {
  top: 52%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(14) {
  top: 62%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(15) {
  top: 72%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(16) {
  top: 15%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(17) {
  top: 35%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(18) {
  top: 55%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(19) {
  top: 45%;
}

.PromoBillboard-module__wl0WLq__featureLabel:nth-child(20) {
  top: 65%;
}

.PromoBillboard-module__wl0WLq__featureFlyIn {
  opacity: 1;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  left: 5%;
}

.PromoBillboard-module__wl0WLq__featureAbsorbed {
  opacity: 0 !important;
  transition: all .35s cubic-bezier(.55, 0, 1, .45) !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%)scale(0) !important;
}

.PromoBillboard-module__wl0WLq__flash {
  z-index: 15;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, #01abc199 0%, #01abc126 50%, #0000 70%);
  border-radius: 50%;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.PromoBillboard-module__wl0WLq__flashActive {
  animation: .7s cubic-bezier(.16, 1, .3, 1) forwards PromoBillboard-module__wl0WLq__flashBurst;
}

@keyframes PromoBillboard-module__wl0WLq__flashBurst {
  0% {
    opacity: .9;
    width: 0;
    height: 0;
  }

  50% {
    opacity: .6;
    width: 180px;
    height: 180px;
  }

  100% {
    opacity: 0;
    width: 300px;
    height: 300px;
  }
}

.PromoBillboard-module__wl0WLq__endCard {
  z-index: 50;
  background: #0c0e14;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  animation: .8s cubic-bezier(.16, 1, .3, 1) forwards PromoBillboard-module__wl0WLq__endCardIn;
  display: flex;
  position: absolute;
  inset: 0;
}

@keyframes PromoBillboard-module__wl0WLq__endCardIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.PromoBillboard-module__wl0WLq__endCardLogo {
  filter: drop-shadow(0 0 20px #01abc14d);
  opacity: 0;
  animation: .6s cubic-bezier(.16, 1, .3, 1) .3s forwards PromoBillboard-module__wl0WLq__endLogoIn;
}

@keyframes PromoBillboard-module__wl0WLq__endLogoIn {
  0% {
    opacity: 0;
    transform: scale(.7);
  }

  60% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.PromoBillboard-module__wl0WLq__endCardBrand {
  letter-spacing: -.02em;
  opacity: 0;
  font-size: 32px;
  font-weight: 700;
  animation: .5s cubic-bezier(.16, 1, .3, 1) .6s forwards PromoBillboard-module__wl0WLq__endFadeUp;
}

.PromoBillboard-module__wl0WLq__endCardTagline {
  color: #ffffff73;
  opacity: 0;
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 400;
  animation: .5s cubic-bezier(.16, 1, .3, 1) .9s forwards PromoBillboard-module__wl0WLq__endFadeUp;
}

.PromoBillboard-module__wl0WLq__endCardFree {
  color: #01abc1;
  opacity: 0;
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 700;
  animation: .5s cubic-bezier(.16, 1, .3, 1) 1.2s forwards PromoBillboard-module__wl0WLq__endFadeUp;
}

.PromoBillboard-module__wl0WLq__endCardWhite {
  color: #e2e8f0;
}

@keyframes PromoBillboard-module__wl0WLq__endFadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.PromoBillboard-module__wl0WLq__listColHidden {
  opacity: 0;
  transition: opacity .4s;
}

.PromoBillboard-module__wl0WLq__listCol {
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #0f141b80;
  border-left: 1px solid #ffffff0f;
  flex-direction: column;
  gap: 3px;
  padding: 10px;
  display: flex;
  overflow-y: auto;
  -webkit-mask-image: linear-gradient(#0000 0%, #000 3% 97%, #0000 100%);
  mask-image: linear-gradient(#0000 0%, #000 3% 97%, #0000 100%);
}

.PromoBillboard-module__wl0WLq__listCol::-webkit-scrollbar {
  display: none;
}

@keyframes PromoBillboard-module__wl0WLq__listSlideIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.PromoBillboard-module__wl0WLq__listItem {
  border-radius: 10px;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  animation: .3s cubic-bezier(.16, 1, .3, 1) forwards PromoBillboard-module__wl0WLq__listSlideIn;
  display: flex;
}

.PromoBillboard-module__wl0WLq__listItem:hover {
  background: #ffffff08;
}

.PromoBillboard-module__wl0WLq__listItemIcon {
  color: #01abc1;
  flex-shrink: 0;
  font-size: 15px;
}

.PromoBillboard-module__wl0WLq__listItemLabel {
  color: #ffffff8c;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 500;
}

.PromoBillboard-module__wl0WLq__chaosText {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 8px 12px;
  display: flex;
}

.PromoBillboard-module__wl0WLq__chaosLine {
  color: #ffffffe6;
  letter-spacing: -.03em;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.PromoBillboard-module__wl0WLq__chaosSubtitle {
  color: #ffffff4d;
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .PromoBillboard-module__wl0WLq__toolCard {
    border-radius: 8px;
    gap: 6px;
    padding: 7px 12px 7px 7px;
  }

  .PromoBillboard-module__wl0WLq__toolCardIcon {
    border-radius: 6px;
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .PromoBillboard-module__wl0WLq__toolCardName {
    font-size: 10px;
  }

  .PromoBillboard-module__wl0WLq__logoBrand {
    font-size: 16px;
  }

  .PromoBillboard-module__wl0WLq__featureLabel {
    border-radius: 8px;
    gap: 5px;
    padding: 5px 10px;
    font-size: 10px;
  }

  .PromoBillboard-module__wl0WLq__featureLabelIcon {
    font-size: 12px;
  }

  .PromoBillboard-module__wl0WLq__listItem {
    gap: 6px;
    padding: 6px 8px;
  }

  .PromoBillboard-module__wl0WLq__listItemLabel {
    font-size: 9.5px;
  }

  .PromoBillboard-module__wl0WLq__listItemIcon {
    font-size: 12px;
  }

  .PromoBillboard-module__wl0WLq__chaosLine {
    font-size: 16px;
  }

  .PromoBillboard-module__wl0WLq__chaosSubtitle {
    font-size: 10px;
  }

  .PromoBillboard-module__wl0WLq__endCardBrand {
    font-size: 24px;
  }

  .PromoBillboard-module__wl0WLq__endCardTagline {
    font-size: 12px;
  }

  .PromoBillboard-module__wl0WLq__endCardFree {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .PromoBillboard-module__wl0WLq__toolCard {
    border-radius: 6px;
    gap: 4px;
    padding: 5px 8px 5px 5px;
  }

  .PromoBillboard-module__wl0WLq__toolCardIcon {
    border-radius: 5px;
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .PromoBillboard-module__wl0WLq__toolCardName {
    font-size: 8px;
  }

  .PromoBillboard-module__wl0WLq__logoBrand {
    font-size: 12px;
  }

  .PromoBillboard-module__wl0WLq__featureLabel {
    border-radius: 6px;
    gap: 4px;
    padding: 3px 7px;
    font-size: 8px;
  }

  .PromoBillboard-module__wl0WLq__featureLabelIcon {
    font-size: 10px;
  }

  .PromoBillboard-module__wl0WLq__listCol {
    gap: 2px;
    padding: 6px 4px;
  }

  .PromoBillboard-module__wl0WLq__listItem {
    border-radius: 6px;
    gap: 4px;
    padding: 4px 5px;
  }

  .PromoBillboard-module__wl0WLq__listItemLabel {
    font-size: 7.5px;
  }

  .PromoBillboard-module__wl0WLq__listItemIcon {
    font-size: 10px;
  }

  .PromoBillboard-module__wl0WLq__chaosLine {
    font-size: 12px;
  }

  .PromoBillboard-module__wl0WLq__chaosSubtitle {
    margin-top: 6px;
    font-size: 8px;
  }

  .PromoBillboard-module__wl0WLq__endCardLogo {
    width: 45px !important;
    height: 45px !important;
  }

  .PromoBillboard-module__wl0WLq__endCardBrand {
    font-size: 18px;
  }

  .PromoBillboard-module__wl0WLq__endCardTagline {
    font-size: 9px;
  }

  .PromoBillboard-module__wl0WLq__endCardFree {
    font-size: 10px;
  }
}

/*# sourceMappingURL=3bd60_%28insecure%29_landing__components_promo_promos_PromoBillboard_module_1abad271.css.map*/