/*////////////////////////// fx zoom  */

.fx-zoom {
    transition: transform 0.3s ease;
    }

.fx-zoom:hover {
    transform: scale(1.03);
    }

/* ///////////////////////// share buttons */
.fx-shadow {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

/* ///////////////////////// nav-bar noticias */

.fx-box {
    position: center;
    display: none;
    justify-content: center;
    align-items: start;
    width: 100%;
    min-height: 300px;
    box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
    color: var(--black);
    padding: 0.25rem 0;
    margin: 0 auto;
    margin-top: 1rem;
    max-width: 1200px;
    border-radius: 0.25rem;

}

/* ///////////////////////// loading */
#loading {
  display: none;
  color: var(--blue);
  font-size: 3rem;
  text-align: center;
  margin: 4rem auto;
  transition: all 1s;
  animation: pulse 3s linear infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.15;
  }

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