@import url(https://fonts.googleapis.com/css?family=Lato:400,400italic,700);
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  margin-left: 2rem;
  background: rgba(32, 178, 171, 0.3);
  font-size: 0.9em;
  font-family: lato;
}

a{
  text-decoration: none;
}

h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
}

.card {
  height: 15rem;
  width: 14rem;
  padding: 1rem;
  margin: 0.5rem;
  background:rgba(144, 238, 144, 0.4);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.2s ease-in-out;
}
.card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.card:hover .card-actions {
  transform: translateY(0);
  transition-timing-function: ease-out;
  transition-delay: 128ms;
}

.card-actions {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  bottom: 0;
  left: 0;
  right: 0;
  top: 84px;
  transform: translateY(100%);
  transition: transform 128ms ease-in;
}

.btn {
  display: block;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 20px;
  text-align: Left;
  cursor: pointer;
  box-shadow: 0 1px 3px rgab(0, 0, 0, 0.24), 0 1px 2px rgab(0, 0, 0, 0.12);
  opacity: 0;
  transition: opacity 200ms ease-out, transform 200ms ease-out;
  transform: translateY(2rem);
}

.card:hover .btn {
  opacity: 1;
  transform: translateY(0);
}
.card:hover .btn:first-child {
  transition-delay: 100ms;
}
.card:hover .btn:nth-child(2) {
  transition-delay: 150ms;
}
.card:hover .btn:nth-child(3) {
  transition-delay: 200ms;
}
.card:hover .btn:nth-child(4) {
  transition-delay: 250ms;
}

.btn.primary {
  background: #3B98D3;
  color: white;
}

.btn.default {
  background: #F7F9F9;
}

.step-type {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.step-deadline {
  color: #666;
}

.warning {
  color: orangered;
}

.error {
  color: #F00000;
}

i {
  width: 1rem;
  text-align: center;
  margin-right: 0.25rem;
}