.messenger-float{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:9px;

    padding:11px 17px 11px 11px;

    background:linear-gradient(135deg,#55e458,#2d5a2e);
    color:#fff;

    border-radius:40px;
    text-decoration:none;

    font-family:Arial,sans-serif;
    font-size:14px;
    font-weight:600;

    box-shadow:0 6px 18px rgba(0,0,0,.25);

    transition:.25s;
}

.messenger-float:hover{
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.messenger-icon{
    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    border-radius:50%;
    padding:4px;
}

.messenger-icon img{
    width:22px;
    height:22px;
}

.messenger-float i{
    position:absolute;
    top:2px;
    right:2px;

    width:10px;
    height:10px;

    background:#20c96b;
    border:2px solid #fff;
    border-radius:50%;
}


/* ==============================
   CHAT BOX
============================== */

.chat-box{
    z-index:99999;
    position:fixed;

    right:25px;
    bottom:90px;

    width:465px;
    max-width:calc(100vw - 40px);

    background:#fff;

    border-radius:24px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.18),
        0 3px 10px rgba(0,0,0,.08);

    overflow:hidden;

    font-family:Arial,sans-serif;

    display:none;

    animation:chatOpen .25s ease;
}

.chat-box.show{
    display:block;
}

@keyframes chatOpen{
    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* ==============================
   HEADER
============================== */

.chat-header{
    height:82px;

    display:flex;
    align-items:center;

    padding:14px 18px;

    border-bottom:1px solid #eee7e2;
}

.chat-logo{
    width:52px;
    height:52px;

    border:1px solid #e6d8ce;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:25px;

    margin-right:14px;
}

.chat-header strong{
    display:block;

    font-size:19px;

    color:#383531;

    margin-bottom:4px;
}

.chat-header small{
    color:#817b76;
    font-size:14px;
}

.chat-header small span{
    display:inline-block;

    width:10px;
    height:10px;

    background:#25a957;

    border-radius:50%;

    margin-right:5px;
}

.chat-header button{
    margin-left:auto;

    border:0;
    background:none;

    font-size:28px;

    color:#666;

    cursor:pointer;
}


/* ==============================
   CONTENT
============================== */

.chat-content{
    padding:20px 18px 15px;
}

.welcome{
    background:#fff1eb;

    border-radius:20px;
    border-top-left-radius:7px;

    padding:14px 17px;

    font-size:18px;
    line-height:1.55;

    color:#514b47;
}

.welcome div:first-child{
    margin-bottom:2px;
}


/* ==============================
   BUTTONS
============================== */

.chat-buttons{
    display:flex;

    flex-wrap:wrap;

    gap:9px;

    margin-top:17px;
}

.chat-buttons a{
    border:1px solid #f0aa94;

    background:#fff;

    color:#3e3936;

    border-radius:24px;

    padding:9px 17px;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    transition:.2s;
}

.chat-buttons a:hover{
    background:#fff3ee;
    border-color:#df947c;
}


/* ==============================
   INPUT
============================== */

.chat-input{
    height:59px;

    margin:0 18px 17px;

    border:1px solid #e8dcd5;

    border-radius:31px;

    display:flex;

    align-items:center;

    padding:0 12px 0 19px;

    color:#98918b;

    font-size:17px;
}

.chat-input span:first-child{
    flex:1;
}

.chat-input span{
    margin-left:12px;
    font-size:20px;
}


/* ==============================
   MOBILE
============================== */

@media(max-width:600px){

    .chat-box{
        right:10px;
        bottom:85px;

        width:calc(100vw - 20px);
    }

    .messenger-float{
        right:15px;
        bottom:15px;
    }

}