@-webkit-keyframes ajax-spinner {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg); } }

@keyframes ajax-spinner {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg); } }

.icon-tile {
  position: relative;
  overflow: hidden; }
  .icon-tile .icon-tile__bg {
    width: 100%;
    height: 100%; }
    .icon-tile .icon-tile__bg img {
      display: block;
      width: 100%; }
  .icon-tile .icon-tile__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 20px;
    opacity: 0;
    -webkit-transition: 300ms opacity linear;
    transition: 300ms opacity linear; }
    .icon-tile .icon-tile__content:hover {
      opacity: 1; }
  .icon-tile .icon-tile__content-inner {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }
  .icon-tile .icon-tile__link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 8px 20px;
    margin-top: 1.5rem; }
    .icon-tile .icon-tile__link a {
      color: inherit;
      background-color: inherit;
      text-decoration: none; }
