.soc-buttons a {

    position: relative;
    overflow: hidden;
    display: inline-block; /*icons*/
    margin-right: 5px;
    text-align: initial; /*make sure this is not overriden by anything, it will throw the icons off*/
    /*display: block; /!*list*!/*/


}

/*fb-color: #3B5998;*/
/*twitter-color: #00ACEE;*/
/*google-color: #DD4D40;*/

.soc-btn {
    width: 30px;
    height: 30px;
}

.fb-share {
    background-color: #3B5998;
}

.tweet-share {
    background-color: #00ACEE;
}


.g-share {
    background-color: #DD4D40;
}

.soc-btn:after {
    position: absolute;
    content: "";
}

.fb-share:after {

    width: 30px;
    height: 30px;

    background-size: 30px 30px;
    background-image: url(../images/facebook.svg);

    margin-left: 4px;
    margin-top: 2px;

}

.tweet-share:after {

    width: 22px;
    height: 22px;

    background-size: 22px 22px;
    background-image: url(../images/twitter.svg);

    margin-left: 4px;
    margin-top: 4px;

}
.g-share:after {

    width: 25px;
    height: 25px;

    background-size: 25px 25px;
    background-image: url(../images/google_plus.svg);

    margin-left: 4px;
    margin-top: 4px;

}

.fb-share:before, .g-share:before {
    content: attr(data-title);
    min-width: 30px;
    text-align: center;

    position: fixed;
    margin-top: 32px;

    padding: 2px 2px 2px 2px;
    background-color: #FFFFFF;
    border: 1px solid #F2F2F2;

    font-family: "Arial", Helvetica, sans-serif;
    font-size: 0.9em;
    white-space: nowrap;

    opacity: 0;
    transition: all .2s;
}

.soc-count:hover:before {
    opacity: 1;
}

.fb-share:hover:before {
    color: #3B5998;
}

.g-share:hover:before {
    color: #DD4D40;
}
