.icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  &.stroke-dark {
    circle, path, rect, polygon, ellipse, line, polyline {
      stroke: var(--text-dark);
    }
  }

  svg {
    width: 30px;
    height: 30px;
  }
}

.icon-after {
  &:after {
    content: '';
    width: 15px;
    height: 15px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-left: 5px;
  }
}

.icon-after-envelope {
  &:after {
    background-image: url("/assets/icons/envelope-b5a27900.svg");
  }
}