/* line 6, ../../sass/_dat-gui-structure.scss */
.dg {
  /** Clear list styles */
  /* Auto-place container */
  /* Auto-placed GUI's */
  /* Line items that don't contain folders. */
  /** Folder names */
  /** Hides closed items */
  /** Controller row */
  /** Name-half (left) */
  /** Controller-half (right) */
  /** Controller placement */
  /** Shorter number boxes when slider is present. */
  /** Ensure the entire boolean and function row shows a hand */
}
/* line 9, ../../sass/_dat-gui-structure.scss */
.dg ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  clear: both;
}
/* line 18, ../../sass/_dat-gui-structure.scss */
.dg.ac {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 0;
}
/* line 27, ../../sass/_dat-gui-structure.scss */
.dg:not(.ac) .main {
  /** Exclude mains in ac so that we don't hide close button */
  overflow: hidden;
}
/* line 32, ../../sass/_dat-gui-structure.scss */
.dg.main {
  -webkit-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
/* line 36, ../../sass/_dat-gui-structure.scss */
.dg.main.taller-than-window {
  overflow-y: auto;
}
/* line 40, ../../sass/_dat-gui-structure.scss */
.dg.main.taller-than-window .close-button {
  opacity: 1;
  /* TODO, these are style notes */
  margin-top: -1px;
  border-top: 1px solid #2c2c2c;
}
/* line 52, ../../sass/_dat-gui-structure.scss */
.dg.main ul.closed .close-button {
  opacity: 1 !important;
}
/* line 56, ../../sass/_dat-gui-structure.scss */
.dg.main:hover .close-button,
.dg.main .close-button.drag {
  opacity: 1;
}
/* line 61, ../../sass/_dat-gui-structure.scss */
.dg.main .close-button {
  /*opacity: 0;*/
  -webkit-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  -moz-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  border: 0;
  position: absolute;
  line-height: 19px;
  height: 20px;
  /* TODO, these are style notes */
  cursor: pointer;
  text-align: center;
  background-color: #000;
}
/* line 74, ../../sass/_dat-gui-structure.scss */
.dg.main .close-button:hover {
  background-color: #111;
}
/* line 83, ../../sass/_dat-gui-structure.scss */
.dg.a {
  float: right;
  margin-right: 15px;
  overflow-x: hidden;
}
/* line 89, ../../sass/_dat-gui-structure.scss */
.dg.a.has-save ul {
  margin-top: 27px;
}
/* line 91, ../../sass/_dat-gui-structure.scss */
.dg.a.has-save ul.closed {
  margin-top: 0;
}
/* line 96, ../../sass/_dat-gui-structure.scss */
.dg.a .save-row {
  position: fixed;
  top: 0;
  z-index: 1002;
}
/* line 104, ../../sass/_dat-gui-structure.scss */
.dg li {
  -webkit-transition: height 0.1s ease-out;
  -o-transition: height 0.1s ease-out;
  -moz-transition: height 0.1s ease-out;
  transition: height 0.1s ease-out;
}
/* line 109, ../../sass/_dat-gui-structure.scss */
.dg li:not(.folder) {
  cursor: auto;
  height: 27px;
  line-height: 27px;
  overflow: hidden;
  padding: 0 4px 0 5px;
}
/* line 117, ../../sass/_dat-gui-structure.scss */
.dg li.folder {
  padding: 0;
  border-left: 4px solid transparent;
}
/* line 124, ../../sass/_dat-gui-structure.scss */
.dg li.title {
  cursor: pointer;
  margin-left: -4px;
}
/* line 130, ../../sass/_dat-gui-structure.scss */
.dg .closed li:not(.title),
.dg .closed ul li,
.dg .closed ul li > * {
  height: 0;
  overflow: hidden;
  border: 0;
}
/* line 139, ../../sass/_dat-gui-structure.scss */
.dg .cr {
  clear: both;
  padding-left: 3px;
  height: 27px;
}
/* line 146, ../../sass/_dat-gui-structure.scss */
.dg .property-name {
  cursor: default;
  float: left;
  clear: left;
  width: 40%;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 156, ../../sass/_dat-gui-structure.scss */
.dg .c {
  float: left;
  width: 60%;
}
/* line 162, ../../sass/_dat-gui-structure.scss */
.dg .c input[type=text] {
  border: 0;
  margin-top: 4px;
  padding: 3px;
  width: 100%;
  float: right;
}
/* line 171, ../../sass/_dat-gui-structure.scss */
.dg .has-slider input[type=text] {
  width: 30%;
  /*display: none;*/
  margin-left: 0;
}
/* line 177, ../../sass/_dat-gui-structure.scss */
.dg .slider {
  float: left;
  width: 66%;
  margin-left: -5px;
  margin-right: 0;
  height: 19px;
  margin-top: 4px;
}
/* line 186, ../../sass/_dat-gui-structure.scss */
.dg .slider-fg {
  height: 100%;
}
/* line 190, ../../sass/_dat-gui-structure.scss */
.dg .c input[type=checkbox] {
  margin-top: 9px;
}
/* line 194, ../../sass/_dat-gui-structure.scss */
.dg .c select {
  margin-top: 5px;
}
/* line 199, ../../sass/_dat-gui-structure.scss */
.dg .cr.function,
.dg .cr.function .property-name,
.dg .cr.function *,
.dg .cr.boolean,
.dg .cr.boolean * {
  cursor: pointer;
}
/* line 207, ../../sass/_dat-gui-structure.scss */
.dg .selector {
  display: none;
  position: absolute;
  margin-left: -9px;
  margin-top: 23px;
  z-index: 10;
}
/* line 215, ../../sass/_dat-gui-structure.scss */
.dg .c:hover .selector,
.dg .selector.drag {
  display: block;
}
/* line 220, ../../sass/_dat-gui-structure.scss */
.dg li.save-row {
  padding: 0;
}
/* line 224, ../../sass/_dat-gui-structure.scss */
.dg li.save-row .button {
  display: inline-block;
  padding: 0px 6px;
}
/* line 231, ../../sass/_dat-gui-structure.scss */
.dg.dialogue {
  background-color: #222;
  width: 460px;
  padding: 15px;
  font-size: 13px;
  line-height: 15px;
}

/* TODO Separate style and structure */
/* line 242, ../../sass/_dat-gui-structure.scss */
#dg-new-constructor {
  padding: 10px;
  color: #222;
  font-family: Monaco, monospace;
  font-size: 10px;
  border: 0;
  resize: none;
  box-shadow: inset 1px 1px 1px #888;
  word-wrap: break-word;
  margin: 12px 0;
  display: block;
  width: 440px;
  overflow-y: scroll;
  height: 100px;
  position: relative;
}

/* line 259, ../../sass/_dat-gui-structure.scss */
#dg-local-explain {
  display: none;
  font-size: 11px;
  line-height: 17px;
  border-radius: 3px;
  background-color: #333;
  padding: 8px;
  margin-top: 10px;
}
/* line 267, ../../sass/_dat-gui-structure.scss */
#dg-local-explain code {
  font-size: 10px;
}

/* line 272, ../../sass/_dat-gui-structure.scss */
#dat-gui-save-locally {
  display: none;
}

/** Main type */
/* line 52, ../../sass/_dat-gui.scss */
.dg {
  color: #eee;
  font: 11px 'Lucida Grande', sans-serif;
  text-shadow: 0 -1px 0 #111;
  /** Auto place */
  /* Controller row, <li> */
  /** Controllers */
}
/* line 59, ../../sass/_dat-gui.scss */
.dg.main {
  /** Scrollbar */
}
/* line 62, ../../sass/_dat-gui.scss */
.dg.main::-webkit-scrollbar {
  width: 5px;
  background: #1a1a1a;
}
/* line 66, ../../sass/_dat-gui.scss */
.dg.main::-webkit-scrollbar-corner {
  height: 0;
  display: none;
}
/* line 70, ../../sass/_dat-gui.scss */
.dg.main::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #676767;
}
/* line 79, ../../sass/_dat-gui.scss */
.dg li:not(.folder) {
  background: #1a1a1a;
  border-bottom: 1px solid #2c2c2c;
}
/* line 84, ../../sass/_dat-gui.scss */
.dg li.save-row {
  line-height: 25px;
  background: #dad5cb;
  border: 0;
}
/* line 90, ../../sass/_dat-gui.scss */
.dg li.save-row select {
  margin-left: 5px;
  width: 108px;
}
/* line 96, ../../sass/_dat-gui.scss */
.dg li.save-row .button {
  margin-left: 5px;
  margin-top: 1px;
  border-radius: 2px;
  font-size: 9px;
  line-height: 7px;
  padding: 4px 4px 5px 4px;
  background: #c5bdad;
  color: #fff;
  text-shadow: 0 1px 0 #b0a58f;
  box-shadow: 0 -1px 0 #b0a58f;
  cursor: pointer;
}
/* line 98, ../../sass/_dat-gui.scss */
.dg li.save-row .button.gears {
  background: #c5bdad url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQJJREFUeNpiYKAU/P//PwGIC/ApCABiBSAW+I8AClAcgKxQ4T9hoMAEUrxx2QSGN6+egDX+/vWT4e7N82AMYoPAx/evwWoYoSYbACX2s7KxCxzcsezDh3evFoDEBYTEEqycggWAzA9AuUSQQgeYPa9fPv6/YWm/Acx5IPb7ty/fw+QZblw67vDs8R0YHyQhgObx+yAJkBqmG5dPPDh1aPOGR/eugW0G4vlIoTIfyFcA+QekhhHJhPdQxbiAIguMBTQZrPD7108M6roWYDFQiIAAv6Aow/1bFwXgis+f2LUAynwoIaNcz8XNx3Dl7MEJUDGQpx9gtQ8YCueB+D26OECAAQDadt7e46D42QAAAABJRU5ErkJggg==) 2px 1px no-repeat;
  height: 7px;
  width: 8px;
}
/* line 104, ../../sass/_dat-gui.scss */
.dg li.save-row .button:hover {
  background-color: #bab19e;
  box-shadow: 0 -1px 0 #b0a58f;
}
/* line 113, ../../sass/_dat-gui.scss */
.dg li.folder {
  border-bottom: 0;
}
/* line 117, ../../sass/_dat-gui.scss */
.dg li.title {
  padding-left: 16px;
  background: #000 url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 10px no-repeat;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
/* line 126, ../../sass/_dat-gui.scss */
.dg .closed li.title {
  background-image: url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlGIWqMCbWAEAOw==);
}
/* line 133, ../../sass/_dat-gui.scss */
.dg .cr.boolean {
  border-left: 3px solid #806787;
}
/* line 137, ../../sass/_dat-gui.scss */
.dg .cr.function {
  border-left: 3px solid #e61d5f;
}
/* line 141, ../../sass/_dat-gui.scss */
.dg .cr.number {
  border-left: 3px solid #2FA1D6;
}
/* line 143, ../../sass/_dat-gui.scss */
.dg .cr.number input[type=text] {
  color: #2FA1D6;
}
/* line 148, ../../sass/_dat-gui.scss */
.dg .cr.string {
  border-left: 3px solid #1ed36f;
}
/* line 150, ../../sass/_dat-gui.scss */
.dg .cr.string input[type=text] {
  color: #1ed36f;
}
/* line 155, ../../sass/_dat-gui.scss */
.dg .cr.function:hover, .dg .cr.boolean:hover {
  background: #111;
}
/* line 165, ../../sass/_dat-gui.scss */
.dg .c input[type=text] {
  background: #303030;
  outline: none;
}
/* line 169, ../../sass/_dat-gui.scss */
.dg .c input[type=text]:hover {
  background: #3c3c3c;
}
/* line 172, ../../sass/_dat-gui.scss */
.dg .c input[type=text]:focus {
  background: #494949;
  color: #fff;
}
/* line 179, ../../sass/_dat-gui.scss */
.dg .c .slider {
  background: #303030;
  cursor: ew-resize;
}
/* line 184, ../../sass/_dat-gui.scss */
.dg .c .slider-fg {
  background: #2FA1D6;
}
/* line 188, ../../sass/_dat-gui.scss */
.dg .c .slider:hover {
  background: #3c3c3c;
}
/* line 190, ../../sass/_dat-gui.scss */
.dg .c .slider:hover .slider-fg {
  background: #44abda;
}

/* line 3, ../../sass/style.scss */
body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: #0B252C;
  /*rgb(15,12,31);*/
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* line 13, ../../sass/style.scss */
canvas:focus {
  outline: none;
}

/* line 17, ../../sass/style.scss */
.dg {
  text-align: left;
}
