.chat{
    position: fixed;
    right: 0;
    bottom: 0;
    width: 300px;
    z-index: 10;
}
.chat-always-visible-content{
    background: linear-gradient(to right, #4CAF50, #424867);
    border-top-left-radius: 8px;
    border-top-right-radius: 34px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.chat-always-visible-img{
    align-self: end;
    cursor: pointer;
}
.chat-always-visible p{
    font-size: 16px;
    color: var(--white-color);
    font-weight: 700;
}
.chat-content{
    height: 350px;
    background: var(--white-color);
}
.chat form{
    border-top: 1px solid #cbcbcb;
    display: flex;
    gap: 16px;
    align-items: center;
}
.chat form input{
    padding: 16px;
    font-size: 14px;
    color: #838383;
    flex: 1;
}
.chat form button{
    width: 30px;
    height: 30px;
    background: var(--green1-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chat-content-messages{
    padding: 16px;
    overflow: auto;
}
.chat-content-message{
    padding: 12px;
    border-radius: 8px;
    background: var(--light-grey-color);
}

@media (max-width: 430px) {
    .chat{
        display: none;
    }
}