.loading-container {
  min-height: 300px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.loading-container:after {
  /*content: "Best Course in Town";*/
  color: grey;
  font-size: 18px;
  text-align: center;
  display: block;
  letter-spacing: 2px;
  font-family: "Unbounded";
}
.loading-container .smiley {
  position: relative;
  height: 100px;
  width: 40px;
  display: inline-block;
  margin: 0 5px 10px;
  cursor: pointer;
}
.loading-container .smiley:hover > * {
  border-color: grey;
  color: grey;
  animation: jump 0.5s infinite alternate;
  -o-animation: jump 0.5s infinite alternate;
  -ms-animation: jump 0.5s infinite alternate;
  -moz-animation: jump 0.5s infinite alternate;
  -webkit-animation: jump 0.5s infinite alternate;
}
.loading-container .smiley > * {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  line-height: 30px;
  text-align: center;
  width: 38px;
  color: #333;
  padding: 0 0 8px;
  border-radius: 50%;
  margin: 100px auto;
  font-size: 18px;
  font-family: "Unbounded", Unbounded;
  font-weight: bold;
  transition: color 0.25s linear, border-color 0.25s linear;
  animation: jump 0.5s infinite alternate;
  -o-transition: color 0.25s linear, border-color 0.25s linear;
  -o-transform: rotate(90deg);
  -o-animation: jump 0.5s infinite alternate;
  -moz-transition: color 0.25s linear, border-color 0.25s linear;
  -moz-animation: jump 0.5s infinite alternate;
  -webkit-transition: color 0.25s linear, border-color 0.25s linear;
  -webkit-animation: jump 0.5s infinite alternate;
}
.loading-container .smiley .one {
  color: #f9ca24;
  animation-delay: 0s;
  -o-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
}
.loading-container .smiley .two {
  color: #f0932b;
  animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
}
.loading-container .smiley .three {
  animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.loading-container .smiley .four {
  color: #eb4d4b;
  animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.loading-container .smiley .five {
  color: #6ab04c;
  animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
@keyframes jump {
  0% {
    top: -40px;
    -moz-transform: scale(1, 0.7);
  }
  30% {
    -moz-transform: scale(1, 1);
  }
  100% {
    top: -70px;
  }
}
@-webkit-keyframes jump {
  0% {
    top: -40px;
    -webkit-transform: scale(1, 0.7);
  }
  30% {
    -webkit-transform: scale(1, 1);
  }
  100% {
    top: -70px;
  }
}

 