.email-share {
	position: relative;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}
.email-share button {
	display: flex;
	gap: 0.375rem;
	align-items: center;
	background: transparent;
	border: 1px solid #dfdfdf;
	border-radius: 30px;
	padding: 3px 12px;
	color: #a7a7aa;
	color: #6b6b6b;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.email-share button:hover {
	background-color: #f7f7f7;
}
.email-share button span {
	color: #6b6b6b;
}
.email-share button .svg-group svg {
	fill: #6b6b6b;
}
.email-share button .svg-group svg {
	display: block;
	width: 16px;
	height: auto;
}
.email-share .share-menu {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	transform: translateY(10px);
	border: 1px solid #dfdfdf;
	background: #fff;
	border-radius: 5px;
	padding: 0.375rem 0;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 20;
	width: 190px;
	font-size: 0.875rem;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.04);
}
.email-share .share-menu.active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(5px);
}
.email-share .share-menu a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
}
.email-share .share-menu .svg-group {
	width: 28px;
	height: 28px;
	border-radius: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #a7a7aa;
	flex: none;
}
.email-share .share-menu .linkedin .svg-group {
	background-color: #1B86BC;
}
.email-share .share-menu .copy-link .svg-group {
	background-color: #eba75c;
}
.email-share .share-menu .svg-group svg {
	display: block;
	fill: #507dad;
	fill: #fff;
	width: 12px;
	height: auto;
}
.email-share .share-menu a:hover .svg-group svg {
	opacity: 0.85;
}

@media screen and (max-width: 640px) {
	.email-share button {
		width: 32px;
		height: 32px;
		border-radius: 100%;
		padding: 0;
		justify-content: center;
	}
	.email-share button span {
		display: none;
	}
	.email-share button .svg-group svg {
		width: 16px;
	}
}