#ECHAT_icon_link,#ECHAT_mini_icon,#ECHAT_icon{
    display: none!important;
}
.choice-echat{
    position: fixed;
    top: 263px;
    right: 3px;
    width: 132px;
    height: 324px;
    background-image: url("icon_off_101338641556611884.png");
}
.choice-echat > ul{
    margin-top: 143px;
    font-size: 12px;
    color: #fff;
    line-height: 25px;
}
.choice-echat > ul > li{
    position: relative;
    list-style-type: none;
    padding-left: 53px;
    cursor: pointer;
    white-space: nowrap;
}
.choice-echat > ul > li span{
    display: none;
    position: absolute;
    top: 0;
    padding: 0 5px;
    border-radius: 3px;
}
.choice-echat ul > li > span.active{
    display: block;
    animation:myfirst 0.2s;
    -webkit-animation:myfirst 0.2s; /* Safari and Chrome */
    animation-fill-mode:forwards;
}
@keyframes myfirst
{
    0% {right: 100px;}
    100% {background-color: rgb(8, 154, 202); right:130px;}
}

.choice-echat ul > li > ul{
    display: none;
    position: absolute;
    top: 0;
    left: -93px;
    margin: 0;
    padding: 0 10px;
    width: 100px;
    color: #888;
    background-color: #eee;
    border-radius: 5px;
}
.choice-echat .active{
    display: block;
}
.choice-echat ul > li > ul li{
    border-bottom: 1px solid #d1d1d1;
}
.choice-echat ul > li > ul li:hover{
    color: #fb0007;
}
.choice-echat ul > li > ul li:last-child{
    border-bottom: none;
}