@charset "UTF-8";
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url(/fonts/OpenSans-Regular.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  overflow: hidden;
}

.html-ui {
  position: absolute;
}

.game-view {
  position: absolute;
}

.html-edit-tools {
  position: absolute;
  z-index: 10;
  color: white;
  overflow: auto;
  height: 75px;
  margin-left: 100px;
  width: calc(100% - 100px);
}
.html-edit-tools ul {
  text-align: right;
}
.html-edit-tools ul li {
  display: inline-block;
}

.html-edit-inspector {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  z-index: 10;
  margin-top: 75px;
  float: right;
  color: white;
  left: calc(100% - 250px);
  width: 250px;
  height: calc(100% - 75px);
  overflow: auto;
}
.html-edit-inspector > div {
  padding: 16px;
}
.html-edit-inspector ul {
  padding: 0;
}
.html-edit-inspector h1 {
  font-size: 1em;
  font-weight: bold;
}
.html-edit-inspector h2 {
  font-size: 0.9em;
  font-weight: bold;
}
.html-edit-inspector h3 {
  font-size: 0.8em;
  font-weight: bold;
}

.horizontal-menu ul li {
  display: inline-block;
  text-decoration: none;
}

.vertical-menu ul li {
  display: inline-block;
  text-decoration: none;
}

.ui-indent {
  padding-left: 1em;
}

.button-ui {
  display: inline-block;
  border-radius: 0.6em;
  border: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #3369ff;
  box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
  text-align: center;
  position: relative;
  padding: 0.5em 1.2em;
  margin: 0 0.3em 0.3em 0;
}
.button-ui:active {
  top: 0.1em;
}
@media all and (max-width: 30em) {
  .button-ui {
    display: block;
    margin: 0.4em auto;
  }
}

.button-ui-big {
  display: inline-block;
  border-radius: 0.6em;
  border: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #3369ff;
  box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
  text-align: center;
  position: relative;
  font-size: 18px;
  padding: 0.8em 1.2em;
  margin: 0 0.5em 1em 0;
}
.button-ui-big:active {
  top: 0.1em;
}
@media all and (max-width: 30em) {
  .button-ui-big {
    display: block;
    margin: 0.4em auto;
  }
}

.html-edit-inspector .button-item {
  margin: 3px 10px;
  width: calc(100% - 20px);
}
.html-edit-inspector input, .html-edit-inspector select {
  padding: 0.7em 1.4em;
  margin: 0 0.3em 0.3em 0;
  border-radius: 0.2em;
  box-sizing: border-box;
  color: #FFFFFF;
  background-color: #3369ff;
  box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
  border: 0;
}
.html-edit-inspector input[type=color] {
  padding: 0;
}

.button-item {
  text-align: center;
  cursor: pointer;
  margin: 2px;
  border-radius: 4px;
  color: #FFFFFF;
  background-color: #234280;
  border: none;
  padding: 12px;
  width: calc(100% - 4px);
  transition: all 0.5s;
  box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
}
.button-item span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.button-item span:before {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.5s;
}
.button-item:hover span {
  padding-left: 25px;
}
.button-item:hover span:before {
  opacity: 1;
  left: 0;
}

.fullsized {
  width: 100%;
  height: 100%;
  resize: none;
}

.centered {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

textarea[readonly] {
  background: none;
  border: 0;
}

/*# sourceMappingURL=styles.css.map */
