/*!************************************************************************************************************************************************************************************************************!*\
  !*** 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: 16px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.75;
  padding: 2rem;
  overflow: hidden; }

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

body {
  display: flex;
  flex-flow: column nowrap; }

main {
  flex: 1;
  position: relative; }

h1 {
  font-size: 3.75rem;
  margin-bottom: 1rem;
  color: #2581C4; }

h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: #2581C4; }

p {
  font-size: 1.125rem;
  margin-bottom: 1rem; }

button {
  cursor: pointer; }

.app {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0; }

.main-content {
  padding: 4rem;
  overflow: auto;
  width: 50%;
  height: 100%;
  float: left; }

.canvas-container {
  background-color: #f5f5f5;
  border-radius: 22px;
  position: relative;
  z-index: 10;
  width: 50%;
  height: 100%;
  float: right; }
  .canvas-container .canvas {
    width: 100%;
    height: 100%;
    position: absolute; }
  .canvas-container .tool-tips {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: opacity 1000ms ease 500ms; }
    .canvas-container .tool-tips.hide {
      pointer-events: none;
      opacity: 0; }
    .canvas-container .tool-tips .tip {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.5);
      box-shadow: 0 1px 28px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(3px);
      border-radius: 100%;
      cursor: pointer;
      z-index: 20; }
      .canvas-container .tool-tips .tip:not(.active) {
        pointer-events: none; }
      .canvas-container .tool-tips .tip .content {
        display: none; }
  .canvas-container .control {
    position: absolute;
    border: none;
    background-color: unset;
    width: 45px;
    height: 45px;
    z-index: 10; }
    .canvas-container .control svg {
      width: 100%;
      height: 100%; }
    .canvas-container .control.js-rotate-left {
      left: 2rem;
      bottom: 2rem; }
    .canvas-container .control.js-rotate-right {
      bottom: 2rem;
      right: 2rem; }

.overlays {
  position: absolute;
  height: 100%;
  width: 50%;
  z-index: 5;
  right: 0; }
  .overlays .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 4rem 10rem 4rem 4rem;
    background-color: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
    border-radius: 22px;
    overflow: auto; }
    .overlays .overlay .js-close-overlay {
      border: none;
      background: none;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap;
      font-size: 1.3rem;
      gap: 1rem;
      color: #9a9a9a; }

