    @supports (display: grid) {
  .partner-list__list {
    display: grid;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;

    grid-row-gap: 30px;
    list-style: none;
    justify-content: space-between;
    grid-template-columns: repeat(3, auto);

    @media (--screenLG) {
      grid-template-columns: repeat(4, auto);
    }

    @media (--screenXL) {
      grid-template-columns: repeat(5, auto);
    }
  }
}

_:-ms-fullscreen,
:root {
  & .partner-list__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: space-between;

    & .partner-list__item {
      width: calc(100% / 3);

      @media (--screenLG) {
        width: calc(100% / 4);
      }

      @media (--screenXL) {
        width: calc(100% / 5);
      }
    }
  }
}

.partner-list__item {
  display: block;
  @media (--maxScreenSM) {
    display: none;
    &:nth-child(-n + 9) {
      display: block;
    }
  }
}

.partner-list__item::before {
  content: '';
}

.partner-list__list-all {
  & .partner-list__item {
    display: block !important;
  }
}
.partner-list__item-wrap {
  display: block;
  line-height: 0;
  text-align: center;
  border-bottom: none;
}

.partnerList__button {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  @media (--screenMD) {
    display: none;
  }
}
