body.matchmot-booting #status {
  background: transparent !important;
}

body.matchmot-booting #status-splash,
body.matchmot-booting #status-progress {
  opacity: 0 !important;
}

.matchmot-boot-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1ddbd;
  color: #4a3427;
  font-family: Arial, sans-serif;
}

.matchmot-boot-card {
  width: min(520px, 84vw);
  text-align: center;
}

.matchmot-boot-title {
  margin-bottom: 18px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
}

.matchmot-boot-message {
  min-height: 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.matchmot-boot-bar {
  height: 12px;
  margin: 26px auto 14px;
  overflow: hidden;
  border: 2px solid #7e5a34;
  border-radius: 999px;
  background: #ead0a2;
}

.matchmot-boot-bar-fill {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #d59a42 0%, #f7d889 50%, #d59a42 100%);
  background-size: 220% 100%;
  animation: matchmotBootPulse 1.25s linear infinite;
}

.matchmot-boot-detail {
  color: #6b4a32;
  font-size: 14px;
  font-weight: 700;
}

.matchmot-boot-loader.done {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

@keyframes matchmotBootPulse {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}
