.ceeprinto-boot-screen {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f5f5f7;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.ceeprinto-boot-screen.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ceeprinto-boot-screen--embed {
  position: absolute;
  z-index: 20;
}

.ceeprinto-design-editor-container,
.ceeprinto-designer-container,
.ceeprinto-design-configurator-container {
  position: relative;
}

.ceeprinto-boot-screen__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.ceeprinto-boot-screen__logo {
  display: block;
  max-width: 180px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 28px;
}

.ceeprinto-boot-screen__favicon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  image-rendering: auto;
  margin-bottom: 28px;
}

.ceeprinto-boot-screen__wordmark {
  display: block;
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111827;
}

.ceeprinto-boot-screen__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #ececef;
  border-top-color: #fe1915;
  border-radius: 50%;
  animation: ceeprinto-boot-spin 0.8s linear infinite;
}

.ceeprinto-boot-screen__heading {
  margin: 20px 0 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #111827;
}

.ceeprinto-boot-screen__message {
  margin: 8px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #6b7280;
}

.ceeprinto-boot-screen__bar {
  position: relative;
  width: 160px;
  height: 3px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.ceeprinto-boot-screen__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  border-radius: inherit;
  background: #fe1915;
  animation: ceeprinto-boot-bar 1.2s ease-in-out infinite;
}

@keyframes ceeprinto-boot-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ceeprinto-boot-bar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(400%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ceeprinto-boot-screen__spinner,
  .ceeprinto-boot-screen__bar span {
    animation: none;
  }

  .ceeprinto-boot-screen__spinner {
    border-top-color: #fe1915;
    border-right-color: #fe1915;
  }

  .ceeprinto-boot-screen__bar span {
    width: 100%;
  }
}
