/*----------------Sharing Function Block-----------------*/
#shareBlock {
	 position:fixed;
	 top: 50%;
	 left: 0;
	 width: 45px;
	 height: auto;
	 z-index: 20;
	 margin-top: -40px;
	 border-radius: 0 3px 3px 0;
	 overflow: hidden;
	 background-color: #4d6c7e;
}

#shareBlock a { 
	cursor: pointer;
	float: left;
	display: block;
	text-align: center;
}
#shareBlock img {
	opacity: 1;
	width: 40px;
	height: 40px;
}
#shadowBlock { display: none; }

.shareIcon {
	/* float: left; */
	width: 45px;
	height: 45px;
	padding: 2.5px;
	text-align:center;
	transition: background-color 0.2s ease;
	opacity: 0.7;
}
.shareIcon:hover {
	background: rgba(0,0,0,0.1);
	opacity: 1;
}
.version{ float: left; }

 @media screen and (max-width: 991px) {
	/*----------------Sharing Function Block-----------------*/
	#shareBlock {
		border-radius: 3px 0 0 0;
		bottom:0;
		left: 2%;
		top: auto;
		width: calc(96% - 70px);
	}
	#shareBlock a {
		width: 25%;
	}
	#shadowBlock {
		 position:absolute;
		 display: block;
		 width: 96%; 
		 height: 40px; 
		 background-position: center top;
		 background-size: cover;
		 pointer-events: none;
	}
	.shareIcon {
		width: 100%;
		height: 40px;
		margin: 0;
		padding: 0;
	}
	.share { height: inherit; }
	.version{ float: none; width: auto; }
}