html { margin-left: calc(100vw - 100%); }

#hdr { margin-bottom: 1rem; border-bottom: 1px solid #007bff; }

.card.choice {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
      transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
    padding: 1rem 1.6rem 1rem 1.6rem;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: right;
    background-size: 80px;
}

.card.choice:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.card.choice h3{ font-weight: 600; }

@media(max-width: 990px){ .card.choice{ margin: 20px; } }

body:after{
  content: "alpha";
  position: fixed;
  width: 80px;
  height: 25px;
  background-color: #007bff;
  top: 7px;
  left: -20px;
  text-align: center;
  font-size: 13px;
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  line-height: 27px;
  transform:rotate(-45deg);
  z-index: 2000;
}
