﻿.ListWithIconsComponent .ListWithIconList {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ListWithIconsComponent .ListWithIconList .ListWithIcon {
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 16px;
  /* &.showenItem {*/
  /*}*/
}
.ListWithIconsComponent .ListWithIconList .ListWithIcon:first-child {
  border-top: none;
}
.ListWithIconsComponent .ListWithIconList .ListWithIcon .icon-img img {
  width: 97px;
}

@media screen and (max-width: 991px) {
  .ListWithIconsComponent .ListWithIconList .ListWithIcon {
    flex-direction: column;
  }
  .ListWithIconsComponent .ListWithIconList .ListWithIcon .icon-img {
    text-align: center;
  }
    .ListWithIconsComponent .ListWithIconList .ListWithIcon .icon-img img {
        max-width: 97px;
    }
    }
