﻿/*************
SHARE LINKS STYLING....
**************/

.share_container {
    width: 100%;
    float: left;
    position: relative;
    clear: both;
    padding: 5px 0px;
    margin: 5px 0px 10px 0px;
    height: auto;
    height: 100%;
}

.share {
    float: left;
    position: relative;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    background-color: #eee;
    padding: 4px 4px;
    color: #fff;
    text-decoration: none;
    cursor: pointer; /*border-radius:2px; margin:2px 4px 2px 0px;*/
}

    .share .fa {
        font-size: 1em;
    }

    .share .2x .fa {
        font-size: 2em;
    }

    .share .text {
        font-size: 13px;
        display: none;
    }

.share_text {
    margin-left: 10px;
    color: #6d6d6d;
    margin-left: 12px;
    line-height: 32px;
    font-size: 12px !important;
}
/*.share:hover .text { display:block; float:right; margin-left:5px; }*/


/** SHARE BUTTON SHADOW EFFECT **/
/*.share { -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), to(rgba(255, 255, 255, 0.2))); }*/


/* SHARE CUSTOM */

.share_text {
    font-size: 18px !important;
    cursor: pointer;
    margin-left: 0px;
}

    .share_text:hover {
        color: #54b2b6;
    }

    .share_text .fa {
        font-size: 15px !important;
        margin-left: 5px;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

.share {
    background-color: #999999;
    margin-right: 5px;
    border-radius: 2px;
}

.share-wrap {
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    max-width: 0px;
    overflow: hidden;
    display: table-cell;
    display: inline-flex;
}

.share-toggle {
    max-width: 100%;
    margin-right: 10px;
}


/*** SOCIAL COLOURS ***/
.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #55acee;
}

.google {
    background-color: #dd4b39;
}

.youtube {
    background-color: #bb0000;
}

.linkedin {
    background-color: #007bb5;
}

.instagram {
    background-color: #125688;
}

.pininerest {
    background-color: #cb2027;
}

.facebook-hover:hover {
    background-color: #3b5998;
}

.twitter-hover:hover {
    background-color: #55acee;
}

.google-hover:hover {
    background-color: #dd4b39;
}

.youtube-hover:hover {
    background-color: #bb0000;
}

.linkedin-hover:hover {
    background-color: #007bb5;
}

.instagram-hover:hover {
    background-color: #125688;
}

.pininerest-hover:hover {
    background-color: #cb2027;
}

/*** TRANSITION EFFECT ***/
.share .text {
    -moz-animation: rightThenLeft 0.5s linear;
    -o-animation: rightThenLeft 0.5s linear;
    -webkit-animation: rightThenLeft 0.5s linear;
    animation: rightThenLeft 0.5s linear;
}

@-webkit-keyframes rightThenLeft {
    0% {
        margin-right: -50%;
    }

    100% {
        margin-right: 0;
    }
}
