body{
    position:relative;
}


.wrapper {
  position: fixed;
  top: 50%;
  left: 1%;
  transform: translate(-50%, -50%);
  z-index: 1000000;
} 
@media screen and (max-width:1348px) {
  .wrapper{
    left: 3%;
  }
  
}
@media screen and (max-width:577px) {
  .wrapper{
    display:none;
  }
  
}
.social-container {
  list-style: none;
} 
.social-container li {
  width: 25px;
  height: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e59500;
  margin: 5px 0;
  cursor: pointer;
  border-radius: 0px;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
} 
.social-container li .fa-brands {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  color: #fff;
} 
.social-container li.facebook{
  background: #3b5998;
} 
.social-container li.twitter{
  background: #00aced;
} 
.social-container li.instagram{
  background: #bc2a8d;
} 
.social-container li.youtube{
  background: #d80202;
} 
.social-container li.whatsapp{
  background: #4dc247;
} 
.social-container li.linkedin{
  background: #0077b5;
} 
.social-container li.telegram{
  background: #0088cc;
} 
.social-container li.facebook div.slider{
  background: #627aac;
} 
.social-container li.twitter div.slider{
  background: #7fd5f6;
} 
.social-container li.instagram div.slider{
  background: #dd94c6;
} 
.social-container li.youtube div.slider{
  background: #fb6f6f;
} 
.social-container li.whatsapp div.slider{
  background: #82d47e;
} 
.social-container li.linkedin div.slider{
  background: #5191b3;
} 
.social-container li.telegram div.slider{
  background: #81bedc;
} 
.slider {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 0px;
  height: 25px;
  background: #eebb5c;
  border-radius: 0px;
  transition: all 0.5s 0.3s ease;
} 
.slider p {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 25px;
  opacity: 0;
  transition: all 0.6s ease;
} 
.social-container li:hover .slider {
  width: 120px;
  transition: all 0.5s ease;
} 
.social-container li:hover .slider p {
  opacity: 1;
  transition: all 1s 0.2s ease;
}

@media screen and (max-width:577px) {
  .social-container li:hover .slider{
    width: 80px;
  }
  .slider{
    height: 20px;
    left: 21px;
  }
  .slider p{
    line-height: 20px;
    font-size: 10px;
  }
  .social-container li{
    width: 20px;
    height: 20px;
    margin: 3px 0;
  }
  .social-container li .fa-brands{
    font-size: 12px;
  }
  
}