body {
    background: #16a085;
    margin: 0px;
    height: 900px;
    font-family: sans-serif;
}

.chat_box {
    position: fixed;
    right: 20px;
    bottom: 0px;
    background-color: #fff;
    border: 1px solid #dde3eb;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 3%);
    width: 260px;
}

.chat_body {
    background: white;
    height: auto;
    max-height: 450px;
    padding: 5px 0px;
}
.msg-info-time {
    font-size: 0.85em;
    font-weight: 400 !important;
}
.msg-info-name {
    margin-right: 10px;
    font-weight: bold;
    font-weight: 600 !important;
}
.chat_head, .msg_head {
    background: #424242;
    color: white;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px 5px 0px 0px;
}

.msg_box {
    position: fixed;
    bottom: -5px;
    width: 380px;
    z-index: 999999;
    background: white;
    background-color: #fff; 
	font-weight:400;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 3%);
    border-radius: 5px 5px 0px 0px;
}

.msg_head {
    background: #424242;
}

.msg_body {
    background: white;
    height: 400px;
    background-image: url(chatbg.png);
    border-bottom: 1px solid #dde3eb;
    border-right: 1px solid #dde3eb;
    border-left: 1px solid #dde3eb;
    font-size: 12px;
    padding: 15px;
    overflow: auto;
    overflow-x: hidden;
}

.msg_input {
    width: 100%;
    
    font-weight: 400;
    color: #494949;
    font-size: 13px;
    border: 1px solid white;
    border-top: 1px solid #DDDDDD;
    -webkit-box-sizing: border-box;
    border-right: 1px solid #dde3eb !important;
    border-left: 1px solid #dde3eb !important;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.close {
    float: right;
    cursor: pointer;
}

.minimize {
    float: right;
    cursor: pointer;
    padding-right: 5px;

}

.user {
    position: relative;
    padding: 13px 15px;
    padding-left: 18px;
    font-weight: 500;
    color: #373737;
    font-size: 13px;
    border-bottom: 1px solid #eaedf2 !important;
}

.user:hover {
    background: #f8f8f8;
    cursor: pointer;

}

.blink-bg {
    color: #fff;
    animation: blinkingBackground 2s infinite;
}

.blink-bg2 {
    color: #fff;
    background-color: #fffbf1;
}

@keyframes blinkingBackground {
    0% {
        background-color: #21ba4512;
    }
    25% {
        background-color: #fff;
    }
    50% {
        background-color: #21ba4512;
    }
    75% {
        background-color: #fff;
    }
    100% {
        background-color: #21ba4512;
    }
}


.msg_a {
    float: right;
    clear: both;
    position: relative;
    background: #dcf6c5;
    color: #1f1f1f;
    font-size: 13px;
    padding: 10px;
    min-height: 10px;
    margin-bottom: 5px;
    width: fit-content;
    max-width: 300px;
	font-weight:400 !important;
    min-width: 300px;
    margin-right: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}


.msg_b {
    float: left;
    clear: both;
    position: relative;
    background: #ffffff;
    width: fit-content;
    color: #1f1f1f;
    font-size: 13px;
    padding: 10px;
    max-width: 300px;
    min-width: 300px;
	font-weight:400 !important;
    min-height: 10px;
    margin-bottom: 5px;
    margin-right: 10px;
    word-wrap: break-word;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}


.close {
    float: right;
    font-size: 22px;
    font-weight: 600;
    line-height: 16px;
    padding-right: 15px;
    color: #ffffff;
    text-shadow: 0 0px 0 #fff;
    opacity: 11;
}

.close:hover {
    color: #ffffff;
    text-decoration: none;
}
