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


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

.contact-button-link  {
display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 1px;
    text-align: center;
    line-height: 42px;
    font-size: 16px;
    background: #8e8e93;
    color: #fff;
    position: relative;
    left: 0;
  
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    transition: all 250ms;
  
  -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: 10px;
  width: 50px;
}
.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.youtube {
  background: #E22C29;
}
.contact-button-link.insta {
  background: #125688;
}
.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: 40px;
}
.contact-button-link.show-hide-contact-bar:hover {
  color: #000;
  background: #ccc;
  padding: 0;
  width: 50px;
}


@media screen and (max-width: 991px) 
{
    #contact-buttons-bar
    {
     top:110px;    
    }
}

@media screen and (max-width: 767px) 
{
   /* #contact-buttons-bar
    {
     top:0px;    
    }*/
    
    .contact-button-link
    {
     width:30px;
     height:30px;
     line-height:33px;
     font-size:12px;    
    }
}

@media screen and (max-width: 480px) 
{
    .contact-button-link {
    font-size: 10px;
    height: 24px;
    line-height: 25px;
    width: 24px;
    }
    
    #contact-buttons-bar.slide-on-scroll {
    /*left: auto !important;
    position: absolute;
    right: 0 !important;
    width: auto;
    z-index: 9999;*/
}
}