* {
  box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0; }

body {
  background: #f47921;
  width: 100vw;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }

body.hasErrors .errorBoxWrapper {
  visibility: visible;
  opacity: 1; }

body.loading .loader {
  display: flex; }

a {
  color: inherit; }

.wrapper {
  padding: 1rem;
  max-width: 1080px;
  margin: 0 auto; }

main {
  margin: 2em 4em; }

.logoWrapper {
  background: white;
  border-radius: .5em;
  padding: 1em .7em;
  display: flex;
  justify-content: center;
  align-items: center; }

.logoWrapper > svg {
  height: 4em; }

header h1 {
  text-align: center;
  text-transform: uppercase;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  letter-spacing: .1em;
  font-size: 1.5em; }

.form .tab {
  display: none; }

.form label {
  display: block;
  margin-bottom: 1rem; }

.form label > span,
.form label > div > span {
  text-transform: uppercase;
  font-size: 1.4em;
  font-weight: 300;
  display: block;
  text-align: center;
  margin-bottom: .5em; }

.form label > small {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: .5rem; }

.form label > div > small {
  display: block;
  text-transform: unset;
  text-align: center;
  margin: -.5em 0 1em 0; }

.form label .requiredAsterisk,
.finalStep .title .requiredAsterisk,
.privacyPolicy .requiredAsterisk {
  background: #f3154e;
  border: 1px solid white;
  transform: rotate(45deg);
  color: white;
  font-size: .8em;
  position: relative;
  top: -.2em;
  left: .35em;
  display: inline-block;
  line-height: 16px;
  width: 9px;
  height: 9px; }

.form label input {
  width: 100%;
  border: 0;
  font-family: inherit;
  font-size: 2em;
  text-align: center;
  padding: .25em .5em;
  border-radius: .5rem;
  position: relative;
  z-index: 2; }

.form label input::placeholder {
  font-weight: 300;
  opacity: .3; }

.form input.invalid {
  background-color: #ffdddd; }

.form .error {
  background-color: #f3154e;
  color: #fff;
  font-size: 0.75rem;
  padding: 15px 5px 5px 5px;
  position: relative;
  top: -10px;
  border-radius: 0 0 .5rem .5rem;
  text-align: center;
  display: none; }

.privacyPolicy .error {
  padding: 5px;
  border-radius: .5rem;
  top: 0; }

.formButtons {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem; }

.formButtons--two {
  grid-template-columns: 1fr 1fr; }

.formButtons button {
  border-radius: .20em;
  font-family: inherit;
  text-transform: uppercase;
  background: #00a7e9;
  color: white;
  -webkit-appearance: none;
  font-weight: 600;
  padding: .5em 0;
  font-size: 1.6em;
  display: block;
  cursor: pointer;
  border: 0;
  width: 100%; }

.formButtons .secondaryBtn {
  background: none;
  border: 2px solid #fff; }

.sendData {
  border: 0;
  display: block;
  width: 100%; }

.privacyPolicy ul {
  list-style: none;
  margin: 0 0 2em 0;
  padding: 0; }

.privacyPolicy ul li {
  display: block;
  margin-bottom: 1em; }

.form input[type="checkbox"] {
  width: auto; }

.finalStep {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ed7826;
  padding: 2em 4em;
  overflow-y: auto; }

.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  background-color: rgba(0, 167, 233, 0.9);
  z-index: 999; }

.loader > svg {
  width: 100px;
  height: 100px; }

.loader .loaderText {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2em;
  font-size: 1.25em; }

.errorBoxWrapper {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all .6s;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center; }

.errorBox {
  position: fixed;
  width: calc(100% - 2rem);
  max-width: 1080px;
  height: 400px;
  max-height: calc(100% - 2rem);
  background: #eb1a41;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  text-align: center;
  border: 2px solid white;
  box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.5; }

.errorBox > span {
  display: block;
  width: 100%;
  text-align: center; }

.errorBox > svg {
  width: 60px;
  height: 60px;
  fill: white;
  margin-bottom: 1em; }

.errorText .small {
  font-size: .7em; }

.shopList {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0; }

.shopList > li {
  display: block;
  width: 33.333%;
  text-align: center; }

.shopList > li label {
  display: block; }

.shopList > li svg {
  height: 60px;
  filter: grayscale(1);
  opacity: .5;
  transition: all .3s; }

.shopList > li input[type="checkbox"] {
  opacity: 0;
  visibility: hidden; }

.shopList > li input[type="checkbox"]:checked + svg {
  filter: grayscale(0);
  opacity: 1; }

.privacyPolicy label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.privacyPolicy label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

.privacyPolicy label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee; }

.privacyPolicy label:hover input ~ .checkmark {
  background-color: #ccc; }

.privacyPolicy label input:checked ~ .checkmark {
  background-color: #2196F3; }

.privacyPolicy label .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

.privacyPolicy label input:checked ~ .checkmark:after {
  display: block; }

.privacyPolicy label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.contactCreated {
  font-size: 1.2rem;
  text-align: center;
  background-color: #0077cb;
  padding: 15px 10px;
  line-height: 1;
  border-radius: .5em; }

.iti {
  width: 100%;
  z-index: 2; }

.iti__country-list .iti__country {
  color: initial; }
