/* Mantiene el fondo y estructura del loader */
div#load_screen {
  background: rgb(236, 239, 255);
  opacity: 1;
  position: fixed;
  z-index: 999999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* para centrar texto debajo si quieres */
}

/* Ocultamos los cubos originales */
div#load_screen .boxes {
  display: none !important;
}

/* Nuevo loader con GIF */
div#load_screen::before {
  content: "";
  display: block;
  width: 120px;   /* tamaño del gif */
  height: 120px;
  background: url('../img/tkd_animate.gif') no-repeat center center;
  background-size: contain;
}

/* Texto opcional debajo del gif */
div#load_screen .xato-loader-heading {
  display: block !important;
  color: #145af2;
  font-weight: 700;
  font-size: 17px;
  margin-top: 20px;
  text-align: center;
}