/*********************************************************************************

	Template Name: Haltico - Mega Store eCommerce Bootstrap 4 Template
	Description: A perfect template to build beautiful and unique mega store eCommerce websites. It comes with nice and clean design.
	Version: 3.0

	Note: This is custom css.

**********************************************************************************/
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 767px) { /* Aplica solo en pantallas pequeñas */
    .hide-on-mobile {
        display: none;
    }
}