*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #0b4f66;
  background: #f0f7fe;
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

h1 {
  font-family: "brevia", sans-serif;
  font-weight: 800;
  padding: 60px 15px 45px;
  font-size: 1.6em;
  width: 100%;
}
@media (min-width: 600px) {
  h1 {
    padding: 60px 45px;
    font-size: 1.8em;
    text-align: center;
  }
}

h2 {
  font-family: "brevia", sans-serif;
  font-weight: 400;
  font-size: 1.05em;
  margin-bottom: 5px;
}

ul {
  list-style: none;
  padding: 0;
}

.form-wrapper {
  max-width: 640px;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #23ab77;
  margin-bottom: 60px;
}

form {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
form fieldset {
  padding: 35px 20px 15px;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  min-width: 0;
  width: 100%;
}
@media (min-width: 600px) {
  form fieldset {
    padding: 35px 60px 15px;
  }
}
form fieldset.recap {
  border-bottom: 1px solid #cfe8e1;
  padding-bottom: 45px;
}
form fieldset.recap .col {
  width: 50%;
}
form fieldset legend {
  display: flex;
  float: left;
  width: 100%;
  padding: 0;
}
form fieldset legend + div:last-child {
  width: 100%;
}
form fieldset div {
  width: 50%;
  margin-bottom: 10px;
}
form fieldset div.full {
  width: 100%;
  margin-bottom: 10px;
}
form fieldset div.full:last-child {
  margin-bottom: 0;
}
form fieldset div:first-child {
  width: 100%;
}
form fieldset > label, form fieldset > legend {
  font-size: 1em;
  font-family: "brevia", sans-serif;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  form fieldset > label, form fieldset > legend {
    font-size: 1.15em;
  }
}
form fieldset label {
  font-size: 1em;
  position: relative;
  display: flex;
  margin-bottom: 10px;
  cursor: pointer;
}
@media (min-width: 600px) {
  form fieldset label {
    font-size: 1.15em;
  }
}
form fieldset label input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
form fieldset label input[type=radio] + .checkmark {
  height: 24px;
  width: 24px;
  position: relative;
  background-color: #fff;
  border: 2px solid #0b4f66;
  border-radius: 50%;
  display: flex;
  margin-right: 10px;
  transition: all 0.3s ease 0s;
}
form fieldset label input[type=radio] + .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}
form fieldset label:hover input ~ .checkmark {
  background-color: #eee;
}
form fieldset label input[type=radio]:checked ~ .checkmark {
  background-color: #23ab77;
  border-color: #087149;
}
form fieldset label input[type=radio]:checked ~ .checkmark::after {
  display: block;
}
form fieldset label:last-child {
  margin-bottom: 0;
}
form fieldset:last-child {
  margin-bottom: 0;
  padding-bottom: 45px;
}

.rating-badge {
  display: flex;
  width: 100%;
}
.rating-badge .star {
  width: 32px;
  height: 32px;
  padding: 3px;
  cursor: pointer;
  display: inline-block;
  margin-right: 3px;
  background-image: url(../images/star.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  opacity: 0.7;
  filter: grayscale(1);
}
.rating-badge .star:hover {
  opacity: 1;
}
.rating-badge .star.active {
  filter: grayscale(0);
  opacity: 1;
}

textarea {
  width: 100%;
  height: 180px;
  border: 2px solid #0b4f66;
  font: inherit;
  padding: 5px;
}

fieldset.submit {
  padding-top: 10px;
  padding-bottom: 90px;
}

button {
  background-color: #00a46d;
  box-shadow: #108b5b 0 5px 0;
  border-radius: 5px;
  font-family: brevia, sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  position: relative;
  white-space: nowrap;
  transition: background 0.2s linear 0s, color 0.2s linear 0s, box-shadow 0.2s linear 0s;
  cursor: pointer;
  text-decoration: none;
  border: 0 none;
  padding: 12px 23px;
  font-size: 1.6em;
  width: 100%;
}
button:hover {
  background-color: #108b5b;
}
button[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}

#how_different_textarea {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease 0s, max-height 0.3s ease 0s;
  opacity: 0;
}
#how_different_textarea.show {
  opacity: 1;
}

.error_msg {
  color: #666;
  text-align: center;
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.error_msg::before {
  display: flex;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  background: #d10000;
  content: "!";
  color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 0.8em;
}

.form-feedback {
  padding: 0 15px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  margin-bottom: 30px;
}
.form-feedback h1 {
  text-align: left;
  padding: 60px 0 30px;
}
.form-feedback p {
  font-size: 1.2em;
}
.form-feedback p + p {
  margin-top: 15px;
}

/*# sourceMappingURL=style.css.map */
