@font-face {
  font-family: "Prudential";
  src: url("./../assets/fonts/PrudentialModern-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "PrudentialBold";
  src: url("./../assets/fonts/PrudentialModern-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "PrudentialItalic";
  src: url("./../assets/fonts/PrudentialModern-BoldItalic.ttf")
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "colleges";
  src: url("./../assets/fonts/colleges.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "collegeb";
  src: url("./../assets/fonts/collegeb.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "EurostileLT";
  src: url("./../assets/fonts/EurostileLTStd_Ex2.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "EurostileLTBold";
  src: url("./../assets/fonts/EurostileLTStd_BoldEx2.ttf") format("truetype");
  font-display: swap;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  /* width: 30px;
  height: 30px; */
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  -webkit-transform: translateY(-0.075em);
  transform: translateY(-0.075em);
  position: relative;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-transition: 120ms border ease-in-out;
  transition: 120ms border ease-in-out;
}

input[type="checkbox"]::before {
  content: "";
  position: relative;
  /* width: 20px;
  height: 20px; */
  width: 12px;
  height: 12px;
  -webkit-clip-path: polygon(
    14% 44%,
    0 65%,
    50% 100%,
    100% 16%,
    80% 0%,
    43% 62%
  );
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transition: 120ms -webkit-transform ease-in-out;
  transition: 120ms -webkit-transform ease-in-out;
  transition: 120ms transform ease-in-out;
  transition: 120ms transform ease-in-out, 120ms -webkit-transform ease-in-out;
  /* -webkit-box-shadow: inset 1em 1em #fff;
  box-shadow: inset 1em 1em #fff; */
  -webkit-box-shadow: inset 1em 1em #000;
  box-shadow: inset 1em 1em #000;
}

input[type="checkbox"]:checked::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

body {
  margin: 0;
  font-family: Prudential !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

#root {
  width: 100vw;
  height: 100vh;
  bottom: 0;
  position: fixed;
  --horizontalSpace: calc(var(--vh, 1vh) * 15);
  --verticalSpace: calc(var(--vh, 1vh) * 23);
  --totalWidth: calc(var(--vw, 1vw) * 50);
}

.fontHolder {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fontHolder .fontHolder_a {
  font-family: colleges !important;
}

.fontHolder .fontHolder_b {
  font-family: EurostileLT !important;
}

.fontHolder .fontHolder_c {
  font-family: EurostileLTBold !important;
}

.fontHolder .fontHolder_d {
  font-family: collegeb !important;
}

.full-screen {
  position: absolute;
  width: 100%;
  height: 100%;
}

.background {
  /* background-image: url(./../assets/images/style/bg.png); */
  background-image: url(./../assets/images/style/bg_image.webp);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: -1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  background-position: top;
}

.background div {
  background-image: url(./../assets/images/style/bg_logo.png);
  background-size: contain;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  width: 60%;
  height: 30%;
  bottom: 0%;
  right: 0%;
}

.background.bottomMost {
  z-index: -100;
}

.background.alt {
  background-image: url(./../assets/images/style/bg_blend.png);
  background-size: 100% 100%;
}

.background.alt div {
  display: none;
}

.elementDisabled {
  pointer-events: none !important;
}

.ui {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 50;
}

.ui .view {
  width: 100%;
  height: 100%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.ui .view .view-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ui .view.permanentlyDisabled {
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
  opacity: 0;
  pointer-events: none;
}

.ui .view.disabled {
  opacity: 0;
  pointer-events: none;
}

.ui .photo {
  position: fixed;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  left: 0;
}

.ui .qrcode {
  /* position: fixed; */
  /* width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0; */
  top: 300px;
  left: 35px;
  background-repeat: no-repeat;
}

.ui .photoBackground {
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ui .cardCont {
  width: 60%;
}

.ui .cardCont .card {
  -o-object-fit: contain;
  object-fit: contain;
}

.ui .back {
  /* background-image: url(./../assets/images/style/back.png); */
  background-image: url(./../assets/images/style/back.webp);

  background-size: contain;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  position: absolute;
  width: 10%;
  height: 10%;
  top: 2%;
  right: 2%;
}

.ui .back.disabled {
  opacity: 0;
  pointer-events: none;
}

.ui #background_select .back {
  left: 2%;
}

.ui .logo {
  background-image: url(./../assets/images/style/logo.png);
  background-size: contain;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  position: absolute;
  width: 10%;
  height: 10%;
  top: 2%;
  left: 2%;
}

.ui .logo.alt {
  background-image: url(./../assets/images/style/logo_alt.png);
}

.ui #background_select .logo.alt {
  opacity: 0;
  pointer-events: none;
}

.ui .inputfield {
  font-family: Prudential !important;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90%;
  height: 40px;
  font-size: 19px;
  color: #333;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  padding: 0;
  /* -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all .5s;
  transition: all .5s; */
  outline: none;
  /* -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; */
  /* text-align-last: center; */
  background-repeat: no-repeat;
  background-size: auto 60%;
  background-position: 2% 50%;
  appearance: none;
  /* display: -webkit-box; */
  border: solid 2px #fff;
}

.ui .inputfield:hover {
  outline: none;
  background-position: 98% 50%;
}

.ui .inputfield:focus {
  outline: none;
  background-position: 150% 50%;
}

.ui .dropdown {
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  text-align: -moz-center;
  text-align: -webkit-center;
  text-indent: calc(40%);
}

.ui .dropdownWrapper {
  position: relative;
}

.ui .dropdownWrapper .dropdown {
  opacity: 0;
  position: absolute;
  height: 100% !important;
  top: 0;
}

.ui .dropdownWrapper .dropdownValue {
  pointer-events: none;
  color: #cccccc;
}

.ui .input-error {
  border: solid 2px #ff0000;
}

.ui .small-popup {
  position: relative;
  background-color: #001f45d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 82%;
  max-width: 500px;
  height: 50%;
  border-radius: 10px;
}

.ui .small-popup.disabled {
  opacity: 0;
  pointer-events: none;
}

.ui .small-popup .small-popup-title {
  height: 8%;
  margin-bottom: 2%;
  /* background-image: url(./../assets/images/style/join_the_team_text.png); */
  font-size: 21px;
  color: white;
  font-weight: bold;
}

.ui .small-popup .small-popup-close {
  position: absolute;
  width: 10%;
  height: 10%;
  top: 0%;
  right: 0%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  cursor: pointer;
  background-image: url(./../assets/images/style/close_btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.ui .small-popup .small-popup-container {
  color: #fff;
  width: 85%;
  height: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ui .popup {
  position: relative;
  background-color: #007ac2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 80%;
  max-width: 500px;
  height: 80%;
}

.ui .popup .popup-close {
  position: absolute;
  /* width: 10%;
  height: 10%;
  top: 0%;
  right: 0%; */
  width: 4%;
  height: 4%;
  top: 4%;
  right: 4%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  cursor: pointer;
  /* background-image: url(./../assets/images/style/close_btn.png); */
  background-image: url(./../assets/images/style/CloseButton.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.ui .popup .popup-container {
  color: #fff;
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ui .logo_text {
  background-image: url(./../assets/images/style/logo_text.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 60%;
  height: 20%;
}

.ui .double_logo {
  background-image: url(./../assets/images/style/double_logo.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 60%;
  height: 20%;
}

.ui .item {
  width: 80px;
  height: 80px;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.ui .item .itemContent {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.ui .item .itemContent .itemContentInner {
  width: 92%;
  height: 92%;
  background-color: #fff;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 80% auto;
  background-position: center;
}

.ui .item .itemContent:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.ui .item.selected .itemContent {
  background-color: #e01b38;
  transform: scale(1.12);
}

.ui .dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
}

.ui .dots div {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 2px;
  border-radius: 100%;
  background-color: #fff;
  -webkit-animation: dot-pulse 1.4s infinite ease-in-out both;
  animation: dot-pulse 1.4s infinite ease-in-out both;
}

.ui .dots .pulse1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.ui .dots .pulse2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes dot-pulse {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes dot-pulse {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.ui .video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.ui .button {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  cursor: pointer;
}

.ui .button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.ui .button.off {
  opacity: 0;
  pointer-events: none;
}

.ui #opening_1 .start-button {
  display: none;
}

.ui #opening_2 .view-container {
  height: 90%;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  color: #ffffff;
}

.ui #opening_2 .view-container .start_text {
  /* background-image: url(./../assets/images/style/start_text.png); */
  /* display: flex; */
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80%;
  position: relative;
  margin-top: 1rem;
}

.start_text > p {
  line-height: 1.6;
  font-size: 1.3rem;
  font-family: inherit;
}

.start_text p:not(:first-child) {
  margin: 1.8rem 0 1.5rem;
}

.ui #opening_2 .view-container .start_text_2 {
  width: 95%;
  font-family: inherit;
  font-size: 0.65rem;
}

.ui #opening_2 .view-container .build-button {
  position: relative;
  width: 65%;
  height: 7%;
  bottom: 2%;
  color: #ffffff;
  background: #007ac2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  font-family: inherit;
}

.ui #costume_select .view-container {
  bottom: 0;
  height: 40%;
  position: absolute;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 100;
}

.ui #costume_select .view-container .items {
  width: 96%;
  height: 60%;
  max-width: 800px;
  max-height: 80px;
  margin-bottom: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  bottom: 30%;
  position: absolute;
  z-index: 200;
}

.ui #costume_select .view-container .items .item {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.ui #costume_select .view-container .items .item .itemContent {
  border-radius: 50%;
}

.ui
  #costume_select
  .view-container
  .items
  .item
  .itemContent
  .itemContentInner {
  background-image: url(./../assets/images/costumes/1.png);
}

.ui
  #costume_select
  .view-container
  .items
  .item.selected
  .itemContent
  .itemContentInner {
  width: 85%;
  height: 85%;
}

.ui #costume_select .view-container .continue-button {
  position: relative;
  background-image: url(./../assets/images/style/photo_btn.png);
  width: 40%;
  height: 16%;
  max-width: 500px;
  bottom: 5%;
}

.ui #costume_confirm .view-container {
  bottom: 22px;
  height: 40%;
  position: absolute;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ui #costume_confirm .view-container .retake-button {
  position: relative;
  /* background-image: url(./../assets/images/style/retake_photo_btn.png); */
  /* background-position-y: bottom; */
  width: 50%;
  height: 16%;
  max-width: 500px;
  bottom: 7%;
  background-color: #001f4599;
  font-size: 20px;
  color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
}

.ui #costume_confirm .view-container .continue-button {
  position: relative;
  /* background-position-y: top; */
  /* background-image: url(./../assets/images/style/continue_btn.png); */
  width: 50%;
  height: 16%;
  max-width: 500px;
  bottom: 1%;
  max-width: 500px;
  bottom: 1%;
  background-color: #007ac2;
  font-size: 20px;
  color: white;
  border: none;
  font-family: inherit;
}

.ui #user_data .view-container .inputfield {
  height: 16%;
  margin-bottom: 5%;
  width: 100%;
  font-size: 18px;
  color: #000000;
}

.ui #user_data .view-container .inputfield::placeholder {
  color: #cccccc;
}

.ui #user_data .view-container .continue-button {
  position: relative;
  /* background-image: url(./../assets/images/style/continue_btn.png); */
  width: 77%;
  height: 17%;
  max-width: 500px;
  top: 4%;
  background-color: #007ac2;
  font-size: 20px;
  color: white;
  border: none;
  font-family: inherit;
}

.ui #background_select .view-container {
  bottom: 40px !important;
  height: 30%;
  position: absolute;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ui #background_select .view-container .title {
  /* position: relative;
  background-image: url(./../assets/images/style/choose_background_text.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 400px;
  width: 80%; */
  height: 17%;
  color: white;
  font-size: 20px;
  font-family: "PrudentialBold";
}

.ui #background_select .view-container .items {
  width: 95%;
  height: 60%;
  max-width: 500px;
  height: 90px;
  margin-bottom: 6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.ui #background_select .view-container .items .item {
  width: 80px;
  height: 80px;
}

.ui #background_select .view-container .items .item .itemContent {
  border-radius: 50%;
}

.ui
  #background_select
  .view-container
  .items
  .item
  .itemContent
  .itemContentInner {
  background-size: cover !important;
}

.ui
  #background_select
  .view-container
  .items
  .item.selected
  .itemContent
  .itemContentInner {
  width: 85%;
  height: 85%;
}

.ui #background_select .view-container .continue-button {
  position: relative;
  /* background-image: url(./../assets/images/style/continue_btn.png); */
  width: 55%;
  height: 22%;
  max-width: 500px;
  bottom: 2%;
  background-color: #007ac2;
  font-size: 20px;
  color: white;
  border: none;
  font-family: inherit;
}

.ui #user_result .view-container {
  overflow-y: scroll;
  margin-bottom: 1rem;
}

.ui #user_result .popup {
  background: none;
  width: 100%;
  height: 100%;
}

.ui #user_result .popup .popup-container {
  -ms-flex-pack: distribute;
  justify-content: space-between;
  height: 100%;
  max-width: 320px;
}

.ui #user_result .popup .popup-container .cardCont {
  width: unset;
  height: 40%;
  margin-top: 15%;
}

.ui #user_result .popup .popup-container .title {
  position: relative;
  /* background-image: url(./../assets/images/style/welcome_to_team_text.png); */
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80%;
  height: 10%;
  margin-top: 5%;
  margin-bottom: 5%;
}

.ui #user_result .popup .popup-container .title p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ui #user_result .popup .popup-container .title span {
  font-size: 0.78rem;
  display: -webkit-inline-box;
}

.ui #user_result .popup .popup-container .inputfield {
  /* height: 50px;
  width: 80%;
  font-size: 20px; */
  height: 35px;
  width: 80%;
  font-size: 14px;
  color: #000000;
  margin: 0.5rem 0;
  padding: 0.85rem;
  text-align: left;
}

.ui #user_result .popup .popup-container .inputfield::placeholder {
  color: #cccccc;
}

.ui #user_result .popup .popup-container .rows {
  width: 80%;
  height: 20%;
  min-width: 280px;
  margin-top: 5%;
  margin-bottom: 5%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ui #user_result .popup .popup-container .rows .row {
  width: 100%;
  /* height: 48%; */
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ui #user_result .popup .popup-container .rows .row .terms_check_text {
  position: relative;
  /* background-image: url(./../assets/images/style/terms_check_text.png); */
  font-size: 0.6rem;
  line-height: 1.2;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% - 40px);
  height: 100%;
  cursor: pointer;
  font-family: inherit;
}

.ui #user_result .popup .popup-container .rows .row .terms_check_text a,
.ui #user_result .popup .popup-container .rows .row .subscribe_check_text a {
  color: #fff;
}
.ui
  #user_result
  .popup
  .popup-container
  .rows
  .row
  .subscribe_check_text
  a#contact_btn,
.ui
  #user_result
  .popup
  .popup-container
  .rows
  .row
  .terms_check_text
  a#terms_btn {
  display: inline-block;
  text-decoration: underline;
  cursor: pointer;
}
.ui #user_result .popup .popup-container .rows .row .checked_text {
  font-size: 0.7rem !important;
  font-family: "PrudentialBold";
}

.ui
  #user_result
  .popup
  .popup-container
  .rows
  .row
  .terms_check_text
  .innerBlock {
  position: absolute;
  width: 33%;
  height: 100%;
  opacity: 0.5;
}

.ui
  #user_result
  .popup
  .popup-container
  .rows
  .row
  .terms_check_text
  .innerBlock.block1 {
  left: 0%;
  width: 28%;
}

.ui
  #user_result
  .popup
  .popup-container
  .rows
  .row
  .terms_check_text
  .innerBlock.block2 {
  left: 30%;
  width: 20%;
}

.ui
  #user_result
  .popup
  .popup-container
  .rows
  .row
  .terms_check_text
  .innerBlock.block3 {
  right: 0%;
  width: 45%;
}

.ui
  #user_result
  .popup
  .popup-container
  .rows
  .row
  .terms_check_text
  .innerBlock.block4 {
  display: none;
  width: 0%;
  height: 0%;
}

.ui #user_result .popup .popup-container .rows .row .subscribe_check_text {
  position: relative;
  /* background-image: url(./../assets/images/style/subscribe_check_text.png); */
  font-size: 00.6rem;
  line-height: 1.2;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(100% - 40px);
  height: 100%;
}

.ui #user_result .popup .popup-container .rows .row.big {
  /* height: 60%; */
  height: auto;
  margin-bottom: 5%;
}

.ui #user_result .popup .popup-container .rows .row.animated-border {
  border: 1.5px solid;
  padding: 5.6px;
  border-radius: 2px;
  box-shadow: 0px 0px 8px 3px #c41632, inset 0 0 4px 3px #c41632;
}

.ui
  #user_result
  .popup
  .popup-container
  .rows
  .row.animated-border
  input[type="checkbox"],
.ui #user_result .popup .popup-container .rows .row input[type="checkbox"] {
  background-color: #ffffff;
}

.ui #user_result .popup .popup-container .finish-button {
  position: relative;
  /* background-image: url(./../assets/images/style/finish_btn.png); */
  background-color: #007bc3;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 80%;
  height: 7%; */
  width: 50%;
  height: 5.5%;
  max-width: 500px;
  /* bottom: 1%; */
  bottom: -6%;
  font-size: 0.96rem;
  margin-bottom: 2rem;
}

.ui #user_result .small-popup {
  position: absolute;
  background-color: rgba(0, 31, 69, 0.95);
}

.ui #user_result .small-popup .small-popup-title {
  display: none;
}

.ui #user_result .small-popup .small-popup-container .text {
  position: relative;
  /* background-image: url(./../assets/images/style/finish_popup_text.png); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 95%;
  height: 80%;
  margin-bottom: 5%;
}

.ui #user_result .small-popup .small-popup-container .replay_button {
  position: relative;
  /* background-image: url(./../assets/images/style/play_again_button.png); */
  width: 60%;
  height: 20%;
  max-width: 500px;
  bottom: 2%;
}

.ui #terms_and_conditions .popup {
  /* background: none; */
  background-color: #007bc3;
  width: 85%;
  height: 85%;
  padding: 0 1rem;
}

.ui #terms_and_conditions .terms_text {
  position: relative;
  /* background-image: url(./../assets/images/style/terms_text.png); */
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.ui #terms_and_conditions .terms_text p {
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.ui #terms_and_conditions .terms_text span {
  font-size: 0.9rem;
  line-height: 1.4;
}

.ui #terms_and_conditions .terms_text span:nth-of-type(1) {
  margin-bottom: 1rem;
}

.ui #terms_and_conditions .terms_text span:last-child {
  font-size: 0.63rem !important;
  text-align: center;
  margin-top: 2rem;
}

#contact_popup .view-container .popup {
  width: 90%;
  height: 60%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#contact_popup .view-container {
  justify-content: flex-start;
  top: 20%;
}
#contact_popup .view-container .popup-container p {
  font-weight: bold;
  align-self: flex-start;
  margin: 0.5rem 0;
}
#contact_popup .view-container .popup-container span {
  font-size: 0.9rem;
  color: #ffffffc7;
}

.ui .view#finish {
  /* overflow-y: scroll;
  overflow-x: hidden; */
  /* overflow: auto; */
}

.ui #finish .view-container {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100%;
  width: 60%;
  min-width: 350px;
  max-width: 500px;
}

.ui #finish .view-container .title {
  position: relative;
  /* background-image: url(./../assets/images/style/welcome_to_team_text2.png); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 75%;
  height: 5%;
  top: 4%;
  position: absolute;
  text-transform: uppercase;
  font-family: "PrudentialBold";
  color: #ffffff;
  text-align: center;
}

.ui #finish .view-container .cardCont {
  margin-top: 20%;
  /* height: 3.375in;
  width: 2.125in; */
  height: 50%;
  width: 100%;
}

.ui #finish .view-container .finish_text_1 {
  position: relative;
  /* background-image: url(./../assets/images/style/finish_text_1_new.png); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 78%;
  /* height: 110%; */
  /* margin-top: -2%;  */
  margin-top: 2px;
  /* margin-bottom: 4%; */
  color: #ffffff;
  text-align: center;
  font-family: inherit;
  letter-spacing: 0.25px;
}

.ui #finish .view-container .finish_text_1 p:first-child {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}
.ui #finish .view-container .finish_text_1 p span {
  font-family: "PrudentialBold";
}

.ui #finish .view-container .print_button {
  position: relative;
  background-image: url(./../assets/images/style/Print_btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.7in;
  height: 30%;
  /* margin-top: 1%; */
  cursor: pointer;
  width: 60%;
  font-family: inherit;
  /* color: #ffffff;
  background-color: #007ac2;
  display: flex;
  justify-content: center;
  align-items: center; */
  font-size: 20px;
  padding: 1.2rem;
  position: relative;
  /* display: none; */
}

.ui #finish .view-container .print_button::after {
  /* content: "Print This Card"; */
}

.ui #finish .view-container .retry_button {
  position: relative;
  background-image: url(./../assets/images/style/try_again.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.7in;
  height: 30%;
  margin-top: 1%;
  cursor: pointer;
  display: none;
}

.ui #finish .view-container .finish_text_new_2 {
  position: relative;
  /* background-image: url(./../assets/images/style/locate_text.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 70%;
  height: 50%;
  margin-top: 1%;
  margin-bottom: 1%; */
  width: 85%;
  margin-top: 1%;
  margin-bottom: 1%;
  color: #ffffff;
  text-align: center;
  display: none;
}

.ui #finish .view-container .finish_text_new_2::after {
  content: "Locate the printer kiosk in the Main Concourse Outside of Sections 19 & 20. See email for more details.";
}

.ui #finish .view-container .finish_text_new_3 {
  position: relative;
  /* background-image: url(./../assets/images/style/finish_text_3_new.png); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 85%;
  /* height: 20%; */
  margin-top: 1%;
  margin-bottom: 2%;
  color: #ffffff;
  text-align: center;
  font-size: 0.6rem;
  font-family: inherit;
}

.ui #finish .view-container .sharecont {
  height: 8%;
  width: 60%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}

.ui #finish .view-container .sharecont .shareBox,
.ui #finish .view-container .sharecont .shareLabel,
.ui #finish .view-container .sharecont .fbIcon,
.ui #finish .view-container .sharecont .instaIcon,
.ui #finish .view-container .sharecont .twitIcon {
  position: relative;
  background-image: url(./../assets/images/style/share_text.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 80%;
  width: 20%;
  margin-left: 2%;
  margin-right: 2%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ui #finish .view-container .sharecont .shareLabel {
  background-image: url(./../assets/images/style/share_text.png);
  opacity: 0;
  pointer-events: none;
}

.ui #finish .view-container .sharecont .fbIcon {
  background-image: url(./../assets/images/style/fb_icon.png);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.ui #finish .view-container .sharecont .instaIcon {
  background-image: url(./../assets/images/style/insta_icon.png);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.ui #finish .view-container .sharecont .twitIcon {
  background-image: url(./../assets/images/style/twit_icon.png);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.ui #finish .view-container .finish_text_2 {
  position: relative;
  background-image: url(./../assets/images/style/last_text.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 90%;
  height: 75%;
  margin-bottom: 2%;
}

.ui #finish .view-container .finish_text_bottom {
  position: relative;
  width: 90%;
  height: 75%;
  margin-bottom: 2%;
  color: #ffff;
  text-align: center;
  font-family: inherit;
  font-size: 0.77rem;
  letter-spacing: 0.2px;
}

.ui #finish .view-container .finish_text_bottom p:first-child {
  font-size: 0.75rem;
}

.ui #finish .view-container .finish_text_bottom p a {
  color: #ffffff;
  text-decoration: underline;
}

@media screen and (max-height: 560px) {
  #user_result .view-container {
    position: absolute;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    height: calc(100% / 0.8) !important;
    width: calc(100% / 0.8) !important;
  }
}

@media screen and (max-height: 500px) {
  #user_result .view-container {
    position: absolute;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    height: calc(100% / 0.6) !important;
    width: calc(100% / 0.6) !important;
  }
}

/*# sourceMappingURL=style.css.map */

.modal {
  display: block;
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  /* background-color: #000; */
  background-color: rgba(0, 0, 0, 0.81);
}

.show-modal {
  display: block;
}

.modal-content {
  display: flex;
  position: fixed;
  /* margin-top: 47vh;
  margin-top: calc(var(--vh, 1vh) * 47); */
  width: 100%;
  height: 50%;
  /* height: calc(var(--vh, 1vh) * 53); */
  /* border-top-left-radius: 20px;
  border-top-right-radius: 20px; */
  /* background-color: #001f45; */
  background-color: #ffffff;
  bottom: 0;
  border-radius: 50px 50px 0 0;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.close {
  position: absolute;
  top: 6vh;
  top: calc(var(--vh, 1vh) * 6);
  right: 6vh;
  right: calc(var(--vh, 1vh) * 5);
  font-size: 1.7rem;
  margin: -23px -12px 0 0;
  /* color: white; */
  cursor: pointer;
  z-index: 99;
  font-weight: 800;
}

.qrcode {
  /* position: fixed; */
  /* max-height: 40vw; */
  /* max-height: calc(var(--vh, 1vh) * 30); */
  /* max-width: 40vw; */
  /* max-width: calc(var(--vh, 1vh) * 30); */
  /* transform: translate(30vw,-17vh); */
  /* margin-top: 50%; */
  /* height: 100%;
   width: 100%; */
  /* margin-left: -20%; */
}

.qrText {
  /* color: white; */
  font-family: PrudentialBold;
  font-weight: bolder;
  font-size: 3vw;
  text-align: center;
}
.qrText i {
  position: relative;
}
.qrText i::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 20%;
  background-color: #000000;
  bottom: -40%;
  left: 50%;
  border-radius: 4px;
  left: 20%;
}

.qrTextContainer {
  margin-top: 1em;
  /* transform: translate(0, 55vh);
  transform: translate(0, calc(var(--vh, 1vh) * 55)); */
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0em;
  width: 100%;
}

.arrow {
  border: 1px solid #cccccc;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  position: relative;
  top: -3px;
  left: 4px;
  transition: 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  top: 0px;
}

/* Media Queries */

@media (max-width: 350px) {
  .ui #opening_2 .view-container .start_text > p {
    font-size: 1.1rem;
  }
  .ui #opening_2 .view-container .start_text_2 {
    width: 80%;
  }

  .ui #opening_2 .view-container .start_text_2 small {
    font-size: xx-small;
  }

  .ui #finish .view-container .finish_text_bottom {
    font-size: 0.5rem;
  }

  .ui #finish .view-container .finish_text_bottom p:first-child {
    font-size: 0.49rem;
  }
  .qrcode {
    width: 140px !important;
    height: 140px !important;
  }
}

@media screen and (min-width: 260px) and (max-width: 380px) {
  .ui #terms_and_conditions .popup {
    height: 75%;
  }

  .ui #terms_and_conditions .terms_text span {
    font-size: 0.6rem;
    line-height: 1.5;
  }

  .ui #terms_and_conditions .terms_text span:last-child {
    font-size: 0.53rem !important;
    margin-top: 1.4rem;
  }

  .ui #finish .view-container .finish_text_bottom {
    font-size: 0.5rem;
  }

  .ui #finish .view-container .finish_text_bottom p:first-child {
    font-size: 0.49rem;
  }

  .ui #opening_2 .view-container .build-button {
    left: -7%;
    font-size: 1.2rem;
  }
  .ui #user_result .popup .popup-container .rows .row .checked_text {
    font-size: 0.6rem !important;
  }
}

@media screen and (min-width: 380px) and (max-width: 480px) {
  .ui #opening_2 .view-container .start_text {
    width: 60%;
  }

  .ui #opening_2 .view-container .start_text_2 {
    width: 66%;
  }

  .ui #terms_and_conditions .popup {
    height: 75%;
  }

  .ui #terms_and_conditions .terms_text span {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .ui #terms_and_conditions .terms_text span:last-child {
    font-size: 0.53rem !important;
    margin-top: 1.8rem;
  }

  .ui #finish .view-container .title {
    font-size: 1.25rem;
  }

  .ui #finish .view-container .finish_text_bottom {
    font-size: 0.5rem;
  }

  .ui #finish .view-container .finish_text_bottom p:first-child {
    font-size: 0.49rem;
  }
  .qrcode {
    width: 200px !important;
    height: 200px !important;
  }
  .close {
    font-size: 2rem;
  }
  .ui #user_data .view-container .continue-button {
    font-size: 1.5rem;
  }
  .ui #background_select .view-container .continue-button {
    font-size: 1.6rem;
    height: 20%;
  }
  .ui #costume_confirm .view-container .retake-button,
  .ui #costume_confirm .view-container .continue-button {
    font-size: 1.35rem;
  }
  .ui #user_result .popup .popup-container .title {
    /* margin-bottom: -2.5%; */
  }
}

@media screen and (min-width: 480px) and (max-width: 570px) {
  .ui #terms_and_conditions .popup {
    width: 85%;
    height: 75%;
  }

  .ui #terms_and_conditions .terms_text span {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .ui #terms_and_conditions .terms_text span:last-child {
    font-size: 0.53rem !important;
    margin-top: 1.8rem;
  }

  .ui #finish .view-container .title {
    font-size: 1.4rem;
  }

  .ui #finish .view-container .finish_text_bottom {
    font-size: 0.5rem;
  }

  .ui #finish .view-container .finish_text_bottom p:first-child {
    font-size: 0.49rem;
  }
}

@media screen and (min-width: 520px) and (max-width: 676px) {
  .ui #opening_2 .view-container .start_text {
    width: 100%;
    max-width: 55%;
  }

  .ui #opening_2 .view-container .start_text p {
    font-size: 1.5rem;
    line-height: 1;
  }

  .ui #opening_2 .view-container .start_text_2 {
    width: 60%;
  }

  .ui #finish .view-container .title {
    font-size: 1.4rem;
  }

  .ui #finish .view-container .finish_text_bottom {
    font-size: 0.5rem;
  }

  .ui #finish .view-container .finish_text_bottom p:first-child {
    font-size: 0.49rem;
  }
}

@media screen and (min-width: 676px) and (max-width: 768px) {
  .ui #opening_2 .view-container .start_text {
    width: 100%;
    max-width: 55%;
  }

  .ui #opening_2 .view-container .start_text p {
    font-size: 2rem;
  }

  .ui #opening_2 .view-container .start_text_2 {
    width: 54%;
  }

  .ui #opening_2 .view-container .start_text_2 small {
    font-size: revert;
  }

  .ui #finish .view-container .finish_text_bottom {
    font-size: 0.5rem;
  }

  .ui #finish .view-container .finish_text_bottom p:first-child {
    font-size: 0.49rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .ui #opening_2 .view-container .start_text {
    width: 100%;
    max-width: 55%;
  }
  .ui #opening_2 .view-container .build-button {
    width: 55%;
  }

  .ui #opening_2 .view-container .start_text p {
    font-size: 2rem;
  }

  .ui #opening_2 .view-container .start_text_2 {
    width: 54%;
    font-size: 0.89rem;
  }
  .qrcode {
    width: 170px !important;
    height: 170px !important;
  }
  .close {
    font-size: 2.5rem;
  }
  .ui #finish .view-container .title {
    font-size: 1.6rem;
  }
  .ui #user_data .small-popup .small-popup-title {
    font-size: 1.9rem;
  }
  .ui #user_data .view-container .inputfield {
    font-size: 1.7rem;
  }
  .ui #user_data .view-container .continue-button {
    font-size: 1.9rem;
  }
  .ui #background_select .view-container .title {
    font-size: 1.6rem;
  }
  .ui #background_select .view-container .items {
    margin-bottom: 4%;
  }
  .ui #background_select .view-container .continue-button {
    font-size: 1.9rem;
    width: 40%;
    height: 18%;
  }
  .ui #costume_confirm .view-container .retake-button,
  .ui #costume_confirm .view-container .continue-button {
    font-size: 1.7rem;
  }
  .ui #user_result .popup {
    max-width: 600px;
  }
  .ui #user_result .popup .popup-container {
    max-width: 500px;
  }
  .ui #user_result .popup .popup-container .title {
    width: 100%;
    margin-bottom: 2%;
  }
  .ui #user_result .popup .popup-container .title p {
    font-size: 2.5rem;
  }
  .ui #user_result .popup .popup-container .title span {
    font-size: 1.27rem;
  }
  .ui #user_result .popup .popup-container .inputfield {
    height: 55px;
    width: 70%;
    font-size: 24px;
  }
  .ui #user_result .popup .popup-container .rows .row.animated-border {
    padding: 10.6px;
  }
  .ui
    #user_result
    .popup
    .popup-container
    .rows
    .row.animated-border
    input[type="checkbox"] {
    width: 25px;
    height: 25px;
  }
  input[type="checkbox"]::before {
    width: 20px;
    height: 20px;
  }
  .ui #user_result .popup .popup-container .rows .row .terms_check_text,
  .ui #user_result .popup .popup-container .rows .row .checked_text,
  .ui #user_result .popup .popup-container .rows .row .subscribe_check_text {
    font-size: 1rem !important;
  }
  .ui #user_result .popup .popup-container .finish-button {
    bottom: 0%;
    font-size: 1.7rem;
  }
  .ui #opening_2 .view-container .build-button {
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .ui #opening_2 .view-container .start_text {
    width: 100%;
    max-width: 400px;
    font-size: 1.5rem;
  }

  .ui #opening_2 .view-container .start_text_2 {
    width: 20%;
  }

  .ui #opening_2 .view-container .build-button {
    max-width: 400px;
    font-size: 1.5rem;
  }

  .ui #opening_2 .view-container .start_text_2 small {
    font-size: xx-small;
  }
  .close {
    font-size: 3rem;
  }
}

@media screen and (min-width: 360px) and (max-width: 389px) {
  .start_text > p {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .ui #opening_2 .view-container .start_text_2 {
    width: 80%;
  }
  .close {
    font-size: 1.9rem;
  }
  .ui #user_result .popup .popup-container .title {
    margin-bottom: 0%;
  }
}

@media screen and (min-width: 360px) and (max-width: 399px) {
  .ui #opening_2 .view-container .start_text_2 {
    width: 80%;
  }
  .qrcode {
    width: 160px !important;
    height: 160px !important;
  }
  .qrText {
    font-size: 12.5px;
  }
}

@media (max-width: 991px) {
  .ui #user_result .popup .popup-container .finish-button {
    bottom: -2%;
    padding: 0.5rem;
    margin-top: 0.5rem;
  }
}

@media screen and (min-width: 1020px) and (max-width: 1030px) {
  .ui #opening_2 .view-container .start_text p {
    font-size: 2rem;
  }
  .ui #opening_2 .view-container .build-button {
    font-size: 2.3rem;
  }
  .ui #opening_2 .view-container .start_text_2 {
    width: 40%;
  }
  .ui #opening_2 .view-container .start_text_2 small {
    font-size: 1rem;
  }
  .ui #finish .view-container .title {
    font-size: 1.9rem;
  }
  .ui #finish .view-container .finish_text_new_2 {
    margin-top: 4%;
  }
  .ui #finish .view-container .finish_text_new_3 {
    font-size: 10%;
  }
  .ui #user_data .small-popup .small-popup-title {
    font-size: 2.4rem;
    margin-bottom: -2%;
  }
  .ui #user_data .view-container .inputfield {
    font-size: 2rem;
  }
  .ui #user_data .view-container .continue-button {
    font-size: 2.5rem;
  }
  .ui #background_select .view-container .title {
    font-size: 2rem;
  }
  .ui #background_select .view-container .items .item {
    width: 90px;
    height: 90px;
  }
  .ui
    #background_select
    .view-container
    .items
    .item.selected
    .itemContent
    .itemContentInner {
    width: 82%;
    height: 82%;
  }
  .ui #background_select .view-container .continue-button {
    width: 30%;
    font-size: 2.4rem;
    height: 20%;
  }
  .ui #costume_confirm .view-container .retake-button,
  .ui #costume_confirm .view-container .continue-button {
    font-size: 2.4rem;
  }
  .ui #user_result .popup {
    max-width: 600px;
  }
  .ui #user_result .popup .popup-container {
    max-width: 500px;
  }
  .ui #user_result .popup .popup-container .title {
    width: 100%;
    margin-bottom: 0%;
  }
  .ui #user_result .popup .popup-container .title p {
    font-size: 2.5rem;
  }
  .ui #user_result .popup .popup-container .title span {
    font-size: 1.44rem;
  }
  .ui #user_result .popup .popup-container .inputfield {
    height: 55px;
    width: 70%;
    font-size: 24px;
  }
  .ui #user_result .popup .popup-container .rows .row.animated-border {
    padding: 12.6px;
  }
  .ui
    #user_result
    .popup
    .popup-container
    .rows
    .row.animated-border
    input[type="checkbox"] {
    width: 25px;
    height: 25px;
  }
  input[type="checkbox"]::before {
    width: 20px;
    height: 20px;
  }
  .ui #user_result .popup .popup-container .rows .row .terms_check_text,
  .ui #user_result .popup .popup-container .rows .row .checked_text,
  .ui #user_result .popup .popup-container .rows .row .subscribe_check_text {
    font-size: 1.3rem !important;
  }
  .ui #user_result .popup .popup-container .finish-button {
    bottom: 0%;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 413px) and (max-width: 416px),
  screen and (max-height: 716px) {
  .start_text > p {
    font-size: 1.1rem;
  }
  .ui #opening_2 .view-container .build-button {
    width: 50%;
    font-size: 1.25rem;
    left: -5%;
  }
  .ui #opening_2 .view-container .start_text_2 {
    width: 60%;
  }
  .close {
    right: 9%;
  }
}
@media screen and (min-width: 427px) and (max-width: 429px),
  screen and (max-height: 927px) {
  .ui #opening_2 .view-container .start_text {
    width: 61%;
  }
  .ui #finish .view-container .title {
    font-size: 1.35rem;
  }
  .ui #finish .view-container .finish_text_1 p:first-child {
    font-size: 0.9rem;
  }
  .ui #finish .view-container .finish_text_1 p.sec,
  .ui #finish .view-container .finish_text_new_3 {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 389px) and (max-width: 391px),
  screen and (max-height: 845px) {
  .ui #opening_2 .view-container .build-button {
    font-size: 1.4rem;
  }
  .ui #opening_2 .view-container .start_text_2 {
    width: 60%;
  }
  .ui #costume_select .view-container .continue-button {
    bottom: 10%;
  }
  .ui #costume_confirm .view-container .retake-button {
    font-size: 1.3rem;
    height: 13%;
    bottom: 10%;
  }
  .ui #costume_confirm .view-container .continue-button {
    font-size: 1.3rem;
    height: 13%;
    bottom: 6%;
  }
  .ui #user_data .view-container .continue-button {
    width: 83%;
    height: 17%;
    margin-top: 2%;
  }
  .ui #user_data .view-container .inputfield {
    height: 15%;
    width: 92%;
  }

  .ui .small-popup .small-popup-title {
    margin-bottom: 0%;
    font-size: 1.3rem;
  }

  .ui #background_select .view-container .continue-button {
    height: 24%;
  }

  .ui #user_result .popup .popup-container .inputfield {
    margin-top: 5px;
  }
  .ui #costume_confirm .view-container .continue-button {
    font-size: 1.4rem;
    height: 15%;
    bottom: 6%;
  }
  .ui #finish .view-container .title {
    font-size: 1.2rem;
  }
  .ui #finish .view-container .finish_text_1 {
    margin-top: 0%;
  }
  .ui #finish .view-container .finish_text_1 p.sec {
    font-size: 0.8rem;
    margin: 0.5rem auto;
  }
  .ui #finish .view-container .finish_text_new_3 {
    font-size: 0.8rem;
  }
  .ui #finish .view-container .finish_text_bottom p:first-child {
    margin: 0;
  }
  .ui #finish .view-container .print_button {
    /* padding:0.6rem; */
  }

  .ui #finish .view-container .finish_text_new_2 {
    font-size: 0.8rem;
    margin-top: 0.6rem;
  }
}

@media screen and (min-width: 374px) and (max-width: 376px),
  (max-height: 814px) {
  .ui #opening_2 .view-container .build-button {
    width: 61%;
    font-size: 1.25rem;
    left: -10%;
  }
  .ui #opening_2 .view-container .start_text_2 {
    width: 82%;
  }
  .ui #user_result .popup .popup-container .cardCont {
    margin-top: 13%;
  }
  .ui #finish .view-container .title {
    font-size: 1.15rem;
  }

  .ui #finish .view-container .finish_text_1 p:first-child {
    font-size: 0.75rem;
    font-weight: 600;
  }
  .ui #finish .view-container .finish_text_1 p.sec,
  .ui #finish .view-container .finish_text_new_3 {
    font-size: 0.75rem;
  }
}
.hidden {
  display: none;
}

@media screen and (min-width: 413px) and (max-width: 415px),
  (max-height: 897px) {
  .ui #opening_2 .view-container .build-button {
    width: 55%;
    font-size: 1.25rem;
    left: -3%;
  }
  .ui #opening_2 .view-container .start_text_2 {
    width: 61%;
  }
  .ui #finish .view-container .title {
    font-size: 1.23rem;
  }
  .ui #finish .view-container .finish_text_1 p:first-child {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 373px) and (max-width: 315px),
  (max-height: 814px) {
  .ui #opening_2 .view-container .start_text {
    width: 60%;
  }
}
@media screen and (min-width:350px) and (max-width:390px){
 .ui #finish .logo{
    left: 5%;
  }
}