/**/
/**/
/**/
/**/
/**/
/* BODY */

/* TOOL CONTAINER */
.tool_container {
  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 100%;
  height: 100%;
}

/**/
/**/
/**/
/**/
/**/
/* FLASHER */

/**/
.flasher_text_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
}
.flasher_text {
  font-size: 500%;
}

/**/
.flasher_control_box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10%;
  padding: 0 2% 0;
}
.flasher_control_button_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
}
.flasher_control_progress_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
}

/**/
.flasher_control_button {
  pointer-events: none;
  background-color: #c1c1c1;
  border: solid 2px #777777;

  border-radius: 5px;
  width: 100%;
  height: clamp(25px, 4vh, 50px);
  padding: 2%;
  font-size: clamp(2vh, 1.8vw, 1.2rem);
}
.flasher_control_button.active {
  pointer-events: all;
  cursor: pointer;
  background-color: #21a348;
  border: solid 2px #21a348;
}

/**/
.flasher_control_progress_text {
  display: none;
  font-size: 60%;
}
.flasher_control_progress_bar {
  display: none;
  width: 95%;
  padding: 15px;
}

/**/
/**/
/**/
/**/
/**/

/* WORKSHEET LAYOUT */
.worksheet_container {
  display: flex;
  justify-content: center;
  padding: 15px 30px 15px;

  flex-grow: 1;
}
.worksheet_vertical_container {
  display: flex;
  flex-direction: column;

  width: 210mm;
  height: 297mm;
  background-color: #ffffff;

  transform: scale(1);
  transform-origin: top;
}
.worksheet_horizontal_container {
  display: flex;
  flex-direction: column;

  width: 297mm;
  height: 210mm;
  background-color: #ffffff;

  transform: scale(1);
  transform-origin: top;
}

/* WORKSHEET TITEL */
.worksheet_title_container {
  display: flex;
  justify-content: left;
  align-items: end;
  box-sizing: border-box;

  width: auto;
  height: 16mm;
  margin-top: 6mm;
  margin-left: 10mm;
  margin-right: 15mm;
  /*border-bottom: 0.5mm solid black;*/
}
.worksheet_logo {
  display: flex;
  margin-bottom: 0.75mm;
}
.worksheet_title {
  margin-left: 8mm;
  font-size: 120%;
  line-height: 1.2;
}

/* WORKSHEET BODY */
.worksheet_body_container {
  flex-grow: 1;
  width: 100%;
}

/* WORKSHEET COPYRIGHT */
.worksheet_copyright_container {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;

  width: auto;
  height: 12mm;
  margin-left: 10mm;
  margin-right: 15mm;
  /*border-top: 0.5mm solid black;*/
}
.worksheet_copyright_text {
  margin-bottom: 5mm;
  font-size: 65%;
  color: gray;
}

/**/
/**/
/**/
/**/
/**/

/**/
/**/
/**/
/**/
/**/
