#gui-left {
  background-color: rgb(0, 0, 0);
  border-right: 2px solid white;
}



input,
select,
textarea,
button {
  display: block;
  margin: 0 0 10px 0;
}

input,
select,
button {
  cursor: pointer;
}

input[type="range"] {
  overflow: hidden;
  height: 7px;
  width: 200px;
  cursor: pointer;
  outline: none;
}

input[type="text"] {
  background: #dddddd;
  -webkit-appearance: none;
  box-shadow: none;
  border: 0;
  width: 200px;
  padding: 5px;
}

textarea {
  background: #d1d1d1;
  -webkit-appearance: none;
  box-shadow: none;
  border: 0;
  width: 200px;
  padding: 5px;
  resize: none;
}

select {
  width: 200px;
  background: #ddd;
  border-radius: 0;
  border: 0;
  padding: 5px;
}

button {
  width: 200px;
  background: #ddd;
  border-radius: 100px;
  border: 0;
  padding: 5px;
  cursor: pointer;
}

button:active {
  background-color: yellow;
}

::-webkit-slider-runnable-track {
  background: #ddd;
}

::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  height: 40px;
  background: #fff;
  box-shadow: -200px 0 0 200px rgb(160, 160, 160);
  border: none;
}

::-moz-range-track {
  height: 40px;
  background: #ddd;
}

::-moz-range-thumb {
  background: #fff;
  height: 40px;
  width: 0;
  border: none;
  border-radius: 0 !important;
  box-shadow: -200px 0 0 200px black;
  box-sizing: border-box;
}

summary {
  cursor: pointer;
  padding: 10px;
  background: #42424200;
  border-bottom: 2px solid white;
  
 
}
label {
  color: #fff;
}

details{
  margin-bottom: .5rem;
}

.details-inner {
  padding: 10px;
  background-color: rgb(0, 0, 0);
}