@font-face {
  font-family: 'Roboto Condensed Bold';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url('/res/fonts/RobotoCondensed-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed Regular';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed Regular'), local('RobotoCondensed-Regular'), url('/res/fonts/RobotoCondensed-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Condensed Light';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url('/res/fonts/RobotoCondensed-Light.ttf') format('truetype');
}
html {
  font-size: 100%;
  height: 100%;
}
body {
  font-family: 'Roboto Condensed Regular', sans-serif;
  text-align: center;
  background-color: #dfdfdf;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body h1 {
  font-size: 1.3rem;
}
body h2 {
  font-size: 1.1rem;
}
body p {
  font-size: 1rem;
}
body p > img {
  width: 100%;
  display: block;
  box-model: border-box;
}
body input[type=text],
body input[type=password] {
  border: 4px solid orange;
  padding: 0.5em;
  font-family: inherit;
  font-size: inherit;
}
body button,
body .linkButton {
  background-color: orange;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: white;
  color: black;
  font-family: 'Roboto Condensed Bold', sans-serif;
  border: 0;
  font-size: 1.3rem;
  padding: 0.3em 1em;
  margin: 0 0.5em;
  cursor: pointer;
  display: inline-block;
}
body button:hover,
body .linkButton:hover {
  background-color: black;
  color: orange;
}
body button:first-child,
body .linkButton:first-child {
  margin-left: 0;
}
body button:last-child,
body .linkButton:last-child {
  margin-right: 0;
}
body div.header {
  flex: 0 1;
  background-color: orange;
  color: black;
  padding: 0.5em;
  box-shadow: 0 0 10px 0px rgba(0,0,0,0.8);
  z-index: 1001;
}
body div.header div.headerTitle {
  font-size: 1.6rem;
  font-family: 'Roboto Condensed Bold', sans-serif;
}
body div.header div.headerTitle a {
  text-decoration: none;
  color: inherit;
}
body div.header div.headerTitle span {
  font-family: 'Roboto Condensed Regular', sans-serif;
  font-size: 1.3rem;
}
body div.container {
  flex: 1;
  padding: 0.7em;
  overflow: scroll;
}
body div.container > h1 {
  font-family: 'Roboto Condensed Light', sans-serif;
}
body div.container div.card {
  background-color: white;
  box-shadow: 0 0 10px 0px rgba(0,0,0,0.3);
  padding: 0.5em 1em;
  margin: 0.7em 0;
  text-align: left;
}
body div.container div.card:first-child {
  margin-top: 0;
}
body div.container div.card:last-child {
  margin-bottom: 0;
}
body div.container div.card h1 > span {
  font-size: 0.9rem;
}
body div.container div.card h1 > a {
  color: inherit;
}
body div.container div.card div.cardButtons {
  margin-top: 0.5em;
  border-top: 1px solid orange;
  padding-top: 0.5em;
  text-align: center;
}
body div.container div.card .cardDesc {
  font-size: 0.9rem;
  border-left: 4px solid orange;
  padding-left: 0.5em;
}
body div.container div.messageCard {
  background-color: #fff9c3;
}
body div.container div.logonCard {
  text-align: center;
}
body div.footer {
  flex: 0 1;
  background-color: orange;
  color: black;
  padding: 0.5em;
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 0 10px 0px rgba(0,0,0,0.8);
  z-index: 1001;
}
body div.footer a {
  color: inherit;
  font-family: 'Roboto Condensed Bold', sans-serif;
  text-decoration: none;
}
div.cardHidden {
  display: none;
}
