html, 
body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  /* background: #ebebeb; */
  text-align: center;
}

#logotool-app-outer-container {
  height: 100%;
}

div.threed-outer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: unset !important;
  z-index: 999;
}

.logotool-app-container {
  display: flex; 
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  overflow: hidden;
}

.title + .logotool-app-container {
  height: calc(100% - 50px) ;
}

.title {
  font-weight: 600;
  display: none;
  padding: 10px 20px 10px 10px;
}

.dashboard {
  display: none;
}

#threed-application-outer {
  display: none;
  height: 100%;
}

#threed-application-outer div {
  height: 100%;
}

.error {
  color: red;
  font-weight: 600;
  padding: 10px;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
* {
  box-sizing: border-box;
  outline: none;
  font-style: normal;
}
