.chat-bar-collapsible {
    position: fixed;
    right: 35px;
    bottom: 10vh;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    scale: 0;
    transition: all .4s ease-out;
    z-index: 11;
    border-radius: 0 0 0 10px;
}

.opsc {
    opacity: 1 !important;
    scale: 1 !important;

}

.collapsible {
    background-color: var(--dark);
    color: white;
    cursor: pointer;
    padding: 12px;
    width: 26vw;
    text-align: center;
    outline: none;
    font-size: 18px;
    border-radius: 10px 10px 0px 0px;
    border: 5px solid var(--light1);
    border-bottom: none;
}

.collapsible span {
    float: right;
    scale: 0;
    visibility: hidden;
}

#chatbox {
    background: var(--light1);
}

.content {
    max-height: 85vh;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
    border-radius: 0 0 0 10px;
}

.full-chat-block {
    width: 26vw;
    background: white;
    text-align: center;
    overflow: auto;
    scrollbar-width: none;
    height: max-content;
    transition: max-height 0.2s ease-out;
}

.full-chat-block::-webkit-scrollbar {
    width: 6px;
}

.full-chat-block::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 25px;
}

.full-chat-block::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}

.outer-container {
    min-height: 500px;
    bottom: 0%;
    position: relative;
    background: var(--light1);
}

.chat-container {
    max-height: 500px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    scroll-behavior: smooth;
    hyphens: auto;
}

.chat-container::-webkit-scrollbar {
    display: none;
}

.chat-bar-input-block {
    display: flex;
    float: left;
    box-sizing: border-box;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background-color: var(--light3);
    border-radius: 10px 10px 0px 0px;
    padding: 10px 0px 10px 10px;
}

.chat-bar-icons {
    display: flex;
    justify-content: space-evenly;
    box-sizing: border-box;
    width: 25%;
    float: right;
    font-size: 20px;
}

#chat-icon:hover {
    opacity: .7;
    cursor: pointer;
}

/* Chat bubbles */

#userInput {
    width: 75%;
}

.input-box {
    float: left;
    border: none;
    box-sizing: border-box;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    color: #000;
    background-color: white;
    outline: none
}

.userText {
    color: white;
    font-family: Helvetica;
    font-size: 16px;
    font-weight: normal;
    text-align: right;
    clear: both;
}

.userText span {
    line-height: 1.5em;
    display: inline-block;
    background: var(--dark);
    padding: 10px;
    border-radius: 8px;
    border-bottom-right-radius: 2px;
    max-width: 80%;
    margin-right: 10px;
    animation: floatup .5s forwards
}

.botText {
    color: #000;
    font-family: Helvetica;
    font-weight: normal;
    font-size: 16px;
    text-align: left;
}

.botText span {
    line-height: 1.5em;
    display: inline-block;
    background: var(--light2);
    padding: 10px;
    border-radius: 8px;
    border-bottom-left-radius: 2px;
    max-width: 80%;
    margin: 10px;
    color: var(--font);
    animation: floatup .5s forwards
}

@keyframes floatup {
    from {
        transform: translateY(14px);
        opacity: .0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}


.chatbot-toggler {
    position: fixed;
    z-index: 13;
    bottom: 20px;
    right: 35px;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark);
    transition: all 0.2s ease;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    scale: 0;
}

.chatbot-toggler:hover{
    scale: 1.1 !important;
}

body.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}

.chatbot-toggler span {
    color: #fff;
    position: absolute;
}


.iconHS {
    transform: rotate(360deg);
    transition: all .3s;
}

@media screen and (max-width:600px) {
    .full-chat-block {
        width: 100%;
        border-radius: 0px;
    }

    .chat-bar-collapsible {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
    }

    .collapsible {
        width: 100%;
        border: 0px;
        border-top: 3px solid white;
        border-radius: 0px;
    }

    .chatbot-toggler {
        bottom: 14px;
        right: 14px;
    }

    .chatbot-toggler {
        z-index: 10;
    }
}