@keyframes open_contact {
    from {
        max-height: 0;
    }

    to {
        max-height: 10000px;
    }
}

#supplier_contact_form_wrap {
    margin: auto;
    height: 0;
    overflow: hidden;
    max-height: 0;
    width: 50%;
}

#supplier_contact_form_wrap label {
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 5px;
}

#supplier_contact_form_wrap input:not([type=submit]),
#supplier_contact_form_wrap textarea,
#supplier_contact_form_wrap select {
    border-radius: 15px;
}

#supplier_contact_form_wrap.open {
    animation-name: open_contact;
    animation-duration: 5s;
    height: auto;
    max-height: 10000px;

}



#supplier_contact_form_open,
#supplier_contact_form_wrap input[type=submit] {
    display: table;
    margin: 50px auto;
    background: #a676a5;
    border-radius: 15px;
    color: #ffffff;
    border: none;
}

#supplier_contact_form_open:hover,
#supplier_contact_form_wrap input[type=submit]:hover {
    background: #fff;
    border: 1px solid #a676a5;
    color: #a676a5;
}