@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/font/Barlow-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/font/Barlow-Bold.woff2) format("woff2");
}
body {
  margin: 0;
  padding: 0;
  font-family: "Barlow";
  font-weight: 300;
  color: #333;
  font-size: 14px;
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
h1, h2, h3, h4, h5, h6, h7 {
  font-weight: 500;
  margin: 0;
  padding: 0;
}

hr {
  margin: 0 0 1.4rem 0;
  padding: 0;
  border: none;
  height: 1px;
  background: #eee;
}

a {
  color: #4084C5;
}

a:hover {
  color: #2C6A9E;
}

.splash--md {
  background-color: #cccccc;
  text-align: center;
  border-bottom: 6px solid #eee;
  margin-bottom: 20px;
  position: relative;
  height: 200px;
}

@media (min-width: 400px) {
  .splash--md {
    height: auto;
    padding-bottom: 45%;
  }
}
@media (min-width: 768px) {
  .splash--md {
    height: auto;
    padding-bottom: 30%;
  }
}
@media (min-width: 1024px) {
  .splash--md {
    padding-bottom: 0;
    height: 350px;
  }
}
.splash--bg {
  vertical-align: top;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.splash--img {
  vertical-align: top;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-55%);
  height: 100%;
  width: auto;
}

.head--wrap {
  background-color: #fff;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
}

.head--logo {
  max-width: 320px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.head--logo img {
  max-width: 100%;
  height: auto;
}

.head--title {
  font-weight: 300;
  margin-bottom: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 32px;
}

@media (min-width: 320px) {
  .head--title {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .head--title {
    font-size: 48px;
  }
}
.head--subtitle {
  font-size: 16px;
  font-weight: 300;
}

.main--wrap {
  padding-top: 3%;
  padding-bottom: 7%;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.row--wrap {
  position: relative;
}

.row--wrap__nome {
  display: flex;
  justify-content: space-between;
}

.row--wrap__nome .row--sub {
  width: 50%;
}

.row--wrap__multi {
  display: flex;
  justify-content: space-between;
}

.row--wrap__multi .row--sub__key {
  width: calc(50% - 10px);
}

.row--wrap__multi .row--sub__val {
  width: calc(50% - 10px);
}

@media (min-width: 500px) {
  .row--wrap__multi .row--sub__key {
    width: 180px;
    position: relative;
  }
  .row--wrap__multi .row--sub__val {
    width: calc(100% - 200px);
  }
}
.row--label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #626262;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.row--textinput, .row--textarea {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
  color: #606060;
  border: none;
  border-radius: 5px 5px 0px 0;
  background-color: #eee;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-bottom: 2px solid rgba(64, 132, 197, 0);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.row--textinput:focus, .row--textarea:focus {
  transition: border-bottom 150ms ease-out;
  border-bottom: 2px solid #4084C5;
}

@media (min-width: 768px) {
  .row--textinput, .row--textarea {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.row--textinput__nome {
  border-radius: 5px 0px 0px 0;
  border-right: 1px dotted #999;
}

.row--textinput__cognome {
  border-radius: 0px 5px 0px 0;
}

.row--select {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #eee;
  display: block;
  font-size: 14px;
  border-bottom: 2px solid rgba(64, 132, 197, 0);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.row--select:focus {
  transition: border-bottom 150ms ease-out;
  border-bottom: 2px solid #4084C5;
}

@media (min-width: 768px) {
  .row--select {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.row--chevron {
  width: 1.1rem;
  height: 1.1rem;
  color: #999;
  position: absolute;
  top: 32px;
  right: 1rem;
  pointer-events: none;
}

.privacy--row + .privacy--row {
  margin-top: 1rem;
}

.privacy--label {
  display: flex;
  align-items: flex-start;
}

.privacy--control {
  padding-right: 10px;
}

.privacy--checkbox {
  margin: 0;
  padding: 0;
}

.action--wrap {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.action--btn {
  display: inline-block;
  border: none;
  margin: 0;
  padding: 0;
  background: #4084C5;
  color: #fff;
  font-weight: 500;
  border-radius: 3px;
  font-family: inherit;
  font-size: 15px;
  padding: 7px 14px 6px 14px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}

.action--btn:hover {
  transition: background-color 150ms ease-out;
  background: #2C6A9E;
}

.main--title {
  margin: 2rem 0;
  font-size: 16px;
  text-align: center;
}

.modulo--highlight {
  border-bottom: 2px solid #d00;
}

.modulo--highlight:focus {
  border-bottom: 2px solid #d00;
}

.modulo--err {
  padding-top: 0.1rem;
  font-size: 11px;
  font-weight: 400;
  color: #d00;
  font-style: italic;
  height: 1.5rem;
}

.modulo--err__forget {
  color: #fff;
  text-align: center;
}

.contactinfo {
  opacity: 0.5;
}

.contactinfo__on {
  opacity: 1;
  transition: opacity 200ms ease-out;
}

.privacy--forget {
  opacity: 0;
  max-height: 0;
  transition: max-height 250ms ease-out, opacity 200ms;
  overflow: hidden;
  padding: 1rem;
  background: #4084C5;
  color: #fff;
}

.privacy--forget input {
  background: #fff;
  border: none;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.noprivacy {
  font-weight: 500;
  text-align: center;
  color: #d00;
  display: none;
}

.noprivacy__on {
  display: block;
}

.privacy--forget__on {
  opacity: 1;
  max-height: 120px;
  transition: max-height 300ms ease-out, opacity 250ms;
}

.footer--wrap {
  padding-bottom: 2rem;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #777;
}
