.contact-us {
    display: flex;
    flex-direction: column;
    padding: 1em 0;
}

.contact-us .modal-text {
  font-size: 12px;
  user-select: none;
  margin-top: 8px;
}

.contact-us .modal-text a {
  color: #333;
}

.submit-btn[disabled] {
  cursor: not-allowed;
  background: #6b6b6b;
}
  
.contact-us input, .contact-us textarea {
    padding: 0.1em;
    margin-top: 1em;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border-width: 1px;
    border-color: #333;
    border: 0 solid #dfe1e8;
    -webkit-box-shadow: 0 2px 5px 0 #b9babf;
    -moz-box-shadow: 0 2px 5px 0 #b9babf;
    box-shadow: 0 2px 5px 0 #b9babf;
}

/* .contact-us input::placeholder {
    padding-left: 1em;
}

.contact-us textarea::placeholder {
    padding-left: 1em;
} */

.contact-us input{
    /* max-width: 200px; */
}

.contact-us textarea {
    margin-top: 1.5em;
    min-height: 200px;
    border-width: 1px;
    /* max-width: 270px; */
}

.contact-us button {
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    max-width: 170px;
    justify-content: center;
    background-color: rgb(2, 125, 180);
    padding: 10px 30px;
    border-width: 0;
    color: #fff;
}

.modal{
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    background-color: #fafafa;
    max-width: 400px;
}

#success-modal{
    display: none;
}

#error-modal{
    display: none;
}

.error{
    color: red;
    padding-left: 0.5em;
}

.sticky-form{
    position: fixed;
    right: 1em;
    bottom: 0;
    -webkit-box-shadow: 0 2px 5px 0 #b9babf;
    -moz-box-shadow: 0 2px 5px 0 #b9babf;
    box-shadow: 0 2px 5px 0 #b9babf;
}

.sticky-form .modal{
    display: none;
    min-width: 300px;
    padding: 1em;
}

.sticky-form .contact-us{
    padding: 0;
}

/* .main_content_connect {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    width: 300px;
    display: flex;
    justify-content: center;
    padding: 13px;
    background-color: #027DB4;
    border-radius: 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
} */

.show{
    display: block;
}

