/*!************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./scss/style.scss ***!
  \************************************************************************************************************************************************************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: clamp(16px, 4vw, 24px);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  overflow: hidden; }

html {
  width: 100vw;
  height: 100vh; }

.app {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  height: 100%;
  background-color: #e2e2e2;
  position: relative; }
  .app img {
    width: 100%;
    height: auto; }
  .app .model-sidebar {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 400px;
    background-color: #606060;
    gap: 2rem;
    padding: 2rem;
    overflow: auto; }
  .app .canvas {
    width: calc(100% - 400px); }
  .app .controls {
    display: flex;
    position: absolute;
    flex-flow: column nowrap;
    top: .5rem;
    right: .5rem; }
    .app .controls button {
      padding: 0.5rem 1rem;
      font-size: 0.7rem;
      margin-bottom: 0.7rem;
      background-color: #fff;
      border: none;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
      cursor: pointer; }
      .app .controls button:hover {
        background-color: #e7e7e7; }

.loading-screen {
  display: none; }

