.mobile-flex {
  display: flex !important;
}
@media (min-width: 900px) {
  .mobile-flex {
    display: none !important;
  }
}

.mobile {
  display: block !important;
}
@media (min-width: 900px) {
  .mobile {
    display: none !important;
  }
}

.desktop-flex {
  display: none !important;
}
@media (min-width: 900px) {
  .desktop-flex {
    display: flex !important;
  }
}

.desktop {
  display: none !important;
}
@media (min-width: 900px) {
  .desktop {
    display: block !important;
  }
}

html, body {
  font-family: "Lato", sans-serif;
  margin: 0px;
  font-size: 22px;
  overflow-x: hidden;
}
@media (min-width: 1000px) {
  html, body {
    font-size: 24px;
  }
}

.button {
  cursor: pointer;
  background: skyblue;
  display: inline-block;
  padding: 10px 14px;
  font-size: 18px;
  user-select: none;
}
.button:hover {
  background: #65c2e8;
}
.button.forever {
  background: orange;
}
.button.running {
  background: #f9d086;
}
.button.fixed-small {
  text-align: center;
  width: 100px;
  box-sizing: border-box;
}

a.button, a.button:visited {
  text-decoration: none;
  color: black;
}

a:visited {
  color: #0000cc;
}

.editor-header .tabs, .editor-header .links {
  display: flex;
  align-items: center;
  height: 40px;
  background: #d8d8d8;
}
.editor-header .tabs .tab, .editor-header .tabs a.tab, .editor-header .links .tab, .editor-header .links a.tab {
  cursor: pointer;
  margin-left: 20px;
  font-size: 18px;
  box-sizing: border-box;
  padding: 2px 8px 0px 8px;
  user-select: none;
}
.editor-header .tabs .tab.active, .editor-header .tabs a.tab.active, .editor-header .links .tab.active, .editor-header .links a.tab.active {
  background: white;
  border-radius: 4px;
}
.editor-header .tabs a.tab, .editor-header .links a.tab {
  color: black;
  text-decoration: none;
}
.editor-header .tabs a.tab:hover, .editor-header .links a.tab:hover {
  text-decoration: underline;
}
.editor-header .links {
  position: absolute;
  top: 0px;
  right: 0px;
  margin-right: 20px;
}

.editor-main-container {
  display: flex;
  position: absolute;
  top: 40px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
.editor-main-container .left-column {
  position: relative;
  width: 50%;
  height: 100%;
}
.editor-main-container .left-column .ide-container {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow-y: auto;
  font-size: 14px;
}
.editor-main-container .left-column .ide-container .cm-focused {
  outline: none;
}
.editor-main-container .left-column .ide-container .ide-textarea {
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-size: 0.6em;
  resize: none;
  outline: none;
  border: none;
}
.editor-main-container .right-column {
  width: 50%;
  height: 100%;
}
.editor-main-container .right-column #ide-canvas-container {
  margin: 0px auto;
  max-width: 100%;
}
@media (min-width: 900px) {
  .editor-main-container .right-column #ide-canvas-container {
    max-width: 80%;
  }
}
.editor-main-container .right-column #ide-canvas-container canvas {
  width: 100%;
}
.editor-main-container .right-column .buttons-container {
  display: flex;
  flex-wrap: wrap;
}
.editor-main-container .right-column .buttons-container .button-group {
  display: flex;
  margin-right: 30px;
  margin-bottom: 10px;
}
.editor-main-container .right-column .buttons-container .button-group .button {
  margin-right: 2px;
}
.editor-main-container .version {
  position: fixed;
  bottom: 8px;
  right: 10px;
  font-size: 12px;
  color: #333;
  pointer-events: none;
}

.file-drop-cover {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(216, 216, 216, 0.8);
}
.file-drop-cover .file-drop-message {
  padding: 20px;
  background: white;
}

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