

.editor-container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box-minmax {
  margin-top: 15px;
  width: 300px;
  display: flex;
  justify-content: space-between;
  color: var(--color);
}
.box-minmax span:first-child {
  margin-left: 10px;
}

.range-slider {
  margin-top: 0vh;
}

.rs-range {
  margin-top: 29px;
  width: 300px;
  -webkit-appearance: none;
}
.rs-range:focus {
  outline: none;
}
.rs-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  box-shadow: none;
  background: #000000;
  border-radius: 0px;
  border: 0px solid #010101;
}
.rs-range::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  box-shadow: none;
  background: #ffffff;
  border-radius: 0px;
  border: 0px solid #010101;
}
.rs-range::-webkit-slider-thumb {
  box-shadow: none;
  border: 0px solid #000000;
  box-shadow: 0px 10px 10px rgba(0, 0, 5, 0.25);
  height: 42px;
  width: 22px;
  border-radius: 22px;
  background: var(--default-action-button-background);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -20px;
}
.rs-range::-moz-range-thumb {
  box-shadow: none;
  border: 0px solid #000000;
  box-shadow: 0px 10px 10px rgba(255, 0, 5, 0.25);
  height: 42px;
  width: 22px;
  border-radius: 22px;
  background: blue;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -30px;
}
.rs-range::-moz-focus-outer {
  border: 0;
}

.rs-label {
    position: relative;
    transform-origin: center center;
    display: block;
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    padding-top: 9px;
    box-sizing: border-box;
    border: 1px solid var(--default-action-button-background);
    margin-top: 0px;
    margin-left: -38px;
    left: 28px;
    color: var(--color);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 14px;
}
.rs-label::after {
    content: "Die";
    display: block;
    font-size: 14px;
    letter-spacing: 0.07em;
    margin-top: -6px;
}
