graphics-layout, .graphics {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
}

/* .graphics {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
} */

.graphics-viewport {
  position: relative;
  gap: 1rem;
  display: flex;
  align-items: stretch;
  flex-grow: 1;
  transition: all ease 300ms;
  overflow: hidden;
}

@media (max-width: 768px) {
  .graphics-viewport {
    padding-top: 0;
    gap: 0;
  }
}

.graphics-view {
  position: relative;
  flex-grow: 1;
  transition: all ease 300ms;
  overflow: scroll;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
}

.graphics-view-container {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* width: 100%;
  height: 100%; */
}

.sidebar-open .graphics-view-container {
  width: auto;
}

.graphics-view--container > * {
  position: absolute;
  max-width: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
