@font-face {
  font-family: "Roboto Mono";
  src: url("/assets/fonts/roboto-mono/robotomono-regular.woff2") format("woff2"), url("/assets/fonts/roboto-mono/robotomono-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/opensans/opensans-regular.woff2") format("woff2"), url("/assets/fonts/opensans/opensans-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/opensans/opensans-semibold.woff2") format("woff2"), url("/assets/fonts/opensans/opensans-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
.orange {
  color: #ff531a;
}

.blue-dark {
  color: #268ed9;
}

.blue-light {
  color: #00aaff;
}

.light {
  color: #fcfcfc;
}

.gray-light {
  color: #b5b5b5;
}

.gray-dark {
  color: #6f6f6f;
}

.dark {
  color: #333;
}

.orange-bg {
  color: #ff531a;
}

.blue-dark-bg {
  color: #268ed9;
}

.blue-light-bg {
  color: #00aaff;
}

.light-bg {
  color: #fcfcfc;
}

.gray-light-bg {
  color: #b5b5b5;
}

.gray-dark-bg {
  color: #6f6f6f;
}

.dark-bg {
  color: #333;
}

.flexrow {
  display: flex;
  flex-direction: row;
}

.flexcol {
  display: flex;
  flex-direction: column;
}

.flexwrap {
  flex-wrap: wrap;
}

.flex {
  flex: 1 0 auto;
}

.flex-center {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.min-width {
  width: 0.1%;
}

.half-width {
  width: 50%;
}

.max-width {
  width: 100%;
}

.hide-visually {
  position: absolute;
  top: -99em;
}

.caps {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

form {
  display: inline;
}

select,
input,
textarea,
button,
.button {
  -webkit-appearance: none;
  border: 1px solid #b5b5b5;
  border-radius: 3px;
  color: inherit;
}

input,
textarea {
  user-select: auto;
  user-select: text;
}

select {
  padding: 0 24px 0 5px;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8,10 L12,14 L16,10 L8,10 Z' fill='%236f6f6f'%3E%3C/path%3E%3C/svg%3E");
  background-position: right center;
  background-repeat: no-repeat;
}

input {
  line-height: 1.7em;
  padding: 0 0.3em;
  background-color: transparent;
}

input[type=number] {
  text-align: right;
}

textarea {
  font-family: monospace;
  white-space: pre-wrap;
  padding: 11px;
  background-color: transparent;
}

button,
.button,
input[type=submit] {
  font-weight: 600;
  font-size: 0.85em;
  line-height: 2em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  color: #333;
  background: transparent;
  padding: 0px 0.45em 0px 0.45em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
}

input[type=checkbox]:checked {
  color: white;
  background: #00aaff;
  border: #268ed9;
}

input[type=password] {
  letter-spacing: -4px;
}

.hilite {
  color: white;
  border-color: #268ed9;
  background-color: #00aaff;
}

/* Clean up */
::-ms-clear {
  display: none;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

/*
  Thanks to Topcoat http://codepen.io/Topcoat/pen/BskEn

  Rules get duplicated because an invalid selector
  invalidates the entire declaration block
*/
input[type=range] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 26px;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  border: none;
  background: linear-gradient(to bottom, rgba(181, 181, 181, 0.5) 0%, rgba(181, 181, 181, 0.5) 100%);
  background-size: 100% 2px;
  background-position: center center;
  background-repeat: repeat-x;
  border-radius: 8px;
  outline: none;
  -webkit-appearance: none;
}

::-moz-range-track {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 26px;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  border: none;
  background: linear-gradient(to bottom, rgba(181, 181, 181, 0.5) 0%, rgba(181, 181, 181, 0.5) 100%);
  background-size: 100% 2px;
  background-position: center center;
  background-repeat: repeat-x;
  border-radius: 8px;
  outline: none;
}

/* Desperate to remove focus outline in firefox */
::-moz-focus-inner {
  outline: 0;
}

input[type=range]:focus {
  box-shadow: none;
  outline: none;
}

:focus::-moz-range-track {
  outline: none;
}

::-webkit-slider-thumb {
  -webkit-appearance: none;
  color: #b5b5b5;
  box-sizing: border-box;
  width: 37px;
  height: 26px;
  border-radius: 99em;
  border: 5px solid #fcfcfc;
  background: none;
  background-color: #fcfcfc;
  box-shadow: inset 0px 0px 0px 2px currentColor;
  cursor: grab;
}

::-moz-range-thumb {
  color: #b5b5b5;
  box-sizing: border-box;
  width: 37px;
  height: 26px;
  border-radius: 99em;
  border: 5px solid #fcfcfc;
  background: none;
  background-color: #fcfcfc;
  box-shadow: inset 0px 0px 0px 2px currentColor;
  cursor: grab;
}

:focus::-webkit-slider-thumb {
  color: #268ed9;
}

:focus::-moz-range-thumb {
  color: #268ed9;
}

:active::-webkit-slider-thumb {
  color: #268ed9;
  cursor: grabbing;
}

:active::-moz-range-thumb {
  color: #268ed9;
  cursor: grabbing;
}

*,
*::after,
*::before {
  font: inherit;
  line-height: inherit;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  color: inherit;
  /* Use tabular figures if available */
  -webkit-font-feature-settings: "tnum";
  -moz-font-feature-settings: "tnum";
  -ms-font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Open Sans", Georgia, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
  color: #333;
  background-color: #fcfcfc;
  user-select: none;
  /* Make everything unselectable by default, so pressing select all keyboard shortcut in the app  will select only the css. Also this way you won't accidentally select something you didn't mean when dragging over the css area. */
}

a {
  color: #268ed9;
  text-decoration: none;
}

code, pre, textarea, .mono {
  font-family: "Roboto Mono", monospace;
  white-space: pre-wrap;
}

::selection {
  background-color: #00aaff;
  color: white;
}

:focus {
  outline: 1px solid #00aaff;
  outline-offset: 1px;
}

/* Main layout */
html, body {
  height: 100%;
}

.layout {
  overflow: hidden;
}

.layout > * {
  position: absolute;
  transition-property: width, left, right;
  transition-duration: 0.44s;
  transition-timing-function: ease;
}

.titlebar {
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
}

.toolbar {
  top: 44px;
  left: 0;
  right: 0;
  height: 66px;
}

.content {
  align-items: flex-end;
  top: 110px;
  bottom: 0;
  left: 0;
  width: 0;
  overflow: hidden;
}

.content > * {
  width: calc(400px - 11px);
  margin-left: 5px;
  margin-right: 6px;
}

.styles-format {
  z-index: 700;
  text-align: right;
  white-space: nowrap;
  top: 110px;
  right: 0;
  width: 0;
  padding: 11px 0px 7px 11px;
  overflow: hidden;
  pointer-events: none;
}

.styles-format * {
  pointer-events: all;
}

.styles {
  top: 110px;
  bottom: 0;
  right: 0;
  width: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  text-overflow: ellipsis;
}

.styles > * {
  width: 400px;
  padding: 11px 11px;
}

.preview {
  top: 110px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 110px);
  background-color: white;
}

.showContent .content {
  width: 400px;
}

.showContent .preview {
  left: 400px;
  width: calc(100% - 400px);
}

.showStyles .styles {
  width: 400px;
}

.showStyles .styles-format {
  width: 400px;
}

.showStyles .preview {
  right: 400px;
  width: calc(100% - 400px);
}

.showStyles.showContent .preview {
  width: calc(100% - 400px - 400px);
}

.titlebar {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 950;
  padding: 0 11px 0 6px;
  background-color: #fcfcfc;
}

.toolbar {
  z-index: 900;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 0;
  background-color: #fcfcfc;
  box-shadow: 0 0px 0px 1px rgba(0, 0, 0, 0.24), 0 1px 1px 1px rgba(0, 0, 0, 0.04), 0 1px 3px 0px rgba(0, 0, 0, 0.11);
}

.title * {
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}

.title .mdash {
  margin: 0 -4px;
  color: #6f6f6f;
}

.title input[name=title],
.title output[for=title] {
  padding: 0 5px 0 5px;
  border: none;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #268ed9;
}

[name=state] {
  margin-left: 5px;
  width: 0px;
  overflow: visible;
  color: #6f6f6f;
}

.titlebar button,
.titlebar .button {
  padding: 0 11px;
  min-width: 66px;
}

.toolbar {
  font-size: 14px;
}

.toolbar > label {
  flex: 1 1 33%;
  margin: 0 11px;
}

.toolbar input[type=number] {
  text-align: left;
  color: #268ed9;
  border: none;
}

.toolbar input[type=range] {
  display: block;
  margin: 5px;
}

#scaleFactorPresets {
  width: 0;
  height: 24px;
  padding: 0 0 0 24px;
  text-indent: 24px;
}

.content,
.styles {
  font-size: 13px;
  --code-line: 19px;
  line-height: var(--code-line);
  z-index: 400;
  background-color: white;
}

.content {
  display: flex;
  flex-direction: column;
}

[for=headInput],
[for=bodyInput] {
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 5px 5px 6px 5px;
  margin-top: 11px;
}
[for=headInput] > :first-child,
[for=bodyInput] > :first-child {
  font-size: 16px;
}

[name=headInput] {
  height: calc(1 * var(--code-line) + 23px);
  resize: vertical;
}

[name=bodyInput] {
  resize: none;
}

[name=format],
[name=unit] {
  font-weight: 600;
  line-height: 33px;
  height: 33px;
  width: 77px;
  margin-top: -1px;
  margin-right: 7px;
  background-color: rgba(255, 255, 255, 0.8);
}

.css,
.scss {
  display: none;
  user-select: auto;
  user-select: text;
}

[data-layout~=css] .css {
  display: block;
}

[data-layout~=scss] .scss {
  display: block;
}

.rule * {
  display: inline;
  vertical-align: bottom;
  border: none;
}

.rule .userselector,
.rule .usertext {
  min-height: var(--code-line);
  color: #0088cc;
  cursor: text;
}

.rule .usertext {
  min-width: 100%;
}

.rule input {
  height: var(--code-line);
  border: none;
}

.rule .usertext textarea:empty {
  z-index: 0;
  color: #6f6f6f;
}

.scrubbablenumber {
  display: inline-block;
  position: relative;
}

.scrubbablenumber:hover {
  background-color: rgba(0, 170, 255, 0.15);
}

.scrubbablenumber input[type=number] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% + 2ch);
  margin: 0;
  padding: 0;
  color: #666;
  opacity: 0;
  background-color: transparent;
  cursor: ew-resize;
}

/*.scrubbablenumber input[type="number"]:hover,*/
.scrubbablenumber input[type=number]:focus {
  opacity: 1;
}

.scrubbablenumber output {
  color: #0088cc;
}

.autoresize {
  display: inline-block;
  position: relative;
}

.autoresize textarea,
.autoresize input {
  -webkit-appearance: none;
  white-space: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: auto;
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  resize: none;
  color: transparent;
  z-index: -1;
}

.autoresize output {
  position: relative;
}

.autoresize textarea:focus,
.autoresize input:focus {
  color: inherit;
  z-index: 1;
}

.autoresize textarea:focus ~ output,
.autoresize input:focus ~ output {
  color: transparent;
  z-index: -1;
}

/*# sourceMappingURL=gridlover-app.css.map */
