/*
	Debug
*/
#debugOut {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 819200;
  border-style: none;
  margin: 0;
  padding: 0;
  font-family: bold 11px/20px sans-serif;
}
#debugOut pre {
  margin: 2px 4px 0px 4px;
  background-color: rgba(255, 255, 255, 0.75);
  color: #303030;
  text-shadow: 0px 1px 2px #ffffff;
}
#debugOut.negative pre {
  background-color: rgba(0, 0, 0, 0.25);
  color: #e8e8e8;
  text-shadow: 0px 1px 2px #000;
}

/*
	Display
*/
.sprite {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
.sprite--button {
  cursor: pointer;
}

img.sprite, .fast-sprite {
  -webkit-perspective: 10px;
  -webkit-perspective-origin: 50% 50%;
}

.shape, .horizontal-ruler,
.vertical-ruler,
.grid-ruler {
  pointer-events: none;
  -webkit-touch-callout: none;
}

.shape, .horizontal-ruler,
.vertical-ruler,
.grid-ruler, .unselectable, .slider, .button {
  user-select: none;
}

object, embed {
  width: 100%;
  height: 100%;
}
object:focus, embed:focus {
  outline: none;
}

.horizontal-ruler,
.vertical-ruler,
.grid-ruler {
  position: fixed;
  left: 0;
  top: 0;
}

.horizontal-ruler {
  width: 100%;
  height: 1px;
}

.vertical-ruler {
  width: 1px;
  height: 100%;
}

.grid-ruler {
  width: 100%;
  /*
  z-index: 16000;

  .col-1 {
  	background: rgba(255, 0, 0, .5);

  	> div {
  		height: 10px;
  		background: rgba(0, 255, 0, .5);

  	}

  }
  */
}

/*
	UI
*/
body.point * {
  cursor: pointer;
}
body.grab * {
  cursor: grabbing !important;
  cursor: -moz-grabbing !important;
  cursor: -webkit-grabbing !important;
}
body.scroll-locked {
  overflow: hidden;
  touch-action: none;
}

/*
	Disable scroll bars
*/
html, body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none;
}

.render-stage {
  position: relative;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.render-stage canvas {
  position: relative;
}

body {
  overflow: hidden;
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 12px;
  line-height: 18px;
}
body, body * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sliders {
  position: fixed;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 26px 20px;
}

.slider {
  margin: 12px 18px;
  -webkit-user-select: none;
}
.slider-label {
  display: table;
  margin-left: 8px;
  margin-bottom: 0.2em;
  font-weight: 500;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.5);
  cursor: col-resize;
}
.slider-bar {
  width: 200px;
  height: 20px;
  border-radius: 1024px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: rgba(72, 72, 72, 0.25);
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.slider-bar > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #fff0f0;
  border-top-right-radius: 1024px;
  border-bottom-right-radius: 1024px;
  border-right: 1px solid rgba(0, 0, 0, 0.65);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.55);
}
