html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a, a:hover, a:visited, a:active {
  text-decoration: none;
  color: inherit; }

ul, menu, h1, h2, h3, h4, h5, h6, li {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0; }

ul > li > ul > li {
  padding-left: 0;
  padding-right: 0; }

button {
  border: 0 none;
  background-color: transparent;
  cursor: pointer; }
  button:focus {
    outline: none; }

li {
  padding: 1em;
  border-bottom: 1px solid #919191; }
  li:last-child {
    border-bottom: 0 none; }

.dashboard-header {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 4em;
  padding: 2em;
  background-color: #4e22ff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center; }
  .dashboard-header .refreshed {
    font-size: 0.8em; }

.notificationFailure {
  background-color: #ff5555;
  padding: 10px;
  text-align: center; }

.status-red:after {
  background-color: #990000;
  box-shadow: black 0 -1px 7px 1px, inset #660000 0 -1px 9px, #cc0000 0 2px 12px; }

.status-yellow:after {
  background-color: #999900;
  box-shadow: black 0 -1px 7px 1px, inset #666600 0 -1px 9px, #cccc00 0 2px 12px; }

.status-green:after {
  background-color: #009900;
  box-shadow: black 0 -1px 7px 1px, inset #006600 0 -1px 9px, #00cc00 0 2px 12px; }

[class^='status-'] {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center; }
  [class^='status-'] span {
    -ms-flex-positive: 1;
    flex-grow: 1; }
  [class^='status-'][aria-controls="layers-list"] {
    cursor: pointer; }
  [class^='status-']:after {
    content: '';
    margin-left: 12px;
    margin-right: 12px;
    min-width: 12px;
    min-height: 12px;
    border-radius: 50%; }

@keyframes flashing {
  0% {
    opacity: 0.65; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.65; } }

.status-red:after {
  animation-name: flashing;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.status-grey:after {
  background-color: #4d4d4d;
  box-shadow: black 0 -1px 7px 1px, inset #333333 0 -1px 9px, #6e6e6e 0 2px 12px; }

button.toggle-layers {
  display: -ms-flexbox;
  display: flex;
  background-image: url(images/triangle_closed.svg);
  background-repeat: no-repeat;
  cursor: pointer;
  background-size: 16px;
  width: 16px;
  height: 16px;
  margin-right: 16px;
  transition-duration: 0.75s;
  transform-origin: center;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  button.toggle-layers[aria-expanded='true'] {
    transform: rotate(90deg); }

.stream-list {
  border-bottom: 1px solid #919191; }
  .stream-list:first-of-type {
    margin-top: 4em; }

.stream-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 0.2em; }
  .stream-container .error {
    color: #f00; }

.download {
  text-decoration: underline;
  color: #4f5fca;
  margin-right: 1em; }
  .download:hover {
    color: #9d4fca;
    text-decoration: underline; }

.layers-list {
  background-color: #565656;
  padding-left: 1em;
  padding-right: 1em;
  transition-property: max-height, opacity;
  transition-duration: 0.75s;
  transition-delay: 0.35s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  opacity: 0; }
  .layers-list[aria-expanded="true"] {
    max-height: 2000px;
    opacity: 1; }
  .layers-list .layer-info {
    background-color: #3c3c3c;
    padding: 0.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    column-count: 2; }
    .layers-list .layer-info .detail {
      column-width: 200px; }
      .layers-list .layer-info .detail label {
        color: #bbb; }

.layer-stream-name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.alerts-list {
  background-color: #3c3c3c;
  padding-left: 1em;
  padding-right: 1em; }
  .alerts-list li {
    padding: 0.3em;
    border: none; }
    .alerts-list li .timestamp {
      color: #9b9b9b;
      margin-right: .5em; }

* {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body, html {
  background-color: #222222;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: white;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth; }

h1 {
  font-weight: 700; }

/*# sourceMappingURL=main.css.map */
