/* Adjusted */
body#qrCode #qrCodeView h1 {
  font-size: 1.5rem;
  line-height: 1.25;
}

body#qrCode #qrCodeView p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 450px;
  width: 100%;
}

body#qrCode #qrCodeView #qrcode {
    width: 100%;
    max-width:460px;
    padding: 2.5%;
    border-radius: 20px;
}

#qrcode img{
  border-radius: 10px
}

@media (max-width:768px){
body#qrCode #qrCodeView p {
  max-width: 200px;
}}

.button {
    transition: all .5s;
    filter: drop-shadow(0 5px 5px #126fa9);
}

.button:hover,.button:active {
    filter: drop-shadow(0 0px 0px #126fa9);
    transform: scale(.95);
}

input, select{
  transition: all .5s;
}

input:not([type='checkbox']):hover, input:not([type='checkbox']):focus, select:hover, select:focus{
  transform: scale(.99);
}

.outcome img{
  border-radius: 10px;
  filter: drop-shadow(0 5px 10px #126fa9);
}

a{color: #fff;text-decoration: none;transition: all .5s}
a:hover{opacity: .65}
strong{font-family: futura-demi, sans-serif;}

/*****************/
/* Do Epic Code! */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: futura-book;
  src: url("futura-book.woff");
}
@font-face {
  font-family: futura-medium;
  src: url("futura-medium.woff");
}
@font-face {
  font-family: futura-demi;
  src: url("futura-demi.woff");
}
@font-face {
  font-family: futura-bold;
  src: url("futura-bold.woff");
}

html,
body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: auto;
  font-family: futura-book, sans-serif;
  font-size: 16px;
}

body {
  opacity: 0;
}

header {
  width: 100%;
  padding: 10% 2% 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 60em) {
  header {
    padding: 50px 2% 0;
  }
}
header img {
  width: 30%;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}
@media (min-width: 40em) {
  header img {
    max-width: 150px;
  }
}

main {
  width: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

section {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hidden {
  display: none;
}

::-webkit-input-placeholder {
  color: #494845;
}

::-moz-placeholder {
  color: #494845;
}

:-ms-input-placeholder {
  color: #494845;
}

::-ms-input-placeholder {
  color: #494845;
}

::placeholder {
  color: #494845;
}

input,
select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: solid 5px #fff;
  border-radius: 10px;
  background-color: #fff;
  color: #0085ca;
  padding: 12px;
  font-size: 1rem;
  font-family: futura-book, sans-serif;
}
input.invalid::-webkit-input-placeholder, select.invalid::-webkit-input-placeholder {
  color: #e95023;
}
input.invalid::-moz-placeholder, select.invalid::-moz-placeholder {
  color: #e95023;
}
input.invalid:-ms-input-placeholder, select.invalid:-ms-input-placeholder {
  color: #e95023;
}
input.invalid::-ms-input-placeholder, select.invalid::-ms-input-placeholder {
  color: #e95023;
}
input.invalid::placeholder,
select.invalid::placeholder {
  color: #e95023;
}

select {
  background: url("icon-dropdown.png") calc(100% - 10px) 50%/30px auto no-repeat #fff;
  color: #0085ca;
}
select.invalid {
  color: #e95023;
}

input[type=checkbox] {
  background-color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: solid 5px #fff;
  margin: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

input[type=checkbox]:checked {
  background: #fff url("icon-check.png") no-repeat center;
  background-size: 70% auto;
}

.checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.checkbox label {
  margin-left: 1rem;
  font-size: 0.7rem;
}
@media (min-width: 40em) {
  .checkbox label {
    font-size: 0.9rem;
  }
}

.button {
  cursor: pointer;
}

.buttonWhite {
  outline: 0;
  color: #136fa9;
  background-color: #fff;
  border: 0;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  font-family: futura-book, sans-serif;
  font-size: 1rem;
  padding: 1rem 3rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.buttonNext {
  width: 15%;
  margin: 3rem auto;
  max-width: 80px;
}
@media (min-width: 60em) {
  .buttonNext {
    margin: 80px auto 10%;
  }
}

::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0085ca;
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0085ca;
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0085ca;
}

::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0085ca;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0085ca;
}

#buzzFeedQuiz {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  min-height: 100%;
}
#buzzFeedQuiz main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#buzzFeedQuiz .quiz {
  margin: auto 0 15%;
}
#buzzFeedQuiz .buzzQuestion {
  display: none;
  width: 100%;
  max-width: 650px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2rem auto 0;
  padding: 1.4rem;
  border-radius: 10px;
  background-color: #136fa9;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8rem;
}
@media (min-width: 40em) {
  #buzzFeedQuiz .buzzQuestion {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }
}
@media (min-width: 60em) {
  #buzzFeedQuiz .buzzQuestion {
    font-size: 2rem;
    line-height: 2.3rem;
    padding: 1.8rem;
  }
}
#buzzFeedQuiz .buzzQuestion:first-of-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#buzzFeedQuiz .buzzQuestion .answers {
  height: 110px;
  border: 2px solid #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 1rem 0;
  font-size: 1.2rem;
  line-height: 1.2rem;
}
@media (min-width: 40em) {
  #buzzFeedQuiz .buzzQuestion .answers {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 60em) {
  #buzzFeedQuiz .buzzQuestion .answers {
    height: 130px;
    font-size: 1.8rem;
    line-height: 2.1rem;
    margin: 1.5rem 0;
  }
}
#buzzFeedQuiz .buzzQuestion .answer {
  height: 100%;
  min-height: 100%;
  padding: 0 1rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#buzzFeedQuiz .buzzQuestion .answer:first-child {
  border-right: 2px solid #fff;
}
#buzzFeedQuiz video {
  max-width: 400px;
  margin: 0 auto;
}
#buzzFeedQuiz #backgrounds {
  display: none;
  width: 100%;
  min-height: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
#buzzFeedQuiz #backgrounds img {
  width: 100%;
  height: 100%;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
}
#buzzFeedQuiz #backgrounds img:first-child {
  display: block;
}
#buzzFeedQuiz .bkgd {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: none;
}
#buzzFeedQuiz .bkgd:nth-of-type(1) {
  display: block;
  opacity: 1;
}
#buzzFeedQuiz .progressBar {
  width: 90%;
  max-width: 600px;
  height: 10px;
  margin: auto auto 2rem;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}
#buzzFeedQuiz .progressBar .outer {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
#buzzFeedQuiz .progressBar .fill {
  width: 11.11%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
}

#welcome {
  background: url("bkgd-reg-port.jpg") top center/100% auto no-repeat #1aa8d2;
}
@media (min-width: 60em) {
  #welcome {
    background: url("bkgd-reg-port.jpg") top center/100% 100% no-repeat #1aa8d2;
  }
}
#welcome .message {
  color: #fff;
  padding: 30% 5%;
  margin: 25% auto 0;
  background-color: #136fa9;
  border-radius: 15px;
  font-size: 1.3rem;
  line-height: 1.6rem;
  text-align: center;
  max-width: 500px;
}
@media (min-width: 40em) {
  #welcome .message {
    margin: 100px auto 0;
    padding: 150px 5%;
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}

#languageSelect {
  background: url("bkgd-lang-port.jpg") top center/100% auto no-repeat #1aa8d2;
}
@media (orientation: landscape) {
  #languageSelect {
    background: url("bkgd-lang-land.jpg") top center/100% auto no-repeat #1aa8d2;
  }
}
#languageSelect header {
  padding: 21% 2% 0;
}
@media (min-width: 60em) {
  #languageSelect header {
    padding: 175px 0 0;
  }
}
#languageSelect header img {
  width: 80%;
  max-width: 500px;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}
#languageSelect main {
  width: 80%;
  height: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#languageSelect form {
  width: 100%;
  max-width: 500px;
  margin: 15% auto 5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 60em) {
  #languageSelect form {
    margin: 70px auto 5%;
  }
}

#dataCollection {
  background: url("bkgd-reg-port.jpg") top center/100% auto no-repeat #1aa8d2;
}
@media (min-width: 60em) {
  #dataCollection {
    background: url("bkgd-reg-port.jpg") top center/100% 100% no-repeat #1aa8d2;
  }
}
#dataCollection form {
  width: 100%;
  max-width: 600px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2rem auto 0;
  padding: 1.4rem;
  border-radius: 10px;
  background-color: #136fa9;
}
@media (min-width: 40em) {
  #dataCollection form {
    padding: 2rem;
  }
}
#dataCollection form div:nth-of-type(3),
#dataCollection form div:nth-of-type(4),
#dataCollection form div:nth-of-type(6) {
  margin-top: 0.6rem;
}
@media (min-width: 40em) {
  #dataCollection form div:nth-of-type(3),
#dataCollection form div:nth-of-type(4),
#dataCollection form div:nth-of-type(6) {
    margin-top: 0.8rem;
  }
}
#dataCollection .message {
  color: #fff;
  padding: 0 5px;
  margin: 0.4rem 0 0.6rem;
  font-size: 0.7rem;
}
@media (min-width: 40em) {
  #dataCollection .message {
    margin: 0.6rem 0 0.8rem;
    font-size: 0.9rem;
  }
}
#dataCollection .valError {
  margin: 2rem 0 1rem;
  background-color: #e95023;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  opacity: 0;
  display: none;
}

#imageRelease {
  background: url("bkgd-reg-port.jpg") top center/100% auto no-repeat #1aa8d2;
}
@media (min-width: 60em) {
  #imageRelease {
    background: url("bkgd-reg-port.jpg") top center/100% 100% no-repeat #1aa8d2;
  }
}
#imageRelease .outerWrap {
  width: 100%;
  max-width: 600px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2rem auto 0;
  padding: 1.4rem;
  border-radius: 10px;
  background-color: #136fa9;
  color: #fff;
  font-family: futura-book;
  line-height: 1rem;
  font-size: 0.7rem;
}
@media (min-width: 40em) {
  #imageRelease .outerWrap {
    font-size: 0.9rem;
    line-height: 1.2rem;
    padding: 2rem;
  }
}
#imageRelease .outerWrap .innerWrap {
  overflow-y: scroll;
  height: 300px;
  padding-right: 10px;
}
#imageRelease .outerWrap .innerWrap::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
#imageRelease .outerWrap .innerWrap::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
@media (min-width: 40em) {
  #imageRelease .outerWrap .innerWrap {
    height: 400px;
  }
}
#imageRelease a {
  color: #fff;
}
#imageRelease h1 {
  font-size: 1.2rem;
  font-family: futura-medium, sans-serif;
  margin: 0.5rem 0 0.5rem;
}
#imageRelease p {
  margin: 0 0 1rem;
}
#imageRelease .checkbox {
  margin: 1rem 0;
}
@media (min-width: 40em) {
  #imageRelease .checkbox {
    margin: 10px 0;
  }
}
#imageRelease .button {
  outline: 0;
  color: #136fa9;
  background-color: #fff;
  border: 0;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  font-family: futura-medium, sans-serif;
  font-size: 1rem;
  padding: 1rem 3rem;
  border-radius: 10px;
  margin: 1rem 0;
}
#imageRelease input[type=checkbox] {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  margin-top: 5px;
}

#qrCode {
  color: #fff;
  background: url("bkgd-quiz3-port.jpg") top center/100% 100% no-repeat #1aa8d2;
}
@media (min-width: 60em) {
  #qrCode {
    background: url("bkgd-quiz3-port.jpg") top center/100% 100% no-repeat #1aa8d2;
  }
}
#qrCode header {
  font-family: futura-book;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#qrCode header span {
  padding: 0 0.5rem;
  font-size: 1.05rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 5px;
  white-space: nowrap;
}
#qrCode header.thai {
  -webkit-transform: scale(0.85) translateY(10%);
      -ms-transform: scale(0.85) translateY(10%);
          transform: scale(0.85) translateY(10%);
}
#qrCode header.japanese {
  -webkit-transform: scale(0.9) translateY(10%);
      -ms-transform: scale(0.9) translateY(10%);
          transform: scale(0.9) translateY(10%);
}
#qrCode header.korean {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
#qrCode header.english {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
#qrCode header.spanish {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
#qrCode header.german {
  -webkit-transform: scale(0.75) translateY(15%);
      -ms-transform: scale(0.75) translateY(15%);
          transform: scale(0.75) translateY(15%);
}
#qrCode header.french {
  -webkit-transform: scale(0.7) translateY(15%);
      -ms-transform: scale(0.7) translateY(15%);
          transform: scale(0.7) translateY(15%);
}
#qrCode #quizOutcome {
  margin: 2rem auto;
  width: 100%;
  max-width: 400px;
}
#qrCode #quizOutcome .outcome {
  width: 85%;
  margin: 0 auto;
}
#qrCode #quizOutcome .outcome video {
  width: 100%;
  box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.2);
}
#qrCode #quizOutcome p {
  text-align: center;
  font-size: 1.5rem;
  margin: 2rem 0 0;
}
#qrCode #quizOutcome .copy1 {
  width: 90%;
  font-size: 1rem;
  line-height: 1.4rem;
  margin: 1rem auto 0;
}
@media (min-width: 60em) {
  #qrCode #quizOutcome .copy1 {
    margin: 1.5rem auto;
  }
}
#qrCode .buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 85%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1rem auto;
}
#qrCode .buttons.outcome {
  padding-top: 1rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#qrCode .buttons.genReg::before {
  content: "";
  margin: 0;
  visibility: hidden;
  width: 20%;
}
#qrCode .buttons #continueButton {
  width: 20%;
  margin: 0;
  padding: 0;
  max-width: 80px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
#qrCode .buttons #downloadButton {
  display: block;
  width: 20%;
  margin: 0;
  padding: 0;
  max-width: 80px;
}
#qrCode .buttons #downloadButton img {
  display: block;
  width: 100%;
}
#qrCode #qrCodeView {
  width: 100%;
  max-width: 500px;
  margin: 2rem auto;
}
#qrCode #qrCodeView .inner {
  padding: 3rem 1rem;
  border-radius: 10px;
  background: #136fa9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
#qrCode #qrCodeView #qrcode {
  width: 70%;
  max-width: 300px;
  margin: 2rem auto;
  border: 3px solid #fff;
  padding: 5%;
  border-radius: 20px;
}
#qrCode #qrCodeView #qrcode img,
#qrCode #qrCodeView #qrcode canvas {
  width: 100%;
}
#qrCode #qrCodeView h1 {
  color: #c9dc54;
  text-transform: uppercase;
  font-size: 2.2rem;
  font-family: futura-bold, sans-serif;
  line-height: 2.6rem;
  letter-spacing: 2px;
}
#qrCode #qrCodeView p {
  font-size: 1.6rem;
  line-height: 2rem;
  width: 80%;
  max-width: 250px;
  margin: 0 auto;
}
#qrCode #qrCodeView #backButton {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 2rem auto;
  display: block;
}
#qrCode #spinner {
  display: none;
}

.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid #fff;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: lds-hourglass 1.2s infinite;
          animation: lds-hourglass 1.2s infinite;
}

@-webkit-keyframes lds-hourglass {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    -webkit-transform: rotate(900deg);
            transform: rotate(900deg);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    -webkit-transform: rotate(1800deg);
            transform: rotate(1800deg);
  }
}

@keyframes lds-hourglass {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    -webkit-transform: rotate(900deg);
            transform: rotate(900deg);
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    -webkit-transform: rotate(1800deg);
            transform: rotate(1800deg);
  }
}
#spinner {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  opacity: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 900;
}
#spinner .message {
  padding: 10px;
  margin: 0px 0 100px;
  border-radius: 3px;
  text-align: center;
  line-height: 1.3rem;
}

.loader1 {
  width: 8em;
  height: 4em;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 6em 3em;
}

.loader1 .ball {
  width: 21%;
  height: 42%;
  border-radius: 50%;
  position: absolute;
  top: 0%;
}

.loader1 .ball:nth-child(1) {
  background-color: #fff;
  left: 0%;
  -webkit-animation: bounce 700ms 0ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  animation: bounce 700ms 0ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.loader1 .ball:nth-child(2) {
  background-color: #fff;
  left: 26.33333333%;
  -webkit-animation: bounce 700ms 175ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  animation: bounce 700ms 175ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.loader1 .ball:nth-child(3) {
  background-color: #fff;
  left: 52.66666667%;
  -webkit-animation: bounce 700ms 350ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  animation: bounce 700ms 350ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.loader1 .ball:nth-child(4) {
  background-color: #fff;
  left: 79%;
  -webkit-animation: bounce 700ms 525ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  animation: bounce 700ms 525ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

@-webkit-keyframes bounce {
  0% {
    top: 0%;
    height: 42%;
  }
  25% {
    height: 42%;
  }
  50% {
    top: 74.8%;
    height: 25.2%;
  }
  100% {
    top: 0%;
    height: 42%;
  }
}
@keyframes bounce {
  0% {
    top: 0%;
    height: 42%;
  }
  25% {
    height: 42%;
  }
  50% {
    top: 74.8%;
    height: 25.2%;
  }
  100% {
    top: 0%;
    height: 42%;
  }
}
.loader2 {
  width: 6.65em;
  height: 6.65em;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 1em 1em;
}

.loader2 .inner {
  position: relative;
  -webkit-animation: innerAnim 1100ms ease-in-out infinite;
  animation: innerAnim 1100ms ease-in-out infinite;
}

.loader2 .ball {
  width: 37%;
  height: 37%;
  border-radius: 50%;
  position: absolute;
}

.loader2 .ball:nth-child(1) {
  background-color: #fff;
  top: 0%;
  left: 31.5%;
}

.loader2 .ball:nth-child(2) {
  background-color: #fff;
  top: 31.5%;
  left: 63%;
}

.loader2 .ball:nth-child(3) {
  background-color: #fff;
  top: 63%;
  left: 31.5%;
}

.loader2 .ball:nth-child(4) {
  background-color: #fff;
  top: 31.5%;
  left: 0%;
}

@-webkit-keyframes innerAnim {
  0% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
    width: 5em;
    height: 5em;
    top: 0.825em;
    left: 0.825em;
  }
  50% {
    width: 6.65em;
    height: 6.65em;
    top: 0em;
    left: 0em;
  }
  100% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    width: 5em;
    height: 5em;
    top: 0.825em;
    left: 0.825em;
  }
}
@keyframes innerAnim {
  0% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
    width: 5em;
    height: 5em;
    top: 0.825em;
    left: 0.825em;
  }
  50% {
    width: 6.65em;
    height: 6.65em;
    top: 0em;
    left: 0em;
  }
  100% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    width: 5em;
    height: 5em;
    top: 0.825em;
    left: 0.825em;
  }
}
.loader3 {
  width: 9em;
  height: 4.5em;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 6em 2em;
}

.loader3 .ball {
  width: 14%;
  height: 28%;
  border-radius: 50%;
  position: absolute;
  top: 36%;
  left: 43%;
}

.loader3 .ball:nth-child(1) {
  background-color: #fff;
  -webkit-animation: spin 2000ms 0ms linear infinite;
  animation: spin 2000ms 0ms linear infinite;
}

.loader3 .ball:nth-child(2) {
  background-color: #fff;
  -webkit-animation: spin 2000ms 500ms linear infinite;
  animation: spin 2000ms 500ms linear infinite;
}

.loader3 .ball:nth-child(3) {
  background-color: #fff;
  -webkit-animation: spin 2000ms 1000ms linear infinite;
  animation: spin 2000ms 1000ms linear infinite;
}

.loader3 .ball:nth-child(4) {
  background-color: #fff;
  -webkit-animation: spin 2000ms 1500ms linear infinite;
  animation: spin 2000ms 1500ms linear infinite;
}

@-webkit-keyframes spin {
  0% {
    top: 36%;
    left: 43%;
    width: 14%;
    height: 28%;
    z-index: 1;
  }
  25% {
    left: 0%;
  }
  50% {
    top: 25.5%;
    left: 43%;
    width: 24.5%;
    height: 49%;
    z-index: 10;
  }
  75% {
    left: 80.75%;
  }
  100% {
    top: 36%;
    left: 43%;
    width: 14%;
    height: 28%;
    z-index: 1;
  }
}
@keyframes spin {
  0% {
    top: 36%;
    left: 43%;
    width: 14%;
    height: 28%;
    z-index: 1;
  }
  25% {
    left: 0%;
  }
  50% {
    top: 25.5%;
    left: 43%;
    width: 24.5%;
    height: 49%;
    z-index: 10;
  }
  75% {
    left: 80.75%;
  }
  100% {
    top: 36%;
    left: 43%;
    width: 14%;
    height: 28%;
    z-index: 1;
  }
}
/*# sourceMappingURL=app-hoka.css.map */

.btn-gallery {
  width: 100px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 20px;
}

@media screen and (min-width:320px),
screen and (min-width:481px),
screen and (min-width:641px){
  .btn-gallery {
    width: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 10px;
    margin-right: 20px;
  }
}

@media screen and (min-width:961px),
screen and (min-width:1025px),
screen and (min-width:1281px){
  .btn-gallery {
    width: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 20px;
    margin-right: 40px;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.modal {
  background-color: #136fa9 !important;
}

.modal p {
  text-align: center !important;
  margin-block-start: 0px !important;
  margin-block-end: 0px !important;
  margin-inline-start: 0px !important;
  margin-inline-end: 0px !important;
}

.modal img {
  width: 100%;
}

.modal .buttonNext {
  margin-top: 20px !important;
  padding-top: 0px !important;
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.button-cta {
    width: 300px;
    margin: 0px auto;
    margin-top: 50px;
}

.button-cta table {
    width: 100%;
}

.button-cta table tr td {
    text-align: center;
}

.button-cta table tr td .buttonNext {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
}