a {
    color: $body-color;
    text-decoration:none;

	&:visited {
		color: $heading-color;
	}

	&:hover,
	&:focus,
	&:active {
		color: $secondary-color;
	}

	&:focus {
		outline: thin dotted;
	}

	&:hover,
	&:active {
		outline: 0;
	}
}
a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
  }
  
  a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
  }
  
  a:not([href]):not([tabindex]):focus {
	outline: 0;
  }
