.flango-footer{
    width:100%;
    max-width:100%;
    margin:0;
    padding:12px 15px;
    background:#fff;
    border-top:1px solid #ddd;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
    font-size:12px;
    color:#555;
}

.flango-footer-inner{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
}

.flango-footer a{
    color:#3f8fd6;
    font-weight:bold;
    text-decoration:none;
}

.flango-footer a:hover{
    text-decoration:underline;
}

.flango-footer-separator{
    color:#999;
}

/* ---------------- CHAT ---------------- */

.chat-window{
    position:fixed;
    left:15px;
    bottom:15px;
    width:320px;
    max-width:calc(100vw - 30px);
    height:390px;
    background:#fff;
    border:1px solid #bbb;
    border-radius:8px 8px 0 0;
    box-shadow:0 0 15px rgba(0,0,0,.25);
    overflow:hidden;
    z-index:99999;
}

.chat-head{
    height:36px;
    background:#3f8fd6;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 10px;
    font-size:12px;
    font-weight:bold;
    cursor:move;
}

.chat-close{
    color:#fff !important;
    text-decoration:none;
    font-size:14px;
}

.chat-body{
    height:292px;
    overflow-y:auto;
    padding:8px;
    background:#f7f7f7;
}

.chat-msg{
    padding:7px 9px;
    margin-bottom:6px;
    background:#fff;
    border-radius:8px;
    line-height:1.4;
    word-break:break-word;
}

.chat-msg.me{
    background:#dff0ff;
    text-align:right;
}

.chat-form{
    display:flex;
    gap:6px;
    padding:8px;
    background:#eee;
}

.chat-form input{
    flex:1;
    min-width:0;
    padding:7px;
    border:1px solid #ccc;
    font-size:12px;
}

.chat-form button{
    padding:7px 12px;
    background:#3f8fd6;
    color:#fff;
    border:0;
    font-weight:bold;
    cursor:pointer;
}

@media(max-width:700px){

    .flango-footer{
        padding:10px;
        font-size:11px;
    }

    .chat-window{
        width:94vw;
        left:3vw !important;
        right:3vw;
        bottom:10px;
        height:370px;
    }

    .chat-body{
        height:272px;
    }

}

@media(max-width:430px){

    .chat-window{
        width:96vw;
        left:2vw !important;
        right:2vw;
        height:350px;
    }

    .chat-body{
        height:252px;
    }

    .chat-form input,
    .chat-form button{
        font-size:11px;
    }

}