/********************************

templ--know-german
  -> Item: know-german

********************************/

body {
  height: 100vh;
}

.templ--know-german {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  
  .templ--know-german .textImprovementBox {
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 150px;
    width: 295px;
    padding-bottom: 15px;
    background-color: var(--c-gray-lightest);
    border-radius: 10px 10px 0px 0px;
    -webkit-box-shadow: 0px 0px 10px var(--c-black-o-05);
    box-shadow: 0px 0px 10px var(--c-black-o-05);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    animation: fadeIn 0.3s ease;
  }
  
  .templ--know-german .textImprovementBox__title {
    border-radius: 10px 10px 0px 0px;
    background-color: var(--c-gray-dark);
    margin-bottom: 10px;
    text-align: center;
    height: 35px;
  }
  
  .templ--know-german .textImprovementBox__title p {
    color: var(--c-white);
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    line-height: 35px;
    ;
  }
  
  .templ--know-german .textImprovementBox__input {
    font-family: courier;
    width: 100%;
    text-align: center;
  }
  
  .templ--know-german .textImprovementBox__input p {
    margin: 0;
  }
  
  .templ--know-german .textImprovementBox__input input {
    font-family: courier;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    width: 275px;
    height: 45px;
    border: 1px solid var(--c-gray-dark);
    border-radius: 5px 5px 5px 5px;
    text-align: center;
    font-size: 14px;
    border: 1px solid var(--c-black);
    cursor: text;
  }
  
  .templ--know-german .textImprovementBox__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    width: 130px;
    height: 35px;
    font-size: 14px;
    color: var(--c-gray-dark);
    background-color: var(--c-white);
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    border: 2px solid var(--c-gray-dark);
    -webkit-box-shadow: 2px 2px 3px var(--c-black-o-05);
    box-shadow: 2px 2px 3px var(--c-black-o-05);
    font-weight: bold;
  }
  
  .templ--know-german .templ--know-german .textImprovementBox__button:hover {
    background-color: var(--c-gray-dark)1A;
  }
  
  .templ--know-german .textImprovementBox__button:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--c-gray-dark);
    color: var(--c-white);
  }
  
  .templ--know-german .textImprovementBox__button.textImprovement--delete {
    bottom: 10px;
    left: 10px;
  }
  
  .templ--know-german .textImprovementBox__button.textImprovement--save {
    bottom: 10px;
    right: 10px;
  }
  
  .templ--know-german .task-stimulus__know-german {
    margin-top: 10px;
  }

  .templ--know-german .know-german__text-display {
    display: flex;
    flex-wrap: wrap;
  }
  
  .templ--know-german span {
    display: block;
    width: fit-content;
    min-width: 12px;
    cursor: pointer;
  }
  
  .templ--know-german .corrected {
    min-width: 12px;
    border: 1px solid var(--c-green);
    background-color: var(--c-green-o-03);
    animation: fadeIn 0.3s ease;
  }
  
  .templ--know-german .selected {
    border: 1px solid var(--c-red);
    background-color: var(--c-red-o-03);
    animation: fadeIn 0.3s ease;
  }
  
  .templ--know-german .textImprovementBox.hoverCorrection .textImprovementBox__title,
  .templ--know-german .textImprovementBox.hoverCorrection .textImprovementBox__button {
    display: none;
  }
  
  .templ--know-german .textImprovementBox.hoverCorrection {
    height: auto;
    padding-top: 15px;
    -webkit-box-shadow: 3px 3px 6px var(--c-black-o-05);
    box-shadow: 3px 3px 6px var(--c-black-o-05);
  }
  
  .templ--know-german .hint-button-visible {
    display: block;
  }
  
  .templ--know-german .hoverCorrection input {
    border: 1px solid var(--c-green);
  }
  
  .templ--know-german .hoverCorrection {
    border-radius: 5px;
  }


  
  /* TEMPORARY */
  :root {
    --c-white-o-03: rgba(255, 255, 255, 0.3);
    --c-white-o-05: rgba(255, 255, 255, 0.5);
    --c-white: #ffffff;
    --c-gray-lightester: #F7F7F7;
    --c-gray-lightest: #EFEFEF;
    --c-gray-lighter: #dbdbdb;
    --c-gray-light: #CFCECF;
    --c-gray: #707070;
    --c-gray-dark: #383838;
    --c-black: #000000;
    --c-black-o-02: rgb(0, 0, 0, 0.2);
    --c-black-o-03: rgb(0, 0, 0, 0.3);
    --c-black-o-05: rgb(0, 0, 0, 0.5);
    --c-black-o-07: rgb(0, 0, 0, 0.7);
    --c-black-o-08: rgb(0, 0, 0, 0.8);
    --c-black-o-09: rgb(0, 0, 0, 0.9);
    --c-green-o-03: rgba(0, 163, 24, 0.3);
    --c-red-o-03: rgba(214, 0, 0, 0.3);
    --c-blue-lighter: #3399ff;
    --c-blue: #003CDE;
    --c-blue-pale: #235482;
    --c-green: #00A219;
    --c-red: #D50000;
}


.hidden {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body {
  background-color: rgb(25, 49, 47);
  padding: 20px;
}

.task-container {
  background-color: white;
}

.task-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 30px 30px 50px;
  width: 100%;
  height: 100%;
  max-width: 900px;
  max-height: 600px;
  color: var(--c-gray-dark);
  background-color: white;
}

.task-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1 auto;
  -ms-flex: 1 auto;
  flex: 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


/* breaking into new line */
.break-static + .break {
  min-height: 1rem;
}
.break {
  flex-basis: 100%;
  height: 0;
  border: none;
}