@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
body {
  background: #209DD2;
  font-family: Lato;
}
#achievement {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transform: scale(0);
  transition: 250ms ease-in-out;
  margin: 40px auto;
  box-shadow: 0 3px 20px #1E7195;
}
#achievement.expand {
  transform: scale(1);
}
#achievement.expand .circle:before {
  animation: rotate 400ms linear;
}
#achievement.expand.widen {
  width: 380px;
  border-radius: 50px;
}
#achievement .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E4BF2B;
  position: absolute;
  top: 10px;
  left: 10px;
}
#achievement .circle:before {
  font-size: 50px;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
  color: #fff;
  position: absolute;
  top: 15px;
  left: 17px;
  transform: scale(1);
  transition: 250ms ease-in-out;
}
#achievement .circle.rotate:before {
  animation: rotateBack 400ms linear;
}
#achievement .copy {
  opacity: 0;
  transition: 250ms ease-in-out;
  width: 240px;
  position: absolute;
  left: 100px;
  top: 35px;
}
#achievement .copy.show {
  opacity: 1;
  top: 25px;
}
#achievement .copy h4 {
  font-size: 22px;
  margin: 0;
}
#achievement .copy p {
  margin: 0;
}
.refresh {
  display: none;
  text-align: center;
  color: #fff;
  text-decoration: underline;
  font-size: 18px;
  cursor: pointer;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotateBack {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}