:root {
  color-scheme: dark;
  background: #050506;
}

* {
  box-sizing: border-box;
}

html,
body,
.static-opening-lab {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #050506;
}

.static-opening-lab__frame {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  border: 0;
  background: #050506;
  opacity: 0;
}

.static-opening-lab[data-state="ready"] .static-opening-lab__frame {
  opacity: 1;
}

.static-opening-lab__status {
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin: 0;
  color: rgb(232 237 240 / 48%);
  font: 600 10px/1.4 Arial, sans-serif;
  letter-spacing: 0.12em;
  transform: translate(-50%, -50%);
}

.static-opening-lab[data-state="ready"] .static-opening-lab__status {
  display: none;
}

.static-opening-lab[data-state="error"] .static-opening-lab__status {
  color: rgb(255 218 218 / 74%);
}
