@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  padding: 0;
  margin: 0 auto !important;
  font-family: "Roboto", serif;
}

#deviceError {
  display: none;
}
/* Fullscreen Intro Screen */
/* 🔹 Style for the intro overlay */
/* 🔹 Full-screen intro overlay */
/* 🔹 Full-screen intro overlay */
/* Full-screen background container */
/* Fullscreen overlay */
/* Fullscreen overlay */
/* Fullscreen overlay */
#introOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark semi-transparent backdrop */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  text-align: center;
  padding: 1em;
  box-sizing: border-box;
}

/* Background panel behind text */
#introPanel {
  background: linear-gradient(145deg, #ffffff, #f0f0f0); /* soft gradient */
  padding: 2em 3em;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2); /* soft shadow */
  backdrop-filter: blur(10px); /* subtle glass effect */
  max-width: 600px;
  width: 90%;
  animation: fadeInUp 1s ease forwards;
  opacity: 0; /* for animation */
}

/* Main intro text */
#introText {
  font-size: clamp(1.5em, 4vw, 2.5em);
  color: #222;
  font-weight: 700;
  line-height: 1.3;
}

/* Optional subtext */
#introText span {
  display: block;
  font-size: clamp(0.8em, 2vw, 1em);
  color: #555;
  margin-top: 0.5em;
}

/* Fade-in & slide-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Background image */
#bgImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Keeps it behind the text */
}

/* Centered text */


/* 🔹 Start button styling */
/* #startButton {
  background-color: #ff6600;
  color: white;
  padding: 15px 30px;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
}

#startButton:hover {
  background-color: #ff4500;
} */

/* 🔹 Hide main content initially */
#mainContent {
  display: none;
  padding: 20px;
}

#fullScreenText {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* Stack image and text */
  text-align: center;
  font-size: 24px;
  color: black; /* Ensure text is visible */
  z-index: 9999;
  display: none; /* Initially hidden */
}

#bgImage01 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image covers the whole screen */
  z-index: -1; /* Place the image behind the text */
}

#fullScreenText p {
  position: relative;
  z-index: 1; /* Ensure text stays on top */
  background: rgba(255, 255, 255, 0.5); /* Optional: Light background for better readability */
  padding: 20px;
  border-radius: 10px;
}


#scanText {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* Full width */
  height: 100vh; /* Full height */
  background: white; /* Full-screen white background */
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Ensure it's on top */
}

#scanText img {
  max-width: 400px; /* Increased size */
  height: auto;
}

/*  */
#scanning-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
#scanning-overlay .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(to right, white 10px, transparent 10px) 0 0, linear-gradient(to right, white 10px, transparent 10px) 0 100%, linear-gradient(to left, white 10px, transparent 10px) 100% 0, linear-gradient(to left, white 10px, transparent 10px) 100% 100%, linear-gradient(to bottom, white 10px, transparent 10px) 0 0, linear-gradient(to bottom, white 10px, transparent 10px) 100% 0, linear-gradient(to top, rgb(255, 255, 255) 10px, transparent 10px) 0 100%, linear-gradient(to top, white 10px, transparent 10px) 100% 100%;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  width: 80vw;
  height: 80vw;
}
#scanning-overlay .inner img {
  width: 90%;
  opacity: 0.35;
  align-self: center;
}
#scanning-overlay .inner .scanline {
  position: absolute;
  width: 100%;
  height: 10px;
  background: white;
  animation: move 2s linear infinite;
}

@keyframes move {
  0% {
    top: 15px;
  }
  100% {
    top: calc(100% - 25px);
  }
}
#scanning-overlay.hidden {
  display: none;
}

@media (min-width: 768px) and (orientation: portrait) {
  #deviceError {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #264653;
    display: grid;
    place-content: center;
  }
  #deviceError p {
    color: #0EAD69;
    font-size: 2rem;
    text-align: center;
  }
}
@media (min-height: 768px) and (orientation: landscape) {
  #deviceError {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #264653;
    display: grid;
    place-content: center;
  }
  #deviceError p {
    color: #0EAD69;
    font-size: 2rem;
    text-align: center;
  }
}
main {
  position: relative;
}

#intro,
#tutorial {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #000000;
  pointer-events: all;
  opacity: 1;
}
#intro.hide,
#tutorial.hide {
  pointer-events: none;
  opacity: 0;
}
#intro #pageIntro,
#tutorial #pageIntro {
  pointer-events: all;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
#intro #pageIntro.hide,
#tutorial #pageIntro.hide {
  pointer-events: none;
  opacity: 0;
}
#intro:before,
#tutorial:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}

#intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 25px;
  padding-bottom: 150px;
}
#intro p.header {
  color: #ffffff;
  font-size: 1.65rem;
  text-align: center;
}
#intro p.header span {
  font-size: 1rem;
}
#intro p.desc {
  color: #0EAD69;
  font-size: 1.25rem;
  text-align: justify;
}

#loader {
  position: fixed;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
#loader.hide {
  pointer-events: none;
  opacity: 0;
}
#loader #hideLoaderBtn {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
#loader #hideLoaderBtn.show {
  opacity: 1;
  pointer-events: all;
}
#loader .loader-icon {
  width: 60px;
  height: 60px;
  transform: rotate(0);
  opacity: 1;
  pointer-events: none;
  animation: rotate 2s infinite forwards linear;
}
#loader .loader-icon img {
  width: 100%;
}
#loader .loader-icon.hide {
  opacity: 0;
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#tutorial {
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 15px;
  pointer-events: all;
  opacity: 1;
  padding-bottom: 100px;
  transition: 0.3s ease-in-out;
}
#tutorial p.header {
  color: #0EAD69;
  font-size: 1.65rem;
  text-align: center;
}
#tutorial p.header span {
  font-size: 1rem;
}
#tutorial ul li {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#tutorial ul li span {
  font-size: 1rem;
}

#menuIcon {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 9999;
}
#menuIcon div {
  width: 100%;
  height: 3px;
  background: #ffffff;
  opacity: 1;
  transform: translate(0, 0) rotate(0);
  transition: 0.25s ease-in-out;
}
#menuIcon.open div {
  background: #ffffff;
}
#menuIcon.open div:nth-child(1) {
  transform: translate(0px, 5.5px) rotate(45deg);
}
#menuIcon.open div:nth-child(2) {
  opacity: 0;
}
#menuIcon.open div:nth-child(3) {
  transform: translate(0, -10px) rotate(-45deg);
}

#logo {
  position: fixed;
  top: 10px;
  left: 20px;
  width: 60px;
  height: 60px;
  z-index: 999;
}
#logo img {
  width: 100%;
}

#menuContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 217, 154);
  background: linear-gradient(180deg, rgb(255, 217, 154) 0%, rgb(218, 178, 111) 100%);
  opacity: 0;
  transition: 0.25s;
  z-index: 999;
  pointer-events: none;
}
#menuContainer .container {
  height: 90%;
  max-height: 400px;
  width: 90%;
  margin: 0 auto;
  padding-top: 50px;
}
#menuContainer .container .menu-logo {
  text-align: center;
  margin: 50px 0;
}
#menuContainer .container .menu-logo img {
  width: 100%;
  max-width: 150px;
}
#menuContainer .container ul {
  padding: 0;
}
#menuContainer .container ul li {
  list-style: none;
  margin: 15px 0;
  text-align: center;
}
#menuContainer .container ul li a {
  color: #000000;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-decoration: none;
  pointer-events: none;
  opacity: 0;
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}
#menuContainer .container ul li a.active {
  color: #FFFFFF;
}
#menuContainer .container ul li:hover a {
  color: #FFFFFF;
}
#menuContainer.show {
  opacity: 1;
  pointer-events: all;
}
#menuContainer.show .container ul li a {
  pointer-events: all;
  opacity: 1;
}

#photoControls {
  opacity: 0;
  pointer-events: none;
}
#photoControls.show {
  opacity: 1;
  pointer-events: all;
}
#photoControls #clickPhotoBtn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  z-index: 99;
}
#photoControls #clickPhotoBtn #outerRing {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid #ffffff;
  border-radius: 50%;
}
#photoControls #clickPhotoBtn #innerRing {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
}
#photoControls #downloadBtn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  transform: scale(1);
  transition: 0.4s ease;
}
#photoControls #downloadBtn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#photoControls #downloadBtn.show {
  opacity: 1;
  pointer-events: all;
}
#photoControls #downloadBtn.animate {
  transform: scale(1.3);
}

.a-enter-vr {
  display: none !important;
}

#infoText {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 5px 15px;
  box-sizing: border-box;
  background-color: rgba(45, 41, 38, 0.8);
  opacity: 0;
  z-index: 9;
  pointer-events: none;
  display: grid;
  place-content: center;
  transition: 0.3s ease-in-out;
}
#infoText p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
#infoText.show {
  opacity: 1;
}

.btn {
  background: url("../assets/images/btn-bg-lg.png") no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 20px 40px;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  z-index: 9;
  border: 0;
  outline: none;
  transition: 0.3s ease-in-out;
}

#menuBtn {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 5px;
  box-sizing: border-box;
  background: #1C1C1C;
  border: 2px solid #CC8B42;
  border-radius: 20px;
  z-index: 99;
  display: grid;
  place-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
#menuBtn.show {
  opacity: 1;
  pointer-events: all;
}
#menuBtn img {
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
#replayButton {
  position: fixed;
  bottom: 170px; /* Adjust this value to move it slightly up */
  left: 50%;
  transform: translateX(-50%); /* Center the button horizontally */
  width: 50px; /* Adjust as needed */
  height: 50px;
  background: none; /* No background */
  border: none; /* No border */
  padding: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

#replayButton img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#replayButton.show {
  opacity: 1;
  pointer-events: all;
}

#replayButton.hide {
  display: none !important;
}


#backBtn {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 90px;
  height: 40px;
  padding: 5px;
  box-sizing: border-box;
  background: #1C1C1C;
  border: 2px solid #CC8B42;
  border-radius: 20px;
  z-index: 999;
  display: grid;
  place-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
#backBtn.show {
  opacity: 1;
  pointer-events: all;
}
#backBtn img {
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
#reloadButton {
  position: fixed;
  bottom: 170px;  
  left: 51%; 
  width: auto;  
  height: auto;  
  background: none;  
  border: none;  
  padding: 0;  
  z-index: 999;
  display: none;
}
#reloadButton.show {
  opacity: 1; /* Now it's visible */
  pointer-events: all; /* Allow interactions */
}


#reloadButton img {
  width: 50px;  /* Adjust size as needed */
  height: 50px;
  object-fit: contain;
}
.single-btn-container.show-all {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.single-btn-container .btn {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%, 50%);
  background: url("../assets/images/btn-bg-lg.png") no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 20px 15px;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
  transition: 0.3s ease-in-out;
}
.single-btn-container .btn.show-single {
  transform: translate(-50%, 0%);
  opacity: 1;
  pointer-events: all;
}
.single-btn-container .btn.show {
  opacity: 1;
  pointer-events: all;
}

#resetBtn {
  position: fixed;
  bottom: 50px;
  left: 15px;
  width: 40px;
  height: 40px;
  padding: 5px;
  box-sizing: border-box;
  z-index: 9;
  background-color: rgba(255, 217, 154, 0.6666666667);
}
#resetBtn img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-container {
  position: relative;
}
.image-container .comparison-slider-container {
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
.image-container .comparison-slider-container.show {
  opacity: 1;
  pointer-events: all;
}
.image-container .comparison-slider-container img-comparison-slider {
  max-height: 400px;
  width: 100%;
  outline: none;
  border: none;
  margin: 15px 0;
}
.image-container .comparison-slider-container img-comparison-slider img {
  width: 100%;
  max-width: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

.testimonialHeader {
  margin: 0;
  padding: 0 15px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
}

.testimonialText {
  margin: 0;
  padding: 15px;
  font-size: 16px;
}

.disclaimer {
  padding: 15px;
}
.disclaimer h6 {
  margin: 0;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}
.disclaimer p {
  font-size: 14px;
}

.slider-container {
  width: 90%;
  position: relative;
  margin: 0 auto;
  /* Width of the outside container */
}

.ui-slider-horizontal .ui-slider-handle {
  top: -15px;
  margin-left: -20px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  z-index: 9;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  opacity: 0.5;
  background: #ffdeaa;
  background-image: -o-linear-gradient(top, #FFD99A, #ededed);
  background-image: radial-gradient(circle, #FFD99A, #ededed);
  -webkit-border-radius: 25;
  -moz-border-radius: 25;
  box-shadow: 0px 0px 5px #b8b8b8;
  border: 1px solid #eca130;
  outline: none;
}

#slider-track {
  z-index: 1;
  border-radius: 15px;
  border: 1px solid #eca130;
  box-shadow: 0px 0px 5px #FFD99A;
}
#slider-track .background-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  z-index: 2;
  border-radius: 15px;
  background: rgb(236, 161, 48);
  background: linear-gradient(90deg, rgb(252, 166, 36) 0%, rgb(255, 214, 153) 80%);
}

.sliderBtn {
  position: absolute;
  top: 50%;
  transform: translate(-45%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #ffffff;
  background-image: linear-gradient(to bottom, #ffffff, #ededed);
  -webkit-border-radius: 25;
  -moz-border-radius: 25;
  box-shadow: 0px 0px 5px #b8b8b8;
  border: 1px solid #eca130;
  text-decoration: none;
  z-index: 5;
}

#slider-btn-1 {
  left: 20%;
}

#slider-btn-2 {
  left: 40%;
}

#slider-btn-3 {
  left: 60%;
}

#slider-btn-4 {
  left: 80%;
}

.flex {
  display: flex;
}
.flex.flex-col {
  flex-direction: column;
}

#testimonial-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #DAB26F;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
#testimonial-container.show {
  opacity: 1;
  pointer-events: all;
  z-index: 99;
}
#testimonial-container.container {
  padding: 20px;
  padding-top: 40px;
}

#info-container,
#testimonial-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
#info-container.show,
#testimonial-image-container.show {
  opacity: 1;
  pointer-events: all;
}

#testimonial-image-container .flex.flex-col {
  height: 100%;
  justify-content: space-evenly;
}

#info-container img {
  width: 100%;
  height: 100%;
  max-height: 50vh;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
  margin: 0 auto;
}
#info-container p {
  padding: 15px;
}
#info-container .single-btn-container {
  display: grid;
  place-content: center;
  margin-top: 20px;
}
#info-container .single-btn-container .btn {
  position: unset;
  transform: unset;
}
#info-container .single-btn-container .btn:hover {
  transform: unset;
}

/* 
Home Page 
*/
#landing-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #DAB26F;
  opacity: 1;
  pointer-events: all;
  transition: 0.4s ease-in-out;
  color: #252525;
}
#landing-section.hide {
  opacity: 0;
  pointer-events: none;
}
#landing-section #bottom-blur {
  position: relative;
}
#landing-section #bottom-blur img {
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
#landing-section #bottom-blur:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000%;
  height: 40%;
  background: rgb(255, 217, 154);
  background: linear-gradient(0deg, #DAB26F 0%, rgba(218, 179, 111, 0) 50%);
}

.home-logo {
  max-width: 250px;
  margin: 0 auto;
}

#selection-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #DAB26F;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease-in-out;
  overflow-y: auto;
  color: #252525;
}
#selection-section.show {
  opacity: 1;
  pointer-events: all;
}
#selection-section .card {
  overflow: hidden;
}
#selection-section .card .card-img-top {
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
}
#selection-section .card .card-body {
  background: rgba(21, 21, 21, 0.8980392157);
}

/* 
  Home Page 
  */
/* 
AR Page html
 */
#mainScreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: rgb(255, 217, 154);
  background: linear-gradient(180deg, rgb(255, 217, 154) 0%, rgb(218, 178, 111) 100%);
  opacity: 1;
  pointer-events: all;
  transition: 0.4s ease-in-out;
  overflow-y: auto;
  color: #252525;
  z-index: 9;
}
#mainScreen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
}
#mainScreen.old-lady-bg::before {
  background: url("../assets/images/old-lady/old-lady.png") no-repeat;
  background-size: contain;
  background-position: center top;
}
#mainScreen.man-bg::before {
  background: url("../assets/images/man/face-man_v02.png") no-repeat;
  background-size: contain;
  background-position: center top;
}
#mainScreen.young-bg::before {
  background: url("../assets/images/young-lady/young-lady-base-face-v2.png") no-repeat;
  background-size: contain;
  background-position: center top;
}
#mainScreen.hide {
  opacity: 0;
  pointer-events: none;
}
#mainScreen .btn-container {
  position: absolute;
  bottom: 40px;
  left: 3%;
  width: 94%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in;
}
#mainScreen .btn-container.show {
  opacity: 1;
  pointer-events: all;
}
#mainScreen .btn-container .btn {
  border: 0;
  outline: 0;
  width: 210px;
  height: 80px;
  font-weight: 700;
  font-size: 15px;
  padding: 10px;
}

/* 
 AR Page html
  *//*# sourceMappingURL=main.css.map */