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

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

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

model-viewer[ar-status="session-started"]>.Hotspot,
model-viewer[ar-status="session-started"]>.Hotspot>*,
model-viewer[ar-status="object-placed"]>.Hotspot,
model-viewer[ar-status="object-placed"]>.Hotspot>* {
  display: none;
}

.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;
}

.color-options {
  position: absolute;
  top: 2%;
  right: 2%;
  display: flex;
  flex-direction: column;
}

.color {
  min-height: 40px;
  width: 40px;
  height: 40px;
  margin: 10px;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 0 5px 0 #808080;
  -webkit-box-shadow: 0 0 5px 0 #808080;
  -moz-box-shadow: 0 0 5px 0 #fff;
}

.color.active {
  box-shadow: 0 0 10px 0 rgb(255 108 0);
  -webkit-box-shadow: 0 0 10px 0 rgb(255 108 0);
  -moz-box-shadow: 0 0 5px 0 rgb(255 108 0);
}

@media only screen and (max-width: 500px) {
  .color-options {
    flex-direction: row;
  }

  .color {
    margin: 10px;
  }
}

#ar-button {
  background-image: url(../img/ar_icon.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 12px 50%;
  background-color: #fff;
  position: absolute;
  left: 3%;
  white-space: nowrap;
  top: 2%;
  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;
}

.playback-wrapper {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 10%;
  pointer-events: none;
  background: linear-gradient(#ffffff00, rgb(0 0 0 / 50%));
  color: white;
  padding-top: 2%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.timeBar-wrapper {
  width: 98%;
  pointer-events: auto;
}

#timeBar {
  width: 100%;
  margin: 7px 0;
  background-color: transparent;
}

.playbackBtn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: nowrap;
  width: 98%;
  pointer-events: auto;
}

#playbackBtn {
  padding: 0px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: none;
  background: transparent;
  border-radius: 50px;
}

#playbackIcon {
  width: 100%;
  height: auto;
}

#timer {
  font-family: Roboto Regular, Helvetica Neue, sans-serif;
}

@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;
}

.Hotspot {
  background: yellow;
  border-radius: 32px;
  box-sizing: border-box;
  border-style: hidden;
  cursor: pointer;
  height: 40px;
  opacity: 1;
  padding: 8px;
  position: relative;
  transition: opacity 0.3s;
  width: 40px;
  -webkit-animation: ping 1s ease-in-out infinite both;
  animation: ping 1s ease-in-out infinite both;
}

.Hotspot:not([data-visible]) {
  background: transparent;
  border: 4px solid yellow;
  box-shadow: none;
  height: 32px;
  pointer-events: none;
  width: 32px;
}

.Hotspot.active, .Hotspot:focus {
  background: #fff;
  border: 4px solid rgb(0, 128, 200);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  height: 32px;
  outline: none;
  width: 32px;
  -webkit-animation: none;
  animation: none;
}

.Hotspot>* {
  opacity: 0;
  pointer-events: none;
}

.Hotspot.active>*, .Hotspot:focus>* {
  opacity: 1;
}

.Hotspot.active>* {
  pointer-events: all;
  transform: translateY(-50%);
}

.HotspotAnnotation {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgb(89 89 89 / 38%);
  text-align: left;
  display: block;
  font-family: Futura, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  left: calc(100% + 1em);
  max-width: unset;
  overflow-wrap: break-word;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  width: max-content;
  -webkit-animation: none;
  animation: none;
}

.Hotspot:not([data-visible])>* {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 4px));
  transition: transform 0.3s, opacity 0.3s;
}

@media screen and (max-width: 666px) {
  .HotspotAnnotation {
    font-size: 0.75rem;
  }
}

/* ----------------------------------------------
* Generated by Animista on 2023-10-11 13:16:52
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation ping
* ----------------------------------------
*/
@-webkit-keyframes ping {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }

  80% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(2.2);
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes ping {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }

  80% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(2.2);
    transform: scale(2.2);
    opacity: 0;
  }
}

.hidden {
  display: none;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal-panel {
  position: relative;
  background: #fff;
  width: 50%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem 2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
  text-align: center;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.modal-close:hover {
  background: #f0f0f0;
}

.modal-panel img {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: auto;
}

@media only screen and (max-width: 500px) {
  .modal-panel {
    width: 80%;
  }
}