/* Container Of The Plugin */
	
/* Social Media Brand Colors 
twitter:     #00aced     rgb(0, 172, 237)
facebook:    #3b5998     rgb(59, 89, 152)
googleplus:  #dd4b39     rgb(221, 75, 57)
pinterest:   #cb2027     rgb(203, 32, 39)
linkedin:    #007bb6     rgb(0, 123, 182)
youtube:     #bb0000     rgb(187, 0, 0)
vimeo:       #aad450     rgb(170, 212, 80)
tumblr:      #32506d     rgb(50, 80, 109)
instagram:   #517fa4     rgb(81, 127, 164)
flickr:      #ff0084     rgb(255, 0, 132)
dribbble:    #ea4c89     rgb(234, 76, 137)
quora:       #a82400     rgb(168, 36, 0)
foursquare:  #0072b1     rgb(0, 114, 177)
forrst:      #5B9A68     rgb(91, 154, 104)
vk:          #45668e     rgb(69, 102, 142)
wordpress:   #21759b     rgb(33, 117, 155)
stumbleupon: #EB4823     rgb(235, 72, 35)
yahoo:       #7B0099     rgb(123, 0, 153)
blogger:     #fb8f3d     rgb(251, 143, 61)
soundcloud:  #ff3a00     rgb(255, 58, 0)
*/

.socialPlugin {
	text-align: center;
	width: 25px;
	margin: 10px auto 0;
	height: 30px;
	display: block;
}

.socialPlugin .showSocialButtons {
	font-size:15px;
	cursor:pointer;
	padding:0.333em 0.667em;
	height: 25px;
	width: 25px;
}

.socialPlugin .socials {
	width: 260px;
	color: white;
	line-height: 10px;
	text-align: center;
	margin-top: 10px;
	margin-left: -35px;
	display:none;
	transform-origin:50% 0%;

	-webkit-transform: scale(0) translateY(-90px);
	-moz-transform:scale(0) translateY(-90px);
	-o-transform:scale(0) translateY(-90px);
	transform:scale(0) translateY(-90px);

	-webkit-transition:.5s;
	-moz-transition:.5s;
	-o-transition:.5s;
	transition:.5s;
	

	opacity:0;
}

.socialPlugin .socials:before {
	content: '';
	/*display: block;
	position: absolute;
	left: 0;
	right: 0;
	margin: 4px auto;
	height: 0;
	width: 0;
	border-left: 15px solid rgba(0, 0, 0, 0);
	border-right: 15px solid rgba(0, 0, 0, 0);
	border-top: 15px solid #becade;*/
}

@media all and (max-width: 992px) {
	.socialPlugin .socials {
		margin-top: -90px;
	}
}


/* Toggled State */

.socialPlugin .socials.opened {
	opacity:1;
	-webkit-transform: scale(.6) translateY(-20px);
	-moz-transform:scale(.6) translateY(-20px);
	-o-transform:scale(.6) translateY(-20px);
	transform:scale(.6) translateY(-20px);
	-webkit-transition:.5s;
	-moz-transition:.5s;
	-o-transition:.5s;
	transition:.5s;
	display: block;
}


/* Share buttons */

.socialPlugin .socials .fa {
	height: 2.5em;
	font-size: 2em;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	width: 2.5em;
	-webkit-backface-visibility: hidden;
	border-width: 1px;
    border-color: #555;
    border-style: solid;
}

.socialPlugin .socials .fa:before, .socialPlugin .socials .fa:after {
	left: 0;
	position: absolute;
	text-align: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	top: 50%;
	width: 100%;
}

.socialPlugin .socials .fa:before {
	color: white;
	-webkit-transform: translate3D(0, -50%, 0);
	-ms-transform: translate3D(0, -50%, 0);
	transform: translate3D(0, -50%, 0);
	z-index: 2;
}

.socialPlugin .socials .fa:after {
	padding-bottom: 25%;
	padding-top: 300%;
	top: 0;
}

.socialPlugin .socials .fa:hover:after {
	-webkit-transform: translate3D(0, -73%, 0);
	-ms-transform: translate3D(0, -73%, 0);
	transform: translate3D(0, -73%, 0);
}

.socialPlugin .socials .fa:hover:before {
	-webkit-transform: translate3D(0, -250%, 0);
	-ms-transform: translate3D(0, -250%, 0);
	transform: translate3D(0, -250%, 0);
}

/* The social icons */

.socialPlugin .share-alt {
	background-image: url("/images/icons/icon-community.png");
    /*background-color: #cccccc;*/
    background-repeat: no-repeat;
}
    

.socialPlugin .socials .fa-twitter:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #00acee), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#00acee 25%, #ffffff 75%);
	background-image: linear-gradient(#00acee 25%, #ffffff 75%);
	content: "\f099";
	color: #00acee;
}

.socialPlugin .socials .fa-facebook:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #3b5998), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#3b5998 25%, #ffffff 75%);
	background-image: linear-gradient(#3b5998 25%, #ffffff 75%);
	content: "\f09a";
	color: #3b5998;
}

.socialPlugin .socials .fa-google-plus:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #bb0000), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#bb0000 25%, #ffffff 75%);
	background-image: linear-gradient(#bb0000 25%, #ffffff 75%);
	content: "\f0d5";
	color: #bb0000;
}

.socialPlugin .socials .fa-pinterest:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #cb2027), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#cb2027 25%, #ffffff 75%);
	background-image: linear-gradient(#cb2027 25%, #ffffff 75%);
	content: "\f0d2";
	color: #cb2027;
}

.socialPlugin .socials .fa-tumblr:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #2C4762), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#2C4762 25%, #ffffff 75%);
	background-image: linear-gradient(#2C4762 25%, #ffffff 75%);
	content: "\f173";
	color: #2C4762;
}

.socialPlugin .socials .fa-linkedin:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #0077B6), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#0077B6 25%, #ffffff 75%);
	background-image: linear-gradient(#0077B6 25%, #ffffff 75%);
	content: "\f0e1";
	color: #0077B6;
}

.socialPlugin .socials .fa-vk:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #45668e), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#45668e 25%, #ffffff 75%);
	background-image: linear-gradient(#45668e 25%, #ffffff 75%);
	content: "\f189";
	color: #45668e;
}

.socialPlugin .socials .fa-weibo:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #ea4239), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#ea4239 25%, #ffffff 75%);
	background-image: linear-gradient(#ea4239 25%, #ffffff 75%);
	content: "\f18a";
	color: #ea4239;
}

.socialPlugin .socials .fa-renren:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #005caf), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#005caf 25%, #ffffff 75%);
	background-image: linear-gradient(#005caf 25%, #ffffff 75%);
	content: "\f18b";
	color: #005caf;
}
.socialPlugin .socials .fa-tencent-weibo:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #319edd), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#319edd 25%, #ffffff 75%);
	background-image: linear-gradient(#319edd 25%, #ffffff 75%);
	content: "\f1d5";
	color: #319edd;
}

.socialPlugin .socials .fa-reddit-alien:after {
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #c6c6c6), color-stop(75%, #ffffff));
	background-image: -webkit-linear-gradient(#c6c6c6 25%, #ffffff 75%);
	background-image: linear-gradient(#c6c6c6 25%, #ffffff 75%);
	content: "\f281";
	color: #c6c6c6;
}
