.chat-warp {
    height: 75vh;
    background-color: #FFFFFF;
    box-sizing: border-box;
    position: relative;
    position: fixed;
    z-index: 1000;
    right: 40px;
    bottom: 20px;
    border-radius: 10px;
    border: 1px solid #cccccc;
}

.chat-warp .close {
    width: 30px;
    height: 30px;
}

.chat-warp #message-wrapper {
    padding: 0 20px 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    box-sizing: border-box;
    height: calc(75vh - 90px);
    overflow-y: scroll;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.flex {
    display: flex;
}

.user-message .message-content {
    border-radius: 10px;
    background: #2C68FF;
    color: #fff;
    text-align: right;
}

.bot-message .message-content {
    border-radius: 10px;
    background: #f7f8f9;
    text-align: left;
}

.message-content {
    padding: 10px;
}


.chat-warp .textarea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 97%;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.chat-warp .textarea .clearMessage {
    width: 35px;
    height: 25px;
    cursor: pointer;
}

.chat-warp .textarea .send {
    width: 46px;
    height: 32px;
    background-color: #409EFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
    align-self: flex-end;
}

.chat-warp .textarea .send img {
    width: 24px;
    height: 24px;
}

.chat_customer,
.affix-cha {
    width: 160px;
    height: 60px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    position: relative;
    position: fixed;
    z-index: 1000;
    right: 30px;
    bottom: 40px;
    border-radius: 40px;
    cursor: pointer;
    border: 1px solid #cccccc;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat_customer,
.affix-cha > p {
    font-size: 15px;
}

.affix-chat {
    width: 60px;
    height: 60px;
}

