body {
  position: fixed;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: outfit;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #79c7c5;
  height: 70px;
}

.logo {
  font-family: "Courier New", Courier, monospace;
  flex: 1;
  font-size: 40px;
  margin-left: 100px;
}
.nav-items {
  display: flex;
  flex: 2;
  justify-content: end;
  list-style-type: none;
}

.nav-items li {
  flex-direction: row;
  margin: 0 20px 0 20px;
}

.nav-items a {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: black;
}

.nav-items a:hover {
  text-decoration: underline;
}

.nav-items a:active {
  color: rgba(54, 54, 54, 0.5);
}

.main {
  display: flex;
  height: calc(100vh - 70px);
  width: 100vw;
}

.left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ccfbfe;
  width: 20vw;
  height: 100%;
}

#title-div{
  padding: 5px;
  overflow: hidden;
  min-width: 0px;
  height: 75px;
}

#heading{
  margin: 0;
}

#org-audio{
  display: block;
}

.audioSection{
  margin-right: auto;
  margin-left: auto;
}

#testaudio{
  margin-right: auto;
  margin-left: auto;
  max-width: 90%;
  border-radius: 50px;
}

#audio-div{
  margin-right: auto;
  margin-left: auto;
}

.audio{
  margin-right: auto;
  margin-left: auto;
  display: none;
  max-width: 90%;
  border-radius: 50px;
}

/* width */
#desc::-webkit-scrollbar {
  width: 10px;
}

/* Track */
#desc::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
#desc::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #555;
}

/* Handle on hover */
#desc::-webkit-scrollbar-thumb:hover {
  background: #888;
}

#desc {
  border: 1px solid black;
  font-weight: 400;
  overflow-y: scroll;
  height: 50%;
}

.play-button {
  overflow-y: scroll;
}

.play-button::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.play-button::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.play-button::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #555;
}

/* Handle on hover */
.play-button::-webkit-scrollbar-thumb:hover {
  background: #888;
}

.play-button button {
  font-weight: 700;
}

.sketchfab-embed-wrapper {
  width: 100%;
  height: 100%;
}

.right {
  position: relative;
  width: 80vw;
  height: 100%;
}
.model {
  width: 100%;
  height: 100%;
}

.btn{
  padding: 5px;
  width: 100px;
  background-color: white;
  border-radius: 25px;
  position: absolute;
  left: 15px;
  bottom: 15px;
}

.btn:active{
  color: white;
  background-color: black;
}

#model {
  position: relative;
  width: 100%;
  height: 100%;
}

.close{
  width: 40px;
  height: 40px;
  position: absolute;
  right: 2px;
  top: 2px;
  background-color: white;
  border: 1px solid black;
  border-radius: 20px;
}

.close:active{
  color: white;
  background-color: red;
}

.parts{
  display: none;
  background-color: white;
  border: 1px solid black;
  border-radius: 25px;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  transform: translate(15%, 15%);
  width: 75%;
  height: 75%;
}

[data-role="controls"] > button {
  margin: 50px auto;
  outline: none;
  display: block;
  border: 1px solid black;
  background-color: #d9afd9;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#d9afd9),
    to(#97d9e1)
  );
  background-image: -o-linear-gradient(bottom, #d9afd9 0%, #97d9e1 100%);
  background-image: linear-gradient(0deg, #d9afd9 0%, #97d9e1 100%);
  width: 100px;
  height: 50px;
  border-radius: 50px;
  cursor: pointer;
}
[data-role="controls"] > button:hover {
  background-color: #ee7bee;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#ee7bee),
    to(#6fe1f5)
  );
  background-image: -o-linear-gradient(bottom, #ee7bee 0%, #6fe1f5 100%);
  background-image: linear-gradient(0deg, #ee7bee 0%, #6fe1f5 100%);
}
[data-role="controls"] > button[data-recording="true"] {
  background-color: #ff2038;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#ff2038),
    to(#b30003)
  );
  background-image: -o-linear-gradient(bottom, #ff2038 0%, #b30003 100%);
  background-image: linear-gradient(0deg, #ff2038 0%, #b30003 100%);
}
[data-role="recordings"] > .row {
  width: auto;
  height: auto;
  padding: 20px;
}
[data-role="recordings"] > .row > audio {
  width: 100%;
  outline: none;
}
[data-role="recordings"] > .row > a {
  display: none;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  background-color: #0093e9;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#0093e9),
    to(#80d0c7)
  );
  background-image: -o-linear-gradient(bottom, #0093e9 0%, #80d0c7 100%);
  background-image: linear-gradient(0deg, #0093e9 0%, #80d0c7 100%);
  float: right;
  margin-left: 20px;
  cursor: pointer;
}
[data-role="recordings"] > .row > a:hover {
  text-decoration: none;
}
[data-role="recordings"] > .row > a:active {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#0093e9),
    to(#80d0c7)
  );
  background-image: -o-linear-gradient(top, #0093e9 0%, #80d0c7 100%);
  background-image: linear-gradient(180deg, #0093e9 0%, #80d0c7 100%);
}

.Hotspot {
  display: none;
  background: #fff;
  border-radius: 32px;
  border: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  cursor: pointer;
  width: 20px;
  height: 20px;
  padding: 8px;
  position: relative;
  z-index: 0;
  transition: opacity 0.3s;
}

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

.Hotspot:focus {
  border: 4px solid rgb(0, 128, 200);
  height: 32px;
  outline: none;
  width: 32px;
}

.Hotspot > * {
  opacity: 1;
  transform: translateY(-50%);
}

.HotspotAnnotation {
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
  font-family: Futura, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 700;
  left: calc(100% + 1em);
  max-width: 128px;
  overflow-wrap: break-word;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  width: max-content;
}

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




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


@media only screen and (max-width: 800px){
  #heading{
    font-size: 20px;
  }
}
