.lm-share-icon,
.lm-share-links a,
.lm-share-links button{
	border-radius: 50%;
	outline: none;
	width: 34px;
	height: 34px;
	border: 2px solid #c6d1d5;
	background: #fff;
	color: #c6d1d5;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 0;
	box-sizing: border-box;
	margin-left: .25rem;
	flex-shrink: 0;
	transition: all 300ms;
}
.lm-share-icon:hover,
.lm-share-links a:hover,
.lm-share-links button:hover{
	background: #c6d1d5;
	color: #fff;
}
.lm-share-icon svg{
	margin-right: 3px;
}
.lm-share-icon svg,
.lm-share-links svg{
	height: 18px;
}
.lm-share-wrapper{
	display: flex;
	position: relative;
}
.lm-share-links{
	display: flex;
	max-width: 0;
	overflow: hidden;
	transition: max-width 500ms ease;

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 100%;
}
.lm-share-links.lm-share-visible{
	max-width: 250px;
}
.copy_confirmation{
	position: absolute;
	top: -15px;
	right: 0;
	color: green;
	font-weight: 700;
}