* {
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

*:focus {
  outline: none;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'poppins-regular';
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: subpixel-antialiased !important;
  text-rendering: optimizeLegibility !important;
}

img {
  width: 100%;
  height: auto;
}

h4 {
  font-size: 3vw;
  text-align: center;
}

p {
  font-size: 1.5vw;
  text-align: center;
}

.desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mobile,
.pdpa_container {
  display: none;
}

/* loading screen */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
  background-image: url(img/bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 2s opacity ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0.4em;
  background-color: rgba(89, 17, 17, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: .5s cubic-bezier(.77, 0, .18, 1)
}

.loading {
  display: block;
  text-align: center;
  font-weight: 400;
  transition: 0.2s ease;
}

.loading h4 {
  color: #ffffff;
  font-size: 5vw;
  animation: fade 2s ease infinite;
  font-family: 'poppins-bold';
}

.loading img {
  width: 50%;
  margin-bottom: 5%;
  filter: drop-shadow(0.1rem 0.1rem 0.3rem rgba(222, 113, 110, 0.5));
  opacity: 0;
}

@keyframes fade {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-moz-keyframes fade {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-o-keyframes fade {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/* Fonts */
.bold {
  font-family: 'poppins-bold';
}

.regular {
  font-family: 'poppins-regular';
}

.medium {
  font-family: 'poppins-medium';
}

.semibold {
  font-family: 'poppins-semibold';
}

/*loading screen END*/

@media screen and (max-width:1024px) and (orientation: Portrait) {

  .desktop {
    display: none;
  }

  .mobile {
    display: flex;
    flex-direction: column;
    background-image: url(img/bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
  }

  h1 {
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 4.5vw;
    color: #DE716E;
    font-family: 'poppins-bold';
  }

  h3 {
    font-size: 5vw;
    text-align: center;
    color: #DE716E;
    font-family: 'poppins-bold';
    line-height: 1.1;
  }

  p,
  input {
    font-size: 3.8vw;
    color: #DE716E;
  }

  /* Home */
  .home,
  .sign_up,
  .login,
  .stations,
  .page_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 95%;
    margin: auto;
  }

  .header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    height: 100%;
    padding: 0em 1.5em;
    background-color: rgba(255, 255, 255, 0.85);
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .header img {
    width: 45%;
  }

  .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10% 0 7% 0;
  }

  .bottom {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  .home_h3 {
    font-size: 7vw;
  }

  .home_p {
    font-size: 4vw;
  }

  .welcome p {
    margin-top: 3%;
  }

  .home .bottom {
    justify-content: flex-end;
  }

  .home .welcome {
    height: 55%;
  }

  .home_button {
    width: 60%;
    height: 25%;
  }

  .home_button p {
    font-size: 4vw;
    border: 2px solid #DE716E;
    background-color: white;
    padding: 0.3em 0;
    margin-top: 7%;
    border-radius: 0.5em;
  }

  .home_button p:nth-child(2) {
    margin-top: 3%;
  }

  /* Home END */

  /* Sign Up */
  .sign_up_form,
  .login_form {
    width: 100%;
    padding-bottom: 1em;
  }

  .top h3 {
    margin-top: 3%;
  }

  .sign_up_form form,
  .login_form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sign_up_form input,
  .sign_up_form select,
  .login_form input,
  .birthdate_holder p,
  .custom-select-wrapper {
    font-family: 'poppins-regular';
    width: 99%;
    color: #DE716E;
    border: 2px solid #DE716E;
    background-color: white;
    padding: 0.3em 0;
    text-align: center;
    margin-top: 1%;
    font-size: 3.5vw;
    border-radius: 0.5em;
  }

  .sign_up_form select {
    width: 92%;
  }

  /* birthdate_holder styling */

  .birthdate_holder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .birthdate_holder input[type="date"] {
    display: flex;
    justify-content: center;
  }

  input[type="date"] {
    min-width: 67%;
    text-align: center !important;
    /* appearance: none;
    -webkit-appearance: none; */
  }

  input[type="date"]::-webkit-inner-spin-button,
  input[type="date"]::-webkit-calendar-picker-indicator {
    padding: 0;
    /* display: none;
      -webkit-appearance: none; */
  }

  /* birthdate_holder styling END */

  /* select option styling */

  select {
    appearance: none;
    border: 0;
    outline: 0;
    box-shadow: none;
  }

  option {
    position: absolute;
    display: flex;
    text-align: center;
    color: #DE716E;
    padding: 0.5em 0;
    text-align: center;
    position: relative;
  }

  option[selected] {
    border: 6px solid transparent;
    background-color: #ff584a;
  }

  select option:hover {
    background-color: #DE716E;
  }

  /* custom select styling */

  .custom-select-wrapper {
    position: relative;
    user-select: none;
    padding: 0;
  }

  .custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .custom-select-trigger {
    position: relative;
    width: 100%;
    cursor: pointer;
    font-size: 3.5vw;
    padding: 0.3em 0;
  }

  .custom-options {
    position: absolute;
    width: 100%;
    max-height: 150px;
    overflow-y: scroll;
    display: none;
    flex-direction: column;
    top: 105%;
    left: -0.5%;
    background: #fff;
    border: 2px solid #DE716E;
    z-index: 999;
    border-radius: 0 0 0.3em 0.3em;
  }

  .custom-options.tel_number {
    left: -2%;
  }

  .custom-option {
    padding: 0.3em;
    cursor: pointer;
  }

  .custom-option:hover {
    background: #DE716E;
    color: white;
  }

  .custom-select.open .custom-options {
    display: flex;
  }

  select {
    display: none;
  }

  /* custon select styling tel prefix */
  .custom-select-wrapper.tel_number,
  .birthdate_holder p {
    width: 33%;
    margin-right: 1%;
  }

  /* custon select styling tel prefix END */

  /* custom select styling END */

  /* select option styling END */

  .telephone {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
    width: 100%;
    height: 100%;
  }

  .telephone input:nth-child(2) {
    width: 20%;
    margin: 0 1.5% 0 0;
    text-align: center;
  }

  .notification {
    margin-top: 5%;
    font-size: 3vw;
  }

  .notification p {
    font-size: 3vw;
    text-align: left !important;
  }

  .notification_input_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 5% 0;
  }

  .notification_input_holder div {
    /* width: 25%; */
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .notification_input_holder label {
    width: 100%;
    font-family: 'poppins-semibold';
    color: #DE716E;
  }

  .pdpa_holder {
    width: 100%;
    margin-top: 5%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .pdpa_holder input {
    width: 20px;
    margin-right: 1%;
  }

  .pdpa_holder label {
    width: 100%;
    color: #DE716E;
  }

  /* checkbox styling */
  input[type=checkbox]+label {
    display: flex;
    justify-content: center;
  }

  div.pdpa_holder input[type=checkbox]+label {
    /* display: flex;
    justify-content: center; */
    display: inline;
  }

  input[type=checkbox] {
    display: none;
  }

  label span {
    position: relative;
    z-index: 10;
  }

  input[type=checkbox]+label:before {
    content: "";
    border: 2px solid #DE716E;
    display: inline-block;
    width: 1.1em;
    min-width: 10px;
    height: 0.8em;
    min-height: 8px;
    margin-right: 2%;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
    border-radius: 0.3em;
  }

  input[type=checkbox]+label:active:before {
    transform: scale(0);
    background-color: #DE716E;
  }

  input[type=checkbox]:checked+label:before {
    background-color: #DE716E !important;
    border-color: #DE716E;
    color: #fff;
    border-radius: 0.3em;
  }

  /* checkbox styling END */

  .sign_up_button_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .sign_up_button_holder .submit_btn,
  .sign_up_button_holder .login_submit_btn {
    font-size: 4vw;
    width: 60%;
    color: #DE716E;
    border: 2px solid #DE716E;
    background-color: #cccccc;
    padding: 0.2em 0;
    margin: 5% 0% 5% 0%;
    font-family: 'poppins-regular';
  }

  .sign_up_button_holder p {
    font-size: 3vw;
    color: #DE716E;
  }

  .sign_up_button_holder a {
    color: #DE716E;
  }

  /* Sign Up END*/

  /* Login */

  .login_form {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .incorrect_login,
  .press_enter,
  .press_enter_login {
    display: none;
    color: red !important;
    font-family: 'poppins-semibold';
  }

  .force_english {
    display: none;
    font-size: 3vw;
    color: red !important;
    font-family: 'poppins-regular';
  }

  /* Login END */

  /* Stations */
  .stations_button {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .stations_button div {
    position: relative;
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .stations_button div div {
    position: relative;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .stations_left1 div,
  .stations_left2 div,
  .stations_right1 div,
  .stations_right2 div {
    width: 40%
  }

  .stations_left1>div,
  .stations_left2>div,
  .stations_right1>div,
  .stations_right2>div {
    z-index: 5;
  }

  .stations_left1 {
    top: 0;
  }

  .stations_left2 {
    top: -40vw;
  }

  .stations_right1 {
    top: -25vw;
  }

  .stations_right2 {
    top: -62vw;
  }

  .stations_left img,
  .stations_left p,
  .stations_right img,
  .stations_right p {
    width: 100%;
  }

  .stations_button p {
    font-size: 3vw;
    font-family: "poppins-bold";
    margin-top: 0.5% !important;
    margin-left: 9%;
  }

  /* Stations END */

  /* Station Pages */
  .page_button .header div {
    margin-top: 10%;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .page_button .header .main {
    margin-top: 0%;
    padding-bottom: 1em;
  }

  .station1_page .header .main,
  .station1_page .header .underline {
    margin-top: 1%;
  }

  .page_button .underline {
    width: 90%;
    border-bottom: 1px solid #DE716E;
    padding-bottom: 5%;
    text-align: center;
    margin: 0 0 5% 0;
  }

  .main p {
    font-size: 3.53vw;
  }

  .page_button h3 {
    width: 100%;
  }

  .page_button .main>img {
    width: 115%;
    margin: -1% 0 1% 0;
  }

  .qr_scan {
    margin-top: 0% !important;
  }

  .qr_scan img {
    width: 21%;
    margin-bottom: 3%;
  }

  .qr_scan p {
    font-size: 2.7vw;
    text-align: center;
  }

  .summer {
    margin-bottom: 1%;
  }

  .text_width {
    width: 95%;
  }

  .text_width2 {
    width: 95%;
  }

  .page_button .header div.back_button_holder {
    position: absolute;
    height: auto;
    width: 80%;
    display: flex;
    align-items: flex-start;
    left: auto;
  }

  .back_button_holder {
    position: absolute;
    display: flex;
    height: 17.5%;
    width: 88%;
    align-items: center;
    left: 6%;
  }

  img.back_button {
    width: 5%;
  }

  /* Station Pages END */

  /* Complete Pages */

  .complete_page {
    position: absolute;
    top: 0;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0;
    transition: opacity 2s;
    z-index: -10;
    opacity: 0;
  }

  .complete_page.show {
    /* display: flex; */
    height: 100%;
    opacity: 1;
    z-index: 5;
  }

  .complete_page .header,
  .thank_you_page .header {
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    background-color: rgba(89, 17, 17, 0.5);
  }

  .complete_page .header h1,
  .thank_you_page .header h1 {
    font-size: 8.5vw;
    margin: 0;
  }

  .complete_page .header h3,
  .thank_you_page .header h3 {
    font-size: 5vw;
  }

  .complete_page .header p {
    font-size: 3.5vw;
  }

  .complete_page .header img {
    width: 45%;
    margin: 10% 0;
    opacity: 0;
  }

  .complete_page .header p {
    margin: 1% 0 10% 0;
  }

  .return_home {
    background: #FF5748;
    width: 60%;
    padding: 0.8rem 0rem;
    border-radius: 2rem;
    box-shadow: 0rem 0.05rem 0.3rem 0.1rem rgba(0, 0, 0, 0.2);
    font-family: 'poppins-regular';
    /* box-shadow: -0.15rem -0.2rem 0.3rem 0.07rem rgba(255, 255, 255, 0.5); */
    /* filter: drop-shadow(0.1rem 0.1rem 0.3rem rgba(255, 255, 255, 0.3)); */
  }

  .complete_button,
  .thank_you_button {
    font-size: 3.8vw;
    font-family: 'poppins-regular';
  }

  /* Complete Pages END*/

  /* Thank You Page */
  .thank_you_page {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 2s;
    z-index: -10;
    background-image: url(img/bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .thank_you_page.show {
    /* display: flex; */
    height: 100%;
    opacity: 1;
    z-index: 5;
  }

  .thank_you_page .header h3 {
    margin: 7% 0;
  }

  .thank_you_page .header img {
    width: 45%;
    margin: 10% 0;
    opacity: 0;
  }

  .thank_you_page .header p {
    margin: 1% 0 10% 0;
  }

  /* Thank You Page END */

  /* Pages to show */
  .home,
  .login,
  .sign_up,
  .stations,
  .station1_page,
  .station2_page,
  .station3_page,
  .station4_page,
  .complete_page {
    display: none;
  }

  /* Pages to show END*/

  /* QR Scan */
  #reader {
    width: 100%;
    height: 100%;
    border: none;
  }

  .temp_reader {
    width: 100%;
    min-height: 150px;
  }

  .white {
    color: white;
  }

  #reader>div:nth-child(1) {
    opacity: 0;
  }

  .col {
    width: 80%;
    margin-top: 3%;
    display: flex;
    justify-content: center;
  }

  .col img {
    width: 30%;
  }

  .result {
    background-color: green;
    color: #fff;
  }

  .row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  #qrcode {
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
  }

  .qr_text {
    position: absolute;
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .scan_check_in {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .scan_check_in h4 {
    font-size: 5vw;
    font-weight: 100;
  }

  #qrcode .header {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: rgba(104, 69, 69, 0.9);
  }

  #reader {
    height: 100% !important;
    background: transparent;
  }

  #reader img {
    display: none;
  }

  #reader video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .page_button .header div.station3_scan_camera {
    display: none;
  }

  .qr_popup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    background-color: rgba(252, 51, 51, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 10;
  }

  .qr_popup h4 {
    font-size: 4vw;
    color: white;
    text-align: center;
    filter: drop-shadow(0rem 0rem 0.4rem rgba(255, 255, 255, 0.5));
  }

  #qr-shaded-region {
    border-color: rgba(89, 17, 17, 0.5) !important;
  }

  /* CSS for scan box corner */

  #qr-shaded-region div:nth-child(1),
  #qr-shaded-region div:nth-child(2),
  #qr-shaded-region div:nth-child(3),
  #qr-shaded-region div:nth-child(4) {
    width: 30% !important;
    height: 1% !important;
    top: 0 !important;
    border-radius: 1rem;
  }

  #qr-shaded-region div:nth-child(3),
  #qr-shaded-region div:nth-child(4) {
    bottom: 0 !important;
    top: auto !important;
  }

  #qr-shaded-region div:nth-child(5),
  #qr-shaded-region div:nth-child(6),
  #qr-shaded-region div:nth-child(7),
  #qr-shaded-region div:nth-child(8) {
    width: 1% !important;
    height: 29% !important;
    left: 0 !important;
    top: 0 !important;
    border-radius: 1rem;
  }

  #qr-shaded-region div:nth-child(6) {
    right: 0 !important;
    left: auto !important;
  }

  #qr-shaded-region div:nth-child(7) {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: auto !important;
  }

  #qr-shaded-region div:nth-child(8) {
    top: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    left: auto !important;
  }

  #qr-shaded-region div {
    --b: 1px;
    /* thickness of the border */
    --c: red;
    /* color of the border */
    --w: 40px;
    /* width of border */
    --r: 40px;
    /* radius */


    padding: var(--b);
    /* space for the border */

    position: relative;
  }

  #qr-shaded-region div::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: var(--c, red); */
    padding: var(--b);
    border-radius: var(--r);
    -webkit-mask: linear-gradient(0deg, #000 calc(2* var(--b)), #0000 0) 50% var(--b) / calc(100% - 2* var(--w)) 100% repeat-y, linear-gradient(-90deg, #000 calc(2* var(--b)), #0000 0) var(--b) 50% / 100% calc(100% - 2* var(--w)) repeat-x, linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
  }

  /* CSS for scan box corner END */

  .qr_back,
  .ar_frame_back {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 0.5em 1em;
    border-radius: 10rem;
    /* left: 5% !important;
    top: 6% !important; */
  }

  /* QR Scan END */

  /* Lazyload images */
  #gallery {
    display: flex;
  }

  #image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 3% 0;
  }

  #image-container img {
    width: 100px;
    height: 100px;
    margin: 5px;
    object-fit: cover;
    border-radius: 1rem;
  }

  #load-more-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 4vw;
    cursor: pointer;
    border-radius: 1rem;
    margin-bottom: 20px;
  }

  /* AR Frame */
  #ar_frame {
    display: none;
    height: 100%;
    width: 100%;
  }

  .ar_frame_back {
    z-index: 10;
  }

  .bottom_gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
  }

  .bottom_gradient img {
    width: 100%;
    height: 100%;
  }

  #wrapper {
    display: grid;
    width: 100%;
    height: 100%;
    /* max-height: 100vh;
    max-width: 177.78vh; */
    position: absolute;
    top: 0;
    margin: auto;
  }

  #camera,
  #camera--output {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
  }

  #camera--view,
  #camera--sensor {
    /* position: absolute;
    height: 70%;
    width: 100%;
    object-fit: fill; */
    position: absolute;
    height: 70%;
    width: 100%;
    object-fit: cover;
  }

  #camera--view,
  #camera--sensor,
  #camera--output {
    transform: scaleX(-1);
    filter: FlipH;
  }

  #frames {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
  }

  #bgbtn {
    z-index: 5;
    position: absolute;
    bottom: 10%;
  }

  #bgbtn img {
    cursor: pointer;
    opacity: 0.4;
    width: 30%;
    margin: 0 0.5%;
  }

  /* .selected {
    opacity: 1 !important;
    border: 3px solid #fff;
    border-radius: 8px;
  } */

  .capture_holder {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  #camera--trigger {
    cursor: pointer;
    width: 22%;
    /* position: absolute;
    bottom: 4%; */
    margin-bottom: 4%;
    z-index: 5;
  }

  #aftercapture {
    width: 90%;
    height: 97%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
    display: none;
  }

  #aftercapture img {
    cursor: pointer;
    width: 45%;
    margin: 10% 0;
  }

  #aftercapture div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: flex-end; */
  }

  #aftercapture div div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: flex-end; */
    z-index: 5;
  }

  #aftercapture div div:nth-child(2) {
    margin: 0 2%;
  }

  #aftercapture h4 {
    cursor: pointer;
    font-size: 3vw;
    color: white;
    width: 90%;
    filter: drop-shadow(0.4rem 0.2rem 0.3rem 0.07rem rgba(255, 88, 74, 0.3));
    font-family: 'poppins-regular';
  }

  .center-flex {
    display: flex;
    justify-content: center;
  }

  /* gallery ar frame */
  #ar_gallery {
    position: absolute;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    background-color: white;
    z-index: 10;
  }

  #ar_gallery h1 {
    position: absolute;
    top: 2%;
    font-size: 5vw;
  }

  #ar_gallery p {
    font-size: 3vw;
  }

  .gcon {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
  }

  .gcon div {
    display: flex;
    height: auto;
    flex-wrap: wrap;
    flex-basis: 32%;
    justify-content: center;
    margin: 1%;
  }

  .gcon img {
    width: 90%;
  }

  .ar_close {
    position: absolute;
    top: 2%;
    right: 7%;
    font-size: 3vw;
    border: 1px solid red;
    padding: 0.5em;
  }

  /* disable click */
  .disable,
  .locked {
    pointer-events: none;
  }

  .hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .none {
    display: none;
  }

  /* pdpa pdf */
  .pdpa_container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pdpa_pdf {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 100%;
  }

  .pdpa_pdf p {
    color: black;
    font-size: 3vw;
    text-align: left;
  }

  .pdpa_pdf p strong {
    font-family: 'poppins-semibold';
  }

  p.text-center {
    text-align: center;
  }

  .mtnot {
    margin-top: 0;
  }

  p+p {
    margin-top: 4%;
  }

  /* Invalid Email */
  span.text {
    display: none;
  }

  span.text {
    font-size: 3vw;
    font-family: 'poppins-semibold';
    color: red;
    margin: 1%;
  }

  /* Future Dates */
  .alert_future {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    /* background-color: rgba(222, 113, 110, 0.5); */
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
  }

  .alert_future div {
    background-color: white;
    width: 50%;
    height: 25%;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 2em;
  }

  .alert_future h4 {
    font-size: 3.8vw;
    color: #DE716E;
  }

  .alert_future p {
    width: 50%;
    color: #DE716E;
    border: 1px solid #DE716E;
    padding: 0.5em 0;
    border-radius: 0.7em;
  }

  /* Uploading */
  .upload_message {
    position: absolute;
    width: 100%;
    height: 0%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -10;
    opacity: 0;
    transition: opacity 2s;
    display: flex;
  }

  .upload_message.show{
    z-index: 10;
    opacity: 1;
  }

  .upload_message div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .upload_message h4 {
    color: white;
    font-size: 5vw;
    animation: fade 1s ease infinite;
    filter: drop-shadow(2px 4px 6px rgba(222, 113, 110, 0.5));
  }

  /* Uploading Message */
}