/* BEGIN Tweetable */
.tweetable a {
    background-color: ghostwhite;
    color: inherit;
    /* twitter color */
    /* color: #55acee; */
    padding-left: 0.1875em;
    text-decoration: none;
    -webkit-transition: all 0.236s ease-in-out;
    -moz-transition: all 0.236s ease-in-out;
    -o-transition: all 0.236s ease-in-out;
    transition: all 0.236s ease-in-out;
}

.tweetable a:hover,
.tweetable a:active,
.tweetable a:focus {
    /* twitter color */
    background-color: #55acee;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.tweetable .fa-twitter {
    /* twitter color */
    color: #55acee;
    -webkit-transition: all 0.236s ease-in-out;
    -moz-transition: all 0.236s ease-in-out;
    -o-transition: all 0.236s ease-in-out;
    transition: all 0.236s ease-in-out;
}

.tweetable a:hover .fa-twitter,
.tweetable a:active .fa-twitter,
.tweetable a:focus .fa-twitter {
    color: white;
}
/* END Tweetable */