@keyframes pour {
  0% {
    top: 10rem;
  }
  70% {
    top: 1.5rem;
  }
  100% {
    top: 1.5rem;
  }
}
@keyframes foam {
  0% {
    top: 10rem;
    opacity: 0;
  }
  40% {
    top: 3rem;
    opacity: 0.75;
  }
  70% {
    top: -1.5rem;
    opacity: 1;
  }
  100% {
    top: -1.5rem;
    opacity: 1;
  }
}
@keyframes beer-1 {
  0% {
    height: 0;
    opacity: 0;
    top: -1.1111111111rem;
  }
  22% {
    height: 0.625rem;
    top: 0.8333333333rem;
    opacity: 1;
  }
  25% {
    top: -0.5555555556rem;
  }
  35% {
    height: 2.5rem;
    top: -1.1111111111rem;
  }
  55% {
    height: 0.625rem;
    top: -0.2777777778rem;
  }
  60% {
    height: 1.375rem;
    opacity: 1;
    top: -0.6111111111rem;
  }
  96% {
    height: 1.875rem;
    opacity: 0;
    top: 1.1111111111rem;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@keyframes beer-2 {
  0% {
    height: 0;
    opacity: 0;
    top: -1.1111111111rem;
  }
  17.5% {
    height: 0.625rem;
    top: 0.4444444444rem;
    opacity: 1;
  }
  20% {
    top: -0.5555555556rem;
  }
  25% {
    height: 3.125rem;
    top: -1.3888888889rem;
  }
  45% {
    height: 0.625rem;
    top: -0.2777777778rem;
  }
  60% {
    height: 3.125rem;
    opacity: 1;
    top: -1.1111111111rem;
  }
  96% {
    height: 1.875rem;
    opacity: 0;
    top: 1.1111111111rem;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@keyframes foam-1 {
  0% {
    height: 0;
    opacity: 0;
    top: -0.3703703704rem;
  }
  22% {
    height: 0.5555555556rem;
    top: 0.2777777778rem;
    opacity: 1;
  }
  25% {
    top: -0.1851851852rem;
  }
  35% {
    height: 2.2222222222rem;
    top: -0.3703703704rem;
  }
  55% {
    height: 0.5555555556rem;
    top: -0.0925925926rem;
  }
  60% {
    height: 1.2222222222rem;
    opacity: 1;
    top: -0.2037037037rem;
  }
  96% {
    height: 1.6666666667rem;
    opacity: 0;
    top: 0.3703703704rem;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@keyframes foam-2 {
  0% {
    height: 0;
    opacity: 0;
    top: -0.3703703704rem;
  }
  17.5% {
    height: 0.5555555556rem;
    top: 0.1481481481rem;
    opacity: 1;
  }
  20% {
    top: -0.1851851852rem;
  }
  25% {
    height: 2.7777777778rem;
    top: -0.462962963rem;
  }
  45% {
    height: 0.5555555556rem;
    top: -0.0925925926rem;
  }
  60% {
    height: 2.7777777778rem;
    opacity: 1;
    top: -0.3703703704rem;
  }
  96% {
    height: 1.6666666667rem;
    opacity: 0;
    top: 0.3703703704rem;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
.glass {
  display: inline-block;
  position: relative;
  width: 4.0816326531rem;
  height: 10rem;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
  background: white;
  z-index: 2;
}
.glass:before {
  content: "";
  position: absolute;
  left: -2.1rem;
  right: 2.5rem;
  top: 2rem;
  height: 4.4rem;
  width: 2.5rem;
  background: none;
  border: 10px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem 2.5rem;
}
.glass:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-right: 2rem solid transparent;
  border-bottom: 9.55rem solid rgba(255, 255, 255, 0.325);
}

.foam {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 4.0816326531rem;
  height: 30px;
  opacity: 0.5;
  background: #FFF;
  animation: foam 2.4s forwards;
  border-radius: 37%;
}
.foam:after, .foam:before {
  content: "";
  position: absolute;
  top: -0.3703703704rem;
  height: 2.2222222222rem;
  width: 4.2222222222rem;
  background: #FFF;
  border-radius: 50%;
  opacity: 0;
}
.foam:after {
  right: 0;
  animation: foam-1 2.4s forwards;
}
.foam:before {
  left: 0;
  animation: foam-2 2.4s forwards;
}

.beer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 4.0816326531rem;
  background: #F6C101;
  animation: pour 2.4s forwards;
}
.beer:after, .beer:before {
  content: "";
  position: absolute;
  top: -1.1111111111rem;
  height: 2.5rem;
  width: 3.25rem;
  background: #F6C101;
  border-radius: 50%;
  opacity: 1;
}
.beer:after {
  right: 0;
  animation: beer-1 2.4s forwards;
}
.beer:before {
  left: 0;
  animation: beer-2 2.4s forwards;
}

#loading-screen {
  padding-top: 30vh;
  background: #efefef;
  text-align: center;
}

@keyframes power {
  0% {
    color: #bcbcbc;
  }
  75% {
    color: #bcbcbc;
    text-shadow: none;
  }
  90% {
    color: rgb(220.6032388664, 173.0748987854, 0.8967611336);
    text-shadow: 0 0 0.8em #F6C101;
  }
  100% {
    color: #bcbcbc;
    text-shadow: none;
  }
}
#loading-screen h5 {
  font-family: "Young Serif", serif;
  font-weight: 300;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: #bcbcbc;
  animation: power 2.4s forwards;
  margin-top: 1em;
}

@keyframes power-svg {
  0% {
    fill: #bcbcbc;
    filter: none;
  }
  75% {
    fill: #bcbcbc;
    filter: none;
  }
  90% {
    fill: rgb(221, 173, 1);
    filter: url(#glow); /* Points to the SVG filter defined below */
  }
  100% {
    fill: #bcbcbc;
    filter: none;
  }
}
.loadLogo {
  width: 10em;
  height: 10em;
  animation: power-svg 4.2s infinite;
}/*# sourceMappingURL=load.css.map */