.social {
    position: fixed;
    bottom: 90px;
    right: 0;
    width: 28px;
    z-index: 99;
}

.social ul {
    padding: 0
}

.social ul li {
    display: flex;
    align-items: center;
    margin: 0 0 5px;
    background: transparent;
    width: 300px;
    text-align: left;
    -webkit-border-radius: 30px 0 30px 30px;
    -moz-border-radius: 30px 0 30px 30px;
    border-radius: 30px 0 30px 30px;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.social ul li:hover {
    -webkit-transform: translate(-80px,0);
    -moz-transform: translate(-80px,0);
    -ms-transform: translate(-80px,0);
    -o-transform: translate(-80px,0);
    transform: translate(-80px,0)
}

.social ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px
}

.social ul li:hover i {
    color: #fff;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.social ul li a {
    display: flex;
    align-items: center
}

.social ul li i {
    margin-right: 5px;
    color: #fff;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg)
}

.social .facebook i {
    background: #3b5998;
}

.social .facebook:hover {
    background: #3b5998;
}
.social .linkedin i {
    background: #0072b1;
}

.social .linkedin:hover {
    background: #0072b1;
}
.social .instagram i {
    background: #d62976;
}

.social .instagram:hover {
    background: #d62976;
}

.social .twitter i {
    background: #00acee;
    font-size: 12px
}

.social .twitter:hover {
    background: #00acee;
}
.social .youtube i {
    background: #FF0000;
    font-size: 12px
}

.social .youtube:hover {
    background: #FF0000;
}