body {
  font-family: Poppins;
  padding: 0 20px;
}

.hr-line {
  border-top: 1px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, White, DimGrey, White) border-box;
}

p {
  font-weight: 200;
}

a {
  text-decoration: none;
}

.circle-loader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

#progress-ring {
  --size: 100px;
  --indicator-color: Dodgerblue;
  --track-color: Whitesmoke;
  --indicator-transition-duration: 0;
  font-weight: bold;
  font-size: 18px;
}

.webgl {
  position: relative;
  cursor: grab;
}

.auto-rotate {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  scale: 0.8;
}

.auto-rotate input {
  opacity: 0;
  width: 0;
  height: 0;
}

.model-main-container {
  margin: 0 auto;
  max-width: 800px;
}

.model-bg {
  background-image: linear-gradient(
      rgba(245, 245, 245, 1),
      rgba(245, 245, 245, 0),
      rgba(245, 245, 245, 0),
      rgba(245, 245, 245, 0),
      rgba(245, 245, 245, 1)
    ),
    url("https://assets.codepen.io/9400490/background-3.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-user-select: none;
  user-select: none;
}

.model-3d-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.6 / 1;
}

.model-3d-container:fullscreen {
  background-image: linear-gradient(
      rgba(245, 245, 245, 1),
      rgba(245, 245, 245, 0),
      rgba(245, 245, 245, 1)
    ),
    url("https://assets.codepen.io/9400490/background-3.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0px 0px 80px WhiteSmoke inset;
}

.model-3d-controls {
  position: absolute;
  width: 100%;
  top: -60px;
}

.toggle-container {
  width: 50px;
  height: 50px;
  -webkit-user-select: none;
  user-select: none;
}

.toggle-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid Black;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.4s;
  -webkit-user-select: none;
  user-select: none;
}

.toggle i {
  color: Black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.controls-btn {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid Black;
  border-radius: 50%;
  transition: 0.4s;
  & i {
    color: Black;
  }
}

.toggle[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
}

.toggle-checkbox:checked + .toggle {
  border-color: White;
  background-color: rgba(30, 144, 255, 1);
}

.toggle-checkbox:checked + .toggle i {
  color: White;
}

.annotation {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.circle-marker {
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: Whitesmoke;
  background-color: Black;
  border: 1.5px solid #fff;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: auto;
}

#annotation-1 {
  z-index: 2;
}

#annotation-2 {
  z-index: 1;
}

.annotationText {
  font-size: 18px;
  margin-left: 40px;
  padding: 10px 20px;
  color: Whitesmoke;
  background: rgba(0, 0, 0, 0.7);
  -webkit-user-select: none;
  user-select: none;
  display: none;
}

.wa-model-details {
  margin-bottom: 10px;
}

.wa-model-details::part(content) {
  padding: 0;
}

.wa-model-details::part(base) {
  border-radius: 0;
}

.wa-model-details::part(header) {
  font-size: 20px;
  font-weight: 700;
  border-start-start-radius: 0px;
  border-start-end-radius: 0px;
  border-end-start-radius: 0px;
  border-end-end-radius: 0px;
}

.wa-model-details[open]::part(icon) {
  color: White;
}

.wa-model-details::part(header) {
  background-color: Whitesmoke;
}

.wa-model-details[open]::part(header) {
  background-color: DodgerBlue;
  color: White;
}

.wa-model-details[open]::part(icon) {
  color: White;
}

.wa-model-details::part(summary) {
  width: 100%;
  display: flex;
  justify-content: center;
}

#details-1::part(summary)::before {
  font: var(--fa-font-solid);
  font-size: 24px;
  content: "\f06e";
  margin-right: 15px;
  margin-top: 5px;
}

@media (hover: hover) {
  .toggle:hover {
    scale: 1.12;
  }
  .controls-btn:hover {
    scale: 1.12;
  }
}