/**
* GENERAL
**/

.social {
    text-align: center;
    border-radius: 3px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    margin: 5px 0;
}

.social .icon {
    vertical-align: bottom;
    padding: 8px 12px 8px 12px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 3px 0 0 3px;
    height: 40px;
    top: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.social .text {
    padding: 10px 12px 10px 8px;
    border-radius: 0 3px 3px 0;
    height: 40px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.social:hover,
.social:active,
.social:focus {
    color: #fff;
    text-decoration: none;
}

/**
* PROVIDERS
**/

.social.fb .icon {
    background: #3B5998;
}

.social.fb .text {
    background: #3B5998;
}

.social.fb:hover .icon {
    background: #294582;
}

.social.fb:hover .text {
    background: #294582;
}

.social.email .icon {
    background: #de393d;
}

.social.email .text {
    background: #de393d;
}

.social.email:hover .icon {
    background: #ce3135;
}

.social.email:hover .text {
    background: #ce3135;
}