/* 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: 1;
}

.loading-overlay-content {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.15em;
  font-weight: bold;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  background: none;
}

.loading-overlay.loading-theme-light {
  background: none;
  color: #000;
  z-index:9999 !important;
}

.loading-overlay.loading-theme-dark {
  background-color: #000;
  color: #fff;
}

.loading-overlay-content p {
    background: rgba(0, 0, 0, 0.72);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 22px;
	color:white;
}