@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/*Common*/
:root {
  --darkmain: #424242;
  --lightmain: #777777;
  --good: green;
  --bad: #AD1457;
}
* {
  outline: none;
  outline-color: transparent;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: var(--darkmain);
}
*:not(input):not(select) {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
html {
  width: 100%; height: 100%;
  margin: 0; padding: 0;
  overflow-x: hidden; overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  width: 0; height: 0;
  display: none;
}
body {
  width: 100%; height: 100%;
  margin: 0; padding: 0;
}
#admin {
  width: 100%; height: 100%;
}
.container {
  width: 100%; max-width: 900px;
  position: relative;
  margin: 0 auto;
}
/*Elements*/
button, input[type="button"], .button, .cta {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  margin: 0; padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: all .3s ease;
  font-size: 1em;
  font-weight: 700;
  height: auto; line-height: 1em;
  text-decoration: none;
  width: auto; min-width: 125px; max-width: 90%;
  margin: .75em auto; padding: .5em 1.5em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: table;
  color: white; background-color: black;
}
button:hover, input[type="button"]:hover, .button:hover, .cta:hover {
  background-color: var(--darkmain);
}
button:disabled, input[type="button"]:disabled, .button:disabled, .cta:disabled {
  pointer-events: none;
  cursor: default;
  opacity: .7 !important;
  filter: grayscale(1) !important;
}
a {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  transition: all .3s ease;
}
a:hover {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
  margin: .75em auto;
}
p {
  margin: .5em auto;
}
span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
ul {
  list-style-type: none;
  padding: .25em; margin: auto;
}
form, .form {
  padding: .75em;
  width: 100%; max-width: 600px;
  margin: auto;
}
label {
  display: block;
  font-size: .8em;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin: .125em .25em;
}
input:not([type="radio"]):not([type="checkbox"]):not([type="file"]), select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  font-size: 1em;
  width: 100%; height: 2em;
  margin-top: .125em; padding: 0 .375em;
  transition: all .3s ease;
  border: .125em solid rgba(0, 0, 0, .1);
  border-radius: 0;
  background-color: transparent;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input:read-only, input:disabled, select:disabled {
  background-color: #F1F1F1;
}
input:disabled, select:disabled {
  pointer-events: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
  font-size: 1em;
}
select option {
  text-transform: capitalize;
}
textarea {
  resize: vertical !important;
  display: block;
  font-size: 1em;
  width: 100%; height: auto;
  font-style: italic;
  transition: all .3s ease;
  border: .125em solid rgba(0, 0, 0, .1);
  border-radius: 0;
  padding: .375em;
}
input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):hover, select:hover, textarea:hover {
  border-color: grey;
}
input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):focus, input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):active, select:active, textarea:active {
  border-color: var(--darkmain);
  box-shadow: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.invalid input {
  border-color: var(--bad) !important;
}
.invalid label {
  color: var(--bad) !important;
}
iframe {
  width: 100%; max-width: 100%;
  border: none; border-width: 0;
  overflow: hidden;
}
/*Utilities*/
.center {
 text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.justify {
  text-align: justify;
  text-justify: inter-word;
}
strong, .bold {
  font-weight: 700;
}
em, .italic {
  font-style: italic;
}
u, .underline {
  text-decoration: underline;
}
.smaller {
  font-size: 85%;
}
.bigger {
  font-size: 115%;
}
.upper {
  text-transform: uppercase;
}
.inline {
  display: inline-block;
}
.centered {
  width: 80%; max-width: 650px;
  margin: 0 auto;
}
.relative {
  position: relative;
}
.row {
  width: 100%;
}
.column {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
.header {
  padding: .25em 1.5em; margin: .75em auto;
}
.image {
  display: block;
  width: 100%; max-width: 100%;
  height: auto; max-height: 100%;
  margin: auto;
}
.line {
  margin: .5em auto;
}
.box {
  border: .075em solid var(--darkmain);
  padding: .5em; margin: .5em auto;
}
.box.disabled {
  background-color: #E1E1E1;
}
.info {
  width: 75%; height: auto;
  margin: .5em auto;
}
.error {
  font-style: italic;
  margin: .5em auto;
}
.desktop {
  display: block;
}
.mobile {
  display: none;
}
.hidden {
  display: none;
}
.grey {
  background-color: #F1F1F1;
}
/*Queries*/
@media screen and (max-width: 900px){
  #admin {
    font-size: 1.75vw;
  }
}
@media screen and (max-width: 600px){
  #admin {
    font-size: 2.75vw;
  }
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .column {
    display: block !important;
    width: 100% !important;
  }
}
/*Panels*/
.panel {
  display: inline-block;
  width: 50%; height: 100%;
  position: relative;
  overflow: hidden;
  background-color: #FEFEFE;
  border-bottom: .075em solid var(--darkmain);
}
#dragbar {
  display: inline-block;
  cursor: ew-resize;
  width: .15em; height: 100%;
  background-color: var(--lightmain);
  transition: all .3s ease;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: auto;
  z-index: 10002;
}
#dragbar:hover {
  background-color: var(--darkmain);
}
#dragger {
  height: 100%; width: 100%;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 10001;
}
@media screen and (max-width: 900px){
  .panel {
    display: block;
    width: 100% !important;
  }
  #dragbar, #dragger {
    display: none !important;
  }
}
/*Navbar*/
.navbar {
  width: 100%; height: auto;
  padding: .125em .5em;
  text-align: center;
  border-bottom: .075em solid var(--darkmain);
}
.navbar ul li, .tab {
  display: inline-block;
  cursor: pointer;
  transition: all .3s ease;
  font-size: 1em; line-height: 1.25em;
  padding: .125em .5em; margin: .125em .25em;
  border: .05em solid transparent;
  border-radius: .05em;
  text-transform: uppercase;
}
.navbar ul li:hover, .tab:hover {
  border-color: var(--darkmain);
}
.navbar ul li.current, .tab.current {
  pointer-events: none;
  color: white; background-color: var(--darkmain);
  border-color: var(--darkmain);
}
.navbar .stepArrow {
  pointer-events: none;
  padding: 0; margin: 0;
  width: 1.25em; height: auto;
  vertical-align: middle;
}
.tab.remove:hover {
  color: var(--bad) !important;
  border-color: var(--bad) !important;
}
/*Container*/
#tab {
  width: 100%; height: calc(100% - 4.5em);
  padding: .5em;
  overflow-x: hidden; overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#tab::-webkit-scrollbar {
  width: 0; height: 0;
  display: none;
}
/*Floating*/
.float {
  position: absolute;
  bottom: .5em; right: .5em; top: auto; left: auto;
}
.float > div {
  display: inline-block;
  color: white; background-color: var(--lightmain);
  padding: .25em .5em; margin-left: .125em;
  border-radius: .125em;
  z-index: 9999;
  cursor: pointer;
  transition: all .3s ease;
}
.float > div:hover {
  background-color: var(--darkmain);
}
#saveConfig, #saveEjs {
  width: 2.25em; height: 2.25em;
  right: calc(.5em + .15em);
}
#saveConfig.pending, #saveEjs.pending {
  background-color: var(--bad);
}
/*Content*/
#tab .bar {
  width: 100%; height: auto;
  padding: .125em .5em; margin: .25em auto;
  text-align: center;
  border: .075em solid var(--darkmain);
}
#tab .images .column {
  padding: .25em;
}
#tab .images img {
  width: auto; height: auto;
  border: .075em solid var(--darkmain);
}
#tab .answer.good input {
  color: var(--good) !important;
  border-color: var(--good) !important;
}
#tab .icon {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: auto;
  height: 2.25em; width: 2.25em;
  cursor: pointer;
  z-index: 1;
  transition: all .3s ease;
}
#tab .icon:hover svg {
  fill: var(--darkmain) !important;
}
/*Editor*/
#tab .code, .vue-codemirror, .CodeMirror, .CodeMirror-scroll {
  width: 100%; height: 100%;
  padding: 0; margin: 0;
}
.CodeMirror {
  font-size: .85em;
  background-color: #282A36;
}
.CodeMirror .CodeMirror-scroll {
  overflow-x: hidden !important;
  overflow-y: scroll !important;
}
.CodeMirror span {
  color: #F8F8F2;
}
/*iFrame*/
#preview {
  width: 100%; height: calc(100% - 4.5em);
  border: none;
}
#size {
  padding: .25em .5em;
}