/* Minimum styling needed for landing page */
:root {
  --primary-color: #243A5E;
  --secondary-color: #008575;
  --warn-color: #C43E1C;
  --error-color: #A80000;
  --font-family: "Segoe UI", "Helvetica Neue", sans-serif;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family);
  overflow: auto;
}

app-root {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background-color: white;
}

h1 {
  font-weight: 200;
}

#pre-bootstrap {
  background-color: #0091ea;
  opacity: .5;
  bottom: 0px;
  left: 0px;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 99999;
}

#pre-bootstrap div.messaging {
  color: #fff;
  font-family: var(--font-family);
  left: 0px;
  margin-top: -37px;
  position: absolute;
  right: 0px;
  text-align: center;
  top: 50%;
}

#pre-bootstrap h1 {
  font-family: var(--font-family);
  font-size: 26px;
  line-height: 35px;
  margin: 0px 0px 20px 0px;
}

#pre-bootstrap p {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 14px;
  margin: 0px 0px 0px 0px;
}

.loading-icon {
  width: 120px;
  height: 80px;
  margin-bottom: 20px;
}