#live-chat-button {
    position: fixed;
    bottom: 10px;
    right: 80px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

#chat-container{
    background: url('/images/chat-img.jpg') no-repeat center center;
    background-size: cover;
    box-sizing: border-box;
    position: fixed;
    right: 0;
    bottom: 0;
    overflow: hidden;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 0.25rem;
    width: 100%;
    height: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-delay: 150ms;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
#message{
    display: flex;
    width: 100%;
}
#message form{
    width: 100%;
}
#contact-input input{
    box-sizing: border-box;
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: ghostwhite;
    color: black;
    width: 100%;
    font-size: 1.25rem;
    line-height: 1.75rem;
    border-radius: 0.25rem;
    border: none;
}
#message button{
    box-sizing: border-box;
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    width: 100%;
    font-weight: 700;
    color: #ffffff;
    background-color: #3B82F6;
}
#message input:focus,#message textarea:focus{
    outline: none;
}

#message textarea{
    box-sizing: border-box;
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    width: 100%;
    background-color: ghostwhite;
    color: black;
    font-size: 1.25rem;
    line-height: 1.75rem;
    resize: none;
}
#message button:hover{
    background-color: #2563EB;
    cursor: pointer;
}

#contact-input{
    display: flex;
    flex-direction: column;
}
#contact-form-live-chat{
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    #contact-input input{
        width: auto;
    }
    #chat-container{
        width: 33.333333%;
    }
}