#chatbot_form {
    display: none;
    position: fixed;
    bottom:20px;
    right: 20px;
    width: 25%;
    height: 75%;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    z-index: 9999;
}

.chatbot_form_header {
    width: 100%;
    height: 15%;
    border-radius: 10px 10px 0 0;
}

.chatbot_form_header_title {
    width: 80%;
    margin-left: 5%;
    color: #77bf43;
}

.chatbot_form_header_title p {
    font-size: 1.2em;
}

.chatbot_body {
    position: relative;
    width: 100%;
    height: 60%;
    background-color: whitesmoke;
    overflow-y: scroll;
}

.chatbot_body_header {
    width: 100%;
    height: 10%;
    margin-top: 2px;
    text-align: center;
}

.chatbot_body_header span {
    font-size: 0.8em;
    font-weight: bold;
    color: #B8E834;
}

.chatbot_header_btn {
    display: flex;
    margin-top: 2px;
    margin-left: 15%;
    width: 70%;
    height: 90%;
    cursor: pointer;
    background-color: #77bf43;
    color: #ffffff;
}

.chatbot_header_btn:hover {
    background-color: #575b5c;
}

.chatbot_header_btn div {
    margin: auto;
}

.chatbot_body_page {
    width: 100%;
    height: 80%;
}

.chatbot_body_footer {
    width: 100%;
    height: 10%;
}

.chatbot_body_left {
    position: relative;
    width: 15%;
    height: 100%;
    float: left;
}

.chatbot_body_right {
    position: relative;
    width: 15%;
    height: 100%;
    float: left;
}

.back_page {
    position: absolute;
    display: flex;
    left: 0;
    height: 20%;
    top: 40%;
    width: 70%;
    cursor: pointer;
    color: #ffffff;
    font-size: 2em;
    background-color: grey;
}

.next_page {
    position: absolute;
    display: flex;
    left: 30%;
    height: 20%;
    top: 40%;
    width: 70%;
    cursor: pointer;
    color: #ffffff;
    font-size: 2em;
    background-color: grey;
}

.back_page div, .next_page div {
    margin: auto;
}

.back_page:hover, .next_page:hover {
    background-color: darkgray;
}

.chatbot_body_center {
    position: relative;
    width: 70%;
    min-height: 100%;
    height: auto;
    float: left;
    padding: 2% 0;
    text-align: center;
}

.bot_btn {
    display: flex;
    width: 100%;
    height: auto;
    padding: 10px;
    margin-top: 2%;
    cursor: pointer;
    background-color: #B8E834;
    color: #ffffff;
    text-align: center;
}

.bot_btn:hover {
    background-color: #575b5c;
}

.bot_btn div {
    margin: auto;
}

.chatbot_form_close {
    position: absolute;
    display: flex;
    color: #77bf43;
    top: 2%;
    right: 2%;
    width: 20px;
    height: 20px;
    font-size: 30px;
}

.chatbot_form_close div {
    cursor: pointer;
    margin: -15px 0 auto auto;
}

.chatbot_form_close div:hover {
    opacity: 0.5;
}
.bot_stanswer {
    display: none;
    margin-left: 5%;
    margin-top: 8px;
    width: 70%;
    height: auto;
    padding: 5px;
    font-size: 0.8em;
    border: 0.5px solid lightgrey;
    border-radius: 0 8px 8px 8px;
    background-color: #B8E834;
}

.back_serv_btn {
    display: flex;
    margin-left: 15%;
    margin-bottom: 2%;
    width: 30%;
    height: 90%;
    padding: 5px;
    cursor: pointer;
    background-color: #77bf43;
    color: #ffffff;
}

.back_serv_btn:hover {
    background-color: #575b5c;
}

.back_serv_btn div {
    margin: auto;
}

.bot_stque {
    margin-left: 30%;
    margin-top: 8px;
    width: 70%;
    height: auto;
    padding: 5px;
    font-size: 0.8em;
    cursor: pointer;
    border: 0.5px solid lightgrey;
    border-radius: 8px;
    background-color: #e6e6e6;
}

.bot_stque_img {
    float: left;
    width: 40px;
    padding-right: 5px;
}

.bot_stque_txt {
    padding-left: 5px;
}

.span_err {
    font-size: 0.6em;
    color: red;
}

.chatbot_ident_form {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: whitesmoke;
    z-index: 10000;
}

.chatbot_input_ident {
    width: 100%;
    height: auto;
    padding: 10px;
    margin: 10px auto;
    border: unset;
    border-radius: 0 0 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    outline: unset;
}