* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  font-family: sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;

  background: white;
}

body.tour-map {
  overflow-y: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
}

#tour-frame,
.login-block {
  width: 100%;
  height: 100%;
}

.panel-layout {
  position: relative;
  width: 100%;
  height: 100%;
}

.panel-layout > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.form-panel {
  background: var(--background-color);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding-top: 10vh;

  overflow: auto;
}

.analytics-form {
  width: 90%;
  max-width: 400px;
}

.form-panel header {
  text-align: center;
  margin-bottom: 75px;
}

.analytics-form > .form-control,
.analytics-form > hr {
  margin-bottom: 25px;
}

.analytics-form > .form-control label {
  margin-bottom: 15px;
}

.analytics-form hr {
  border-color: rgba(0, 0, 0, 0.2);
}

.analytics-form ltbl-array-input-item {
  margin-bottom: 5px;
}

.submit-toolbar {
  margin-top: 75px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;

  margin-bottom: 50px;
}

.submit-toolbar > * {
  margin-left: 5px;
  margin-right: 5px;
}

button {
  background-color: var(--primary-color);
  color: var(--on-primary-color);
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 1em;

  cursor: pointer;
}

button.muted-button {
  background-color: transparent;
  color: var(--text-color);
  border: solid 1px rgba(0, 0, 0, 0.4);
}

.form-alert {
  border: solid 1px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  padding: 10px;
  font-size: 1em;
  margin-bottom: 25px;
}

strong {
  color: var(--primary-color);
}

.login-form {
  text-align: center;
}

.login-form button {
  margin-top: 25px;
}

.login-form label {
  margin-bottom: 10px;
  display: block;
}

.go-panel {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.go-panel h1 {
  font-size: 5em;
}

.go-panel h2 {
  font-size: 3em;
  margin-top: 25px;
  color: var(--text-color);
  font-weight: normal;
}

.go-toolbar {
  margin-top: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.go-toolbar > * {
  margin-left: 5px;
  margin-right: 5px;
}

.visit-panel {
  background: var(--background-color);
}

.hidden {
  display: none;
}

.visit-toolbar {
  position: absolute;
  bottom: 15px;
  right: 15px;

  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.visit-toolbar > * {
  margin-right: 5px;
  margin-left: 5px;
}

.intro-panel {
  background: black;
}

.intro-panel video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intro-panel.animate-enter-active,
.intro-panel.animate-leave-active {
  transition: linear 0.3s opacity;
}

.intro-panel.animate-enter,
.intro-panel.animate-leave-end {
  opacity: 0;
}

.intro-panel.animate-enter-active.hidden,
.intro-panel.animate-leave-active.hidden {
  display: block !important;
}

.cea-logo {
  width: 150px;
  margin-bottom: 10px;
  margin-top: 10px;
}