/*
.category-icon {
    svg {
      fill: $color-light;
    }
  }

  .category-icon {
    svg {
      width: calc(var(--size) / 3);
      height: calc(var(--size) / 3);
      fill: $color-accent;
    }
  }
  */

.category-item svg, .category-item img {
    //fill: #135D66;
    fill: white;
}

.category-item:hover svg, .category-item.active svg {
    fill: #FFF;
}

.category-item {
    margin: 15px;
    padding: 30px;
    width: 160px;
    height: 160px;
    //background-color: rgb(245,245,245);
    background-color: #77B0AA;
    //color: #135D66;
    color: white;
}

.category-item:hover, .category-item.active {
    background-color: #135D66;
    color: #FFF;
}

.card.tutorial-card {
    border-color: none;
}