body{
  max-width: 100%; overflow-x: hidden; 
}
html {
  overflow-x: hidden;
  background-color: #151515;
}

.zoom {
  overflow-x: hidden;  
  display: inline-block;
  position: absolute;
  top: 0;
  height: 30%;
  width: 100%;
}

/* magnifying glass icon */
.zoom:after {
  overflow-x: none;  
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url(https://cdn.glitch.global/61b3137b-3e3b-4c2c-a6e7-9d3dac7f65fa/icon.png);

}

.zoom img {
  overflow-x: hidden;  
  display: block;
  width: 100%;
}

.zoom img::selection {
  background-color: transparent;
}

#ex2 img:hover {
  cursor: url(https://cdn.glitch.global/61b3137b-3e3b-4c2c-a6e7-9d3dac7f65fa/grab.cur), default;
}

#ex2 img:active {
  cursor: url(https://cdn.glitch.global/61b3137b-3e3b-4c2c-a6e7-9d3dac7f65fa/grabbed.cur), default;
}

.splash-screen {
  overflow: hidden;  
  width: 100%;
  height: 100%;
  background-color: #151515;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 1s;
}

.splash-logo {
  overflow: none;  
  transform: translateY(-1%);
}

.content {
  width: 100%;
  display: none;
}

.bolum1 {
  width: 100%;
  display: unset;
  align-content: center;
}

.bolum2 {
  max-width: 100%; 
  overflow-x: hidden;
  align-content: center;
  display: none;
}

.head-zone {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  text-align: center;
}

.image-zoom-available {
  cursor: zoom-in;
  overflow: none;
}

.image-zoom-available.is-active {
  cursor: none;
  overflow: none;
}

h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  color: white;
}

p1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;  
  color: white;
}

.grid-container {
  margin-left: 1.5%;
  width: 100%;
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 3%;
}

.grid-item {
    height: 200px;
    width: 88%;
    margin-bottom: 30%;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    position: relative;
    text-align: center;
    animation: fadeIn 5s;
    -webkit-animation: fadeIn 5s;
    -moz-animation: fadeIn 5s;
    -o-animation: fadeIn 5s;
    -ms-animation: fadeIn 5s;
}

.grid-item img {
    width: 100%;
    min-width: 250px;
    border-radius: 10px;
    object-fit: contain;
}

/* Bottom left text */
.bottom-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, bold, sans-serif;
  font-size: 12px;
  color: white;
  position: absolute;
  left: 3%;
  bottom: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.imgCon {
  position: absolute;
  top: 0;
  height: 30%;
  width: 100%;
  overflow: hidden;
}

.imgCon img {
  width: 95%;
  object-fit: cover;
  border-radius: 0 0 70% 0;
}

.head {
  position: absolute;
  top: 30%;
  height: 1%;
  width: 100%;
}

.details {
  position: absolute;
  top: 43%;
  height: 50%;
  width: 80%;
  overflow: auto;
}

.details h4 {
  margin: 20px;
  color: #e3e3e3;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

.details h {
  margin: 20px;
  color: #e3e3e3;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
}

.head h4 {
  margin: 20px;
  color: #e3e3e3;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

p2 {
  margin: 40px;
  color: #e3e3e3;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
}

.buttonHolder {
    position: absolute;
    bottom: 0;
    width:60%;
}

.divider-line {
    background: #ff5b44;
    width: 98%;
    height: 1px;
    margin: 15px 0;
    display: flex;
}

.arButtons {
    margin-bottom: 10%;
    background-color: #ff5b44;
    color: white;
    height: 60px;
    width: 100%;
    border-radius: 30px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    border: none;
}

.buttonHolderContainer {
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

table, th, td {
  padding-left: 50px;
  padding-top: 5px;
  color: white;
  font-weight: bold;
}

.back-button {
  margin: 20px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #ff5b44;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  color: white;
  z-index: 9999;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

:not(:defined) > * {
  display: none;
}

model-viewer {
  width: 100%;
  height: 90%;
  background-color: #ffffff;
}

.progress-bar {
  display: block;
  width: 33%;
  height: 10%;
  max-height: 2%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 25px;
  box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5),
    0px 0px 5px 1px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
}

.progress-bar.hide {
  visibility: hidden;
  transition: visibility 0.3s;
}

.update-bar {
  background-color: rgba(255, 255, 255, 0.9);
  width: 0%;
  height: 100%;
  border-radius: 25px;
  float: left;
  transition: width 0.3s;
}

#ar-button {
  background-image: url(ar_icon.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 12px 50%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 16px;
  padding: 0px 16px 0px 40px;
  font-family: Roboto Regular, Helvetica Neue, sans-serif;
  font-size: 14px;
  color: #4285f4;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  border: 1px solid #dadce0;
}

#ar-button:active {
  background-color: #e8eaed;
}

#ar-button:focus {
  outline: none;
}

#ar-button:focus-visible {
  outline: 1px solid #4285f4;
}

@keyframes circle {
  from {
    transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

@keyframes elongate {
  from {
    transform: translateX(100px);
  }

  to {
    transform: translateX(-100px);
  }
}

model-viewer > #ar-prompt {
  position: absolute;
  left: 50%;
  bottom: 60px;
  animation: elongate 2s infinite ease-in-out alternate;
  display: none;
}

model-viewer[ar-status="session-started"] > #ar-prompt {
  display: block;
}

model-viewer > #ar-prompt > img {
  animation: circle 4s linear infinite;
}

.lds-ring {
  display: inline-block;
  position: absolute;
  bottom: 10%;
  width: 80px;
  height: 80px;
  left: 40%;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
