.achievement {
  display: inline-flex;
  width: 300px;
  height: 100px;
  background: linear-gradient(to bottom, #45484d 0%,#000000 100%);
  color: #ddd;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  font-size: 16px;
  transition: all 500ms;
}

.achievement.popup {
    position: fixed;
    right: 5px;
    bottom: -100px;
}
.achievement.popup.shown {
    transform: translateY(-100px);
}

.achievement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  height: 75px;
  width: 75px;
  margin: 12.5px;
  flex-shrink: 0;
  color: #f2722b;
}

.achievement-icon-fa img {
    width: auto;
    height: 4em;
}

.achievement-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.achievement-description > * {
  margin: 5px;
}

.achievement-congrats {
  font-weight: bold;
}

.achievement-text {
  color: #aaa;
}
.achievement-button {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 5px;
    height: 30px;
    width: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    background-color: #333;
}

.achievement-button a {
    display: block;
    text-decoration: none;
}

.achievement-button img {
    height: 1em;
}

.achievement-fireworks {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
}

.achievement-icon-fa img, .achievement-button img {
    filter: invert(51%) sepia(70%) saturate(559%) hue-rotate(335deg) brightness(92%) contrast(106%); /* Forgive me */
}

@media print {
   .achievement.popup, .achievement-button {
        display: none;
    }
}