.position-social{
	position: fixed;
	bottom: 20px;
	right: 14px;
    z-index: 99;
}
.social-content {
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-start;
	align-items:center;
	position: relative;
}
.social-content .shareButton.main .share,
.social-content .shareButton.main .close,
.social-content .shareButton.main .check {
	position: absolute;
	top: 1rem;
	left: 1rem;
	transition: all 150ms;
}
.social-content .shareButton.main .share,
.social-content .shareButton.main.open .close,
.social-content .shareButton.main.sent .check {
	transform: rotate(0) scale(1);
	opacity: 1;
}
.social-content .shareButton.main .close,
.social-content .shareButton.main.open .share,
.social-content .shareButton.main .check,
.social-content .shareButton.main.sent .share {
	opacity: 0;
	transform: rotate(90deg) scale(0);
}

.shareButton,
.shareButton.open {
	border: none;
	border-radius: 50%;
	background: #ae782b;
	padding: 1rem;
	overflow: hidden;
	outline: none;
	margin: 0.5rem;
	width: 24px;
	height: 24px;
	box-sizing: content-box;
	transition: all 200ms;
	position: relative;
	opacity: 1;
	transform: scale(1);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.shareButton:hover,
.shareButton.open:hover {
	transform: scale(1.1) translateY(-3px);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.shareButton svg,
.shareButton.open svg {
	display: block;
	fill: #fff;
	width: 24px;
	height: 24px;
	opacity: 1;
	transition: all 150ms;
	transform: scale(1);
}

.fb,
.shareButton.open.line {
	transition-delay: 50ms;
}

.line,
.shareButton.open.fb {
	transition-delay: 0ms;
}

.fb,
.line {
	width: 0;
	height: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	opacity: 0;
	transform: scale(0);
}
.fb svg,
.line svg{
	width: 0;
	height: 0;
	opacity: 0;
	transform: scale(0);
}
