.actual_chat {
    display: flex;
    align-items: end;
}
#chat-popup {
    display: none;
}
td.highlighted-date a {
    background: #5e5ed5 !important;
    color: white !important;
}
div#chat-icon-hidden {
    display: none !important;
}
a.document_link{
    margin-left: 1px;
    margin-right: 1px;
}
/*div#chat-popup:hover div#chat-icon-hidden {
    display:block !important;
    background: #3181b0 !important;
    border-color: #fff;
    transition: .9s !important;
}*/
.document_link {
    color: #0170b9 !important;
}

div#chat-close-button {
    position: absolute;
    top: -15px;
    right: -13px;
    background: white;
    border: 1px solid #3181b0;
    border-radius: 50%;
    cursor: pointer;
    width: 45px;
    height: 45px;
}
.contact_here a {
    color:#3181b0 !important;
}
div#chat-close-button img.img2 {
    width: 22px;
    height: 22px;
    position: relative;
    top: 7px;
    left: 10px;
}
.chat_icon {
    width: 22px;
    /*height: max-content;*/
}
#send-message svg {
    fill: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat_time {
    text-align: center;
    font-size: 14px;
    padding-top: 5px;
    color: #6b6b6b;
}
.column.is-one-third {
    padding-left: 27px;
    font-size: 12px;
}

.not_found_div_main {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}
.response_msg.response_bot {
    margin-top: 20px;
}
.contact_here {
    margin: 2px;
    padding: 2px;
}
.not_found_div_inner {
    border: 1.5px solid #3181b0;
    width: fit-content;
    padding: 5px 14px;
    cursor: pointer;
    border-radius: 5px;
    color: #3181b0;
}

.columns.user_msg {
    margin-top: 10px;
    margin-bottom: 10px;
}

.columns.user_msg:first-child {
    margin-top: 10px;
}
#chat-icon .img {
    padding-top: 5px;
    ;
}
#chat-icon-hidden .img {
    padding-top: 3px;
    padding-left: 1px;
}
.actual_chat .notification {
    width: 90%;
}
#chat-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9999999999;
}
#chat-icon, div#chat-icon-hidden {
    cursor: pointer;
    font-size: 24px;
    background-color: #fff;
    color: #fff;
    padding: 11px 10px 10px 10px;
    border-radius: 50%;
    text-align: center;
    height: 70px;
    width: 70px;
    border: 2px solid #3181B0;
}
#chat-box {
    display: none;
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 350px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.language_flage {
    border-radius: 50%;
    height: 25px;
    width: 25px;
    border: 1px solid white;
    object-fit: cover;
}
.langauge_checked {
    visibility: hidden;
}
.choosen_langauge .langauge_checked {
    visibility: visible;
    color: black;
    font-weight: bold;
}
.langauge_selection_div {
    cursor: pointer;
    margin-right: 34px;
    align-items: center;
    display: flex;
    position: relative;
}

.chat_flage_to_show {
    display: flex;
    /*align-items: center;*/
    gap: 8px;
}
img.chat_flage_to_show_arrow {
    width: 16px;
}
.langauge_dropdown {
    height: 0;
    color: white;
}
.hide_it {
    display: none !important;
}
.langauge_dropdown_selection {
    position: absolute;
    z-index: 10;
    background: #ffffff;
    top: 90%;
    padding: 10px;
    border-radius: 5px;
    right: 23px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
}

.single_language {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

#chat-header {
    color: #fff;
    padding: 6px 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    /*justify-content: space-between;*/
}
#close-chat {
    cursor: pointer;
    font-size: 18px;
    background: #6d6e71;
    height: 30px;
    width: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    font-weight: bold;
}
.show_chat .chat_d_icon{
    position:relative;
}
.chat_d_icon img {
    width: 30px;
}
.show_chat .chat_d_icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    background-color: #4CAF50;
    border-radius: 50%;
    border: 1px solid #fff;
}

/* ...scroll-design... */

/* Define the styles for the scrollbar */
/* Webkit (Safari/Chrome) */
#chat-body::-webkit-scrollbar, #chat-footer #message-input::-webkit-scrollbar {
    width: 6px;
}



/* Firefox */
#chat-body::-moz-scrollbar, #chat-footer #message-input::-moz-scrollbar {
    width: 6px;
}




#chat-body {
    height: 60vh;
    overflow-y: auto;
    padding: 10px;
}
#chat-footer {
    display: flex;
    padding: 10px;
}
#message-input {
    flex-grow: 1;
    padding: 5px;
    border-color: #d4d4d4;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#message-input:active,#message-input:focus,#message-input:focus-visible {
    border-color: #d4d4d4;
    outline: unset;
}
#send-message {
    cursor: pointer;
    padding: 5px 15px;
    background-color: #3181B0;
    color: #fff;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 5px;
}
.show_chat {
    display: block !important;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.messageHistory {
    background: white;
    min-height: 300px;
}
#chat-header h4 {
    font-size: 18px;
    color: #fff;
}
.column.actual_chat .datetime.notification_part {
    color: #fff;
}
.user_column .msg.notification_part {

    letter-spacing: 0.2px;
}
.is-success {
    margin: 5px;
    border-radius: 5px;
    width: fit-content;
    padding: 6px 14px;
    margin-left: auto;
}

.datetime.notification_part {
    font-size: 12px;
}

.chat_load.loading {
    position: relative;
}
.chat_load.loading .loading_overlay{
    position: absolute;
    background: #f2f1f15e;
    height: 100%;
    width: 100%;
    top: 0;
}
.actual_chat .notification.is-success:after {
    content: "";
    width: 20px;
    height: 12px;
    display: block;
    background-image: url(https://stageviewcincyshakes.firebaseapp.com/icon-gray-message.e6296433d6a72d473ed4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: -2px;
    left: -9px;
}
.actual_chat .notification.is-success {
    background: #e6e7ec !important;
    padding: 10px;
    margin-bottom: 0;
    position: relative;
}
.user_column .notification {
    position: relative;
    margin-right: 10px;
}

.user_column .notification:after {
    width: 19px;
    height: 13px;
    right: -9px;
    background-image: url(https://flyingdogrescue.com/wp-content/plugins/doobert-chatbot/assets/cut.png);
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 22px;
}
.error_msg .is-success {
    background-color: #3181B0;
}
#chat-icon .img2 {
    display: none;
}

div#chat-icon, div#chat-icon-hidden {
    display: flex;
    align-items: center;
    justify-content: center;
}

#chat-icon .img2 {
    width: 32px !important;
    height: 32px;
    object-fit: cover;
    padding-top:0px;
}
.waiting_for_response img {
    width: 60px;
}
.user_column {
    display: flex;
    align-items: end;
}

.user_avatar {
    width: 22px;
    border-radius: 50px;
}
.pre_button {
    border: 1.5px solid #3181b0;
    width: fit-content;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 5px;
    color: #3181b0;
}

.pre_defined_msg {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 10px;
}

/*.pre_button:hover {
    color: #fff;
    background: #3181b0;
}*/
#message-input {
    resize: none;
}
.chat-bubble .chat_icon {
    width: 22px;
    /*height: max-content;*/
    padding-top: 20px;
}

.single_langauge_one {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}





@media screen and (min-width: 1160px) and (max-width:1600px){
	
#chat-popup {
    bottom: 30px;
}
#chat-box {
    width: 320px;
}

}
