.chat{
    width: 350px;
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 99;
}

.header_chat{
    width: 100%;
    background: linear-gradient(90deg, rgba(156, 114, 61, 1) 0%, rgba(193, 143, 92, 1) 100%);
    color: var(--color-white-primary);
    padding: 20px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    cursor: pointer;
}

.main_chat{
    width: 100%;
    height: 300px;
    
    background-color: white;
}

.messages_chat{
    height: 100%;
    width: 100%;
    overflow-x: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.input_chat{
    width: 100%;
    padding: 20px;
    background-color: #363636;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.input_chat input{
    width: 100%;
    padding: 6px;
}

.input_chat button{
    background-color: transparent;
    border: 0;
    cursor: pointer;
}


.input_chat button i{
    color: white;
    font-size: 25px;
}

.message_user{
    width: 80%;
    padding: 10px;
    background-color: #ccc;
    margin-top: 10px;
    margin-left: 20%;
}

.message_admin{
    width: 80%;
    padding: 10px;
    background-color: #ccc;
    margin-top: 10px;
}

.transition {
    transition: all 0.3s ease;
}

.chat-enter-start,
.chat-leave-end {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.chat-enter-end,
.chat-leave-start {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media screen and (max-width: 764px){
    .chat{
        width: 250px;
    }
}