#social-container {
  max-height:50px;
  position: fixed;
  bottom:0px;
  width: 100%;
  z-index: 99999999;
}
.social-container {
  display: flex;
  margin: 0;
  padding: 0;

}
#social-container.show-social {
  bottom:45px;
}

.social-container li {
  list-style: none;
  flex-grow: 1;
}
.email {
  background-color: #55acee;
  order: 1;
}
.email:hover {
  background-color: #6fb9f1;
}
.facebook {
  background-color: #3b5998;
  order: 2;
}
.facebook:hover {
  background-color: #4365ad;
}
.whatsapp {
  background-color: #25D366;
  order: 3;
}
.whatsapp:hover {
  background-color: rgb(28, 161, 77);
}

.email, 
.facebook,
.whatsapp,
.email:hover, 
.facebook:hover, 
.whatsapp:hover {
  transition: background-color .5s ease;
}
.email, 
.facebook,
.whatsapp a{
  font-weight: 600;
}
.social-container a {
  display: block;
  
}
.social-container i {
  color: #fff;
  line-height: 50px;
  width: 100%;
  text-align: center;
}










/* #social-container {
    width: 410px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    display: block;
    position: fixed;
    opacity: -1;
    bottom: -0px;
    background-color:rgba(255, 255, 255, 0.5);
   
  }

  #social-container.show-social {
    opacity: 1;
    transition: visibility 0s, opacity 0.8s linear;
  }

  #social-container p {
    text-align: center;
    margin-bottom: 0px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .social-button {
    color: white;
    display: inline-block;
    padding: 5px;
    vertical-align: middle;
    text-align: center;
    min-width: 45px;
    width: 45px;
    height: 45px;
    position: relative;
    line-height: 35px;
    overflow: hidden;
    white-space: nowrap;
    transition: width 300ms ease;
    -webkit-transition: width 300ms ease;
  }
  .social-button i {
    vertical-align: middle;
    position: relative;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .social-button span {
    display: inline-block;
    font-family: Geneva, Helvetica, sans-serif;
    font-size: 18px;
    vertical-align: middle;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    -webkit-transition: width 300ms ease;
    transition: width 300ms ease;
  }
  .social-button.fb {
    background: #3b5998;
  }
  .social-button.yt {
    background: #b00;
  }
  .social-button.tw {
    background: #55acee;
  }
  .social-button.sc {
    background: #f50;
  }
  .social-button.ig {
    background: #125688;
  }
  .social-button.cp {
    background: #000;
  }
  .social-button.gh {
    background: #00A44E;
  }
  

  @media only screen and (max-width: 766px) {
    #social-container {
        width: 100vw;
        position:fixed;
        margin-bottom: 30px;
        float:none;
    }
  } */