.mensaje-emergente {
  position: fixed;
  top: 112px;
  /* left: 0; */
  /* left: -280px; */
  background: var(--color--mint-green);
  color: #006e00;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  font-size: 0.88rem;
  font-weight: 700;
  max-width: 280px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* border-left: 4px solid #006e00; */
  border: 4px solid #006e00;
  animation: showMessage 20s infinite ease-in-out;
  animation-play-state: paused;
}

.mensaje-emergente.show {
  animation-play-state: running;
}

.mensaje-emergente .svg-logo {
  display: inline-flex;
  width: 24px;
  height: 24px;
  /* border: solid 2px #006e00;
  border-radius: 50%; */
  align-items: center;
  justify-content: center;
  position: relative;
}

.mensaje-emergente .item-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 1024px) {
  .mensaje-emergente {
    top: 80vh;
  }
}

/* Definicion de la animacion */
@keyframes showMessage {
  0%,
  60% {
    transform: translateX(-100%);
    /* opacity: 0; */
  }

  65%,
  95% {
    transform: translateX(20px);
    /* opacity: 1; */
  }

  100% {
    transform: translateX(-100%);
    /* opacity: 0; */
  }
}
