/* Copy to Clipboard CSS, Javascript, & HTML from Eric Clark on Codepen. Thank you Eric! https://codepen.io/eclarrrk */

.mailto-link {
	position: relative;
	padding: 8px 0;
}
a#email-link.mailto-link {
	color: #84a53e;
	font-weight: 700;
}
.mailto-message {
	top: 1px;
	left: 50%;
	margin-bottom: -5px;
	transform: translate(-50%, -100%);
	position: absolute;
	display: none;
	width: auto;
	white-space: nowrap;
	font-size: 12px;
	background-color: black;
	color: white;
	padding: 2px 6px;
	border-radius: 2px;
}
.mailto-message:after {content: '';}
.mailto-message:before {
        content: '';
		top: 100%;
		left: 50%;
		border: solid transparent;
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-color: rgba(0, 0, 0, 0);
		border-top-color: #000000;
		border-width: 4px;
		margin-left: -4px;
}
/* .mailto-link:hover { display: block; } */
.mailto-message { display: none; }
/* .mailto-link:focus { display: block; } */
.mailto-message { display: none; }
/* .mailto-link:focus-within { display: block; } */
.mailto-message { display: block; }

@media screen and (max-width: 600px)
{
    .mailto-message { display: none; }
}



