@keyframes up-down {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes color-cycle {
  0% {
    background-color: #1d4e76;
  }
  50% {
    background-color: #3d7fb4;
  }
  100% {
    background-color: #1d4e76;
  }
}

#title-team-adviser {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  padding: 85px 20px 20px 20px;
  font-weight: 600;
  font-size: 2.5rem;
}
#title-team-adviser span {
  color: #1d4e76;
  text-shadow: 1px 1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff, -1px -1px 1px #fff;
}
#title-team-adviser img {
  position: absolute;
  top: 10px;
  left: 10px;
}
#flames-bg {
  background-image: url('../images/Background-Combridge.png');
  background-position: bottom;
  background-size: inherit;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 350px;
  width: 100%;
}
#jhipster-error {
  display: block;
  padding: 2.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
#jhipster-error a {
  color: #1d4e76;
}
.app-loading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* top: 10em; */
}
.app-loading .image-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.app-loading .image-container img {
  width: 37%;
}
.app-loading .image-container .stamp {
  position: absolute;
  bottom: 0;
  left: calc(50% - 100px);
  background-image: url('../images/note.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 18%;
  height: 35%;
  padding: 3% 4%;
  transform: rotate(-20deg);
  text-align: center;
  overflow: hidden;
}
.app-loading .image-container .stamp .stamp-text {
  font-size: 2.5rem;
  text-align: center;
}
