.feature-tile {
  display: flex;
  transition: box-shadow 420ms ease, color 420ms ease, background-color 420ms ease, opacity 420ms ease, transform 420ms ease;
  cursor: pointer;
  outline: none;
  user-select: none;
  min-width: 270px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 4px 8px;
  border-radius: var(--default-radius-large);
  width: 100%;
  max-width: 640px;
  max-height: 96px;
  min-height: 96px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(var(--background-content));
  color: rgba(var(--font-color));
  box-shadow: var(--default-box-shadow);
}

.feature-tile.is-vuzix {
  border: 2px solid transparent;
}

.feature-tile.is-vuzix:focus,
.feature-tile.is-vuzix.md-focused {
  border: 2px solid rgba(var(--vuzix-focus-color));
}

.feature-tile:not([disabled]):hover,
.feature-tile:not([disabled]):focus {
  box-shadow: var(--default-box-shadow);
}

.feature-tile .feature-tile-icon,
.feature-tile .feature-tile-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-tile .feature-tile-icon {
  align-items: flex-start;
  flex: 0;
  padding: 16px;
  margin: 16px;
}

.feature-tile:not([disabled]) .feature-tile-icon md-icon {
  transition: color 420ms ease;
  margin: 0;
  color: rgba(var(--font-color));
}

.feature-tile:not([disabled]):hover .feature-tile-icon md-icon,
.feature-tile:not([disabled]):focus .feature-tile-icon md-icon {
  color: rgba(var(--primary-color));
}

.feature-tile .feature-tile-title {
  text-transform: uppercase;
  flex: 1;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-height: 100%;
  height: 100%;
  font-size: 14pt;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px 8px 0;
}

.feature-tile .feature-tile-title span:nth-child(1) {
  justify-self: center;
}

.feature-tile .feature-tile-title span,
.feature-tile .feature-tile-title span:nth-child(2) {
  display: flex;
  flex: 1;
  text-transform: uppercase;
  box-sizing: border-box;
  justify-content: flex-start;
  text-overflow: ellipsis;
  font-size: 14pt;
  white-space: pre-wrap;
  text-align: left;
  overflow: hidden;
  max-height: 40px;
}

.feature-tile .feature-tile-title span:nth-child(2) {
  font-size: 12px;
}

@media (max-width: 640px) {
  .feature-tile {
    max-height: 84px;
    min-height: 84px;
  }
  .feature-tile .feature-title {
    padding-right: 14px;
  }
  .feature-tile .feature-tile-icon {
    padding: 14px;
    margin: 14px;
  }
}