/* facebook button class*/

.smGlobalBtn{ /* global button class */
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border:1px solid rgba(255,255,255,0.0); /* add border to the buttons */
   /* box-shadow: 0 3px 3px #999;*/
    padding: 0px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    line-height: 2em;
    border-radius: 27px;
    -moz-border-radius:27px;
    -webkit-border-radius:27px;
	outline:none !important;
}

.facebookBtn{
    background: none;
	color:rgba(255,255,255,0.4);
}

.facebookBtn:before{ /* use :before to add the relevant icons */
    font-family: "FontAwesome";
    content: "\f09a"; /* add facebook icon */
}

.facebookBtn:hover{
    color: #FFF;
    background: none;
    border:1px solid rgba(255,255,255,1); /* change the border color on mouse hover */
	-webkit-transition:.8s;
    -moz-transition:.8s;
    -o-transition:.8s;
	outline:none !important;
}

/* twitter button class*/
.twitterBtn{
    background: none;
	color:rgba(255,255,255,0.4);
	
}

.twitterBtn:before{
      font-family: "FontAwesome";
      content: "\f099"; /* add twitter icon */      
}

.twitterBtn:hover{
    color: #FFF;
    background: none;
    border:1px solid rgba(255,255,255,1); /* change the border color on mouse hover */
	-webkit-transition:.8s;
    -moz-transition:.8s;
    -o-transition:.8s;
	outline:none !important;
}

/* google plus button class*/
.googleplusBtn{
    background: none;
	color:rgba(255,255,255,0.4);
}

.googleplusBtn:before{
      font-family: "FontAwesome";
      content: "\f0d5"; /* add googleplus icon */
}

.googleplusBtn:hover{
     color: #FFF;
    background: none;
    border:1px solid rgba(255,255,255,1); /* change the border color on mouse hover */
	-webkit-transition:.8s;
    -moz-transition:.8s;
    -o-transition:.8s;
	outline:none !important;
}

/* linkedin button class*/
