@keyframes fadeUpIn {
  0% {
    margin-top: 15px
    opacity: 0
  }
  100% {
    margin-top: 0
    opacity: 1
  }
}

.card
  animation-duration: 350ms
  animation-fill-mode: forwards
  animation-name: fadeUpIn
  animation-timing-function: ease-in-out
  background-color: white
  border-radius: 2px
  box-shadow: shadow-box
  cursor: default
  margin-bottom: margin-A3
  margin-top: margin-A3
  opacity: 0
  // TODO Maybe use material design idea, to emphasize hover
  // &:hover
  //   box-shadow: 0 10px 50px alpha(black, 0.8)
