/**
* Social Share
*/
.acseo-share {
	position: relative;
} 
/**
* Social Share > Share modal toggle
*/
.acseo-share a.acseo-share-link {
	position: relative;
	display: block;
	height: 32px;
    width: 32px;
	background-image: url('../img/share.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	font-size: 0;
	transition: all .3s;
	overflow: hidden;
	transform: translateX(-8px);
}

.acseo-share a.acseo-share-link:after {
	content:'';
	position: absolute;
	top:0;
	left:0;
	height: 100%;
	width: 100%;
	display: block;
	pointer-events: none;
	opacity: 0;
	transition: all .3s;
}

.acseo-share a.acseo-share-link:hover,
.acseo-share a.acseo-share-link.acseo-active {
	transform: translateX(-8px) scaleX(.8);
	box-shadow: 2px 0 3px rgba(60, 60, 59, 0.2);
}

.acseo-share a.acseo-share-link:hover:after,
.acseo-share a.acseo-share-link.acseo-active:after  {
	opacity: 1;
	box-shadow: inset 2px 0 3px rgba(60, 60, 59, 0.2);
}

/**
* Social Share > Share modal
*/
.acseo-share-modal {
	position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    z-index: 2;
    justify-content: flex-end;
    padding: 0px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

.acseo-share-modal.afg-active {
	opacity: 1;
	pointer-events: all;
}

/**
* Social Share > Sassy Social Share plugin
*/
body div.heateor_sss_follow_ul, 
body div.heateor_sss_sharing_ul {
    margin: 0!important;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

body div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
	margin:0 7px!important;
}

body div.heateor_sss_follow_ul a {
	margin:0 15px!important; 
}

body div.heateor_sss_follow_ul a span, 
body div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a span,
body .heateor_sss_button_instagram span.heateor_sss_svg, 
body a.heateor_sss_instagram span.heateor_sss_svg {
	background: transparent!important;
	border-radius: 100%!important;
	height: 42px!important;
	width: 42px!important;
	display: inline-flex!important;
	align-items: center;
	justify-content: center;
}

body a.heateor_sss_instagram span.heateor_sss_svg svg,
body a.heateor_sss_linkedin span.heateor_sss_svg svg {
	height: 32px;
	width: 32px;
}

body div.heateor_sss_follow_ul a:first-child {
	margin-left: 0!important;
}

body div.heateor_sss_follow_ul a:last-child, 
body div.heateor_sss_follow_ul a:last-child, 
body div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a:last-child {
	margin-right:0!important; 
}

@media (max-width:992px) {
	.acseo-share {
		right: 15px;
		top:15px;
	}

	.acseo-share-modal {
		height: 32px;
		background: var(--color_2);
		width: calc(100vw - 60px);
	}

	body div.heateor_sss_follow_ul {
		margin: 30px 0 0!important;
		text-align: left;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	body div.heateor_sss_follow_ul a {
		margin: 0 20px!important;
	}

}

