/*
 *  jquery-easy-loading - v1.2.0
 *  Easily add and manipulate loading states of any element on the page
 *  http://github.com/CarlosBonetti/jquery-loading
 *
 *  Made by Carlos Bonetti <carlosb_bc@hotmail.com>
 *  Under MIT License
 */
/* This CSS file just define some default styles and loaders */
/* You don't need to include it if you're working with your custom overlay loader element */

.loading-overlay {
  display: table;
  opacity: 0.7;
}

.loading-overlay-content {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  font-weight: normal;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.loading-overlay.loading-theme-light {
  background-color: var(--loading-overlay-bg, rgba(255, 255, 255, 0.88));
  color: var(--textColor2, #333333);
}

.loading-overlay.loading-theme-dark {
  background-color: var(--loading-overlay-bg, rgba(27, 35, 47, 0.88));
  color: var(--textColor4, #ffffff);
}
