@font-face {
  font-family: 'Geomanist';
  src: url("../fonts/Geomanist-Medium.woff2") format("woff2"), url("../fonts/Geomanist-Medium.woff") format("woff"), url("../fonts/Geomanist-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Geomanist';
  src: url("../fonts/Geomanist-Thin.woff2") format("woff2"), url("../fonts/Geomanist-Thin.woff") format("woff"), url("../fonts/Geomanist-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Geomanist';
  src: url("../fonts/Geomanist-Book.woff2") format("woff2"), url("../fonts/Geomanist-Book.woff") format("woff"), url("../fonts/Geomanist-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Geomanist';
  src: url("../fonts/Geomanist-Regular.woff2") format("woff2"), url("../fonts/Geomanist-Regular.woff") format("woff"), url("../fonts/Geomanist-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Geomanist';
  src: url("../fonts/Geomanist-Bold.woff2") format("woff2"), url("../fonts/Geomanist-Bold.woff") format("woff"), url("../fonts/Geomanist-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Geomanist';
  src: url("../fonts/Geomanist-Black.woff2") format("woff2"), url("../fonts/Geomanist-Black.woff") format("woff"), url("../fonts/Geomanist-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Geomanist';
  src: url("../fonts/Geomanist-Ultra.woff2") format("woff2"), url("../fonts/Geomanist-Ultra.woff") format("woff"), url("../fonts/Geomanist-Ultra.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Geomanist';
  src: url("../fonts/Geomanist-Light.woff2") format("woff2"), url("../fonts/Geomanist-Light.woff") format("woff"), url("../fonts/Geomanist-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }
* {
  box-sizing: border-box; }

html,
body {
  height: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: "Geomanist", sans-serif;
  color: #eaf4ff;
  background: #010414; }

.app-global-beauty {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 550px;
  margin: 0 auto; }

.bg-global-beauty {
  position: relative; }
  .bg-global-beauty .bg-beauty {
    max-width: 100%;
    width: 100%;
    height: 100%; }

.header-global-beauty {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  top: 0;
  text-align: center;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 50px;
  max-width: 90%; }
  .header-global-beauty .brand .brand-title img {
    max-width: 90%;
    width: 100%;
    margin: 0 auto; }
  .header-global-beauty .brand .brand-sub {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: .6px; }

.first-country .progress-wrap {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  margin-top: 20px;
  padding: 0 20px; }
  .first-country .progress-wrap .back-btn img {
    width: 30px; }

.stepper-container {
  display: flex;
  align-items: center;
  justify-content: center; }

.stepper-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-top: 70px; }

.progress-track {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 6px;
  background: #ffffff;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 10px; }

.progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, #0072ff, #1F2970);
  transform: translateY(-50%);
  z-index: 2;
  width: 0;
  transition: width 2s ease-in-out;
  border-radius: 10px; }

.selectable {
  transition: 0.3s; }
  .selectable.selected {
    border: 2px solid #00d2ff;
    background: rgba(0, 210, 255, 0.2);
    box-shadow: 0 0 15px #00d2ff; }
    .selectable.selected .check-mark {
      display: block; }

.star-runner {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 80px;
  height: 80px;
  background: url(../images/progress-step.png) no-repeat center center;
  transition: left 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  background-size: cover;
  z-index: 10;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 2s ease-in-out;
  pointer-events: none; }

.stepper {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 3; }
  .stepper .step {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center; }
    .stepper .step.gold {
      background: #DCAF26;
      border: 4px solid #FFCC00; }
    .stepper .step.blue-dot {
      background: #05163a;
      border: 6px solid #ffffff; }
      .stepper .step.blue-dot::after {
        content: '';
        width: 10px;
        height: 10px;
        background: #1F2970;
        border-radius: 50%; }
    .stepper .step.completed {
      background: #1F2970;
      border-color: #ffffff; }

.voucher-card {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  background: #15226e;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 15px;
  color: white;
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
  transition: opacity 0.5s, transform 0.5s; }
  .voucher-card.thousand {
    left: -20px; }

.screen-switching {
  display: none;
  animation: fadeIn .18s ease-out; }
  .screen-switching.active {
    display: block;
    position: absolute;
    top: 30%;
    padding: 0 20px;
    max-width: 100%;
    width: 100%; }
  .screen-switching.screen-vote-list {
    top: 26%; }

@keyframes fadeIn {
  from {
    opacity: .5;
    transform: translateY(6px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.vote-panel {
  background: url("../images/bg-long.png") no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  border: 1px solid #ffffff59; }
  .vote-panel .panel-title {
    text-align: center;
    font-size: 16px;
    padding: 14px 18px;
    background: #0b1f4c;
    width: fit-content;
    margin: 0 auto;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    font-weight: 500;
    width: 80%; }

.flag-grid {
  padding: 20px 0; }
  .flag-grid ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; }
    .flag-grid ul li {
      list-style: none; }
      .flag-grid ul li img {
        max-width: 90%;
        margin-bottom: 10px; }
      .flag-grid ul li span {
        color: #fff;
        text-transform: uppercase;
        font-size: 10px; }

.flag-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform .12s ease, opacity .12s ease; }
  .flag-card:active {
    transform: scale(0.98); }
  .flag-card.disabled {
    opacity: .35;
    cursor: not-allowed;
    filter: grayscale(1); }
  .flag-card .flag {
    width: 58px;
    height: 44px;
    border-radius: 14px;
    background: #fff;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25); }
  .flag-card .flag-label {
    font-size: 11px;
    text-align: center;
    opacity: .95;
    line-height: 1.1; }

.btn-journey {
  cursor: pointer;
  margin-top: 20px; }
  .btn-journey:disabled {
    opacity: .45;
    cursor: not-allowed; }
  .btn-journey img {
    max-width: 100%;
    width: 100%; }
  .btn-journey.big {
    padding: 16px 18px;
    font-size: 14px; }
  .btn-journey.mid {
    width: auto;
    padding: 12px 18px;
    font-size: 13px; }
  .btn-journey.primary {
    color: #06203f;
    background: radial-gradient(circle at 30% 30%, #dfffff 0%, #86ddff 35%, #3fa2ff 72%, #2d6bff 100%);
    box-shadow: 0 18px 55px rgba(0, 160, 255, 0.28); }
  .btn-journey.ghost {
    color: #eaf4ff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px); }

.pill-row {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 20px; }
  .pill-row.two {
    gap: 12px; }
  .pill-row .pill {
    flex: 1;
    border-radius: 999px;
    padding: 10px 12px 8px 12px;
    font-weight: 600;
    font-size: 13px;
    color: #04318F;
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center; }
    .pill-row .pill.disabled {
      opacity: 0.5;
      pointer-events: none; }
    .pill-row .pill.light {
      background: rgba(255, 255, 255, 0.92);
      color: #0b2b55;
      border-color: rgba(255, 255, 255, 0.9); }

.country-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: -35px; }
  .country-badge .flag-big {
    width: 80px;
    height: 80px; }
    .country-badge .flag-big img {
      max-width: 100%;
      width: 70px;
      border-radius: 50%;
      height: 70px;
      object-fit: cover;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center; }
  .country-badge .country-name {
    background: url("../images/dynamic-lift.png") no-repeat center center;
    background-size: cover;
    color: #fff;
    border: 1px solid rgba(90, 220, 255, 0.35);
    border-radius: 50px;
    padding: 8px 30px 4px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .6px;
    width: fit-content;
    text-align: center; }

.q-title {
  text-align: center;
  font-size: 20px;
  margin: 16px 10px 16px; }

.answer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 30px; }
  .answer-list .answer {
    padding: 14px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    text-align: center;
    font-weight: 800;
    cursor: pointer;
    user-select: none; }
    .answer-list .answer:active {
      transform: scale(0.99); }
    .answer-list .answer.selected {
      background: rgba(90, 220, 255, 0.18);
      border-color: rgba(90, 220, 255, 0.42);
      box-shadow: 0 0 20px rgba(90, 220, 255, 0.18); }
  .answer-list .list-question {
    background: #091a48;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    border-radius: 50px;
    font-size: 18px;
    border: 1px solid #ffffff61;
    font-weight: 500;
    color: #fff; }
    .answer-list .list-question.blueList1 {
      background: linear-gradient(to bottom, #11265a 20%, #112d74 100%); }
    .answer-list .list-question.blueList2 {
      background: linear-gradient(to left, #13338f 20%, #1f4cab 100%); }
    .answer-list .list-question.blueList3 {
      background: linear-gradient(to left, #13338f 20%, #1f4cab 100%); }

.big-head-sub {
  width: 70%;
  margin: 0 auto;
  padding-top: 25px; }
  .big-head-sub img {
    max-width: 100%;
    width: 100%; }

.toast-card {
  margin: 18px auto 18px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.92);
  color: #04318F;
  border-radius: 14px;
  padding: 14px 14px;
  text-align: center;
  font-size: 22px; }
  .toast-card .toast-points {
    font-size: 30px;
    font-weight: bold; }

.panel-voucher-panel {
  text-align: center;
  padding: 20px 15px; }
  .panel-voucher-panel .voucher-chip {
    width: 70%;
    margin: 0 auto; }
  .panel-voucher-panel .voucher-text {
    color: #fff;
    font-size: 22px;
    padding: 20px 0; }
  .panel-voucher-panel .voucher-amount {
    margin-top: 10px;
    font-size: 42px;
    font-weight: 1000;
    letter-spacing: 1px;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
    color: #d9f4ff; }
  .panel-voucher-panel .small-muted {
    margin-top: 10px;
    font-size: 12px;
    opacity: .85; }

.btn-primary-back-to-home,
.btn-primary-vote,
.btn-primary-receive-reward {
  background: transparent;
  border: none; }

#btnBackHomeFromClaimed {
  padding-bottom: 15px; }

.vote-flag .back-to-home-page {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  margin-top: 20px;
  padding: 0 20px; }
  .vote-flag .back-to-home-page .back-btn img {
    width: 30px; }

.btn-primary-vote {
  margin-top: 15px; }

.vote-list {
  margin: 25px 15px 25px 40px; }
  .vote-list .vote-bg-sub {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 8px 0;
    margin-bottom: 10px;
    border-radius: 50px; }
    .vote-list .vote-bg-sub:nth-child(1), .vote-list .vote-bg-sub:nth-child(2), .vote-list .vote-bg-sub:nth-child(3) {
      background: #94641E;
      background: linear-gradient(120deg, #17214a 20%, #17214a 100%); }
    .vote-list .vote-bg-sub:nth-child(4) {
      background: #1346b2bf; }
    .vote-list .vote-bg-sub:nth-child(5) {
      background: #1346b2bf; }
    .vote-list .vote-bg-sub:nth-child(6) {
      background: #1346b2bf; }
    .vote-list .vote-bg-sub.active {
      background: linear-gradient(to right, #94641e 0%, #fff2db 100%); }
    .vote-list .vote-bg-sub .vote-title {
      position: absolute;
      top: 50%;
      left: -20px;
      transform: translateY(-50%); }
      .vote-list .vote-bg-sub .vote-title img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover; }
    .vote-list .vote-bg-sub .vote-sub {
      padding-left: 70px; }
      .vote-list .vote-bg-sub .vote-sub h1 {
        font-size: 16px;
        margin: 0;
        padding: 0; }
      .vote-list .vote-bg-sub .vote-sub span {
        font-size: 14px; }
    .vote-list .vote-bg-sub.selected {
      outline: 2px solid rgba(255, 211, 109, 0.9);
      border-radius: 16px; }

#screen-question1 .list-question .selected {
  filter: brightness(1.08);
  transform: scale(0.99); }

#screen-results {
  top: 26%; }

.rank-list .rank-list-vote {
  padding: 20px 15px;
  margin: 0; }
  .rank-list .rank-list-vote li {
    list-style: none;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 20px;
    justify-content: space-between;
    border-radius: 50px;
    border: 1px solid #ffffff61; }
    .rank-list .rank-list-vote li .numerical-order {
      font-size: 20px;
      font-weight: 500; }
    .rank-list .rank-list-vote li .ranking-info {
      font-size: 14px;
      font-weight: 500; }
    .rank-list .rank-list-vote li .ranking-img img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 50%; }
    .rank-list .rank-list-vote li .poin-ranking {
      font-weight: 500;
      background: #CCB615;
      border-radius: 20px;
      padding: 4px 16px;
      width: 80px;
      text-align: center;
      color: #fff;
      border-radius: 20px; }
    .rank-list .rank-list-vote li:nth-child(1), .rank-list .rank-list-vote li:nth-child(2), .rank-list .rank-list-vote li:nth-child(3) {
      background: linear-gradient(120deg, #17214a 20%, #17214a 100%); }
    .rank-list .rank-list-vote li:nth-child(4) {
      background: #1346b2bf; }
    .rank-list .rank-list-vote li:nth-child(5) {
      background: #1346b2bf; }
    .rank-list .rank-list-vote li:nth-child(6) {
      background: #1346b2bf; }
    .rank-list .rank-list-vote li.active {
      background: linear-gradient(to right, #94641e 0%, #fff2db 100%); }
.rank-list .rank-list-ghost {
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #04318F;
  font-weight: 500;
  border: none;
  padding: 14px 30px 12px 30px;
  margin-top: 20px;
  width: 100%;
  font-size: 16px; }

.overlay-overlay-full {
  position: fixed !important;
  inset: 0;
  display: none;
  place-items: center;
  background: #090b20e0;
  z-index: 50;
  top: 0 !important;
  inset: 0; }
  .overlay-overlay-full.active {
    display: grid; }
  .overlay-overlay-full .popup-list-item {
    text-align: center;
    position: relative; }
    .overlay-overlay-full .popup-list-item img {
      width: 100%; }
    .overlay-overlay-full .popup-list-item .title-list-item {
      position: absolute;
      margin-top: 30px;
      left: 50%;
      transform: translate(-50%, 0);
      top: 50%;
      max-width: 100%;
      width: 100%; }
      .overlay-overlay-full .popup-list-item .title-list-item .popup-highlight {
        margin-top: 8px;
        font-weight: bold;
        font-size: 40px;
        color: #CDB714; }
      .overlay-overlay-full .popup-list-item .title-list-item .popup-note {
        margin-top: 8px;
        line-height: 1.3;
        color: #0F3DAC;
        font-size: 20px;
        font-weight: 500;
        padding: 0 15px; }
  .overlay-overlay-full .ghost-mid {
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #04318F;
    font-weight: 500;
    border: none;
    padding: 14px 30px 12px 30px;
    margin-top: 10px;
    width: 280px;
    font-size: 18px; }
  .overlay-overlay-full .popup-gift-item {
    text-align: center;
    position: relative; }
    .overlay-overlay-full .popup-gift-item img {
      width: 100%; }
    .overlay-overlay-full .popup-gift-item .title-gift-item {
      position: absolute;
      top: 50%;
      margin-top: 90px;
      transform: translateY(-50%);
      width: 100%; }
      .overlay-overlay-full .popup-gift-item .title-gift-item .gift-note {
        font-weight: bold;
        font-size: 40px;
        color: #CDB714; }
      .overlay-overlay-full .popup-gift-item .title-gift-item .gift-points {
        color: #04318F;
        font-size: 30px;
        font-weight: bold; }
      .overlay-overlay-full .popup-gift-item .title-gift-item .gift-image img {
        width: 30%;
        height: auto;
        margin: 10px auto; }
      .overlay-overlay-full .popup-gift-item .title-gift-item .gift-vote {
        color: #0F3DAC;
        font-size: 25px;
        margin-top: 10px; }
      .overlay-overlay-full .popup-gift-item .title-gift-item .gift-vote-top1 {
        line-height: 1.3;
        color: #0F3DAC;
        font-size: 25px;
        font-weight: 500; }
  .overlay-overlay-full .gift-mid {
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #04318F;
    font-weight: 500;
    border: none;
    padding: 14px 30px 12px 30px;
    margin-top: 10px;
    width: 280px;
    font-size: 18px; }

/* flags above buttons/pills */
#countryGrid {
  position: relative;
  z-index: 50; }
  #countryGrid ul li {
    position: relative;
    z-index: 60;
    pointer-events: auto; }
    #countryGrid ul li img,
    #countryGrid ul li span {
      pointer-events: none; }
    #countryGrid ul li .flag-thumb {
      width: 100%;
      display: flex;
      justify-content: center; }
      #countryGrid ul li .flag-thumb img {
        width: auto;
        height: 70px;
        object-fit: cover;
        border: 1px solid transparent;
        box-sizing: border-box;
        transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
    #countryGrid ul li.is-selected .flag-thumb img {
      border-color: #fff;
      box-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
      transform: scale(1.03);
      padding: 4px; }
    #countryGrid ul li.shake {
      animation: gbShake .25s ease-in-out; }

/* keep button & pills below flags */
#btnStartJourney,
.pill-row {
  position: relative;
  z-index: 10; }

@keyframes gbShake {
  0% {
    transform: translateX(0); }
  20% {
    transform: translateX(-2px); }
  40% {
    transform: translateX(2px); }
  60% {
    transform: translateX(-2px); }
  80% {
    transform: translateX(2px); }
  100% {
    transform: translateX(0); } }
#btnContinueJourney.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none; }

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