.dillerm-numerical {
  width: 100%;
  height: var(--input-height);
  display: flex;
}
.dillerm-numerical:hover input, .dillerm-numerical input:focus {
  background: var(--input-hover-color);
}
.dillerm-numerical input {
  display: block;
  padding: var(--input-padding);
  width: 100%;
  min-height: var(--input-height);
  appearance: textfield;
  font-family: var(--input-numerical-font-family);
  font-size: var(--input-numerical-font-size);
  border: var(--input-border);
  border-radius: var(--input-border-radius) 0 0 var(--input-border-radius);
  background: var(--input-background);
  color: var(--input-color);
}
.dillerm-numerical input:hover, .dillerm-numerical input:focus {
  background: var(--input-hover-color);
}
.dillerm-numerical > span {
  width: calc(var(--input-height) * 0.5);
  height: 100%;
}
.dillerm-numerical > span div {
  cursor: pointer;
  position: relative;
  background: var(--input-background);
  height: 50%;
  border-top: var(--input-border);
  border-right: var(--input-border);
  border-radius: 0 var(--input-border-radius) 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dillerm-numerical > span div:last-child {
  border-bottom: var(--input-border);
  border-radius: 0 0 var(--input-border-radius) 0;
}
.dillerm-numerical > span div i {
  color: var(--input-color);
  transition: var(--input-transition-time);
}
.dillerm-numerical > span div:hover i {
  color: var(--input-highlight-color);
}
path[data-v-7d4b3544] {
	stroke-width: 1px;
}

svg[data-v-a6cd0562] {
	position: absolute;
	overflow: hidden;
	height: var(--navbar-height);
	left: 0px;
	right: 0px;
	top: 0px;
}
.dillerm-checkbox {
  --box-size: calc((var(--input-height) * 1.0));
  position: relative;
  width: var(--box-size);
  height: var(--box-size);
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  position: relative;
  background: var(--input-background);
  transition: var(--input-transition-time);
  cursor: pointer;
}
.dillerm-checkbox:focus-within, .dillerm-checkbox:hover {
  background: var(--input-hover-color);
}
.dillerm-checkbox input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: var(--input-border-size);
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}
.dillerm-checkbox span {
  box-sizing: content-box;
  pointer-events: none;
  position: absolute;
  top: 55%;
  border-right: calc(var(--box-size) / 7) solid var(--input-color);
  border-bottom: calc(var(--box-size) / 7) solid var(--input-color);
  transform: rotate(45deg);
  transform-origin: bottom left;
  animation: checkbox-check 75ms forwards;
}
.dillerm-checkbox .anti-check {
  color: var(--input-color);
  opacity: 15%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}
@keyframes checkbox-check {
0% {
    left: 0%;
    width: 0%;
    height: 0%;
    transform: translate3d(0, 0, 0) rotate(45deg);
}
33% {
    left: 5%;
    width: 19%;
    height: 0px;
    transform: translate3d(0, 0, 0) rotate(45deg);
}
100% {
    left: 15%;
    width: 19%;
    height: calc(var(--box-size) * 0.5);
    transform: translate3d(0, calc(var(--box-size) * -0.6), 0) rotate(45deg);
}
}.dillerm-select {
  position: relative;
  text-align: left;
  color: var(--input-color);
  cursor: pointer;
}
.dillerm-select > input {
  cursor: pointer;
  width: 100%;
  position: relative;
  border-radius: var(--input-border-radius);
  line-height: var(--input-line-height);
}
.dillerm-select > input.focused {
  width: 100%;
  position: relative;
  border-radius: var(--input-border-radius) var(--input-border-radius) 0 0;
  cursor: text;
}
.dillerm-select > input.focused:not(.searchable) {
  color: transparent;
  cursor: pointer;
  pointer-events: none;
}
.dillerm-select > div {
  position: absolute;
  background: white;
  top: 100%;
  left: 0;
  right: 0;
  border-right: var(--input-border);
  border-left: var(--input-border);
  border-bottom: var(--input-border);
  border-radius: 0 0 var(--input-border-radius) var(--input-border-radius);
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 300px;
  z-index: 100;
  background: var(--input-background);
}
.dillerm-select:hover > input, .dillerm-select:focus-within > input {
  background: var(--input-hover-color);
}
.dillerm-select:hover > .dillerm-input-expand, .dillerm-select:focus-within > .dillerm-input-expand {
  color: var(--input-highlight-color);
}
.dillerm-select input {
  display: block;
  padding: var(--input-padding);
  width: 100%;
  min-height: var(--input-height);
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  background: var(--input-background);
  color: var(--input-color);
  font-family: var(--input-font-family);
  font-size: var(--input-font-size);
}
.dillerm-select input:hover, .dillerm-select input:focus {
  background: var(--input-hover-color);
}
.dillerm-select .option-icon {
  height: calc(var(--input-height) - 2 * var(--input-border-size));
  width: calc(var(--input-height) - 2 * var(--input-border-size));
  vertical-align: middle;
  margin-right: var(--input-padding-rl);
}
.dillerm-select .select-search-current {
  pointer-events: none;
  position: absolute;
  left: var(--input-border-size);
  top: var(--input-border-size);
  right: var(--input-border-size);
  bottom: var(--input-border-size);
  border-radius: var(--input-border-radius);
  white-space: nowrap;
  overflow: hidden;
}
.dillerm-select .select-search-current span {
  position: absolute;
  left: var(--input-height);
  top: 0;
  bottom: 0;
  padding: var(--input-padding);
  line-height: var(--input-line-height);
  right: calc(var(--input-icon-button-size) * 2 + var(--input-icon-button-side-padding));
  padding-right: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dillerm-select .select-search-current span.noicon {
  left: 0;
}
.dillerm-select .select-search-option {
  float: left;
  white-space: nowrap;
  width: 100%;
  height: calc(var(--input-height) - 2 * var(--input-border-size));
  cursor: pointer;
  background: var(--input-options-color);
  transition: 0.25s;
}
.dillerm-select .select-search-option:hover, .dillerm-select .select-search-option.hover, .dillerm-select .select-search-option.is-selected {
  background: var(--input-options-hover-color);
}
.dillerm-select .select-search-option.noicon {
  line-height: calc(var(--input-height) - 2 * var(--input-border-size));
  padding-left: 8px;
}
.dillerm-select .select-search-status {
  font-size: 14px;
  padding: var(--input-padding);
  line-height: var(--input-line-height);
  color: #777777;
}
.dillerm-select .dillerm-input-clear {
  right: calc(var(--input-icon-button-size) + var(--input-icon-button-side-padding));
}.dillerm-slider {
  position: relative;
}
.dillerm-slider {
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  width: 100%;
  height: var(--input-height);
  display: flex;
  background: var(--input-background);
  transition: background var(--input-transition-time);
}
.dillerm-slider:hover, .dillerm-slider:focus-within {
  background: var(--input-hover-color);
}
.dillerm-slider:hover .slider-bar-grabber, .dillerm-slider:focus-within .slider-bar-grabber {
  background: var(--input-highlight-color) !important;
}
.dillerm-slider span.slider-number {
  line-height: calc(var(--input-height) - 2 * var(--input-border-size));
  color: var(--input-color);
  border-right: var(--input-border);
  min-width: 46px;
  padding: 0px 8px;
  text-align: center;
  font-family: var(--input-numerical-font-family);
  font-size: var(--input-numerical-font-size);
}
.dillerm-slider .slider-bar {
  width: 100%;
  display: table;
  cursor: grab;
  border-spacing: 0px;
}
.dillerm-slider .slider-bar.dragging {
  cursor: grabbing;
}
.dillerm-slider .slider-bar.dragging .slider-bar-grabber {
  transform: translateX(-50%) scale(110%);
}
.dillerm-slider .slider-bar * {
  user-select: none;
  height: calc(var(--input-height) - 2 * var(--input-border-size));
}
.dillerm-slider .slider-bar span {
  display: table-cell;
}
.dillerm-slider .slider-bar .slider-bar-prefix,
.dillerm-slider .slider-bar .slider-bar-postfix {
  width: 5.5px;
}
.dillerm-slider .slider-bar .slider-bar-prefix {
  border-radius: var(--input-border-radius) 0px 0px var(--input-border-radius);
  background: var(--input-color);
  opacity: 50%;
}
.dillerm-slider .slider-bar .slider-bar-postfix {
  border-radius: 0px var(--input-border-radius) var(--input-border-radius) 0px;
}
.dillerm-slider .slider-bar .slider-bar-back {
  position: relative;
}
.dillerm-slider .slider-bar .slider-bar-left {
  position: absolute;
  left: 0px;
  width: 25%;
  display: inline-block;
  background: var(--input-color);
  opacity: 50%;
}
.dillerm-slider .slider-bar .slider-bar-grabber {
  position: absolute;
  left: 25%;
  width: 15px;
  border-radius: var(--input-border-radius);
  transform: translateX(-50%);
  display: inline-block;
  background: var(--input-color);
  transition: background var(--input-transition-time), transform 0.25s;
}
.dillerm-slider .slider-bar .slider-bar-grabber.out-of-bounds {
  transform: translateX(-50%) scale(120%);
}
.dillerm-slider input[type=range] {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 10px;
  z-index: -1000;
  opacity: 0%;
}.parameters-container {
  width: 100%;
}
.parameters-container .parameters-row {
  padding: 5px;
  text-align: left;
}
.parameters-container .parameters-row > * {
  height: 42px;
}
.parameters-container .parameter-label {
  font-weight: 600;
  text-align: right;
  padding: 0px 5px;
}
.parameters-container .parameter-value {
  padding: 0px;
  padding-left: 10px;
  min-width: 250px;
}.dillerm-config-panel {
  max-width: 600px;
  height: 100%;
  background-color: var(--config-panel-background);
  z-index: 1000;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  padding-top: var(--navbar-height);
  transition: all 0.5s ease-in-out;
}
.dillerm-config-panel h4 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-weight: bold;
  text-align: center;
  font-size: 28px;
}
.dillerm-config-panel > div {
  padding: 50px;
}
.dillerm-config-panel.config-panel-hidden {
  transform: translateX(100%);
}
@media only screen and (max-width: 800px) {
.dillerm-config-panel {
    width: 100%;
    max-width: none;
}
.dillerm-config-panel > div {
    padding: 10px;
}
.dillerm-config-panel h4 {
    margin-bottom: 20px;
}
}body:not(.dillerm-loaded) .title {
  transform: translateX(-50%) translateY(-200%);
}
body:not(.dillerm-loaded) .dillerm-nav-bar .dillerm-icon-right {
  transform: translateX(150%);
}
body:not(.dillerm-loaded) .dillerm-nav-bar .dillerm-icon-left {
  transform: translateX(-150%);
}
body:not(.dillerm-loaded) .dillerm-loading-overlay {
  opacity: 1;
  z-index: 999;
}
.dillerm-loaded .title {
  transition: transform 0.2s ease-out;
}
.dillerm-loaded .dillerm-nav-bar .dillerm-icon {
  transition: transform 0.5s ease-out, opacity 0.5s;
}
.dillerm-loading-overlay {
  transition: 1s opacity ease-out, 0s 1s z-index;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--background-color1);
  pointer-events: none;
}
.dillerm-nav-bar {
  position: relative;
  z-index: 1001;
  overflow: hidden;
  height: var(--navbar-height);
  width: 100%;
  /* background-image: url("/assets/lowpoly.svg");
  background-repeat: repeat; */
  background-color: var(--background-color3);
  box-shadow: 0 0 10px 3px var(--background-color3);
}
.dillerm-nav-bar .dillerm-icon {
  position: absolute;
  top: 0px;
  width: var(--navbar-height);
  height: var(--navbar-height);
  font-size: 32px;
  color: var(--input-color) !important;
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dillerm-nav-bar .dillerm-icon:not(:hover) {
  opacity: 90%;
}
.dillerm-nav-bar .dillerm-icon-right {
  right: 0px;
}
.dillerm-nav-bar .dillerm-icon-left {
  left: 0px;
  font-size: 36px;
}
.dillerm-nav-bar .title-container {
  position: absolute;
  top: 0px;
  left: 50%;
  height: var(--navbar-height);
}
.dillerm-nav-bar .title {
  margin-top: calc(var(--navbar-height) / 2);
  background: var(--background-color4);
  padding: 4px 8px;
  box-shadow: 0px 0px 20px 10px var(--background-color4);
  font-weight: bold;
  transform: translateX(-50%) translateY(-50%);
  white-space: nowrap;
  font-size: 26px;
  opacity: 90%;
}
.dillerm-nav-bar .config-gear {
  cursor: pointer;
}
.dillerm-nav-bar .config-gear > i {
  transition: transform 0.5s ease-in-out;
}
.dillerm-nav-bar .config-gear > i.spun-gear {
  transform: rotate(180deg);
}
.dillerm-nav-bar path {
  transition: all 0.5s ease;
}
.dillerm-nav-bar path:hover {
  transform-origin: center;
  opacity: 20%;
}
.slider-bar-left {
	opacity: 0 !important;
}
.slider-bar-back {
	background: var(--gradient-full);
	transition: background var(--animation-time) linear;
}
.slider-bar-prefix {
	opacity: 1 !important;
	background: var(--gradient-start) !important;
}
.slider-bar-postfix {
	background: var(--gradient-end) !important;
}
.slider-bar:not(.dragging) .slider-bar-grabber {
	transition: background var(--input-transition-time), transform 0.25s, left var(--animation-time) linear !important;
}



/* this css based on https://3dtransforms.desandro.com/cube */
.color-cube-container {
	margin: 65px auto;
	width: 200px;
	height: 200px;
	perspective: 600px;
}
.color-cube {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transform:
		translateZ(-100px)
		rotateX(calc(145deg - (var(--color-l-decimal) * 180deg)))
		rotateY(-45deg) rotateZ(270deg)
		rotate3d(1, 1, 1, calc((var(--color-h) * 1deg) - 60deg))
		rotateY(-90deg);
	transition: transform var(--animation-time) linear;
}
.cube__face {
	position: absolute;
	width: 200px;
	height: 200px;
	opacity: 1;
	/* border: 1px solid black; */
	background-blend-mode: screen;
}
.cube__face--front  { transform: rotateY(  0deg) translateZ(100px);
}
.cube__face--right  { transform: rotateY( 90deg) translateZ(100px);
}
.cube__face--back   { transform: rotateY(180deg) translateZ(100px);
}
.cube__face--left   { transform: rotateY(-90deg) translateZ(100px);
}
.cube__face--top    { transform: rotateX( 90deg) translateZ(100px);
}
.cube__face--bottom { transform: rotateX(-90deg) translateZ(100px);
}



:root {
	--slider-opacity: 75%;
	--animation-time: 0.15s;
}
#container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}
#container > div {
	flex: 1;
	padding: 10px 50px;
}
.combo-table > :first-child {
	grid-column: span 2;
	color: grey;
	padding: 10px;
	font-family: var(--input-numerical-font-family);
	background: var(--background-color3);
}
.combo-table { 
	display: grid;
    grid-template-columns: 40px auto; 
	background: var(--background-color2);
	border: 2px solid var(--background-color3);
	border-radius: 8px;
}
.combo-table > span {
	display: flex;
	justify-content: center;
	align-items: center;
}
.combo-table > div {
	border-radius: 0px;
}
@media screen and (max-width: 700px) {
#container {
		display: flex;
		flex-direction: column;
}
#container > div {
		padding: 10px;
}
#container > div:nth-child(1) {
		order: 5;
}
}
canvas {
	margin: auto;
	display: block;
}
input[type="file"] {
	cursor: pointer;
	width: 100%;
	background-color: var(--input-background);
	border: var(--input-border);
	border-radius: var(--input-border-radius);
	line-height: calc(var(--input-height) - 2 * var(--input-border-size));
	padding: 0px 8px;
	color: transparent;
}
input[type="file"]::file-selector-button {
	border: var(--input-border);
	border-radius: var(--input-border-radius);
	color: var(--input-color);
	background-color: var(--background-color1);
	padding: 5px;
}
#color-preview {
	position: relative;
	border-radius: 8px;
	background: rgb(var(--color-r), var(--color-g), var(--color-b));
	width: 100%;
	height: 100px;
	border: 2px solid var(--background-color3);
	margin-bottom: 10px;
	transition: background var(--animation-time) linear;
}
#color-preview > div,
.color-panel > div {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 8px;
	color: white;
	background: black;
	opacity: 50%;
	white-space: nowrap;
}
#color-preview > div {
	cursor: pointer;
	transition: opacity 0.5s ease;
}
#color-preview > div.flash {
	opacity: 80%;
}
.color-panel > span {
	position: absolute;
	right: 0;
	top: 0;
	padding: 4px 4px 4px 6px;
	font-size: 10px;
	border-radius: 0px 0px 0px 8px;
	color: #aaaaaa;
	background: var(--background-color2);
	white-space: nowrap;
}
.color-panel {
	position: relative;
	border: 2px solid var(--background-color3);
	height: 100px;
	margin-bottom: 8px;
	cursor: pointer;
  	border-radius: 8px;
}
#pastedWrapper {
	overflow: auto;
	width: 100%;
	border: 2px solid var(--background-color3);
  	border-radius: 4px;
	background: var(--background-color3);
	max-height: 500px;
}
#pastedWrapper canvas {
	display: block;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: -moz-crisp-edges;
}

