header {
  padding: 20px 30px;
  height: 70px;
  box-sizing: border-box;
  background-color: #029daf;
  margin: 0 0 20px 0;
  line-height: 30px;
  color: white;
}

header a {
  color:white; 
}

#login-signup {
  float: right;
}


#username {
  float:right;
}

#logout {
  float:right;
  margin-right:20px;
}



#user-photo {
  float:right;
  width: 30px;
  height: 30px;
  display:none;
  margin-left: 10px;
  border: 2px solid white;
  border-radius: 15px;
}

#firebaseui-auth-container {
  position:absolute;
  top: 60px;
  right: 20px;

}

#program-details {
  margin: 0 0 30px 0;
}


#loading-fullscreen {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  padding-top:45vh;
}

#loading {
  -webkit-animation: rotation 2s infinite ease;
  border-radius: 15px;
  width: 77px;
  height: 77px;
}

@-webkit-keyframes rotation {
  0% {
      -webkit-transform: rotate(0deg);
  }
  10% {
   -webkit-transform: rotate(-30deg);
  }
  15% {
    -webkit-transform: rotate(-30deg);
  }
  50% {
      -webkit-transform: rotate(360deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
  }
}

.badges .badge-link {
  display: block;
  margin: 0 15px 0 0;
  float: left;
}
.badges .badge-link:last-child {
  margin-bottom: 0;
}
.badges .badge-link img {
  height: 60px;
}