.chat-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: end;
    z-index: 1000;
}

    .chat-container .call {
        display: none;
        background: #25d366;
        border: none;
        outline: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        font-size: 3rem;
        color: #fff;
        text-decoration: none;
        justify-content: center;
        align-items: center;
        margin-bottom: 0.5rem;
        animation: anim2 0.5s;
        -webkit-animation: anim2 0.5s;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        font-size: 28px;
    }
    .chat-container .reg {
        display: none;
        background: #d3257a;
        border: none;
        outline: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        font-size: 3rem;
        color: #fff;
        text-decoration: none;
        justify-content: center;
        align-items: center;
        margin-bottom: 0.5rem;
        animation: anim2 0.5s;
        -webkit-animation: anim2 0.5s;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        font-size: 28px;
    }

        .chat-container .call.active {
            display: flex;
        }
    .chat-container .reg.active {
        display: flex;
    }

    .chat-container .whatsapp {
        display: none;
        background: #25d366;
        border: none;
        outline: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        font-size: 4rem;
        color: #fff;
        margin-bottom: 0.5rem;
        animation: anim2 0.5s;
        -webkit-animation: anim2 0.5s;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        font-size: 32px;
    }

        .chat-container .whatsapp:hover {
            background: #1fbd5a;
        }

    .chat-container .call:hover {
        background: #1fbd5a;
    }
    .chat-container .reg:hover {
        background: #0a36b0;
    }

    .chat-container .whatsapp.active {
        display: block;
    }

    .chat-container .allcontact {
        background: #a973ff;
        border: none;
        outline: none;
        border-radius: 50%;
        font-size: 3rem;
        color: #fff;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        font-size: 24px;
    }

        .chat-container .allcontact:hover {
            background: #7941d3;
        }

    .chat-container .chatbox {
        width: 300px;
        height: 400px;
        background-color: #e6ddd4;
        position: absolute;
        bottom: 7px;
        right: 0;
        display: none;
        position: relative;
        border-radius: 1rem;
        background-image: url('../img/whatsapp3.png');
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        animation: anim 0.5s;
        -webkit-animation: anim 0.5s;
    }

        .chat-container .chatbox .chatbottom {
            background-color: #f0f0f0;
            width: 100%;
            height: 80px;
            position: absolute;
            bottom: 0;
            left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border-bottom-left-radius: 1rem;
            border-bottom-right-radius: 1rem;
        }

        .chat-container .chatbox .fa-times {
            position: absolute;
            right: 13px;
            top: 9px;
            background: #424242;
            color: #fff;
            padding: 0.5rem 0.7rem;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
        }

            .chat-container .chatbox .fa-times:hover {
                transform: rotate(180deg);
            }

        .chat-container .chatbox .chatboxbg {
            background-image: url('../img/whatsapp2.png');
            width: 100%;
            height: 100%;
            border-radius: 1rem;
            position: absolute;
        }

        .chat-container .chatbox.active {
            display: block;
        }

        .chat-container .chatbox .wts-text {
            background: #fff;
            opacity: 1;
            z-index: 1000;
            margin-top: 44px;
            width: 78%;
            text-align: right;
            margin-right: 15px;
            margin-left: auto;
            padding: 0.8rem;
            border-radius: 12px;
            text-align: right;
            direction: rtl;
            font-size: 12px;
        }

            .chat-container .chatbox .wts-text .wts-border {
                background-image: url('../img/wts-border.png');
                width: 300px;
                height: 300px;
                display: block;
                background-repeat: no-repeat;
                transform: rotate(130deg);
                left: -290px;
                position: absolute;
                top: -92px;
            }

.wts-msg {
    background: #fff;
    border: 0;
    outline: none;
    padding: 1.5rem;
    border-radius: 34px;
    text-align: right;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

    .wts-msg:hover {
        background: #e0e0e0;
    }

.fa-telegram-plane {
    background: #25d366 !important;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 3rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    margin-left: 10px;
    padding-right: 12px;
    padding-top: 9px;
}

    .fa-telegram-plane:hover {
        color: #fff;
        text-decoration: none;
    }

@keyframes anim {
    0% {
        bottom: -80px;
    }

    100% {
        bottom: 5px;
    }
}

@keyframes anim2 {
    0% {
        margin-bottom: -80px;
    }

    100% {
        margin-bottom: 5px;
    }
}

.contact-textt {
    background: #e0e0e0;
    border-radius: 10px;
    height: 34px;
    width: 180px;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #404040;
    margin-left: 1rem;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative;
}

    .contact-textt.active {
        display: flex;
        font-size: 12px;
        color: red;
    }

.triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 20px solid #e0e0e0;
    border-bottom: 10px solid transparent;
    position: absolute;
    left: -7px;
}

.txt-cntier {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
