:root {
  --space: 2em;
}

::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: gray;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: red;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: gray;
}

.v3d-container .v3d-annotation {
  height: 0;
  width: 0;
  min-width: auto;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  border: none;
  background-color: rgba(0, 112, 198, 0.5) !important;
  transition: visibility 0s, opacity 0.1s linear;
}
.v3d-container.show-annotation .v3d-annotation {
  visibility: visible;
  opacity: 1;
}
.v3d-container.show-annotation .annotation-list {
  visibility: visible;
  opacity: 1;
}

.loading-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 3;
}
.loading-container > img {
  height: 500px;
  width: 500px;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.loading-container p {
  font-size: x-large;
  font-weight: bold;
}
.loading-container .loading-bar {
  width: 500px;
  display: flex;
  justify-content: flex-start;
  background-color: #cccccc;
}
.loading-container .loading-bar > .loading-bar-progress {
  height: 5px;
  background-color: black;
  width: 0;
}

.controller {
  position: absolute;
  right: 0;
  bottom: 1em;
}
.controller > .controller-main {
  display: flex;
}
.controller > .controller-main > div {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-right: var(--space);
}
.controller .controller-btn {
  width: 100%;
  max-width: 80px;
  background: no-repeat;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.controller .controller-btn > img {
  width: 100%;
}
.controller .controller-btn:after {
  font-size: large;
  font-weight: bolder;
  text-align: center;
  margin-top: 0.25em;
  color: black;
}
.controller .controller-btn:disabled {
  opacity: 0.3;
}

.v3d-annotation-dialog {
  padding: 0.5em 2em;
  background-color: rgba(0, 0, 0, 0.4);
  border-top: 3px solid dodgerblue;
  color: white;
  font-weight: bold;
  font-size: x-large;
  border-radius: 0;
}
.v3d-annotation-dialog.show {
  visibility: visible !important;
}

.transparent-addition {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: calc(100% + var(--space));
  transition: visibility 0s, opacity 0.5s linear;
}
.transparent-addition.show {
  visibility: visible;
  opacity: 1;
}
.transparent-addition > div {
  display: grid;
  grid-template-columns: auto 80px 80px;
  /*grid-template-columns: 80px 80px;*/
  grid-column-gap: var(--space);
  padding: 1em;
  border-radius: 5px;
  background-color: rgba(128, 128, 128, 0.2);
  backdrop-filter: blur(2px);
}
.transparent-addition > div > div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.transparent-addition > div > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transparent-addition > div > div > div > input[type=range] {
  width: 200px;
  accent-color: black;
}
.transparent-addition > div > div > div > label {
  font-size: large;
  font-weight: bolder;
  text-align: center;
  color: black;
  margin-right: 0.5em;
}

.annotation-list {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 20%;
  left: 1em;
  max-height: 60%;
  padding: 0.5em 1em;
  background-color: rgba(128, 128, 128, 0.6);
  backdrop-filter: blur(2px);
  overflow: auto;
  transition: visibility 0s, opacity 0.5s linear;
}
.annotation-list ul {
  list-style: none;
  padding-left: 0;
}
.annotation-list ul li {
  margin: 0.5em 0;
  list-style: none;
}
.annotation-list ul li > h4 {
  margin: 0;
}
.annotation-list ul li > h5 {
  margin: 0.75em 0;
  font-weight: normal;
}
.annotation-list ul li > h5:hover {
  cursor: pointer;
  color: green;
}
.annotation-list ul li.active > h5 {
  color: green;
}
.annotation-list > ul > li > ul {
  padding-left: 1.25em;
}

@media screen and (max-width: 1200px) {
  :root {
    --space: 1em;
  }
  .controller {
    right: 0;
    bottom: var(--space);
  }
  .controller .controller-btn {
    max-width: 60px;
  }
  .controller .controller-btn:after {
    font-size: small;
  }
  .v3d-annotation-dialog {
    font-size: small;
  }
  .annotation-list {
    top: var(--space);
    left: var(--space);
    max-height: 40%;
    font-size: small;
  }
  .transparent-addition > div {
    grid-template-columns: auto 60px 60px;
  }
  .transparent-addition > div > div > div > input[type=range] {
    width: 180px;
  }
  .transparent-addition > div > div > div > label {
    font-size: small;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --space: 0.75em;
  }
  .controller {
    right: 0;
    bottom: var(--space);
  }
  .controller .controller-btn {
    max-width: 50px;
  }
  .controller .controller-btn:after {
    font-size: x-small;
  }
  .v3d-annotation-dialog {
    font-size: small;
  }
  .annotation-list {
    top: 10px;
    left: 10px;
    max-height: 30%;
    font-size: small;
  }
  .transparent-addition > div {
    grid-template-columns: auto 50px 50px;
  }
  .transparent-addition > div > div > div > input[type=range] {
    width: 100px;
  }
  .transparent-addition > div > div > div > label {
    font-size: x-small;
  }
}
@media screen and (max-height: 576px) and (orientation: landscape) {
  :root {
    --space: 0.5em;
  }
  .controller {
    right: 0;
    bottom: var(--space);
  }
  .controller .controller-btn {
    max-width: 50px;
  }
  .controller .controller-btn:after {
    font-size: x-small;
  }
  .v3d-annotation-dialog {
    font-size: small;
  }
  .annotation-list {
    top: 10px;
    left: 10px;
    max-height: 50%;
    font-size: small;
  }
  .transparent-addition > div {
    padding: 0.5em;
    grid-template-columns: auto 50px 50px;
  }
  .transparent-addition > div > div > div > input[type=range] {
    width: 100px;
  }
  .transparent-addition > div > div > div > label {
    font-size: x-small;
  }
}
#reset_pos_btn:after {
  content: "Reset Position";
}

#explode_btn:after {
  content: "Explode";
}

#annotations_btn:after {
  content: "Show Annotations";
}

#annotations_btn.active:after {
  content: "Hide Annotations";
}

#internals_btn:after {
  content: "Show Internals";
}

#internals_btn.active:after {
  content: "Hide Internals";
}

#airflow_btn:after {
  content: "Air Flow";
}

#transparency_btn:after {
  content: "Transparency";
}

#ar_btn:after {
  content: "AR";
}

#isolate_btn > img:nth-child(2) {
  display: none;
}
#isolate_btn:after {
  content: "Isolate";
}
#isolate_btn.active > img:nth-child(1) {
  display: none;
}
#isolate_btn.active > img:nth-child(2) {
  display: flex;
}
#isolate_btn.active:after {
  content: "Integrate";
}

#show_all_btn:after {
  white-space: nowrap;
  content: "Show All";
}

/*# sourceMappingURL=style.css.map */
