#travelChatbotBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#25D366;
    color:#000;
    font-size:30px;
    cursor:pointer;
    z-index:999999;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}
#chatbotLeadStep p{
    color:#000;
}

#chatbotLeadStep h4{
    color:#000;
}

#travelChatbot{
    position:fixed;
    right:20px;
    bottom:100px;
    width:380px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 0 30px rgba(0,0,0,.2);
    display:none;
    z-index:999999;
    font-family:Arial;
}

.chatbot-header{
    background:#111;
    color:#fff;
    padding:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:16px;
    font-weight:600;
}

#closeTravelChatbot{
    cursor:pointer;
}

#chatbotLeadStep,
#chatbotMainStep{
    padding:18px;
}

#chatbotLeadStep input,
.chatbot-footer input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    margin-bottom:12px;
    border-radius:8px;
    box-sizing:border-box;
}

#chatbotLeadStep button,
.chatbot-footer button{
    width:100%;
    padding:13px;
    border:none;
    border-radius:8px;
    background:#111;
    color:#fff;
    cursor:pointer;
}

.chatbot-body{
    height:350px;
    overflow-y:auto;
    background:#f7f7f7;
    padding:15px;
}

.bot-message{
    background:#fff;
    padding:14px;
    border-radius:12px;
    margin-bottom:12px;
}

.travel-result{
    background:#fff;
    padding:14px;
    border-radius:12px;
    margin-bottom:12px;
    border:1px solid #eee;
}

.travel-result img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:10px;
}

.travel-result a{
    display:inline-block;
    margin-top:8px;
    color:#da251d;
    text-decoration:none;
    font-weight:bold;
}
/*
==================================================
CHATBOT WRAPPER
==================================================
*/

.chatbot-tooltip-wrapper {

    position: fixed;

    bottom: 25px;

    right: 25px;

    z-index: 999999999;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

}

/*
==================================================
CHATBOT BUTTON
==================================================
*/

#travelChatbotBtn {

    width: 65px;

    height: 65px;

    border-radius: 100%;

    border: none;

    background: #25D366;

    color: #fff !important;

    font-size: 28px;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    animation: chatbotPulse 2s infinite;

    position: relative;

    z-index: 99999;

}

/*
==================================================
TOOLTIP
==================================================
*/

.chatbot-tooltip {

    background: #fff;

    color: #000 !important;

    padding: 14px 18px;

    border-radius: 14px;

    font-size: 14px;

    line-height: 1.5;

    width: 260px;

    margin-bottom: 15px;

    box-shadow: 0 10px 35px rgba(0,0,0,0.18);

    position: relative;

    font-weight: 500;

    animation: tooltipBounce 2s infinite;

}

/*
==================================================
TOOLTIP ARROW
==================================================
*/

.chatbot-tooltip:after {

    content: '';

    position: absolute;

    bottom: -8px;

    right: 25px;

    width: 16px;

    height: 16px;

    background: #fff;

    transform: rotate(45deg);

}

/*
==================================================
PULSE EFFECT
==================================================
*/

@keyframes chatbotPulse {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

    100% {

        transform: scale(1);

    }

}

/*
==================================================
TOOLTIP BOUNCE
==================================================
*/

@keyframes tooltipBounce {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-6px);

    }

    100% {

        transform: translateY(0px);

    }

}

/*
==================================================
MOBILE
==================================================
*/

@media(max-width:767px){

    .chatbot-tooltip {

        width: 220px;

        font-size: 13px;

    }

}
/*
==================================================
TOOLTIP CLOSE BUTTON
==================================================
*/

.close-tooltip {

    position: absolute;

    top: 8px;

    right: 10px;

    cursor: pointer;

    font-size: 12px;

    color: #000 !important;

    width: 18px;

    height: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 100%;

    background: #f1f1f1;

    transition: 0.3s;

}

.close-tooltip:hover {

    background: #ddd;

}
/*
==================================================
FORM ERROR
==================================================
*/

.chatbot-error {

    color: red !important;

    font-size: 12px;

    display: block;

    margin-top: -10px;

    margin-bottom: 12px;

}

/*
==================================================
ERROR FIELD
==================================================
*/

.error-field {

    border: 1px solid red !important;

}


.chatbot-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

#minimizeTravelChatbot,
#closeTravelChatbot{
    cursor:pointer;
    font-size:18px;
    color:#fff;
}

#minimizeTravelChatbot:hover,
#closeTravelChatbot:hover{
    opacity:0.8;
}