body {
  background: rgb(223, 226, 228) !important;
  color: rgba(0, 0, 0, 0.87);
  font-family: Roboto, Helvetica, Arial, sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
}

i.material-icons {
  font-size: 24px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
i.material-icons.large {
  font-size: 30px !important;
}

.iframe-container {
  overflow: hidden;
  padding-top: 75%;
  position: relative;
}
 
.iframe-container iframe {
   border: 0;
   height: 120%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.centered-card {
  margin: 50px auto 16px;
  padding: 10px 10px;
  border-radius: 5px;
  width: 90% !important;
}

.bg-light-grey {
  background: rgb(230, 230, 230) !important;
}

#firebaseui-auth-card {
  background: rgba(62, 128, 42, 0.815);
  /* max-width: 800px;
  margin: 100px auto 16px;
  padding: 32px 24px;
  border-radius: 5px; */
}

#firebaseui-auth-container h2 {
  color: #ffa100;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 8px;
}

#firebaseui-auth-container h1 {
  font-size: 22px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 16px;
}

#firebaseui-auth-container p {
  line-height: 140%;
  margin: 16px 0 24px;
  font-size: 14px;
}

#firebaseui-auth-container a {
  display: block;
  text-align: center;
  background: #039be5;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  padding: 16px;
  border-radius: 4px;
}

/* #firebaseui-auth-container, */

#firebaseui-auth-container a {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#load {
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  font-size: 13px;
}

.progressbar {
  width: 90%;
  margin: 0 auto;
  height: 8px;
  background-color: lightblue;
  position: relative;
  transition: all 300ms ease-in-out;
  border-radius: 3px;
  overflow: hidden;
}

.progressbar:before, .progressbar:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  background-color: blue;
  /* animation:motion 2s infinite ease; */
  border-radius: 3px;
}

.progressbar:before {
  animation: box-1 1900ms cubic-bezier(0.65, 0.81, 0.73, 0.4) infinite;
}

.progressbar:after {
  animation: box-2 1900ms cubic-bezier(0.16, 0.84, 0.44, 1) infinite;
  animation-delay: 950ms;
  /* animation-delay:600ms; */
}

@keyframes motion {
  0% {
    left: 0;
    width: 0;
  }
  20% {
    left: 20%;
    width: 50%;
  }
  40% {
    left: 30%;
    width: 60%;
  }
  60% {
    left: 60%;
    width: 40%;
  }
  80% {
    left: 70%;
    width: 30%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

.bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 4px;
  background: #acece6;
  overflow: hidden;
}

.bar div:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  background: #26a69a;
  animation: box-1 2100ms cubic-bezier(0.65, 0.81, 0.73, 0.4) infinite;
}

.bar div:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  background: #26a69a;
  animation: box-2 2100ms cubic-bezier(0.16, 0.84, 0.44, 1) infinite;
  animation-delay: 1150ms;
}

@keyframes box-1 {
  0% {
    left: -35%;
    right: 100%;
  }
  60%, 100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes box-2 {
  0% {
    left: -200%;
    right: 100%;
  }
  60%, 100% {
    left: 107%;
    right: -8%;
  }
}