/*!
 * 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: 200px;
  /*left: -50px;*/
  right: 0;
  width: 120px;/*largura final (:hover) botoes*/
  z-index: 4;
  display: none;
  pointer-events:painted;
}

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

.contact-button-link  {
  text-decoration: none;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  margin-bottom: 1px;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  background: #8e8e93;
  color: #fff;
  position: relative;
  left: 70px;/*largura aberta - largura fechada (50px)*/
  
  -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 span.desc{
    opacity: 0;
    margin-left: 25px;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    pointer-events: none;
    position: absolute;
  -webkit-transition: all 500ms;
     -moz-transition: all 500ms;
          transition: all 500ms;
}
.contact-button-link:hover,
.contact-button-link:focus,
.contact-button-link:active {
  color: #fff;
  padding-right: 70px;/*largura aberta - largura fechada (50px)*/
  width: 120px;
  text-decoration: none;
  left: 0;
}

.contact-button-link:hover span.desc,
.contact-button-link:focus span.desc,
.contact-button-link:active span.desc {
  opacity: 1;
  margin-left: 30px;
}

.contact-button-link.cb-hidden {
  left: 120px;/*largura final botoes*/
}
.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;
}

.show-hide-contact-bar,
.contact-button-link.show-hide-contact-bar:focus,
.contact-button-link.show-hide-contact-bar:active {
  background: rgba(0,0,0,0.05);
  color: #000;
  border: 0;
  outline: 0;
  padding: 0;
  width: 50px;
  left: 70px;
}
.contact-button-link.show-hide-contact-bar:hover {
  color: #000;
  background: #ccc;
  padding: 0;
  width: 50px;
  left: 70px;/*idem .contact-button-link*/
}

/*rodrigo*/

.contact-button-link.maquina {
  background: #2d9ae3;
}

.contact-button-link.materiais {
  background: #ff9f21;
}

.contact-button-link.servico {
  background: #6fba24;
}