#WChatboxWrapper{
    position:fixed;
    bottom:20px;
    right: 20px;
    z-index: 99;
}
#WChatboxWrapper #WChatboxIframe{
    height: 500px;
    width: 360px;
    border:0;
    border-radius: 10px;
    visibility: hidden;
    box-shadow: 0px 20px 32px 0px #00000040;
    transform: translateY(2000px);
    transition: all 0.5s ease-out;
}
#WChatboxWrapper.active #WChatboxIframe,
#WChatboxWrapper.active #WChatboxClose{
    opacity:1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.5s ease-out;
}
#WChatboxWrapper #WChatboxToggler{
    position: absolute;
    bottom:0;
    right:0;
    cursor: pointer;
    opacity:1;
    visibility: visible;
    background-image: url('/file/statics/images/bot.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #FF50AF;
    width: 70px;
    height: 70px;
    border:none;
    border-radius: 50%;
    transform: translateX(0);
    transition: all 0.5s ease-out;
}
#WChatboxWrapper.active #WChatboxToggler{
    opacity:0;
    visibility: hidden;
    transform: translateX(2000px);
    transition: all 0.5s ease-out;

}
#WChatboxWrapper #WChatboxClose{
    background-color: transparent;
    position: absolute;
    top:6px;
    right:0;
    opacity: 0;
    visibility: hidden;
    width: 25px;
    height: 25px;
    border-radius:5px;
    border:none;
    cursor: pointer;
    color:#FFF;
    transform: translateY(2000px);
    transition: all 0.5s ease-out;
}
#WChatboxWrapper #WChatboxClose::after{
    content:"";
    background-image:url('/file/statics/images/chatbot-close.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display:block;
    width: 10px;
    height: 10px;
}


