.search-input-cc {
    height: 40px;
}

/* Estilo del boton "Ir arriba" */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 25%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

  .scroll-top-btn:hover {
    background-color: #0056b3;
  }

  .scroll-top-btn span {
    font-size: 24px;
  }

  .scroll-top-btn.show {
    opacity: 1;
    transform: translateY(0);
  }


@media (max-width: 475px) {
    .h-mallas {
        height: 200px;
    }
}