*{
    margin: 0;
  padding: 0;
  border: 0;
  font-size: 100vh;
  font: inherit;
  vertical-align: baseline;
}

body{
  background-color: lightgray;
}

#fileList{
  position: fixed;
}

.tp-rotv{
  position: fixed;
  right: 5px;
  top: 60px;
  width: 300px;
}

#defaultCanvas0{
  box-shadow: 0px 0px 8px #888888;
}

#canvasWrapper{
  width: calc(100vw - 305px);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

#progressBox{
  background-color: lightgray;
  border-radius: 3px;
  width: 250px;
  height: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  /* box-shadow: 0px 0px 8px white; */
}

#progressWrapper{
  position: fixed;
  z-index: 1;
  height: inherit;
  width: inherit;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

#progressText{
  font-size: 16px;
}

#progressBar{
  background-color: black;
  width: 0px;
  height: 10px;
  /* display: none; */
}

