.social-wrapper {
    position: fixed;
    top: 50%;
    left: 18px;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.social-wrapper ul {
    list-style: none;
}

.social-wrapper ul li {
    width: 40px;
    height: 40px;
    position: relative;
    background: #e59500;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.social-wrapper ul li .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
}

.social-wrapper ul li.facebook {
    background: #3b5998;
}

.social-wrapper ul li.twitter {
    background: #00aced;
}

.social-wrapper ul li.instagram {
    background: #bc2a8d;
}

.social-wrapper ul li.google {
    background: #dd4b39;
}

.social-wrapper ul li.whatsapp {
    background: #4dc247;
}

.social-wrapper ul li.viber {
    background: #6F5CEA;
}

.social-wrapper ul li.telegram {
    background: #27A4E4;
}

.social-wrapper ul li.youtube {
    background: #DE2439;
}


.social-wrapper ul li.facebook div.social-slider {
    background: #627aac;
}

.social-wrapper ul li.twitter div.social-slider {
    background: #7fd5f6;
}

.social-wrapper ul li.instagram div.social-slider {
    background: #dd94c6;
}

.social-wrapper ul li.google div.social-slider {
    background: #eea59c;
}

.social-wrapper ul li.whatsapp div.social-slider {
    background: #82d47e;
}

.social-wrapper ul li.viber div.social-slider {
    background: #9083E9;
}

.social-wrapper ul li.telegram div.social-slider {
    background: #77bfe3;
}

.social-wrapper ul li.youtube div.social-slider {
    background: #dc6875;
}

.social-slider {
    content: "";
    position: absolute;
    top: 0;
    left: 41px;
    width: 0px;
    height: 40px;
    background: #eebb5c;
    border-radius: 3px;
    transition: all 0.5s 0.3s ease;
}

.social-slider p {
    font-family: arial;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 40px;
    opacity: 0;
    transition: all 0.6s ease;
}

.social-wrapper ul li:hover .social-slider {
    width: 180px;
    transition: all 0.5s ease;
}

.social-wrapper ul li:hover .social-slider p {
    opacity: 1;
    transition: all 1s 0.2s ease;
}