@keyframes randomAnimation {
    0% {
        width: 0;
        height: 0;
    }
}
@keyframes buttomToMiddle {
    0% {
       opacity: -1;
       bottom: -3rem;
    }
}
.cattalk-external-chat-container {
    z-index: 99999999;
}

.cattalk-external-chat-showing {
    position: fixed;
    right: .5rem;
    bottom: .5rem;
    width: 20rem;
    height: 30rem;
    animation: randomAnimation .2s;
    cursor: pointer;
    box-shadow: 10px 10px 15px -4px rgba(0, 0, 0, 0.32);
    /* background-color: rgb(255, 255, 255); */
}

.cattalk-external-chat {
    width: 20rem;
    height: 30rem;
    border-radius: .5rem;
}

.cattalk-external-chat-chat-not-showing {
    width: 0;
    height: 0;
    display: none;
}

.cattalk-external-chat-button-showing {
    min-width: 2rem;
    min-height: 2rem;
    background-color: rgb(82, 146, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 500rem;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    transition: .2s;
    box-shadow: 10px 10px 15px -4px rgba(0, 0, 0, 0.32);
    cursor: pointer;
    color: white;
    font-size: 20pt;
}
.cattalk-external-chat-button-showing i {
   font-size: 2rem;
}
.cattalk-external-chat-button-showing .cattalk-external-chat-initial-message {
    min-width: 12rem;
    background-color: rgb(224, 224, 224);
    color: rgb(84, 84, 84);
    padding: .8rem;
    border-radius: .7rem;
    position: absolute;
    right: 110%;
    font-size: 10pt;
    font-family: sans-serif;
    font-weight: 600;
    opacity: 1;
    animation: buttomToMiddle 1.5s ease-in;
    z-index: 9999999;
}
.cattalk-external-chat-button-showing .cattalk-external-chat-initial-message-unshow {
    display: none;
}
.cattalk-external-chat-button-showing:hover {
    background-color: blue;
    transition: .7s;
}

.cattalk-external-chat-button-close {
    cursor: pointer;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .3rem;
    border-radius: 500rem;
    left: -2rem;
    color: white;
    z-index: 99999;
    background-color: rgb(82, 146, 255);
}


.cattalk-external-chat-button-close:hover {
    background-color: blue;
    transition: .3s;
}

.cattalk-external-chat-unshow {
    transition: .3s;
    display: none;
}