/*include styles for both contact.html and wholesale.html*/

.contact-form-section {
  padding: 50px 20px;
}

.contactForm {
  color: #595d64;
  background-color: #fff;
  font-weight: 400;
  font-style: normal;
  display: block;
  text-align: left;
  margin-top: 40px;
}

p.contact-intro {
  margin-bottom: 50px;
}

.contactForm label {
  vertical-align: baseline;
  font-size: 1.2em;
  color: #595d64;
  margin-top: 15px;
  display: block;
}

.contactForm .source-label-error, .contactForm .type-error-label {
  margin-top: 20px;
}

.contactForm input {
  padding: 7px;
  font-size: 14px;
  line-height: 14px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 42px;
  display: block;
}

.contactForm .city-box, .contactForm .state-box, .contactForm .zip-box {
  float: left;
  width: 30%;
  min-width: 30%;
  clear: right;
  display: inline-block;
  margin-right: 3%;
  margin-bottom: 20px;
}

.contactForm .website-error-box {
  clear: both;
}

.contactForm textarea {
  padding: 7px;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #595d64;
  border: 1px solid #cfd4d8;
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  height: 140px;
}

.contactForm select {
  width: auto;
  height: 30px;
  background-color: white;
  border-width: 1px;
}

.contactForm .other-input {
  width: 100%;
  height: 30px;
}

.contactForm .sendBtn, .contactForm .sendBtn2 {
  padding: 10px;
  border: 0 solid transparent;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  background-color: #595d64;
  clear: both;
  width: 60px;
  text-align: center;
  cursor: pointer;
  margin: 50px auto;
  box-sizing: border-box;
}

.contactForm .form-group-left {
  float: left;
  width: 49%;
}

.contactForm .form-group-right {
  float: right;
  width: 49%;
}

.contactForm .clear {
  clear: both;
}

.contactForm .first_name {
  margin-right: 10px;
}

.contactForm .first_name_label, .contactForm .last_name_label {
  font-size: 12px;
  margin-top: -3px;
}

.contactForm .source-error-box, .contactForm .type-error-box {
  font-size: 12px;
  line-height: 12px;
}

.contactForm .form-error {
  margin: 0;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ce5f6d;
  color: #ce5f6d;
  background-color: #fae9e9;
  text-align: center;
  clear: both;
}

.contactForm .email-error,
.contactForm .name-error,
.contactForm .phone-error,
.contactForm .company-error,
.contactForm .message-error,
.contactForm .source-error,
.contactForm .other-error,
.contactForm .street-error,
.contactForm .city-error,
.contactForm .state-error,
.contactForm .zip-error,
.contactForm .type-error,
.contactForm .website-error {
  background-color: #fae9e9;
  border: 1px solid #ce5f6d;
  color: #ce5f6d;
  padding: 5px;
  height: 120px;
  margin: 10px 0;
}

.contactForm .city-error,
.contactForm .state-error,
.contactForm .zip-error {
  margin-right: 3%;
}

.contactForm .source-error, .contactForm .type-error {
  height: 98px;
  width: 40%;
}

.contactForm .website-error {
  height: 110px;
}

.contactForm .other-error {
  height: 42px;
}

.contactForm .other-error-box {
  width: 22%;
}

.contactForm .message-error {
  height: 210px;
}

.contactForm .website-error-box {
  width: 40%;
}

.contactForm .hidden {
  display: none;
}

.contactForm .disabled {
  background-color: #DDD;
  color: #999;
  cursor: not-allowed
}

@media screen and (max-width: 767px) {
   .contact-form-section {
     padding: 20px 10px;
   }
}