
body {
  margin: 0;
  font-size: 1.3em;
  font-family: Arial, Helvetica, sans-serif;
}

#loader > div > img {
  width: 100%;
  height: auto;
}

#loader > div .done {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  width: 100%;
  background-color: gray;
  transition: background-color 0.2s ease;
  text-align: center;
  font-size: 1.3em;
  color: #FFF;
}

#loader > div .link {
  position: absolute;
  left: 0;
  overflow: auto;
  top: 0;
  padding: 0.5em;
  height: 80px;
  width: 25%;
  background-color: #FFF;
  color: #000;
}

#loader > div .info {
  position: absolute;
  left: 1em;
  bottom: 70px;
  padding: 0.5em;
  background-color: rgba(26, 26, 26, 0.8);
  color: #FFF;
}




#loader > div > .qualified::before {
  content: "Approved";
}

#loader > div > .dequalified::before {
  content: "Denied";
}


#actions {
  position: absolute;
  left: 1em;
  bottom: 150px;
}


button {
  position: relative;

  display: block;
  margin: 30px auto;
  padding: 0;

  overflow: hidden;

  border-width: 0;
  outline: none;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  
  background-color: #2ecc71;
  color: #ecf0f1;
  
  transition: background-color .3s;
}

button {
  font-size: 1em;
  padding: 12px 24px;
  cursor: pointer;
}

button:hover, button:focus {
  background-color: #27ae60;
}

button > * {
  position: relative;
}

button span {
  display: block;
  padding: 12px 24px;
}

button:before {
  content: "";
  
  position: absolute;
  top: 50%;
  left: 50%;
  
  display: block;
  width: 0;
  padding-top: 0;
    
  border-radius: 100%;
  
  background-color: rgba(236, 240, 241, .3);
  
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

button:active:before {
  width: 120%;
  padding-top: 120%;
  
  transition: width .2s ease-out, padding-top .2s ease-out;
}