/* MODELO FLUT */

.landinmax-whatsapp-flut-wrapper {
    position: fixed;
    z-index: 20;
    border-radius: 500px;   
}

.landinmax-whatsapp-flut-link {
    display: flex; 
    align-items: center;
    justify-content: center;
}

.landinmax-whatsapp-flut-icon {
    border-radius: 500px;
    display: flex;
    background-color: #39C253;
    animation: pulse-fade 2s infinite;
    transition: all ease-in-out .2s;
    -webkit-box-shadow: 3px 2px 5px 0px rgb(0 0 0 / 23%);
    -moz-box-shadow: 3px 2px 5px 0px rgb(0 0 0 / 23%);
    box-shadow: 3px 2px 5px 0px rgb(0 0 0 / 23%);
    cursor: pointer;
}

.landinmax-whatsapp-flut-img {
    width: 38px;
}

.landinmax-whatsapp-avatar-img {
    width: 100%;
    border-radius: 500px !important;
}

.landinmax-whatsapp-flut-notification {
    background: #F44336;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    z-index: 100;
    border-radius: 500px;
}

.landinmax-whatsapp-chat-header {
    background: rgb(9, 94, 84);
    color: rgb(17, 17, 17);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 24px 20px;
    gap: 8px;
}

.landinmax-whatsapp-header-avatar-wrapper {
    width: 52px;
    height: 52px;
    display: block;
    position: relative;
    flex-shrink: 0;
    border-radius: 500px;
}

.landinmax-whatsapp-header-avatar-wrapper::before {
    content: "";
    bottom: 0px;
    right: 0px;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    background-color: rgb(74, 213, 4);
    display: block;
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border: 2px solid rgb(9, 94, 84);
}

.landinmax-whatsapp-chat-body-mensagem {
    font-size: 13px;
    line-height: 1.2em;
    margin-top: 4px;
    color: rgb(17, 17, 17);
}

.landinmax-whatsapp-chat-body-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.landinmax-whatsapp-chat-mensagem-element {
    background-color: rgb(255, 255, 255);
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgb(0 0 0 / 13%) 0px 1px 0.5px;
}
   

.landinmax-whatsapp-chat-mensagem-box {
    padding: 7px 14px 6px;
    background-color: rgb(255, 255, 255);
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top;
    z-index: 2;
    box-shadow: rgb(0 0 0 / 13%) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.landinmax-whatsapp-chat-mensagem-box::before {
    position: absolute;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
}

@-webkit-keyframes pulse-fade {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(52, 175, 35, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(52, 175, 35, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(52, 175, 35, 0);
    }
}

@keyframes pulse-fade {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(52, 175, 35, 0.4);
        box-shadow: 0 0 0 0 rgba(52, 175, 35, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(52, 175, 35, 0);
        box-shadow: 0 0 0 30px rgba(52, 175, 35, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(52, 175, 35, 0);
        box-shadow: 0 0 0 0 rgba(52, 175, 35, 0);
    }
}

.landinmax-whatsapp-chat {
    box-shadow: rgb(0 0 0 / 10%) 0px 12px 24px 0px;
    display: flex;
    flex-direction: column;
    width: 346px;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;
    background-color: rgb(255, 255, 255);
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    touch-action: auto;
    margin-bottom: 96px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: auto;
    margin-right: 20px;
    z-index: 999;
}

.landinmax-whatsapp-chat-header-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    outline: transparent;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    display: flex !important;
}

.landinmax-whatsapp-chat-header-close::before {
    transform: rotate(45deg);
}

.landinmax-whatsapp-chat-header-close::before, .landinmax-whatsapp-chat-header-close::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: rgb(255, 255, 255);
    display: block;
    border-radius: 2px;
}

.landinmax-whatsapp-chat-header-close::after {
    transform: rotate(-45deg);
}

.landinmax-whatsapp-chat-header-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: rgb(255, 255, 255);
}

.landinmax-whatsapp-chat-header-desc {
    font-size: 13px;
    line-height: 18px;
    color: rgb(255, 255, 255);
}

.landinmax-whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: rgb(230, 221, 212);
    position: relative;
    overflow: auto;
    max-height: 382px;
}

.landinmax-whatsapp-chat-mensagem-wrapper {
    display: flex;
    z-index: 1;
}

.landinmax-whatsapp-chat-wrapper a {
    text-decoration: none;
    width: 100%;
}

.landinmax-whatsapp-chat-wrapper, .landinmax-whatsapp-chat-wrapper * {
    box-sizing: border-box !important;
    outline: none !important;
}

.landinmax-whatsapp-chat-wrapper {
    position: relative;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}
