#chatbot {

    position: fixed;

    z-index: 2000;

    bottom: 0;

    right: 0;

    width: auto;

    max-width: 300px;

    height: auto;

    border-radius: 5px;

    overflow: hidden;

    padding: 0;

    margin: 0.25rem;

    transform: translate(0.25rem,-5rem);

}



.chatbot-hidden {

    background-color: transparent;

    border: 1px solid transparent;

}



.chatbot-active {

    background-color: #f1f1f1;

    border: 1px solid #ccc;

}



#nav-close {

    position: relative;

    display: none; /* display: flex; */

    justify-content:space-between;

    width: 100%;

    padding: 0.5rem;

    background-color: #ccc;

    padding: 0.4rem 0.25rem 0.4rem;

    transform: translateY(-0.5rem);    

}



#nav-close .gemini-logo {

    transform: translateY(0.25rem);

}



#nav-close a {

    opacity: 0.25;

}



#nav-close a:hover {

    opacity: 0.5;

}



#chat {

    position: relative;

    display: none; /* display: block; */

    width: calc(100% - 2rem);

    max-width: calc(100% - 2rem) !important;

    min-height: 60vh;

    max-height: 60vh;

    padding: 0.5rem;

    margin: 0.1rem 0.5rem;

    border: #ccc 1px solid;

    border-radius: 5px;

    background-color: #fff;

    overflow-y: scroll;

}



#bot {

    position: relative;

    display: flex;

    flex-direction: row;

    justify-content: space-between;

    align-items: center;

    flex-wrap: nowrap;

    padding: 0;

    margin: 0;

}



.bot-hidden {

    width: auto;

}



.bot-active {

    width: 300px;

}



#link-logo {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    width: 60px;

    height: 55px;

    margin: 0.5rem;

    background-color: rgba(255,255,255,0.5);

    border: 1px solid rgba(0,0,0,0.5);

    border-radius: 50%;

    opacity: 0.5;    

}



#link-logo:hover {

    background-color: rgba(255,255,255,1);

    opacity: 1;

}





#bot input {

    display: none;

    width: calc(100% - 1rem);

    padding: 0.1rem 0.25rem;

    margin: 0.1rem 0;

    border: rgba(0,0,0,0.5) 1px solid;

    border-radius: 5px;

    width:200px;

    height: 25px;

    font-size: 12px;

}



#bot button {

    display: none;

    justify-content: center;

    align-items: center;    

    padding: 0.5rem;

    margin: 0.1rem 0.5rem;

    border: rgba(0,0,0,0.5) 1px solid;

    border-radius: 5px;

    background-color: #f1f1f1;

    cursor: pointer;

    height: 32px;

    color: rgba(0,0,0,0.5rem);

}



#bot button:hover {

    background-color: rgba(0,0,0,0.5);

    color: #fff;

}



.bubble {

    position: relative;

    border: 1px solid rgba(0,0,0,0.5);

    padding: 0.5rem;

    background-color: #f1f1f1;

    border-radius: 10px;

    width: 80%;

    height: auto;

    margin: 0.5rem 0 2rem 0;

}



.bubble-guest {

    left: 0;

}



.bubble-bot {

    left: calc(25% - 1rem);

}



.tongue {

    position: absolute;

    display: block;

    top: 0;

    transform: translateY(-1.4rem);

}



.guest-tongue {

    left: 0.2rem;

}



.bot-tongue {

    left: calc(100% - 1rem);

    transform: translateY(-1.4rem) rotateY(3.142rad);

}



@media (max-width: 768px) {



    #chat {



        min-height: 60vh;

        max-height: 60vh;

    }    



}