.social-cj{
    position: fixed;
	right:35px;
    bottom:30px;
}
.social-cj ul{
 list-style: none;
 padding: 0;
 transform: translateX(300px);
}
.social-cj ul li{
    display: block;
    margin: 5px;
    background: rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: left;
    padding: 10px;
    border-radius: 30px 0 0 30px;
    transition: all 1s;
}
.social-cj ul li:hover{
    transform: translateX(-110px);
}
.social-cj ul li#twitter:hover{
    background-color: #1DA1F2;
}
.social-cj ul li#facebook:hover{
    background-color: #3A559F;
}
.social-cj ul li#instagram:hover{
    background-color: #C11A76;
}
.social-cj ul li a{
    color: #fff;
    text-decoration: none;
}
.social-cj ul li i{
    text-align: center;
    color: #000;
    margin-right: 14px;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 20px;
    transform: rotate(0deg);
}
.social-cj ul li:hover i{
    transform: rotate(360deg);
    transition: all 1s;
}