// Tiles
.tile {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: unset;
  max-height: unset;
  margin: 0;
  cursor: pointer;
  &-frame {
      // max-height: 240px;
      // min-width: 280px;
      width: 100%;
      height: 100%;
  }
  &-content {
      justify-content: space-around;
      align-items: center;
      display: flex;
      flex-direction: column;
      text-align: center;
      padding: 4vmin;
      width: 100%;
      height: 100%;
      color: $body-font-color;
  }

  &-icon-info {
    content: "";
    position: absolute;
    background: url("data:image/svg+xml;utf8,<svg version='1.1'  xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 30' style='enable-background:new 0 0 30 30;'  xml:space='preserve'> <style type='text/css'> .st0{fill:#FFFFFF;} </style> <path class='st0' d='M15,0C6.7,0,0,6.7,0,15c0,8.3,6.7,15,15,15s15-6.7,15-15C30,6.7,23.3,0,15,0z M16,23h-2V11h2V23z M15,8.9c-0.8,0-1.3-0.6-1.3-1.3c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.3,0.6,1.3,1.4C16.4,8.3,15.8,8.9,15,8.9z'/></svg>") no-repeat;
    max-width: 30px;
    max-height: 30px;
    width: 30%;
    height: 30%; 
    right: $unit-4;
    top: $unit-4;
  }

  &-icon,
  &-action {
      width: 100%;
      height: auto;
  }
  &-icon {
    height: 100vh;
    max-height: 30%;
  }
  &-title {
    text-transform: uppercase;
    font-weight: bold;
  }
  &-title,
  &-subtitle {
      line-height: $line-height * 0.9;
  }
  &-subtitle {
    div, p {
        margin: 0;
        font-size: $font-size-sm;
      }
  }
  &-footer {
    right: 0;
    left: 0;
    bottom: 0;
    margin-top: $unit-2;
    font-size: $font-size-sm;
  }
    
}
