/*!
 * 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: 368px;
  right: 60px;
  width: 50px;
}


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

.contact-button-link  {
  display:block;
  width: 69px;
  height: 60px;
  padding: 10px 0 10px 16px;
  margin-bottom: 3px;
  text-align: center;
  line-height: 35px;
  font-size: 16px;
  background: #eee;
  color: #fff;
  position: relative;
  right: -42px;
  /* transform:rotate(90deg); */
  /* border: 2px #fff solid; */
  border-top-left-radius:5px;
  border-bottom-left-radius:5px;
  
  -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: #000;
  /* border: 2px #ddd solid; */
  background:#ddd;

}
.contact-button-link.cb-hidden {
}
.contact-button-link.facebook {
  background: #3b5998;
}
.contact-button-link.twitter {
  background: #0077b5;
}
.contact-button-link.youtube{
  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;
}

@media screen and (min-width: 558px) {
.contact-button-link {display:block;}
	}
