.a-iconed-list {
  position: relative;
}
.a-iconed-list__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -108px 0 0 0;
}
.a-iconed-list_centered .a-iconed-list__list {
  justify-content: center;
  margin: -108px 0 0 -90px;
  align-items: baseline;
}
.a-iconed-list__item {
  flex: 0 0 320px;
  max-width: 320px;
  text-align: center;
  margin: 108px 0 0 0;
  position: relative;
}
.a-iconed-list__item-components {
  position: relative;
  z-index: 2;
}
.a-iconed-list__item:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -36px;
  transform: translateX(-50%);
  width: calc(100% + 56px);
  height: calc(100% + 36px + 50px);
  background: #f4f4f4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.a-iconed-list_centered .a-iconed-list__item {
  margin: 108px 0 0 90px;
}
.a-iconed-list__item[data-popup-list-active-item]:after {
  opacity: 1;
}
.a-iconed-list__title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.625rem;
  letter-spacing: 0.01em;
  color: #000000;
}
.a-iconed-list__text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6875rem;
  color: #5c5c5c;
  margin: 16px 0 0 0;
}
.a-iconed-list__icon {
  margin: 0 auto 32px;
  max-width: 68px;
}
.a-iconed-list__more {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.75rem;
  letter-spacing: 0.01em;
  color: #40b93c;
  text-transform: uppercase;
  margin: 16px 0 0 0;
  position: relative;
  padding: 0 22px 0 0;
  display: inline-block;
}
.a-iconed-list__more:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #40b93c transparent transparent transparent;
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.a-iconed-list__more-block {
  flex: auto;
  width: calc(100% - 90px);
  max-width: calc(100% - 90px);
  margin: 0 0 0 90px;
  overflow: hidden;
  transition: all 0.3s;
}
.a-iconed-list__more-block[data-template=true] {
  position: absolute;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  left: -5000px;
  top: 0;
  width: 100%;
  max-width: none;
}
.a-iconed-list__more-block-padding {
  padding: 84px 0 0 0;
}
.a-iconed-list__more-block-inner {
  padding: 24px;
  border: solid 2px #000000;
  background: white;
  position: relative;
}
@media only screen and (min-width: 1025px) {
  .a-iconed-list__more-block-inner {
    padding: 48px 72px 48px 48px;
  }
}
.a-iconed-list__more-block-pointer {
  width: 24px;
  height: 24px;
  border: solid #000000;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: -14px;
  background: white;
  transform: rotate(-45deg);
}
.a-iconed-list__more-block-closer {
  width: 24px;
  height: 24px;
  background: url(../images/assets/close-icon.svg) 0 0 no-repeat;
  position: absolute;
  top: 14px;
  right: 16px;
}
.a-iconed-list__more-block ol {
  counter-reset: numberedList;
  list-style: none;
  padding: 0;
}
@media only screen and (min-width: 1025px) {
  .a-iconed-list__more-block ol {
    column-count: 2;
    column-gap: 80px;
  }
}
.a-iconed-list__more-block li {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2.125rem;
  color: #000000;
  display: flex;
}
.a-iconed-list__more-block li:before {
  counter-increment: numberedList;
  content: counter(numberedList) ".";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.125rem;
  color: #40b93c;
  margin: 0 12px 0 0;
}
.a-iconed-list__more-block li + li {
  margin: 4px 0 0 0;
}