/*!
 * 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: 30px;
  /*left: -50px;*/
  width: 50px;
}


#contact-buttons-bar.slide-on-scroll {
  position: absolute;
}

.contact-button-link  {
  display: block;
  width: 46px;
  height: 46px;
  padding: 1;
  margin-bottom: 1px;
  text-align: center;
  line-height: 46px;
  font-size: 23px;
  background: #da222c;
  color: #fff;
  position: relative;
  right: 0;
  
border-radius: 30px;  
  -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: 48px;
}
.contact-button-link.cb-hidden {
  right: -50px;
}
.contact-button-link.facebook {
  background: #083085;
}

.contact-button-link.map {
  background: #da7c22;
}

.contact-button-link.instagram {
  background: #e21f1abf;
}

.contact-button-link.whatsapp {
  background: #168f22;
}

.contact-button-link.email {
  background: #69c3cd;
}


.contact-button-link.linkedin {
  background: #0077b5;
}
.contact-button-link.gplus {
  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: transparent;
  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;
}