.li-widgets--tab-cards__filter {
  display: flex;
  flex-flow: row nowrap;
  list-style: none;
  padding-left: 0;
  margin: 0 -5px;
}
.li-widgets--tab-cards__filter > li {
  display: block;
  width: calc(25% - 10px);
  text-align: center;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  margin: 0 5px;
  font-weight: 600;
  transition: 0.15s ease;
}
.li-widgets--tab-cards__filter > li:hover, .li-widgets--tab-cards__filter > li.active {
  color: var(--e-global-color-primary);
}
.li-widgets--tab-cards__filter > li.active {
  border-bottom: 2px solid;
}
@media (max-width: 700px) {
  .li-widgets--tab-cards__filter > li {
    font-size: 14px;
    width: auto;
    flex-grow: 2;
  }
}
.li-widgets--tab-cards__cards {
  display: flex;
  flex-flow: row wrap;
  margin: 50px -10px 0;
}
@media (max-width: 700px) {
  .li-widgets--tab-cards__cards {
    margin-top: 25px;
  }
}
.li-widgets--tab-cards__card {
  width: calc(33.333% - 20px);
  margin: 10px;
  background-color: #ffffff;
  padding: 32px 31px 28px 35px;
  border-radius: 4.7px;
  box-shadow: 0 3px 14px 0 rgba(84, 110, 122, 0.19);
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 50px calc(100% - 50px);
  grid-template-rows: 50px 1fr;
  gap: 20px;
  grid-template-areas: "icon headline" "text text";
}
@media (min-width: 768px) {
  .li-widgets--tab-cards__card {
    min-height: 230px;
  }
}
.li-widgets--tab-cards__card .icon {
  grid-area: icon;
  display: flex;
  width: 100%;
  height: 100%;
}
.li-widgets--tab-cards__card .icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.li-widgets--tab-cards__card .headline {
  grid-area: headline;
  line-height: 1.27;
  font-size: 18px;
  color: var(--e-global-color-accent);
  font-weight: 700;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
.li-widgets--tab-cards__card .text {
  grid-area: text;
  margin-bottom: auto;
  font-size: 14px;
}
@media (max-width: 991px) {
  .li-widgets--tab-cards__card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 700px) {
  .li-widgets--tab-cards__card {
    width: calc(100% - 20px);
  }
}
