
.a21chat:hover .a21chat-body {
    display: block;
}

.a21chat .a21chat-body:not(.a21chat-body-hidden) {
    display: block;
    visibility: visible;
}

.a21chat-icon {
    position: fixed;
    width: 85px;
    height: 85px;
    bottom: 33px;
    right: 33px;
    cursor: pointer;
    z-index: 30;
    visibility: visible;
}

.a21chat-icon img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
}

.a21chat-icon-in {
    display:none;
    box-shadow: none;
}


.a21chat .area-visivel {
    position: fixed;
    bottom: 33px;
    right: 32px;
    width: 85px;
    height: 85px;
    overflow: hidden;
    border-radius: 45px;
    z-index: 10;
}

.a21chat:hover .area-visivel {
    height: 420px;
}

.a21chat .area-visivel:not(.area-visivel-hidden) {
    height: 420px;
}

.a21chat-body {
    width: 85px;
    height: 420px;
    position: absolute;
    background: rgba(255, 255, 255, 1);
    padding: 10px;
    max-width: 400px;
    margin: 0 auto;
    bottom: 0px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 45px;
    z-index: 20;
    transition-duration: 1s;
    ul {
        opacity: 1;
        transition-delay: 1s;
        transition: opacity 1s;
        list-style: none;
    }
    img {
        opacity: 1;
        transition-delay: 1s;
        transition: opacity 1s;
    }
}

.a21chat-body-hidden{
    visibility: hidden;
    width: 85px;
    height: 85px;
    transition-duration: 1s;
    ul {
        opacity: 0;
        transition-delay: 1s;
        transition: opacity 1s;
    }
    img {
        opacity: 0;
        transition-delay: 1s;
        transition: opacity 1s;
    }
}

.a21chat-logo {
    text-align: center;
    img {
        height: 45px !important;
    }
}

.a21chat-links {
    margin-bottom: 70px;
    margin-top: 10px;
    
}

.a21chat-body ul {
    margin: 0;
    padding: 0;
}

.a21chat-body li {
    height: 55px;
    text-align: center;
    margin-bottom: 10px;
    p {
        padding: 0px;
        font-size: 10px;
        text-align: center;
        margin: 0px;
    }
    img {
        max-width: 40px;
        max-height: 40px;
        padding: 2px;
        margin-bottom:-5px;
        transition: all 0.3s ease-in-out;
    }

    a {
        text-decoration: none;
    }

    &:hover {
        img {
            transform: scale(1.2);
        }
    }
}

.a21chat-close {
    display: inline-block;
    position: relative;
    top: -33px;
    right: -10px;
    font-size: 26px;
    font-weight: 900;
    float: right;
    cursor: pointer;
    padding: 5px 10px;
    margin-bottom: -39px;
}

@media (max-width: 991.99px) {

    .a21chat {
        zoom: 0.8;
    }

    .a21chat-icon, .a21chat .area-visivel {
        bottom: 150px;
    }

}