section.categories .container {
    padding: 20px;
    white-space: nowrap;
    overflow-x: auto;
  }
  section.categories .container .category-card {
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px 6px rgba(128, 128, 128, 0.12);
    box-shadow: 0 0 6px 6px rgba(128, 128, 128, 0.12);
    display: inline-block;
    border-radius: 100px;
    padding: 20px 0;
    width: 130px;
    height: 205px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
    text-decoration: none;
  }
  section.categories .container .category-card .image {
    display: inline-block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    background-color: #efefef;
    border-radius: 50%;
  }
  section.categories .container .category-card .name {
    margin-top: 5px;
    text-align: center;
    font-size: 1em;
    max-width: 100%;
    white-space: pre-wrap;
  }
  section.categories .container .category-card.active,
  section.categories .container .category-card:active,
  section.categories .container .category-card:hover {
    background-color: #f74a26;
    color: #fff;
    font-weight: 400;
  }
  section.categories .container .category-card:not(:last-child) {
    margin-left: 20px;
  }