@charset "UTF-8";
.wp-block-group.is-style-fromtop-go {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.wp-block-group.is-style-fromtop-go .wp-block-group {
  position: absolute;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: var(--wp--custom--color--blue-600);
  bottom: -30px;
  right: 12.5%;
  animation: emerge 3s cubic-bezier(0.5, 0.5, 0.75, 1) forwards, bounce_bleu 2.5s ease-out infinite;
  animation-delay: 0s, 3s;
}

@keyframes emerge {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-200px);
  }
}
@keyframes bounce_bleu {
  0%, 100% {
    transform: translateY(-200px); /* Position centrale */
  }
  50% {
    transform: translateY(-180px); /* Première montée pour le rebond */
  }
}

/*# sourceMappingURL=style.css.map */
