/*!
 * Contact Buttons Plugin Demo 0.1.0
 * https://github.com/joege/contact-buttons-plugin
 *
 * Copyright 2015, José Gonçalves
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */
#contact-buttons-bar {
    position: fixed;
    top: 120px;
    right: 0px;
    width: 50px;
}
#contact-buttons-bar.slide-on-scroll {
    position: absolute;
}
.contact-button-link {
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    margin-bottom: 1px;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    background: #4e565a;
    color: #fff;
    position: relative;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    transition: all 250ms;
}
.contact-button-link:active,
.contact-button-link:hover {
    color: #fff;
    padding-left: 20px;
}
.contact-button-link.cb-hidden {
    left: -50px;
}
/* .contact-button-link.facebook {
    background: #3b5998;
}
.contact-button-link.linkedin {
    background: #0077b5;
} */
.contact-button-link.gplus {
    background: #db4437;
}
.contact-button-link.separated {
    margin-top: 1em;
}
.contact-button-link.show-hide-contact-bar:active,
.contact-button-link.show-hide-contact-bar:focus,
.show-hide-contact-bar {
    background: 0 0;
    color: #000;
    border: 0;
    outline: 0;
    padding: 0;
    width: 50px;
}
.contact-button-link.show-hide-contact-bar:hover {
    color: #000;
    background: #ccc;
    padding: 0;
    width: 50px;
}
.contact-button-link:link {
    text-decoration: none;
}
#contact-buttons-bar a{
    color: #fff !important;
}
@media only screen and (max-width: 767px) {
    .contact-button-link {
        width: 36px;
        height: 36px;
        line-height: 32px;
    }
    #contact-buttons-bar {
        width: 36px;
    }
}
