/*!
 * 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;
  
  bottom:0px;
  /*left: -50px;*/
  width: 50px;
  z-index:1000 !important;
}


#contact-buttons-bar.slide-on-scroll {
  /*position: absolute;*/
  z-index:1000;
}


@media only screen and (max-width: 1024px){ 

	.contact-button-link  {
		  background: #303030b2 !important;
	} 
}

.contact-button-link  {
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  margin-bottom: 1px;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  background: #303030;
  /*background: #303030b2;*/
  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:hover,
.contact-button-link:focus,
.contact-button-link:active {
  color: #fff;
  /*padding-left: 20px;*/
  padding-right: 20px;
  width: 70px;
}
.contact-button-link.cb-hidden {
  /*left: -50px;*/
  right: -50px;
}
.contact-button-link.facebook {
  background: /*#3b5998*/#C61334;
}
.contact-button-link.plane {
  background: #3b5998;
}
.contact-button-link.linkedin {
  background: #0077b5;
}
.contact-button-link.gplus {
  background: #db4437;
}

.contact-button-link.separated {
  margin-top: 1em;
}