
#controlBtn{
  background-color:#7dd43b;
  color: white;
  border: none;
  width: 70px;
  height: 30px;
  border: 2px solid #7dd43b;
  cursor: pointer;
}

#controlBtn:hover{
  background-color: white;
  color: #7dd43b;
}

#ergebnis{
  height: 24px;
  width: 90px;
}

/* Toggle Switch Checkbox */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #7DD43B;
}

input:focus + .slider {
  box-shadow: 0 0 1px #7DD43B;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* End of Toggle Switch */

input[type="range"]{
  width: 160px;
}

input[type=range] {
  width: 160px;
  margin: 7.95px 0;
  background-color: transparent;
  -webkit-appearance: none;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  background: #7dd43b;
  border: 0;
  border-radius: 5.3px;
  width: 100%;
  height: 8.1px;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  margin-top: -7.95px;
  width: 5px;
  height: 24px;
  background: #000000;
  border: 0.7px solid #000000;
  border-radius: 25px;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #7dd43b;
}
input[type=range]::-moz-range-track {
  background: #7dd43b;
  border: 0;
  border-radius: 5.3px;
  width: 100%;
  height: 8.1px;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 5px;
  height: 24px;
  background: #000000;
  border: 0.7px solid #000000;
  border-radius: 25px;
  cursor: pointer;
}
input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 8.95px 0;
  color: transparent;
  width: 100%;
  height: 8.1px;
  cursor: pointer;
}
input[type=range]::-ms-fill-lower {
  background: #7dd43b;
  border: 0;
  border-radius: 10.6px;
}
input[type=range]::-ms-fill-upper {
  background: #7dd43b;
  border: 0;
  border-radius: 10.6px;
}
input[type=range]::-ms-thumb {
  width: 5px;
  height: 24px;
  background: #000000;
  border: 0.7px solid #000000;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type=range]:focus::-ms-fill-lower {
  background: #7dd43b;
}
input[type=range]:focus::-ms-fill-upper {
  background: #7dd43b;
}

@supports (-ms-ime-align:auto) {
  /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
  input[type=range] {
    margin: 0;
    /*Edge starts the margin from the thumb, not the track as other browsers do*/
  }
}

.configArea{
  opacity: 1;
  transition: opacity 1s;
}

.generatorOutput{
  display: none;
  opacity: 0;
  transition: opacity 1s;
}

.generatedTask{
  display: inline-block;
  margin-top: 2%;
  font-size: 2em;
}

.easy, .rangeMiddle, .harder{
  font-weight: bold;
  cursor: pointer;
}

.rangeMiddle{
  color: #7DD43B;
  margin-left: 35px;
  margin-right: 35px;
}

.resultContainer{
  margin-top: 20px;
}

.answerOutput{
  font-weight: bold;
}
