/* Submit */
.submitMsg {
  text-align: center;
}
.submitMsg span {
  padding: 10px;
  color: #fff;
  font-size: 1.3rem;
}
.submitMsg.unprocessed {
  display: none;
}
.submitMsg.success span {
  background-color: #40ad65;
}
.submitMsg.failed {
  background-color: #f43636;
  padding: 10px;
}

.captcha {
  margin-top: 3rem;
}

/* Error Message */
.errorMsg {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  margin: 5px 0 0px;
  background: #d32f2f;
  padding: 10px 5px;
  text-align: center;
}
.errorMsg.visible {
  display: block;
}

/* Contact Page */
#ic-reqContact .ic-field {
  margin-bottom: 15px;
}
#ic-requestInfo,
#ic-reqContact {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--color-grey);
}

#reqContactPage #ic-reqContact {
}
#ic-requestInfo h3,
#ic-reqContact h3 {
  color: #004a73;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 550;
  line-height: 25px;
  letter-spacing: 0.75px;
  font-family: "Montserrat", Arial, serif;
}
#ic-requestInfo h3 {
  text-align: center;
}
#ic-reqContact .errorMsg {
  text-align: left;
  padding: 10px;
}
#ic-reqInfo {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.wrap-fieldset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
#ic-requestInfo .ic-button,
#ic-reqContact .ic-button {
  display: flex;
  height: 42px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  cursor: pointer;
  align-self: stretch;
  background: #004a73;
  color: #fff;
  text-align: center;
  font-family: "Montserrat", Arial, serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.45px;
  border: none;
  transition: var(--transition);
}

#ic-requestInfo .ic-button:hover,
#ic-reqContact .ic-button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 15px 20px rgba(60, 60, 60, 0.4);
  background-color: var(--color-blue-primary);
}
.ic-fieldset {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ic-fieldset .ic-inputReq {
  width: 50%;
}
.ic-fieldset .ic-inputReq.notes {
  width: 100%;
}
.ic-inputReq input {
  outline: none;
  width: 100%;
  border: none;
  border-bottom: 1px solid #004a73;
  background: transparent;
}
.ic-inputReq textarea {
  outline: none;
  width: 100%;
  border: none;
  border: 1px solid #004a73;
  background: transparent;
}
.ic-fieldset textarea {
  outline: none;
  resize: none;
  aspect-ratio: 10 / 2.5;
  padding: 1rem;
  color: #646566;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.45px;
  font-family: "Montserrat", Arial, serif;
}
.ic-inputReq label {
  display: flex;
  align-items: center;
}
.ic-inputReq p {
  color: #004a73;
  font-family: "Montserrat", Arial, serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 550;
  line-height: 25px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
/* Request newsletter */
#ic-footerNewsletter .email {
  flex: 1 70%;
  max-width: 70%;
}
#ic-footerNewsletter .ic-lightBTN {
  flex: 1 30%;
  max-width: 30%;
  padding: 0;
  line-height: 44px;
  border: 1px solid #e2dad1;
}
#ic-footerNewsletter .privacy {
  margin: 5px 0;
}

#ic-footerNewsletter p {
  font-weight: 300;
  line-height: 1.2;
  padding-bottom: 15px;
}
#ic-footerNewsletter [type="checkbox"]:not(:checked) + span,
#ic-footerNewsletter [type="checkbox"]:checked + span {
  color: #fff;
}
#ic-footerNewsletter [type="checkbox"]:not(:checked) + span::before,
#ic-footerNewsletter [type="checkbox"]:checked + span::before {
  border-color: #fff;
}
#ic-footerNewsletter [type="checkbox"]:not(:checked) + span::after,
#ic-footerNewsletter [type="checkbox"]:checked + span::after {
  background: #fff;
}

/* Contact Banner */
#ic-contactBanner {
  max-width: none;
  margin: 0 auto;
  background: #e2dad1;
  padding: 50px 0;
}
#ic-contactBanner > h3 {
  text-align: center;
  margin-bottom: 7px;
}
#ic-contactBanner > p {
  text-align: center;
  line-height: 1.3;
  max-width: 570px;
  margin: 0 auto 20px;
}
#ic-contactBanner #ic-requestContact {
  padding: 0;
}
#ic-contactBanner #ic-requestInfo {
  background: transparent;
}
#ic-contactBanner form h3 {
  display: none;
}
#ic-contactBanner form {
  padding: 5px 20px;
  max-width: 720px;
}
#ic-contactBanner .ic-inputReq {
  flex: 1 49%;
  max-width: 49%;
  margin-bottom: 15px;
}
#ic-contactBanner .ic-inputReq.notes {
  flex: 1 100%;
  max-width: 100%;
  margin-bottom: 10px;
}

#ic-contactBanner .checkbox {
  margin: 0;
}
#ic-contactBanner textarea {
  height: 130px;
}
#ic-contactBanner .ic-lightBTN,
#ic-contactBanner .ic-lightBTN:visited {
  color: #fff;
  background: #000;
}
#ic-contactBanner [type="checkbox"]:not(:checked) + span:before,
#ic-contactBanner [type="checkbox"]:checked + span:before {
  border-color: #000;
}
#ic-contactBanner #ic-requestInfo [type="checkbox"]:not(:checked) + span,
#ic-contactBanner #ic-requestInfo [type="checkbox"]:checked + span {
  color: #000;
}
#ic-contactBanner #ic-requestInfo [type="checkbox"]:not(:checked) + span:after,
#ic-contactBanner #ic-requestInfo [type="checkbox"]:checked + span:after {
  background: #000;
}

/* RWD */

@media only screen and (max-width: 1100px) {
  #ic-requestInfo {
    max-width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .wrap-fieldset {
    flex-direction: column;
  }
  .ic-fieldset .ic-inputReq {
    width: 100%;
  }
  .ic-inputReq p {
    margin-left: 1rem;
  }
  .ic-fieldset textarea {
    aspect-ratio: 5 / 2.5;
  }
}
