/**
 * initial-styles.css
 * Styles needed before Angular bootstraps - externalized from index.html
 * These styles handle the loading screen and error states
 */

.svg-design-error {
  display: none;
  max-width: 54% !important;
  margin-left: auto;
  margin-right: auto;
}

.error-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  height: 100%;
  width: 100%;
  color: var(--primary-color);
  background: white;
  text-align: center;
}

.visible {
  display: block !important;
}

.inVisible {
  display: none !important;
}

.error-text {
  width: fit-content;
  font-size: 22px;
  margin-left: auto;
  margin-right: auto;
}

.error-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 100%;
}

#tabError {
  color: black;
  background: #fcbcbc;
  text-align: center;
  padding: 10%;
  margin: 10%;
  border-radius: 10px;
  display: none;
}
