.share {

display: flex;
justify-content: center;
margin: 50px 0 0;

.button {
  border: 1px solid $color-grey-30;
  border-radius: 5px;
  margin: 0 25px 0 0;
  padding: 5px 25px;
  text-align: center;
  width: 25%;

  &:last-child {
    margin: 0;
  }

  &:hover {
    border-color: $color-grey;

    svg {
      stroke: $color-grey;
    }
  }

  svg {
    position: relative;
    top: 2px;
  }
}

}