.m-tchat-bot {
    position: fixed;
    bottom: 40px;
    right: 65px;
    z-index: 9999;
    max-width: calc(100% - 40px);
    transition: bottom ease-in-out 400ms;
}
.m-tchat-bot.m-tchat-bottom {
    bottom: 140px;
    transition: bottom ease-in-out 400ms;
}
.m-tchat-tooltip {
    opacity: 0;
}
.m-tchat-tooltip {
    background: #fff;
    padding: 7px 14px;
    border-radius: 16px;
    right: 80px;
    position: absolute;
    bottom: 10px;
    width: 188px !important;
    transition-duration: 1.5s;
    color: #4a4a4a;
}
.m-tchat-tooltip:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: -6px;
    border: 8px solid transparent;
    border-width: 6px 0 6px 8px;
    border-left-color: #fff;
}
.m-tchat-wap {
    background-color: #25d366;
    transition-duration: 1.5s;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-image: url('../images/whaptsapp.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
}
.m-tchat-wap:hover {
    background-color: #128c7e;
}
.m-tchat-content {
    background: #fff;
    border-radius: 30px;
    display: none;
}
.m-tchat-head {
    display: flex;
    background: #25d366;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 30px 30px 0 0;
    align-items: center;
    color: #fff;
    height: 50px;
}
.m-tchat-wap-head {
    display: flex;
    align-items: center;
}
.m-tchat-wap-head img {
    margin-right: 10px;
}
.m-tchat-close {
    cursor: pointer;
    height: 40px;
    width: 40px;
    background: rgba(0,0,0,.4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.m-tchat-form {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.m-tchat-input {
    position: relative;
    padding: 17px 20px;
    margin: 10px 10px 20px 10px;
    border-radius: 32px;
    background: #fff;
    color: #4a4a4a;
    word-break: break-word;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
    transform: translateZ(0);
    width: 100%;
}
.m-tchat-input input {
    display: block;
    width: 100%;
    border: none;
    outline: none !important;
    color: #4a4a4a !important;
}
.m-tchat-input input::-webkit-input-placeholder { 
    color: #4a4a4a !important;
}
.m-tchat-input input:-ms-input-placeholder { 
    color: #4a4a4a !important;
}
.m-tchat-input input::placeholder {
    color: #4a4a4a !important;
}

#envoyer {
    background: #25d366;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 30%);
    border: none;
    padding: 0 20px;
    border-radius: 30px;
    color: #fff;
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
#envoyer span {
    font-weight: 600;
}

.m-tchat-wap:hover + .m-tchat-tooltip,
.m-tchat-bot.show .m-tchat-content {
    opacity: 1;
}
.m-tchat-bot.show .m-tchat-wap,
.m-tchat-bot.show .m-tchat-tooltip {
    display: none;
}
.joinchat_svg__plain,
.joinchat_svg__chat {
    fill: none !important;
    stroke: white;
}

.joinchat__button__send {
    width: 40px;
    height: 60px;
    display: block;
    padding: 10px 0;
    margin-left: 10px;
}
.joinchat_svg__plain {
    stroke-dasharray: 1097;
    stroke-dashoffset: 1097;
    animation: joinchat_plain 6s .2s ease-in-out infinite;
}
.joinchat_svg__chat {
    stroke-dasharray: 1020;
    stroke-dashoffset: 1020;
    animation: joinchat_chat 6s 3.2s ease-in-out infinite;
}

@keyframes joinchat_plain {
    0%, 50%, 100% {
        stroke-dashoffset: 1097;
    }
    5%, 45% {
        stroke-dashoffset: 0;
    }
}

@keyframes joinchat_chat {
    0%, 50%, 100% {
        stroke-dashoffset: 1020;
    }
    5%, 45% {
        stroke-dashoffset: 0;
    }
}
@media (max-width:768px) {
    .m-tchat-bot.m-tchat-bottom {
        bottom: 180px;
    }
}
@media (max-width:600px) {
    .m-tchat-bot {
        right: 20px;
        bottom: 20px;
    }    
}

