.firebaseui {
  padding-top: 150px;
}

button {
  background-color: transparent;
}

.bold {
  font-weight: bold;
}

#mytable td {
  vertical-align: middle;
}

/* Page / Element Visibility Default State */

#agendapage,
#signout {
  display: none;
}

/* remove dropdown header from collapse navbar menu */

@media only screen and (max-width: 992px) {
  li.dropdown>a {
    display: none;
  }
  li.trello>a {
    display: none;
  }
  .dropdown-menu {
    display: block;
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .tooltip {
    display: none !important;
  }
}

.notopbottompadding td {
  padding-top: 0px;
  padding-bottom: 0px;
}

.construction {
  animation-name: spinwrench;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  animation-timing-function: linear;
}

@keyframes spinwrench {
  0% {
    transform: rotate(0deg);
    transform-origin: 85% 15%;
  }
  25% {
    transform: rotate(15deg);
    transform-origin: 85% 15%;
  }
  50% {
    transform: rotate(0deg);
    transform-origin: 85% 15%;
  }
  75% {
    transform: rotate(-15deg);
    transform-origin: 85% 15%;
  }
  100% {
    transform: rotate(0deg);
    transform-origin: 85% 15%;
  }
}

/* animatecss has taken over from the original animations below */

/* 
button:hover .mybounce {
  position: relative;
  animation-name: mybounce;
  animation-delay: 0s;
  animation-iteration-count: 3;
  animation-duration: 0.75s;
  animation-timing-function: linear;
}

button:hover .spin {
  animation-name: spin;
  animation-delay: 0s;
  animation-iteration-count: 3;
  animation-duration: 1s;
  animation-timing-function: linear;
} */

/* .textanim {
  transform-origin: 0% 50%;
  transform: scale(1);
  transition: transform 1s;
}

.textanim:hover {
  transform-origin: 0% 50%;
  transform: scale(1.25);
  text-shadow: 2px 2px 2px grey;
  transition: transform 1s text-shadow;
} */

/* 
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes mybounce {
  0% {
    top: 0px;
    animation-timing-function: ease-out;
  }
  50% {
    top: -8px;
    animation-timing-function: ease-in;
  }
  100% {
    top: 0px;
  }
} */