.open-button {
    background-color: #D6AD60;
    color: white;
    border: none;
    cursor: pointer;
    position: fixed;
    padding:  9px 15px;
    bottom: 20px;
    right: 20px;
    border-radius: 100%;
    outline: none;
    font-size: 2.2rem;
}

.open-button:focus {
    outline: 0 !important;
}

/* The popup chat - hidden by default */

.input_name{
    font-size: 1.5rem;
}

.input_name_label{
    font-size: 1.5rem;
    padding-left: 10px;
    padding-top: 5px;
}

.head_message {
    font-size: 1.5rem;
}

.error_msg{
    font-size: 1.5rem;
}

.btn_payment{
    font-size: 1.5rem;
    padding: 5px;
    margin-top: 20px;
}

.login_form {
    display: none;
    position: fixed;
    bottom: 17px;
    right: 15px;
    z-index: 9;
}

.chat_form {
    display: none;
    position: fixed;
    bottom: 17px;
    right: 15px;
    z-index: 9;
}

.join_div {
    width: 340px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: white;
    padding:  0 8px 8px 8px;
}

.chat_div {
    width: 340px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: white;
    padding:  0 12px 12px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat_body {
    padding: 0 20px 0 20px;
}

.chat_close {
    padding-right: 10px;
    height: 50px;
    border-radius: 10px 10px 0 0;
}

.close {
    padding-top: 5px;
    display:flex;
    justify-content: flex-end;
    color: black;
    cursor: pointer;
}

.h-custom {
    height: calc(100% - 73px);
}
@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}

.error_msg {
    color: red;
}

.empty_error{
    display: none;
}

.number_error{
    display: none;
}

.chat_input{
    padding: 10px 20px 5px 20px !important;
    box-shadow: 0 -5px 10px -5px rgba(115,115,115,0.75);
}

.send_button{
    font-size: 1.3rem;
    margin-top: 6px;
}

.input_msg{
    outline: none !important;
    border: none !important;
    width: 95%;
    font-size: 1.5rem;
}

.input_msg_admin{
    outline: none !important;
    border: none !important;
    width: 100%;
    background-color: #000000;
    color: #6C7293;
}

.input_msg:focus{
    outline: none !important;
    border: none !important;
}

.welcome{
    color: white;
}

.chat_name{
    color: white;
    padding-top: 10px;
    font-size: 1.5rem;
}

.login_time{
    color: white;
    font-size: 13px;
}

.chat_area{
    height: 340px;
    max-height: 340px;
    overflow-y: scroll;
}

.chat_area::-webkit-scrollbar {
    display: none;
}

.chat_area {
    -ms-overflow-style: none;
}

.chat_area_admin{
    height: 450px;
    max-height: 450px;
    overflow-y: scroll;
}

.chat_area_admin::-webkit-scrollbar {
    display: none;
}

.chat_area_admin {
    -ms-overflow-style: none;
}

.receive_message{
    width: 70%;
    background-color: #D6AD60;
    font-size: 13px;
    float: left;
    padding: 10px;
    color: white;
    border-radius: 0 10px 10px 10px;
    margin-bottom: 8px;
}

.receive_message_admin{
    width: 60%;
    background-color: #191C24;
    font-size: 13px;
    float: left;
    padding: 10px;
    color: #6C7293;
    border-radius: 0 10px 10px 10px;
    margin-bottom: 8px;
}

.error_receiver{
    width: 100%;
    background-color: #F5F5F5;
    font-size: 16px;
    padding: 10px;
    color: red;
    border-radius: 10px;
    text-align: center;
}

.send_message{
    width: 70%;
    background-color: #ECEFF1;
    font-size: 13px;
    float: right;
    padding: 10px;
    color: black;
    border-radius: 10px 10px 0 10px;
    margin-bottom: 8px;
}

.send_message_admin{
    width: 60%;
    background-color: #6C7293;
    font-size: 13px;
    float: right;
    padding: 10px;
    color: #191C24;
    border-radius: 10px 10px 0 10px;
    margin-bottom: 8px;
}

.message_time{
    margin: 0 !important;
    padding: 0 !important;
    float: right;
}

.drop_item{
    margin-left: 5px;
}