/* Sticky footer styles */
html {
    position: relative;
    min-height: 100%;
}
/* body {
    margin-bottom: 60px; /* Margin bottom by footer height */
} */

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
    text-align: center;
}

/* Custom page styles */
.navbar-brand {
    margin-left: 16px;
}

.loginButton {
  padding-top: 6px;
  padding-bottom: 6px;
}

.profile-content {
  padding-left: 20px;
  padding-right: 20px;
}

.hidden {
  display:none;
}

.main-content {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.flash {
  animation: flash 500ms ease infinite alternate;
}

.logo {
  font-family: sans-serif;
  font-weight: bold;
  opacity: .7;
  margin-right: 10px;
}
@keyframes flash {
	from { opacity: 1; }	
	to { opacity: 0; }
}


  .spinner {
    position: relative;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    animation: nk-spinner 1s infinite linear;
  }
  
  @keyframes nk-spinner {
    100% { transform: rotate(360deg) }
  }