/* BACK TO TOP */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    z-index: 100;
    background-color: #326f7a;
    border-radius: 3px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
	text-indent: -9999px;
}

.back-to-top:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    margin: -4px 0 0 -7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(-135deg);
}

.back-to-top:hover {
    opacity: 1;
}

@media only screen and (max-width: 991px) {
    .back-to-top {
        width: 70px;
        height: 45px;
        right: 0;
        bottom: 0;
        border-radius: 0 5px 0 0;
    }
}
/*----------------Sharing Function Block-----------------*/
#shareBlock{
	 position:fixed;
	 top: 50%;
	 left: 0;
	 width: 45px;
	 height: auto;
	 z-index: 40;
	 margin-top: -90px;
	 border-radius: 0 3px 3px 0;
	 overflow: hidden;
	 background: #326f7a;
 }
#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.2); opacity: 1; }
 .version { float: left; }

@media screen and (max-width: 991px) {
	/*----------------Sharing Function Block-----------------*/
	#shareBlock {
		border-radius: 3px 0 0 0;
		bottom:0;
		left:0;
		top: auto;
		width: calc(100% - 70px);
	}
	#shareBlock a {
		width: 25%;
	}
	#shadowBlock {
		 position:absolute;
		 display: block;
		 width: 100%; 
		 height: 45px; 
		 background-position: center top;
		 background-size: cover;
		 pointer-events: none;
	}
	.shareIcon {
		width: 100%;
		height: 45px;
		margin: 0;
	}
	.share { height: inherit; }
	.version{ float: none; width: auto; }
}