.app-list-container {
  .app-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    overflow: auto;
    max-height: 400px;

    .app-container {
      padding: 10px;
      margin: 5px;
    }

    .app-container:focus,
    .app-container:hover {
      outline: none;
    }
  }

  a {
    width: 100px;
    border-radius: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    padding: 7px;
    color: #222;
    text-align: center;

    .app-item {
      text-align: center;
    }

    .app-icon {
      height: 64px;
      width: 64px;
      margin: auto;
      border-radius: 50%;
      background-color: #ddd;
      display: flex;
      align-items: center;
      color: #666666;
      font-size: 9px;
      justify-content: center;
    }

    .app-img {
      height: 64px;
      margin: auto;
    }

    .app-name {
      font-size: 14px;
      text-transform: capitalize;
      margin-top: 7px;
    }
  }

  a:hover {
    background-color: #f5f5f5;
    transition: all .25s linear;
    outline: none;
  }
}
