/* Key frames */
@keyframes movimientoArribaAbajo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
    /* Mueve la imagen 10px hacia arriba */
  }
}

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

/* Estilos para pantallas pequeñas  */
.my-responsive-logo {
  width: 100%;
  margin-bottom: 30px;
  margin-top: 130px;
}

/* Estilos para pantallas medianas */
@media (min-width: 450px) {
  .my-responsive-logo {
    width: 90%;
    margin-bottom: 50px;
  }
}

/* Estilos para pantallas grandes */
@media (min-width: 500px) {
  .my-responsive-logo {
    width: 80%;
    margin-bottom: 50px;
  }
}

/* Estilos para pantallas muy grandes */
@media (min-width: 600px) {
  .my-responsive-logo {
    width: 700px;
    margin-bottom: 50px;
  }
}

.main-container {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.upper-row {
  /* Fix upper row to the top of the screen */
  position: fixed;
  top: 0;
  /* Make this upper row on top of everything else */
  z-index: 100;
  min-height: 100px;
  padding-top: 40px;
}

.main-claim {
  max-width: 90%;
  font-size: 1.8em;
  color: #050505;
  margin-top: 20px;
  margin-bottom: 20px;
}

.graph-image {
  width: 90%;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  animation: movimientoArribaAbajo 2s ease-in-out infinite;
}

@media (min-width: 550px) {
  .main-claim {
    font-size: 2.5em;
    max-width: 70%;
  }

  .graph-image {
    width: 70%;
  }
}

@media (min-width: 800px) {
  .main-claim {
    font-size: 2.5em;
    max-width: 70%;
  }

  .graph-image {
    width: 60%;
  }
}

@media (min-width: 1000px) {
  .main-claim {
    font-size: 2.5em;
    max-width: 50%;
  }

  .graph-image {
    width: 50%;
  }
}

.celeste-finanzasuy {
  font-weight: bold;
  color: #2196f3ff;
}

.toast-body {
  font-size: 1.5em;
}

.promo-title {
  font-size: 1.1em;
  margin-left: 3px;
}

/* // add flex style to .codigo with the first children aligning at the start of the container with .codigo class and the second and las children aligning at the end */
.codigo {
  display: flex;
  justify-content: space-between;
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.5em;
  line-height: 1.5em;
  overflow-x: auto;
}

.text-to-animate-from-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 0.5s forwards;
  animation-delay: 0.3s;
  /* Ajusta este valor para controlar cuándo inicia la animación */
}

.text-to-animate-from-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideIn 0.5s forwards;
  animation-delay: 0.3s;
  /* Ajusta este valor para controlar cuándo inicia la animación */
}

.emoji {
  width: 50px;
}

.emoji-small {
  width: 30px;
}

.icon-small {
  width: 12px;
  margin-left: 3px;
}

.contact-email {
  font-size: 0.7em;
  margin-top: 20px;
  margin-bottom: 20px;
}

.upper-logo {
  width: 100%;
  display: none;
}

#close-alert {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}