/* BREAKPOINTS */
/* MEDIA QUERIES */
/*
$lt-smartphone: only screen and (max-device-width: 576px);
*/
.is-xs, .is-s, .is-m, .is-l, .is-xl {
  display: none;
}

@media only screen and (min-width: 576px) {
  .is-xs {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .is-s {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .is-m {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .is-l {
    display: block;
  }
}

@media only screen and (min-width: 1600px) {
  .is-xl {
    display: block;
  }
}

.only-xs, .only-s, .only-m, .only-l, .only-xl {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 576px) {
  .only-xs {
    display: block;
  }
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
  .only-s {
    display: block;
  }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .only-m {
    display: block;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .only-l {
    display: block;
  }
}

@media only screen and (min-width: 1201px) {
  .only-xl {
    display: block;
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

button, input {
  outline: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

a {
  color: inherit;
  text-decoration: inherit;
}

input,
textarea,
select, input::placeholder,
textarea::placeholder,
select::placeholder, .form {
  font-weight: 400 !important;
  color: #000;
  font-size: 16px;
  font-size: clamp(18px, 1.8vw, 22px);
}

#ajax-form-result-error {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #d93026;
  color: white;
  display: none;
  z-index: 99999999;
}

#ajax-form-result-error > div {
  padding: 15px 10px;
  text-align: center;
  font-size: 16px;
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.2em;
}

#ajax-form-result-error > div p {
  margin: 0;
  padding: 0;
}

input,
textarea,
select {
  outline: none;
  width: 100%;
  padding: 1em;
  border: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: all .3s ease-in;
  background: #f2f2ef;
  font-weight: 400;
  color: #000;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 139, 0, 0.3) inset !important;
  border: 1px solid rgba(255, 255, 255, 0);
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: .8;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}

input:focus,
textarea:focus,
select:focus {
  border-bottom: 2px solid #ff8b00;
}

select {
  padding-right: 7.5vw;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
}

select, select:focus {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.form {
  margin: 0 auto;
  background: #fff;
  padding: 6vh 6vw;
  width: 100%;
  max-width: 800px;
  outline: none;
}

.form #ajax-form-fields {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form #ajax-form-fields .form-fields,
.form #ajax-form-fields > div {
  width: 100%;
}

.form .form-buttons {
  text-align: center;
}

.form .form-buttons .button {
  line-height: .5em;
}

.form .notice {
  text-align: center;
  padding: 2em;
  margin-bottom: 1em;
  display: none;
  color: #00d7c6;
}

.form .notice p {
  margin-bottom: 0;
  font-weight: 700;
}

.form .notice p > strong {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

.form .notice .icon, .form .notice .selectdiv, .form .notice .checkbox input:checked ~ span, .form .checkbox .notice input:checked ~ span {
  display: inline-block;
  font-size: 1.8em;
  margin-bottom: .5em;
}

.form .notice.success {
  background: rgba(143, 179, 34, 0.2);
  color: #8fb322 !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.form .notice.success .icon, .form .notice.success .selectdiv, .form .notice.success .checkbox input:checked ~ span, .form .checkbox .notice.success input:checked ~ span {
  color: #8fb322 !important;
}

.form .notice.error {
  background: rgba(231, 25, 83, 0.2);
  color: #e71953 !important;
}

.form .notice.error .icon, .form .notice.error .selectdiv, .form .notice.error .checkbox input:checked ~ span, .form .checkbox .notice.error input:checked ~ span {
  color: #e71953 !important;
}

.form .selectdiv {
  width: 100%;
  position: relative;
  font-size: 2vw;
}

.form .selectdiv:before {
  position: absolute;
  right: 3vw;
  top: 50%;
  transform: translateY(-50%);
  color: #00d7c6;
}

.form .selectdiv * {
  width: 100%;
}

.form .checkbox label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 42px;
}

.form .checkbox .form-input {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

.form .checkbox input {
  opacity: 0;
  position: absolute;
}

.form .checkbox input ~ span {
  margin: 0;
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: 10;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.form .checkbox input:checked ~ span {
  background: #00d7c6;
  color: #fff;
  text-align: center;
  line-height: 30px;
}

.form .radiodiv {
  display: flex;
  flex-wrap: wrap;
  font-size: .9em;
}

.form .radiodiv label {
  margin: .5em;
  display: inline-block;
}

.form .radiodiv * {
  width: auto !important;
}

.form .radiodiv input ~ span {
  font-weight: 400;
}

.form .radiodiv [type='radio']:checked ~ span {
  font-weight: 400;
}

.form .form-textarea {
  width: 100%;
}

.form .form-textarea textarea {
  width: 100%;
  min-height: 6vh;
}

.form-field {
  margin-bottom: 1.5vh;
}

.form-field.form-error .form-input, .form-field.form-error .selectdiv {
  border: 1px solid #e71953;
}

.form-field.form-recaptcha {
  padding: 0;
  width: auto !important;
  margin: 0 auto;
  margin-top: 1em;
}

.form-field.form-recaptcha.form-error {
  border: 1px solid red;
}

.form-field .form-radio .form-radio-wrapper {
  padding: .5em 0;
}

.form-field .form-label {
  display: none;
  font-weight: 400;
  padding: .5em 0;
}

@font-face {
  font-family: "icon";
  src: url("../fonts/icons/icon.eot");
  src: url("../fonts/icons/icon.eot?#iefix") format("eot"), url("../fonts/icons/icon.woff2") format("woff2"), url("../fonts/icons/icon.woff") format("woff"), url("../fonts/icons/icon.ttf") format("truetype"), url("../fonts/icons/icon.svg#icon") format("svg");
}

.icon:before, .form .selectdiv:before, .form .checkbox input:checked ~ span:before {
  font-family: "icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  /* speak: none; only necessary if not using the private unicode range (firstGlyph option) */
  text-decoration: none;
  text-transform: none;
}

.icon-arrow-down:before, .form .selectdiv:before {
  content: "\E001";
}

.icon-arrow-left:before {
  content: "\E002";
}

.icon-check:before, .form .checkbox input:checked ~ span:before {
  content: "\E003";
}

.icon-close:before {
  content: "\E004";
}

.icon-messenger:before {
  content: "\E005";
}

.icon-whatsapp:before {
  content: "\E006";
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppinsregular.woff2") format("woff2"), url("../fonts/Poppinsregular.ttf") format("truetype");
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Poppinsmedium.woff2") format("woff2"), url("../fonts/Poppinsmedium.ttf") format("truetype");
}

@font-face {
  font-family: 'Domain Sans Display';
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/DomaineSansDisplay-MediumItalic.woff2") format("woff2");
}

input,
textarea,
select, input::placeholder,
textarea::placeholder,
select::placeholder, .form, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.button, .button .label, .step-header__title, .page-thanks > #wrapper h1 {
  font-weight: 600;
  font-style: italic;
  font-family: 'Domain Sans Display';
}

#loader {
  position: fixed;
  z-index: 1000000;
  background: rgba(255, 255, 255, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
}

#loader > div {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}

#loader .lds-ripple {
  margin: auto;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

#loader .lds-ripple div {
  position: absolute;
  border: 4px solid #1abab4;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#loader .lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

html, body {
  background: #eee;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.4em;
}

.overflow {
  height: 100vh;
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin-top: .5em;
  margin-bottom: .5em;
}

.button {
  background: #000;
  color: #fff;
  font-size: 3.8vw;
  font-size: clamp(24px, 3.8vw, 50px);
  padding: .75em 2.25em;
  display: inline-block;
  margin: .5em;
  transition: all .3s ease-in-out;
  border: none;
  position: relative;
  line-height: 1.2em;
}

.button.submit {
  font-size: clamp(28px, 3.8vw, 50px);
}

.step-1 .button {
  padding-right: calc(2.25em + 40px);
}

.button:hover {
  background: #9066be;
}

.button .label {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button .icon, .button .form .selectdiv, .form .button .selectdiv, .button .form .checkbox input:checked ~ span, .form .checkbox .button input:checked ~ span {
  position: absolute;
  right: 3vw;
  margin-left: 3vw;
  font-size: 40px;
}

.button .icon:before, .button .form .selectdiv:before, .form .button .selectdiv:before, .button .form .checkbox input:checked ~ span:before, .form .checkbox .button input:checked ~ span:before {
  position: relative;
  top: 5px;
}

a,
.link,
.privacy span {
  color: #000;
  position: relative;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

a:hover,
.link:hover,
.privacy span:hover {
  color: #9066be;
}

a:hover:after,
.link:hover:after,
.privacy span:hover:after {
  background: #9066be;
}

a:after,
.link:after,
.privacy span:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  bottom: -1px;
  position: absolute;
  left: 0;
}

.page-header {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.page-header img {
  height: auto;
  width: 25%;
  max-width: 200px;
  min-width: 90px;
  margin: 2vh auto;
}

.step-header__sup_title,
.question-progress {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 2.4vw;
  font-size: clamp(18px, 2.4vw, 2.4vw);
  line-height: 1.3em;
  position: relative;
  display: inline-block;
}

.step-header__sup_title > span {
  display: none;
}

.question-progress {
  background: #9066be;
  width: 100%;
  padding: .25em;
}

.step-header__sup_title_elm {
  position: relative;
  width: 25px;
  margin: 0 5px;
  display: inline-block;
  height: 100%;
  bottom: 50%;
  transform: translateY(-6px);
}

.step-header__sup_title_elm:before {
  content: '';
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 50%;
  left: 0;
}

.step-header {
  padding: 3vh 3vw 3vh 3vw;
  text-align: center;
  background-size: cover;
  position: relative;
}

.step-1 .step-header {
  background-image: url("../images/bg-header.jpg");
}

.step-3 .step-header {
  color: #fff;
}

.step-header:after {
  content: '';
  width: 1px;
  height: calc($gutter-h*2 + 20px);
  background: #cbcbcb;
  position: absolute;
  left: 50%;
  bottom: -3vh;
  z-index: 10;
}

.step-header:after .step-3 {
  bottom: 6vh;
}

.step > .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step-3 {
  background-image: url("../images/bg-form.jpg");
  background-size: cover;
}

.step-3 > .step-wrapper {
  padding: 6vh 6vw;
}

.info {
  padding: 6vh 6vw;
  background: #00d7c6;
  color: #fff;
  text-align: center;
}

.step-header__content {
  background: #fff;
  padding: 3vh 3vw;
  padding-bottom: 1px;
}

.step-header__img {
  width: 50%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.step-header__img_elm {
  position: relative;
  width: 100%;
}

.step-header__img_elm:before {
  content: '';
  height: 10vw;
  max-height: 130px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1;
}

.step-header__title {
  font-style: italic;
  font-weight: 600;
  font-size: 6.5vw;
  font-size: clamp(28px, 6.5vw, 6.5vw);
  line-height: 1.125em;
  margin-bottom: .2em;
}

.step-header__title em {
  font-size: 3.6vw;
  font-size: clamp(24px, 3.6vw, 3.6vw);
  display: block;
}

.step-header__subtitle {
  font-weight: 400;
  font-size: 2.6vw;
  font-size: clamp(18px, 2.6vw, 2.6vw);
  line-height: 1.4em;
  margin-top: 0;
}

.cta {
  margin: 0 auto;
  padding: 3vh 3vw;
  text-align: center;
  font-size: 2.6vw;
  font-size: clamp(16px, 2.6vw, 2.6vw);
  background: #fff;
}

.cta .cta__title {
  width: 80vw;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3vh;
  line-height: 1.3em;
}

.step-header__covid-text,
.step-header__details,
.privacy {
  font-size: 1.8vw;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.4em;
}

.privacy {
  text-align: center;
  margin: 3vh auto;
  margin-top: 1.5vh;
  color: #6d6d6d;
}

.privacy span {
  white-space: nowrap;
}

.disclaimer {
  background: #f7f7f7;
  padding: 6vh 3vw;
  text-align: center;
  font-size: 1.8vw;
  font-size: clamp(14px, 1.8vw, 18px);
}

.disclaimer__content {
  width: 80vw;
  max-width: 600px;
  margin: 0 auto;
  font-size: 12px;
}

#footer {
  background: #eee;
  padding: 6vh 3vw;
  text-align: center;
  font-size: 1.8vw;
  font-size: clamp(14px, 1.8vw, 18px);
}

.footer-dialog-links {
  margin: .7em auto;
}

.RSP-code {
  display: block;
  margin-top: 1.5vh;
  color: #7f7f7f;
}

.step-2 {
  padding: 3vh 3vw 3vh 3vw;
  text-align: center;
  background-image: url("../images/bg-question.jpg");
  background-size: cover;
  position: relative;
}

.question__title {
  background: #fff;
  padding: 6vh 9vw;
  font-size: 2.6vw;
  font-size: clamp(16px, 2.6vw, 2.6vw);
  line-height: 1.4em;
  margin-top: 0;
}

.question {
  display: none;
}

.question .question__answers .answer-button input {
  opacity: 0;
  position: absolute;
}

.question:not(.question__text) .question__answers {
  display: flex;
  justify-content: space-around;
}

.question:not(.question__text) .question__answers .answer-button {
  padding: 4vw;
  padding: clamp(4vw, 4vw, 40px);
  margin: 0 2vw;
  border-radius: 50vw;
  width: 40vw;
  max-width: 340px;
  max-height: 340px;
  height: 40vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.question:not(.question__text) .question__answers .answer-button.active {
  background: #9066be;
  transform: scale(0.95);
}

.question__text .question__title {
  margin: 0;
  padding-bottom: 3vh;
}

.question__text .question__answers {
  flex-direction: column;
  background: #fff;
  padding: 0 6vw;
  padding-bottom: 6vh;
}

.question__text .question__answers .answer-button {
  margin-top: 6vh;
  font-size: 2.2vw;
  font-size: clamp(22px, 2.2vw, 2.2vw);
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(104, 102, 190, 0.9);
  width: 100%;
  height: 100%;
  display: none;
  overflow: scroll;
}

.dialog p, .dialog h1, .dialog h2, .dialog h3, .dialog h6 {
  line-height: 1.4em;
}

.dialog > .dialog-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4vw;
  width: 100%;
  min-height: 100%;
}

.dialog > .dialog-wrapper > .dialog-container {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 4vw;
}

.close {
  position: absolute;
  right: 3vw;
  top: 3vh;
  width: 20px;
}

.close polygon {
  fill: #000;
}

.close:before {
  content: '';
  background: #000;
  position: absolute;
  right: 3vw;
  top: 3vh;
  width: 20px;
}

.dialog-container {
  position: relative;
  background: #fff;
  padding: 6vh 3vw;
  margin: 3vh;
}

.dialog-container .header {
  color: #9066be;
  font-size: 2.6vw;
  font-size: clamp(24px, 2.6vw, 2.6vw);
  margin-bottom: 1em;
}

.dialog-container .content {
  font-size: 2vw;
  font-size: clamp(16px, 2vw, 2vw);
}

.dialog-container .content p strong {
  color: #9066be;
  font-size: 2.6vw;
  font-size: clamp(24px, 2.6vw, 2.6vw);
}

.dialog-container .title {
  color: #9066be;
  display: block;
  font-size: 2.2vw;
  font-size: clamp(18px, 2.2vw, 2.2vw);
  margin-bottom: 0.25em;
}

.blink {
  transition: .3s ease-in;
  animation: blink 2s;
  animation-iteration-count: infinite;
}

@keyframes blink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.page-thanks {
  background: #00d7c6;
  min-height: 100vh;
}

.page-thanks > #wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.page-thanks > #wrapper > * {
  width: calc(100% - 3vw*2);
  max-width: 600px;
}

.page-thanks > #wrapper .content-wrapper {
  background: #fff;
  padding: 3vh 3vw;
  border-top: 1px solid #d9d9d9;
  text-align: center;
}

.page-thanks > #wrapper .content-wrapper > header {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 3vh;
  margin-bottom: 3vh;
}

.page-thanks > #wrapper .content-container > div {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 3vh;
  margin-bottom: 3vh;
}

.page-thanks > #wrapper .content-container > div:last-of-type {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-thanks > #wrapper a {
  color: #9066be;
}

.page-thanks > #wrapper a:after {
  background: #9066be;
}

.page-thanks > #wrapper h1 {
  font-size: 2.6vw;
  font-size: clamp(24px, 2.6vw, 2.6vw);
  text-align: center;
}

.page-thanks > #wrapper .share-button {
  font-size: 4vw;
  font-size: clamp(30px, 4vw, 45px);
  margin: .6em .25em;
  display: inline-block;
}

.page-thanks > #wrapper .share-button:after {
  display: none;
}

.page-thanks > #wrapper .icon-whatsapp {
  color: #32BA46;
}

.page-thanks > #wrapper .icon-messenger {
  color: #2089FF;
}

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