body {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

div#buttons {
  position: fixed;
  bottom: 60px;
  gap: 20px;
  display: flex;
}

div#buttons button {
  width: 300px;
}

header {
  position: fixed;
  top: 40px;
  right: 50px;
  z-index: 1;
  background: white;
  padding: 27px 30px;
  border: solid 1px black;
  border-radius: 5px;
  width: 280px;
}

header div.settings-wrapper:not(:last-child) {
  margin-bottom: 30px;
}

header div.title {
  margin-bottom: 10px;
  width: 100%;
  border-bottom: solid 1px black;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

header div.input-wrapper {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

header div.input-wrapper:last-child {
  margin-bottom: 0px;
}

header div.input-wrapper label {
  margin-right: 15px;
  flex-shrink: 0;
}

input[type='color'] {
  -webkit-appearance: none;
  border: none;
  width: 16px;
  height: 16px;
  background: none;
  cursor: pointer;
}

input[type='color']::-webkit-color-swatch-wrapper {
  padding: 0;
}

input[type='color']::-webkit-color-swatch {
  border-radius: 50%;
  border: none;
}

input[type='range'] {
  width: 100%;
  appearance: none;
  height: 1px;
  outline: none;
  border-radius: 30px;
  cursor: pointer;
  background: black;
}

input[type='range']::-webkit-slider-thumb {
  appearance: none;
  height: 10px;
  width: 10px;
  background: black;
  border-radius: 50%;
  outline: none;
}

select {
  outline: none;
  width: 100%;
  padding: 1px 10px;
  border: 1px solid black;
  font-size: 16px;
  border-radius: 100px;
}

div.input-wrapper:has(input[disabled]) {
  opacity: 0.25;
}

div.switch {
  margin-left: 15px;
  cursor: pointer;
  width: 30px;
  height: 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 0 4px;
  justify-content: flex-start;
  background: white;
  border: solid 1px black;
}

div.switch div {
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 50%;
  opacity: 0.35;
}

div.switch.on {
  justify-content: flex-end;
}

div.switch.on div {
  opacity: 1;
}