:root {
  --bgColor: #1c2834;
  --lineColor: #44fcfd;
  --fontColor: #44fcfd;
}

body {
  background-color: var(--bgColor);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;

  font-family: Verdana, sans-serif;
  color: var(--fontColor);
  font-size: 15px;
}

#mainField {
  margin: auto;
  height: 90vh;
}

#p5Canvas {
  width: 100vh;
  height: 100%;
  display: inline-block;
  border: 1px solid var(--lineColor);
  vertical-align: top;
  margin-left: 5px;
  margin-right: 5px;
}

#menu {
  width: 200px;
  height: 90%;
  display: inline-block;

  vertical-align: top;

  background-color: var(--bgColor);
}

.menuBlock {
  border: 1px solid var(--lineColor);
  font-weight: normal;
  font-size: 9px;
  border-bottom: 1px solid var(--lineColor);
  padding-bottom: 15px;
  margin-bottom: 10px;
  background-color: black;
}

.menuBlock h1 {
  background-color: var(--bgColor);
  color: var(--lineColor);
  margin: 0px;
  padding: 3px;
  font-weight: normal;
  font-size: 10px;
  margin-bottom: 11px;
  border-bottom: 1px solid var(--lineColor);
}

.menuBlock h2 {
  margin-left: 10px;
  font-weight: normal;
  font-size: 8px;
}

/* 






Designed with tools






*/

.Button {
  margin-left: 15px;
  margin-top: 10px;
  background-color: var(--bgColor);
  border: 1px solid var(--lineColor);
  display: inline-block;
  cursor: pointer;
  color: var(--fontColor);
  font-size: 10px;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 0px;
}
.Button:hover {
  background-color: var(--lineColor);
  color: var(--bgColor);
}
.Button:active {
  position: relative;
  top: 1px;
}

input[type="range"] {
  -webkit-appearance: none;
  margin: 10px 15px;
  width: 80%;
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000;
  background: #44fcfd;
  border-radius: 0px;
  border: 0px solid #000000;
}
input[type="range"]::-webkit-slider-thumb {
  box-shadow: 0px 0px 1px #44fcfd;
  border: 0px solid #44fcfd;
  height: 17px;
  width: 6px;
  border-radius: 1px;
  background: #44fcfd;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #44fcfd;
}
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000;
  background: #44fcfd;
  border-radius: 0px;
  border: 0px solid #000000;
}
input[type="range"]::-moz-range-thumb {
  box-shadow: 0px 0px 1px #44fcfd;
  border: 0px solid #44fcfd;
  height: 17px;
  width: 6px;
  border-radius: 1px;
  background: #44fcfd;
  cursor: pointer;
}
input[type="range"]::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type="range"]::-ms-fill-lower {
  background: #44fcfd;
  border-radius: 0px;
}
input[type="range"]::-ms-fill-upper {
  background: #44fcfd;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000;
}
input[type="range"]::-ms-thumb {
  box-shadow: 0px 0px 1px #44fcfd;
  border: 0px solid #44fcfd;
  height: 17px;
  width: 6px;
  border-radius: 1px;
  background: #44fcfd;
  cursor: pointer;
}
input[type="range"]:focus::-ms-fill-lower {
  background: #44fcfd;
}
input[type="range"]:focus::-ms-fill-upper {
  background: #44fcfd;
}

.select {
  margin-left: 15px;
  margin-right: 15px;
  width: 80%;
  position: relative;
  display: inline-block;
}
.select select {
  font-size: 10px;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 6px 4px;
  outline: 0;
  border: 1px solid #44fcfd;
  border-radius: 0px;
  background: #1c2834;
  color: #44fcfd;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select select::-ms-expand {
  display: none;
}
.select select:hover,
.select select:focus {
  color: #44fcfd;
  background: #1c2834;
}
.select select:disabled {
  opacity: 0;
  pointer-events: none;
}
.select_arrow {
  position: absolute;
  top: 9px;
  right: 8px;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0px 5px;
  border-color: #44fcfd transparent transparent transparent;
}
.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
  border-top-color: #44fcfd;
}
.select select:disabled ~ .select_arrow {
  border-top-color: #44fcfd;
}

.control {
  margin-left: 15px;
  font-family: arial;
  display: block;
  position: relative;
  padding-left: 19px;
  margin-bottom: 5px;
  padding-top: 3px;
  cursor: pointer;
  font-size: 10px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control_indicator {
  position: absolute;
  top: 3px;
  left: 0;
  height: 10px;
  width: 10px;
  background: #1c2834;
  border: 1px solid #44fcfd;
  border-radius: 0px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
  background: #445261;
}

.control input:checked ~ .control_indicator {
  background: #1c2834;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
  background: #1c2834;
}
.control input:disabled ~ .control_indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control_indicator:after {
  box-sizing: unset;
  content: "";
  position: absolute;
  display: none;
}
.control input:checked ~ .control_indicator:after {
  display: block;
}
.control-checkbox .control_indicator:after {
  left: 3px;
  top: 0px;
  width: 3px;
  height: 6px;
  border: solid #44fcfd;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
  border-color: #7b7b7b;
}

.text-input {
  width: 100px;
  margin-left: 15px;
  padding: 1px;
  font-size: 12px;
  border-width: 1px;
  border-color: #44fcfd;
  background-color: #1c2834;
  color: #44fcfd;
  border-style: solid;
  border-radius: 0px;
  box-shadow: 0px 0px 0px rgba(66, 66, 66, 0.75);
  text-shadow: 0px 0px 0px rgba(66, 66, 66, 0);
}
.text-input:focus {
  outline: none;
}
