/*!
 * 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;
  left: -50px;
  width: 50px;
  display:none;
}


#contact-buttons-bar.slide-on-scroll {
  position: absolute;
  z-index:99;

}

.contact-button-link  {
  display: block;
  border-radius: 0 4px 4px 0;
  width: 50px;
  height: 40px;
  padding: 0;
  margin-bottom: 6px;
  text-align: center;
  line-height: 40px;
  font-size: 22px;
    background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
  color: #fff;
  text-shadow:0 2px 2px rgba(0,0,0,0.7);
  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:hover,
.contact-button-link:focus,
.contact-button-link:active {
  color: #fff;
  padding-left: 20px;
  width: 70px;
}
.contact-button-link.cb-hidden {
  left: -50px;
}
.contact-button-link.facebook {
/*  background: #3b5998;*/
}
.contact-button-link.linkedin {
/*  background: #0077b5;*/
}
.contact-button-link.twitter{
 /* background: #db4437;*/
}

.contact-button-link.separated {
  margin-top: 1em;
}

.show-hide-contact-bar,
.contact-button-link.show-hide-contact-bar:focus,
.contact-button-link.show-hide-contact-bar:active {
  background: #fff;
  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;
}
.git {
/*  background: #db4437;*/
}