@-webkit-keyframes iron-router-progress-before {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes iron-router-progress-before {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes iron-router-progress-before {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes iron-router-progress-before {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes iron-router-progress-before {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#iron-router-progress {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: rgba(160, 160, 160, 0.6);
  box-shadow: 0 0 5px rgba(160, 160, 160, 0.6);
  opacity: 1;
  z-index: 10000;
}
#iron-router-progress.spinner:before {
  content: "";
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background-color: transparent;
  border: 3px solid rgba(160, 160, 160, 0.6);
  border-radius: 100px;
  border-right-color: transparent !important;
  opacity: 0;
  z-index: 10000;
  pointer-events: none;
  transition: 0.5s opacity;
  transition-delay: 0.5s;
}
#iron-router-progress.loading {
  transition: 1s width, 1s opacity;
  transition-delay: 0s, 1s;
}
#iron-router-progress.loading.spinner:before {
  opacity: 1;
  -webkit-animation: iron-router-progress-before 0.5s linear infinite;
  -moz-animation: iron-router-progress-before 0.5s linear infinite;
  -o-animation: iron-router-progress-before 0.5s linear infinite;
  -ms-animation: iron-router-progress-before 0.5s linear infinite;
  animation: iron-router-progress-before 0.5s linear infinite;
}
#iron-router-progress.done {
  opacity: 0;
}
#iron-router-progress.done.spinner:before {
  opacity: 0;
}body{
    position: relative;
    margin: 0;
    padding-bottom: 6rem;
    min-height: 100%;
    background-color: #f8f7f3;
    font-family: 'Lato', sans-serif;
}

html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.topBanner {
    color: white;
    height: 34px;
    font-size: 12px;
    text-align: right;
    font-weight: 400;
    padding-top: 10px;
    padding-right: 45px;
    text-transform: uppercase;
    background-color: #90191C;
}

.toolbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 53px;
    background-color: rgba(0, 0, 0, 0.90);
}

.footer{
    background-color: rgba(0, 0, 0, 0.10);
    margin-top: 75px;
    border-top: 1px solid rgba(0, 0, 0, 0.20);
}

.logo{
    margin-top: -72px;
}

#iron-router-progress.spinner:before {
    border-color : white;
}

#iron-router-progress {
    background-color : white;
    box-shadow       : 0 0 5px white;
}

.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  text-align: center;
}

a {
    color: #90191C;
}

.whitewashed{
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0.1;
  width: 3500px;
  z-index: -12;
}