.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: 370px;
    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#Youtube:hover{
    background-color: #98342d;
}
.social-cj ul li#Facebook:hover{
    background-color: #3A559F;
}
.social-cj ul li#Tiktok:hover{
    background-color: #414044;
}
.social-cj ul li a{
    color: #fff;
    text-decoration: none;
}
.social-cj ul li i{
    text-align: center;
    color: #000;
    margin-right: 10px;
    padding: 5px;
    width: 25px;
    height: 20px;
    font-size: 20px;
    transform: rotate(0deg);
}
.social-cj ul li:hover i{
    transform: rotate(360deg);
    transition: all 1s;
}