/**
 * This module helps merchant to social media links of facebook,googleplus,linkedin,twitter,pinterest,tumblr in side menu on home screen 
 *
 * NOTICE OF LICENSE
 * 
 * Each copy of the software must be used for only one production website, it may be used on additional
 * test servers. You are not permitted to make copies of the software without first purchasing the
 * appropriate additional licenses. This license does not grant any reseller privileges.
 * 
 * @author    José Gonçalves
 * @copyright 2007-2025  José Gonçalves
 * @license   MIT license
 */
 
 #contact-buttons-bar {
  position: fixed;
  top: 120px;
  left: -50px;
  width: 50px;
  z-index: 10000;
}
#contact-buttons-bar.slide-on-scroll {
  position: absolute;
}
.contact-button-link  {
  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;
  z-index: 10000;
  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.gplus {
  background: #db4437;
}
.contact-button-link.twitter {
  background: #00aced;
}
.contact-button-link.whatsapp {
  background: #25D366;
}
.contact-button-link.instagram {
  background: #DD2A7B;
}
.contact-button-link.youtube {
  background: #db4437;
}
.contact-button-link.vk {
  background: #4c75a3;
}
.contact-button-link.tumblr {
  background: #35465c;
}
.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;
}
