/* Reset */
/*@import url(//codepen.io/chrisdothtml/pen/ojLzJK.css);*/
/*@import url(reset.css);*/

 .tile {
  display: inline-block;
  text-align: left;
  opacity: .99;
  overflow: hidden;
  position: relative;
}
 .tile:before {
  content: '';
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
  width: 100%;
  height: 80%;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  -webkit-transition-property: bottom, opacity;
  transition-property: bottom, opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
 .tile {
  
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
 .tile .details {
  font-size: 16px;
  padding: 0 0 0 10px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 3;
}
 .tile .details span {
  display: block;
  opacity: 0;
  position: relative;
  bottom: 100px;
  -webkit-transition-property: bottom, opacity;
  transition-property: bottom, opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
 .tile .details .title {
  line-height: 1.3;
  font-weight: 600;
  font-size: 1.2em;
}
 .tile .details .info {
  line-height: 1.2;
  margin-top: 5px;
  font-size: 1em;
}
 .tile:focus:before,
.tile:focus span,  .tile:hover:before,
 .tile:hover span {
  opacity: 1;
}
 .tile:focus:before,  .tile:hover:before {
  bottom: 20%;
}
 .tile:focus span,  .tile:hover span {
  bottom: 0;
}
 .tile:focus .title,  .tile:hover .title {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
 .tile:focus .info, .tile:hover .info {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}