

.description {
}
.generator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 1em;
}
.title {
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 20px 0;
}
.description p {
    line-height: 1.5;
}
.link {
    text-decoration: none;
    color: rgb(0, 127, 253); 
}
.right {
    position: absolute;
    right: 0;
    top: 20;
}
.right-b {
    position: absolute;
    right: 40;
    top: 20;
}

.canvas {
    border-right: 1px solid #000;
  padding-right: 50px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
 button {
    border: none;
    outline: none;
    color: #FFF;
    border-radius: 5px;
    font-size: 0.8em;
    background-color: #000;
    padding: 10px 20px;
    cursor: pointer;
    text-align: left;
}
.canvas input  {
    padding: 10px;
}

.antworten {
    width: 50%;
    margin: 1em 3em;
    text-align: center;
}
.row-a {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.row_text {
    
}
.row-a div {
    cursor: pointer;
    margin: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.row-a img {
    width: 60px;
}
.dot {
    border: 1px solid #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
}
.clicked .dot {
    background-color: #000;
}


#canvas_wrapper {
    position: relative;
}
#canvas_wrapper  main {
    z-index: 0;
}
#hideDiv {
    position: absolute;
    background-color: #FFF;
    border: 0.5px solid #333;
    bottom: 22;
    right: 22.5;
    width: 60px;
    height: 60px;
    z-index: 1;
}
button {
  touch-action: manipulation;
}

.correct {
    color: #27ae60;
  text-decoration: none;
  display: block;
    margin: 5px 0px 10px 0px;
    font-size: 16px;
    font-weight: bold;
  text-decoration: none;

}
.wrong {
    color: #e74c3c;
    text-decoration: none;
  display: block;
    margin: 5px 0px 10px 0px;
    font-size: 16px;
    font-weight: bold;
  text-decoration: none;
}

#advertisement {
    padding: 1em 0 3em;
}
#advertisement p {
    line-height: 1.5;
}

.settings {
    background-color: #C6F2FB;
    border-radius: 5px;
}

input[type=range]::-ms-track {
    width: 300px;
    height: 5px;
    
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;

    /*remove default tick marks*/
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
}

input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: goldenrod;
}

input[type=range]:focus::-ms-fill-lower {
    background: #888;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
}



@media only screen and (max-width: 900px) {
    .margin-800 {
        margin: 1em auto;
        width: 90%;
    }
    .generator {
        flex-direction: column;
    }
    .canvas {
        width: 100%;
        border: none;
        border-bottom: 1px solid #000;
        flex-direction: column-reverse;
      padding-right: 0px;
    }
    .antworten {
        width: 100%;
        margin: 0.5em 0;
    }
  .row-a img {
    width: 50px;
}
  
  
  .row-a div {
    margin: 5px;
    margin-bottom: 0px;
}
  
  
