.hooshko-chat-bubble {

    position: fixed;

    bottom: 25px;

    right: 25px;

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #ffb6c1,
            #ffd6a5);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 38px;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

    z-index: 9999;

    animation: hooshkoFloat 3s infinite;

}



@keyframes hooshkoFloat {


    0%,
    100% {

        transform: translateY(0);

    }


    50% {

        transform: translateY(-8px);

    }


}




.hooshko-chat-box {


    display: none;

    position: fixed;

    bottom: 110px;

    right: 25px;

    width: 330px;

    max-width: 90%;

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .18);

    z-index: 9998;

    font-family: tahoma, sans-serif;

}




.hooshko-chat-header {


    background: linear-gradient(135deg,
            #ff9a9e,
            #fad0c4);

    padding: 18px;

    text-align: center;

    font-size: 18px;

    font-weight: bold;

    color: #555;

}




#hooshkoMessages {


    height: 280px;

    overflow-y: auto;

    padding: 15px;

    font-size: 14px;

    line-height: 2;

}




.hooshko-chat-input {


    width: 65%;

    margin: 10px;

    padding: 12px;

    border-radius: 20px;

    border: 1px solid #ddd;

}




#hooshkoSend {


    padding: 12px 18px;

    border: none;

    border-radius: 20px;

    background: #f35260;

    color: white;

    cursor: pointer;

}




#hooshkoSend:hover {


    opacity: .85;

}




@media(max-width:600px) {


    .hooshko-chat-box {

        right: 10px;

        bottom: 100px;

        width: calc(100% - 20px);

    }


}