.link {
  border: 0;
  color: #2EA1A1;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
}
.inline-link {
  color: var(--lgreen);
  text-decoration: none;
}

.link-with-arrow {
  border: 0;
  color: #2EA1A1;
  text-decoration: none;
  background-color: transparent;
}

.link-with-arrow:before {
  content: '';
  background-image: url('../svg/arrow_left.svg');
  display: inline-block;
  width: 8px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.link-with-arrow span {
  text-decoration: underline;
  vertical-align: middle;
  display: inline-block;
}

