#chat_bot {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    border-radius: 10px;
    background-color: azure;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    border: 2px solid #1BA1E2;
    font-size: 1em;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    body {
        margin: 0;
        padding: 0;
    }
    #chat_bot {
        margin-top: 2vh;
        height:85vh;
        width: 95%;
    }
    #chat_bot_history {
        max-height: 80vh;
        overflow-y: scroll;
        flex-grow: 1;
        margin-bottom: 20px;
    }
}

.chat_bot_selector_input {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.chat_bot_selector_input button {
    margin: 10px;
    background-color: #FFF;
    border: 2px solid #1BA1E2;
    border-radius: 30px;
    padding: 10px;
    color: #1BA1E2;
    font-size: inherit;
}

.chat_bot_selector_input button.advance_button {
    margin: 10px;
    background-color: #FFF;
    border: 5px solid #339933;
    border-radius: 30px;
    padding: 10px;
    color: #1BA1E2;
    font-size: inherit;
}

.chat_bot_selector_input button:focus,
.chat_bot_selector_input button.active{
    border: 2px solid #339933;
    background-color: #339933;
    color: #FFF;
    outline: none;
}

#chat_bot_date {
    display: flex;
    flex-direction: column;
    align-content: stretch;
}

#chat_bot_date .week{
    display: flex;
    flex-direction: row;
    flex-flow: nowrap;
    justify-content: space-around;
}

#chat_bot_date .week .weekday{
    flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 2px solid #1BA1E2;
    border-radius: 30px;
    margin: 5px;
    background-color: #FFF;
    min-width: 0;
    font-size: inherit;
}

#chat_bot_date .week .weekday.disabled{
    background-color: #BBB;
}

#chat_bot_date .week.header .weekday{
    flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
    padding: 5px;
    border: 2px solid #1BA1E2;
    border-radius: 30px;
    margin: 5px;
    background-color: #1BA1E2;
    color: #FFF;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

#chat_bot_text_input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin: 2%;
}
#chat_bot_text_autocompleteinput {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin: 2%;
}

#chat_bot_text_autocompleteinput .input_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}

#chat_bot_text_autocompleteinput .input_wrapper .skip_button {
    flex-grow: 0;
    background-color: #FF0000;
    border: 2px solid #FF0000;
    color: #FFF;
    border-radius: 10px;
}

#chat_bot_text_autocompleteinput .input_wrapper input {
    flex-grow: 1;
    font-size: inherit;
    border: 2px solid #1BA1E2;
    min-width: 0;
    border-radius: 10px;
}

#chat_bot_text_input input {
    font-size: inherit;
    flex-grow: 3;
    flex-shrink: 3;
    border: 2px solid #1BA1E2;
    border-right: none;
    min-width: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}



#chat_bot_text_input button {
    flex-grow: 0;
    background-color: #1BA1E2;
    border: 2px solid #1BA1E2;
    color: #FFF;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#chat_bot_history {
    overflow-y: scroll;
    flex-grow: 1;
    margin-bottom: 20px;
    max-height: 80vh;
}

#chat_bot_loader_icon{
    margin: auto;
}

.chatBubble1 {
    padding: 10px;
    margin: 20px;
    margin-right: 20%;
    background-color: #1BA1E2;
    color: #FFF;
    border-radius: 25px;
    font-size: inherit;
    word-wrap: break-word;
    white-space: pre-line;
}

.chatBubble2 {
    padding: 10px;
    margin: 20px;
    margin-left: 20%;
    background-color: #339933;
    text-align: end;
    color: #FFF;
    border-radius: 25px;
    font-size: inherit;
    white-space: pre-line;
}

.chatBubble3 {
    padding: 10px;
    margin: 20px;
    margin-right: 20%;
    background-color: #FF0000;
    color: #FFF;
    border-radius: 25px;
    font-size: inherit;
    white-space: pre-line;
}

.chatBubble4 {
    padding: 10px;
    margin: 20px;
    margin-right: 20%;
    background-color: #FFF;
    color: #000;
    border-radius: 25px;
    font-size: inherit;
    border: 2px solid #1BA1E2;
    white-space: pre-line;
}

.list-enter-active, .list-leave-active {
  transition: all 1s;
}
.list-enter, .list-leave-to {
  opacity: 0;
  transform: translateY(30px);
}