/* Contacto - Page layout */
.contacto-page #cuerpo {
  background-image: none;
  border-top: 2px #fff solid;
  padding: 0;
  background: #ededed;
  background: -webkit-linear-gradient(top, #ededed 1%, #f6f6f6 25%, #fff 56%);
  background: linear-gradient(to bottom, #ededed 1%, #f6f6f6 25%, #fff 56%);
}

.contacto-page #centro.wide {
  width: 100%;
  padding: 0;
}

.contacto-page-main {
  background-color: transparent;
  padding-top: 40px;
}

/* Contacto - Intro and map */
.contacto-section-title {
  text-align: center;
  font-family: ambleregular, sans-serif;
  font-size: 30px;
  line-height: 45px;
  margin-top: 35px;
  color: rgba(0, 0, 0, .8);
}

.contacto-section-subtitle {
  width: 95%;
  max-width: 453px;
  margin: 0 auto;
  text-align: center;
  font-family: ambleregular, sans-serif;
  line-height: 26px;
  font-size: 16px;
  color: rgba(0, 0, 0, .8);
}

.contacto-map {
  width: 100%;
  height: 450px;
  margin: 25px 0 0;
}

/* Contacto - Form */
.contacto-form-container {
  width: 80%;
  margin: 30px auto 80px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.contacto-form-container input[type=text],
.contacto-form-container input[type=email],
.contacto-form-container input[type=tel] {
  display: block;
  width: 45%;
  height: 30px;
  margin: 12px auto;
  border: 0;
  border-bottom: 2px rgba(0, 0, 0, .2) solid;
  background-color: transparent;
}

.contacto-form-container textarea {
  display: block;
  width: 95%;
  align-self: center;
  margin: 12px auto;
  border: 0;
  border-bottom: 2px rgba(0, 0, 0, .2) solid;
  background-color: transparent;
  font-family: arial;
  resize: none;
  padding-top: 7px;
  height: 23px;
}

.contacto-form-container input[type=submit] {
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
  height: 45px;
  width: 260px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  background-color: #004a9b;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: block;
}

.contacto-form-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contacto-form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contacto-form-required-mark {
  display: block;
  color: #068bdf;
  font-size: 15px;
  font-family: ambleregular, sans-serif;
  width: 0;
  float: left;
  margin-right: 25px;
  margin-left: -25px;
  margin-top: 20px;
  height: 18px;
}

.contacto-form-required-note {
  color: #004a9b;
  font-size: 14px;
  margin-left: 28px;
}

/* Contacto - Submit loader */
.contacto-form-loader-overlay {
  position: fixed;
  top: var(--loader-top-offset, 0px);
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.contacto-form-loader-overlay.active {
  display: flex;
}

.contacto-form-loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #0d0d0d;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.contacto-form-loader-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid #d3d3d3;
  border-top-color: #ee091e;
  border-radius: 50%;
  animation: contacto-form-loader-spin .9s linear infinite;
}

@keyframes contacto-form-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Contacto - Responsive */
@media(max-width:600px) {
  .contacto-form-container {
    width: 95%;
  }

  .contacto-form-container input[type=text],
  .contacto-form-container input[type=email],
  .contacto-form-container input[type=tel],
  .contacto-form-container textarea {
    width: 100%;
  }

  .contacto-form-required-mark {
    margin-right: 5px;
    margin-left: -5px;
  }

  .contacto-form-required-note {
    margin-left: 0;
  }
}



