@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Source+Sans+3:wght@400;700&display=swap");@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");


p {
  max-width: 75ch;
}
.checkbox {
  opacity: 0;
  display: none;
}
.checkbox-label {
  background-color: white;
  border: 2px solid #4A5568;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: space-between;
  border-radius: 4px;
  position: relative;
  margin: 0px;
  height: 18px;
  width: 18px;
  transition: background-color 100ms ease;
  cursor: pointer;
}
.checkbox-label-icon {
  color: white;
  margin-left: 1px;
  margin-bottom: 2px;
  transition: color 100ms ease;
}
.checkbox-label-icon-active {
  color: #babc16;
}
.checkbox:checked + .checkbox-label {
  background-color: #4A5568;
}
.compact-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.compact-form-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.compact-form-field-label {
  font-size: 0.8rem;
  font-weight: 500;
  min-width: 150px;
  text-align: left;
  padding-right: 10px;
}
.compact-form-field-copy {
  display: flex;
  height: 22px;
  width: 22px;
  border: none;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  color: #4A5568;
  transition: background-color 100ms ease;
}
.compact-form-field-copy:hover {
  background-color: #babc16;
}
.compact-form-field-input {
  flex-grow: 1;
  border-radius: 4px;
  padding: 2px 5px;
  margin: 0px;
  font-weight: 500;
  font-size: 0.8rem;
  border: none;
  background-color: #E3E6E9;
}
.compact-form-field-input:focus {
  border: none;
  outline: 3px solid #babc16;
}
.compact-form-field-options {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}
.compact-form-field-options-header {
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 100px;
  text-align: left;
}
.compact-form-field-options-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, 1fr);
  justify-items: stretch;
  justify-content: center;
  gap: 5px;
}
.compact-form-field-options-edit-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, 1fr) 30px;
  justify-items: stretch;
  justify-content: center;
  gap: 5px;
}
.compact-form-field-boolean {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}
.compact-form-field-boolean-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  justify-items: stretch;
  justify-content: center;
  justify-items: center;
  gap: 5px;
}
.compact-form-field-boolean-row-item {
  display: flex;
  gap: 15px;
}
.compact-form-field-boolean-row-item span {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
}
.compact-form-field-colors {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}
.compact-form-field-colors-header {
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 100px;
  text-align: left;
}
.compact-form-field-colors-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  justify-items: stretch;
  justify-content: center;
  gap: 5px;
}
.compact-form-field-colors-edit-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr) 30px;
  justify-items: stretch;
  justify-content: center;
  gap: 5px;
}
.compact-form-field-glastypes {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}
.compact-form-field-glastypes-header {
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 100px;
  text-align: left;
}
.compact-form-field-glastypes-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  justify-items: stretch;
  justify-content: center;
  gap: 5px;
}
.compact-form-field-glastypes-edit-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr) 30px;
  justify-items: stretch;
  justify-content: center;
  gap: 5px;
}
.compact-form-field-button {
  display: flex;
  height: 22px;
  width: 22px;
  border: none;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: #E3E6E9;
  cursor: pointer;
  color: #4A5568;
  transition: background-color 100ms ease;
}
.compact-form-field-button:hover {
  background-color: #babc16;
}
.compact-form-button {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.default-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.default-form-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.default-form-field-label {
  font-size: 1.1rem;
  font-weight: 500;
  min-width: 100px;
  text-align: left;
}
.default-form-field-input {
  flex-grow: 1;
  border-radius: 4px;
  padding: 5px;
  margin: 0px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  background-color: #E3E6E9;
}
.default-form-field-input:focus {
  border: none;
  outline: 3px solid #babc16;
}
.default-form-field-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.default-form-field-options-header {
  font-size: 1rem;
  font-weight: 500;
  min-width: 100px;
  text-align: left;
}
.default-form-field-options-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, 1fr);
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-options-edit-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(2, 1fr) 30px;
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-colors {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.default-form-field-colors-header {
  font-size: 1rem;
  font-weight: 500;
  min-width: 100px;
  text-align: left;
}
.default-form-field-colors-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-colors-edit-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr) 30px;
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-glastypes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.default-form-field-glastypes-header {
  font-size: 1rem;
  font-weight: 500;
  min-width: 100px;
  text-align: left;
}
.default-form-field-glastypes-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-glastypes-edit-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr) 30px;
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-infoboxsettings, .default-form-field-uisettings {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.default-form-field-infoboxsettings-header, .default-form-field-uisettings-header {
  font-size: 1rem;
  font-weight: 500;
  min-width: 100px;
  text-align: left;
}
.default-form-field-infoboxsettings-row, .default-form-field-uisettings-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-infoboxsettings-edit-row, .default-form-field-uisettings-edit-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: 75px repeat(3, 1fr) 100px 100px;
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-types {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.default-form-field-types-header {
  font-size: 1rem;
  font-weight: 500;
  min-width: 100px;
  text-align: left;
}
.default-form-field-types-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(1, 1fr);
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-types-edit-row {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(1, 1fr) 30px;
  justify-items: stretch;
  justify-content: center;
  gap: 10px;
}
.default-form-field-types-edit-row-order {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: 1fr 30px 30px 30px;
  justify-items: stretch;
  justify-content: center;
  gap: 5px;
}
.default-form-field-button {
  display: flex;
  height: 30px;
  width: 30px;
  border: none;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: #E3E6E9;
  cursor: pointer;
  color: #4A5568;
  transition: background-color 100ms ease;
}
.default-form-field-button:hover {
  background-color: #babc16;
}
.default-form-button {
  display: flex;
  justify-content: center;
}
.spacer {
  flex: 1;
}
#app {
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
body {
  padding: 0px;
  margin: 0px;
}
* {
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}