﻿html,
body {
  margin: 0;
} /* hides the default radiobuttons */
.hidden {
  position: absolute;
  inset-block-start: auto;
  inset-inline-start: -99999px;
  opacity: 0;
}

.question-numbering {
  color: red;
  font-weight: bold;
}

/* Grid style for the StudyExpert frame */
/* The style is designed for desktop, over a width of 600px */
@media only screen and (min-width: 1024px) {
  .framework-grid {
    display: grid;
    grid-template-columns: min-content auto min-content;
    grid-template-rows: 50px calc(99vh - 60px);
    margin: 0.5vh auto;
    width: max(1024px, 75%);
  }

  .framework-grid .header {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
  }

  .framework-grid .nav {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-color: transparent;
    overflow-y: scroll;
    padding: 0.5rem;
  }

  .framework-grid .hamburger-menu {
    display: none;
  }

  .framework-grid .navbar {
    display: grid;
    grid-template-columns: min-content;
  }

  .framework-grid .nav-button {
    white-space: nowrap;
    padding: 0.75em 1.25em;
    margin-block: 0.2rem;
  }

  .framework-grid .mainarea {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 1rem;
    background-color: white;
    overflow-y: auto;
  }

  .framework-grid .sidebar {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }

  /* .framework-grid .footer-button {
    width: min(35vw, 350px);
    height: min(5vh, 2.5rem);
    margin-inline: 0.5rem;
    border: 1px solid rgb(107, 107, 107);
    border-radius: 99vh;
  } */

  .framework-grid .grid-background {
    display: content;
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    z-index: -1;
    /* background: linear-gradient(120deg, #3046F9, #8298FA, #ED6961); */
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 1);
  }
}

@media only screen and (max-width: 1023px) {
  .framework-grid {
    display: grid;
    grid-template-columns: 100vw;
    grid-template-rows: 5vh 94vh;
  }

  .framework-grid .header {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .framework-grid .nav {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .framework-grid .hamburger-menu {
    position: relative;
    display: block;
    margin-block-start: 0.5vh;
    margin-inline-start: 0rem;
    width: min(4rem, 8vw);
    height: 4vh;
    cursor: pointer;
    z-index: 20;
    pointer-events: all;
    border: 1px solid black;
  }

  .framework-grid .nav input ~ .hamburger-menu .line {
    transform-origin: center;
    transition: transform 250ms linear 250ms, rotate 250ms linear 250ms,
      opacity 250ms linear 250ms;
  }

  .framework-grid .nav input:checked ~ .hamburger-menu .line {
    transform-origin: center;
    transition: transform 250ms linear 0ms, rotate 250ms linear 250ms,
      opacity 0ms linear 250ms;
  }

  .framework-grid .nav input:checked ~ .hamburger-menu .top {
    transform: translateY(30px);
    rotate: 45deg;
  }

  .framework-grid .nav input:checked ~ .hamburger-menu .middle {
    opacity: 0;
  }

  .framework-grid .nav input:checked ~ .hamburger-menu .bottom {
    transform: translateY(-30px);
    rotate: -45deg;
  }

  .framework-grid .navbar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 0.5rem;
    width: calc(100% - 20px);
    height: calc(100% - 35px);
    align-items: center;
    justify-items: center;
    background-color: rgba(0, 0, 0, 0.85);
    overflow-y: auto;
    pointer-events: all;
    transform: scale(0);
    transition: transform 350ms linear 175ms;
    transform-origin: 0 0;
  }

  .framework-grid .nav-button {
    white-space: nowrap;
    padding: 0.75em 1.25em;
    margin-block: 0.2rem;
  }

  .framework-grid .nav input:checked {
    pointer-events: all;
  }

  .framework-grid .nav input:checked ~ .navbar {
    transform: scale(1);
  }

  .framework-grid .mainarea {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-color: white;
    overflow-y: scroll;
    z-index: 1;
  }

  /* .footer-button {
    width: clamp(175px, 35vw, 350px);
    height: min(5vh, 2.5rem);
    border-radius: 99vh;
    border: 2px double black;
    border: 2px solid black;
    box-shadow: inset 0 0 0 5px white;
    border-radius: 9999px;
    background-color: limegreen;
    padding: 10px;
  } */

  /* .footer-button img {
    display: flex;
    width: 75%;
    height: auto;
    align-items: center;
    border-radius: 6px;
  } */

  .framework-grid .grid-background {
    display: content;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    z-index: -1;
    /* background: linear-gradient(120deg, #3046F9, #8298FA, #ED6961); */
  }
}

.navButtonStatic,
.navButtonPending,
.navButtonDone {
  display: block;
  box-sizing: border-box;
  inline-size: 60px;
  block-size: 25px;
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0.1rem;
  border: 1px solid rgb(107, 107, 107);
  border-radius: 0.5rem;
}

.navButtonPending {
  background-color: #ed6961; /*IEA rot*/
  /*background-color: #f87f79;*/
}
.navButtonDone {
  /*background-color: #22BB52;*/
  background-color: #aefa69ed;
}

.navButtonPending:hover,
.navButtonStatic:hover,
.navButtonDone:hover {
  /*box-shadow: inset 0 0 10px 0 #3046f9;*/
  box-shadow: inset 0 0 5px 0 rgb(95, 95, 95);
}

.exit {
  background-image: url("/fire-exit.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 33px;
  border: 1px solid grey;
  padding: 0 50px;
  border-radius: 20px;
  min-height: 40px;
}

.enter {
  background-color: transparent;
  background-image: url("/login.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  min-height: 100px;
  min-width: 100px;
  cursor: pointer;
}

button.enter:disabled,
button.enter[disabled] {
  opacity: 0.5;
}

/*Text_only - TALIS default*/

.Text_only_Style31 {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  padding: 0.5rem 1rem 1.5rem 1rem;
  /*margin-bottom: 4rem;*/
  color: black;
}

.Text_only_Style31 p {
  margin-bottom: 0px;
  margin-top: 0px;
}

.Text_only_Style31 h1 {
  margin-bottom: 2rem;
  font-size: 30px;
}

.Text_only_Style31 h2 {
  margin-bottom: 4rem;
  margin-top: 4rem;
  font-size: 33px;
}

.Text_only_Style31 h3 {
  /*margin-top: 4rem;*/
  /*margin-bottom: 0.5rem;*/
  font-size: 22px;
}

.Text_only_Style31 h4,
.Text_only_Style31 h5,
.Text_only_Style31 h6 {
  font-weight: normal;
}

.Text_only_Style31 h4 {
  margin-bottom: 2rem;
  font-size: 19px;
}

.Text_only_Style31 h5 {
  margin-bottom: 2rem;
  font-size: 19px;
}

.Text_only_Style31 h6 {
  margin-top: 0rem;
  margin-bottom: 0.5rem;
  font-size: 19px;
}

.Text_only_Style31 ul {
  margin-bottom: 0rem;
  margin-top: 0rem;
} /*Matrix MC adaptive - TALIS Matrix default */

/* Text style: */

.MatrixMC_Style25 {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  padding: 0.5rem 1rem 1rem 1rem;
  /*margin-bottom: 4rem;*/
  color: black;
  font-size: 16px;
}

.MatrixMC_Style25 p {
  margin-bottom: 0px;
  margin-top: 0px;
}

/* .MatrixMC_Style25 h1,
.MatrixMC_Style25 h3 {
  margin-bottom: 2rem;
}

.MatrixMC_Style25 h2 {
  margin-bottom: 0.5rem;
}

.MatrixMC_Style25 h2,
.MatrixMC_Style25 h3 {
  font-weight: normal;
}

.MatrixMC_Style25 h1 {
  font-size: 22px;
} */

.MatrixMC_Style25 .answer {
  font-size: 16px;
}

/* .MatrixMC_Style25 label, */
/* .MatrixMC_Style25 h2,
.MatrixMC_Style25 h3 {
  font-size: 19px;
} */

/* NEW: Style for textbox */
.MatrixMC_TextboxStyle {
  margin-bottom: 1rem;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  color: black;
  font-size: 19px;
  padding-block: 0.5rem;
}

.MatrixMC_TextboxStyle textarea {
  border: 0.15rem solid black;
  border-radius: 0.5rem;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.2rem;
}

.MatrixMC_TextboxStyle textarea:hover,
.MatrixMC_TextboxStyle textarea:focus {
  border: 0.15rem solid lightblue;
}

.MatrixMC_TextboxStyle .textbox-label {
  grid-area: textbox-label;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.2rem;
}

.MatrixMC_Style25 .sticky {
  position: sticky;
  inset-block-start: -1rem;
  background-color: white;
  z-index: 10;
}

/* .MatrixMC_Style25 .prompt-1c,
.MatrixMC_Style25 .prompt-2c,
.MatrixMC_Style25 .prompt-3c,
.MatrixMC_Style25 .prompt-4c,
.MatrixMC_Style25 .prompt-5c,
.MatrixMC_Style25 .prompt-6c,
.MatrixMC_Style25 .prompt-7c,
.MatrixMC_Style25 .prompt-8c,
.MatrixMC_Style25 .prompt-9c,
.MatrixMC_Style25 .prompt-10c {
  margin-top: 2rem;
  margin-bottom: 2rem;
} */

/* hides the default radiobuttons */
.MatrixMC_Style25 .hidden {
  position: absolute;
  inset-block-start: auto;
  inset-inline-start: -99999px;
  opacity: 0;
}

/* Checkbox related styles */
.MatrixMC_Style25 .checkbox-label {
  position: relative;
}

.MatrixMC_Style25 .checkbox {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate(-50%, -50%);
  border: 0.3rem solid gray;
  background-color: white;
  cursor: pointer;
  border-radius: 50%;
}

.MatrixMC_Style25 .checkbox::before,
.MatrixMC_Style25 .checkbox::after {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(141, 141, 141);
  opacity: 0;
  transition: 200ms linear;
  border-radius: 50%;
}

.MatrixMC_Style25 .checkbox-label:hover .checkbox::before {
  opacity: 1;
}

.MatrixMC_Style25 .checkbox-label input:checked ~ .checkbox::after {
  background-color: gray;
  opacity: 1;
}

/* Mediaquery for desktop styling  */
@media only screen and (min-width: 801px) {
  .MatrixMC_Style25 .matrix-MC-grid-1c {
    display: grid;
    grid-template-columns: minmax(300px, 5fr) repeat(1, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-2c {
    display: grid;
    grid-template-columns: minmax(300px, 5fr) repeat(2, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-3c {
    display: grid;
    grid-template-columns: minmax(300px, 5fr) repeat(3, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-4c {
    display: grid;
    grid-template-columns: minmax(300px, 5fr) repeat(4, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-5c {
    display: grid;
    grid-template-columns: minmax(300px, 5fr) repeat(5, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-6c {
    display: grid;
    grid-template-columns: minmax(300px, 5fr) repeat(6, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-7c {
    display: grid;
    grid-template-columns: minmax(200px, 5fr) repeat(7, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-8c {
    display: grid;
    grid-template-columns: minmax(200px, 5fr) repeat(8, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-9c {
    display: grid;
    grid-template-columns: minmax(200px, 5fr) repeat(9, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-10c {
    display: grid;
    grid-template-columns: minmax(200px, 5fr) repeat(10, minmax(75px, 1fr));
  }

  .MatrixMC_Style25 .prompt,
  .MatrixMC_Style25 .answer,
  .MatrixMC_Style25 .question-numbering,
  .MatrixMC_Style25 .question-text,
  .MatrixMC_Style25 .checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .MatrixMC_Style25 .sticky {
    position: sticky;
    inset-block-start: -1rem;
    background-color: white;
    z-index: 10;
  }

  .MatrixMC_Style25 .prompt-1c {
    grid-column: 2/3;
    text-align: center;
  }
  .MatrixMC_Style25 .prompt-2c {
    grid-column: 2/4;
    text-align: center;
  }
  .MatrixMC_Style25 .prompt-3c {
    grid-column: 2/5;
    text-align: center;
  }
  .MatrixMC_Style25 .prompt-4c {
    grid-column: 2/6;
    text-align: center;
  }
  .MatrixMC_Style25 .prompt-5c {
    grid-column: 2/7;
    text-align: center;
  }
  .MatrixMC_Style25 .prompt-6c {
    grid-column: 2/8;
    text-align: center;
  }
  .MatrixMC_Style25 .prompt-7c {
    grid-column: 2/9;
    text-align: center;
  }
  .MatrixMC_Style25 .prompt-8c {
    grid-column: 2/10;
    text-align: center;
  }
  .MatrixMC_Style25 .prompt-9c {
    grid-column: 2/11;
    text-align: center;
  }
  .MatrixMC_Style25 .prompt-10c {
    grid-column: 2/12;
    text-align: center;
  }

  .MatrixMC_Style25 .answer {
    text-align: center;
  }

  .MatrixMC_Style25 .question-container-1c {
    display: flex;
  }
  .MatrixMC_Style25 .question-container-2c {
    display: flex;
  }
  .MatrixMC_Style25 .question-container-3c {
    display: flex;
  }
  .MatrixMC_Style25 .question-container-4c {
    display: flex;
  }
  .MatrixMC_Style25 .question-container-5c {
    display: flex;
  }
  .MatrixMC_Style25 .question-container-6c {
    display: flex;
  }
  .MatrixMC_Style25 .question-container-7c {
    display: flex;
  }
  .MatrixMC_Style25 .question-container-8c {
    display: flex;
  }
  .MatrixMC_Style25 .question-container-9c {
    display: flex;
  }
  .MatrixMC_Style25 .question-container-10c {
    display: flex;
  }

  .MatrixMC_Style25 .question-numbering {
    align-items: flex-start;
    padding-inline-end: 0;
  }
}

/* Mediaquery for mobile styling */
@media only screen and (max-width: 800px) {
  .MatrixMC_Style25 .matrix-MC-grid-1c {
    display: grid;
    grid-template-columns: 1fr;
  }
  .MatrixMC_Style25 .matrix-MC-grid-2c {
    display: grid;
    grid-template-columns: repeat(2, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-3c {
    display: grid;
    grid-template-columns: repeat(3, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-4c {
    display: grid;
    grid-template-columns: repeat(4, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-5c {
    display: grid;
    grid-template-columns: repeat(5, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-6c {
    display: grid;
    grid-template-columns: repeat(6, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-7c {
    display: grid;
    grid-template-columns: repeat(7, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-8c {
    display: grid;
    grid-template-columns: repeat(8, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-9c {
    display: grid;
    grid-template-columns: repeat(9, minmax(75px, 1fr));
  }
  .MatrixMC_Style25 .matrix-MC-grid-10c {
    display: grid;
    grid-template-columns: repeat(10, minmax(75px, 1fr));
  }

  .MatrixMC_Style25 .empty {
    display: none;
  }

  .MatrixMC_Style25 .prompt,
  .MatrixMC_Style25 .answer,
  .MatrixMC_Style25 .question-numbering,
  .MatrixMC_Style25 .question-text,
  .MatrixMC_Style25 .checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .MatrixMC_Style25 .prompt-1c {
    grid-column: 1 / span 1;
  }
  .MatrixMC_Style25 .prompt-2c {
    grid-column: 1 / span 2;
  }
  .MatrixMC_Style25 .prompt-3c {
    grid-column: 1 / span 3;
  }
  .MatrixMC_Style25 .prompt-4c {
    grid-column: 1 / span 4;
  }
  .MatrixMC_Style25 .prompt-5c {
    grid-column: 1 / span 5;
  }
  .MatrixMC_Style25 .prompt-6c {
    grid-column: 1 / span 6;
  }
  .MatrixMC_Style25 .prompt-7c {
    grid-column: 1 / span 7;
  }
  .MatrixMC_Style25 .prompt-8c {
    grid-column: 1 / span 8;
  }
  .MatrixMC_Style25 .prompt-9c {
    grid-column: 1 / span 9;
  }
  .MatrixMC_Style25 .prompt-10c {
    grid-column: 1 / span 10;
  }

  .MatrixMC_Style25 .answer {
    position: sticky;
    inset-block-start: 0;
    background-color: white;
    z-index: 10;
  }

  .MatrixMC_Style25 .question-container-1c {
    display: flex;
    grid-column: 1 / span 2;
  }
  .MatrixMC_Style25 .question-container-2c {
    display: flex;
    grid-column: 1 / span 3;
  }
  .MatrixMC_Style25 .question-container-3c {
    display: flex;
    grid-column: 1 / span 4;
  }
  .MatrixMC_Style25 .question-container-4c {
    display: flex;
    grid-column: 1 / span 5;
  }
  .MatrixMC_Style25 .question-container-5c {
    display: flex;
    grid-column: 1 / span 6;
  }
  .MatrixMC_Style25 .question-container-6c {
    display: flex;
    grid-column: 1 / span 7;
  }
  .MatrixMC_Style25 .question-container-7c {
    display: flex;
    grid-column: 1 / span 8;
  }
  .MatrixMC_Style25 .question-container-8c {
    display: flex;
    grid-column: 1 / span 9;
  }
  .MatrixMC_Style25 .question-container-9c {
    display: flex;
    grid-column: 1 / span 10;
  }
  .MatrixMC_Style25 .question-container-10c {
    display: flex;
    grid-column: 1 / span 11;
  }

  .MatrixMC_Style25 .question-numbering {
    /* display: none; */
    align-self: flex-start;
    padding-inline-end: 0;
  }

  .MatrixMC_Style25 .checkbox-container {
    padding: 1rem 1rem 2rem 1rem;
  }
}

/* Row coloring */
.MatrixMC_Style25 .uneven {
  background-color: rgb(235, 235, 235);
}

.MatrixMC_Style25 .even {
  background-color: lightgray;
} /*Single MC adaptive - TALIS single MC default */

/* Text style: */

.MC_Style27 {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  padding: 0.5rem 1rem 1rem 1rem;
  /*margin-bottom: 4rem;*/
  color: black;
}

.MC_Style27 p {
  margin-bottom: 0px;
  margin-top: 0px;
}

.MC_Style27 h1,
.MC_Style27 h3 {
  margin-bottom: 2rem;
}

.MC_Style27 h2 {
  margin-bottom: 0.5rem;
}

.MC_Style27 h2,
.MC_Style27 h3 {
  font-weight: normal;
}

.MC_Style27 h1 {
  font-size: 22px;
}

.MC_Style27 .question,
.MC_Style27 .checkbox-numbering,
.MC_Style27 h2,
.MC_Style27 h3 {
  font-size: 19px;
}

/* NEW: Style for textbox */
.MCSC_TextboxStyle {
  margin-bottom: 1rem;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  color: black;
  font-size: 19px;
}

.MCSC_TextboxStyle textarea {
  border: 0.15rem solid black;
  border-radius: 0.5rem;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.2rem;
}

.MCSC_TextboxStyle textarea:hover,
.MCSC_TextboxStyle textarea:focus {
  border: 0.15rem solid lightblue;
}

.MCSC_TextboxStyle .textbox-label {
  grid-area: textbox-label;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.2rem;
}

/* hides the default radiobuttons */
.MC_Style27 .hidden {
  position: absolute;
  inset-block-start: auto;
  inset-inline-start: -99999px;
  opacity: 0;
}

/* Checkbox related styles */
.MC_Style27 .checkbox-label {
  position: relative;
}

.MC_Style27 .checkbox {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate(-50%, -50%);
  border: 0.3rem solid gray;
  background-color: white;
  cursor: pointer;
  border-radius: 50%;
}

.MC_Style27 .checkbox::before,
.MC_Style27 .checkbox::after {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(141, 141, 141);
  opacity: 0;
  transition: 200ms linear;
  border-radius: 50%;
}

.MC_Style27 .checkbox-label:hover .checkbox::before {
  opacity: 1;
}

.MC_Style27 .checkbox-label input:checked ~ .checkbox::after {
  background-color: gray;
  opacity: 1;
}

/* MC-Grid related Styles */
.MC_Style27 .MC-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
}

.MC_Style27 .checkbox-container {
  /*padding: 1.5rem;*/
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin: 0 0 0 20px;
}

.MC_Style27 .checkbox-numbering {
  padding: 1rem 0.5rem;
}

.MC_Style27 .question {
  padding: 1rem 0;
}

/*Textbox responsive - TALIS textbox default*/

.Textbox_Style29 {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  padding: 0.5rem 1rem 1.5rem 1rem;
  /*margin-bottom: 4rem;*/
  color: black;
}

.Textbox_Style29 p {
  margin-bottom: 0px;
  margin-top: 0px;
}

.Textbox_Style29 h1 {
  margin-bottom: 2rem;
  font-size: 22px;
}

.Textbox_Style29 h2 {
  margin-bottom: 0.5rem;
}

.Textbox_Style29 h2,
.Textbox_Style29 h3,
.Textbox_Style29 .question {
  font-weight: normal;
}

.Textbox_Style29 label,
.Textbox_Style29 h2,
.Textbox_Style29 h3,
.Textbox_Style29 .question {
  font-size: 19px;
}

.Textbox_Style29 h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* textbox-Grid related Styles */
.Textbox_Style29 .textbox-grid-top {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "textbox-numbering question";
  grid-gap: 0.5rem;
  margin-block-start: 2rem;
}

.Textbox_Style29 .textbox-numbering {
  grid-area: textbox-numbering;
}

.Textbox_Style29 .question {
  grid-area: question;
}

.Textbox_Style29 .textbox-container_label-right {
  display: grid;
  grid-template-columns: min-content auto;
  grid-template-areas: "textbox textbox-label";
  grid-gap: 0.5rem;
  margin-block-start: 0.5rem;
}

.Textbox_Style29 .textbox-container_label-left {
  display: grid;
  grid-template-columns: min-content min-content; /*Wenn Wörter nicht in mehreren Zeilen stehen sollen, hier max-content min-content nehmen*/
  grid-template-areas: "textbox-label textbox";
  grid-gap: 0.5rem;
  margin-block-start: 0.5rem;
}

.Textbox_Style29 .textbox-container_label-above {
  display: grid;
  grid-template-columns: min-content;
  grid-template-areas:
    "textbox-label"
    "textbox";
  grid-gap: 0.5rem;
  margin-block-start: 0.5rem;
}

.Textbox_Style29 .textbox-container_label-below {
  display: grid;
  grid-template-columns: min-content;
  grid-template-areas:
    "textbox"
    "textbox-label";
  grid-gap: 0.5rem;
  margin-block-start: 0.5rem;
}

.Textbox_Style29 textarea {
  border: 0.15rem solid black;
  border-radius: 0.5rem;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.2rem;
}

.Textbox_Style29 textarea:hover,
.Textbox_Style29 textarea:focus {
  border: 0.15rem solid lightblue;
}

.Textbox_Style29 .textbox-label {
  grid-area: textbox-label;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.2rem;
}

.MatrixMC_header_1,
.MCSC_header_1,
.TO_header_1,
.TextBox_header_1 {
  background-color: #ffdb58; /* Yellow background */
  padding: 10px;
  margin: 20px 5px; /* Top and bottom margin of 20px, left and right margin of 5px */
  text-align: center; /* Center the text */
  font-weight: bold; /* Make the text bold */
  font-size: 18px; /* Adjust font size as needed */
  border-radius: 10px; /* Rounded corners */
}

.MatrixMC_header_6,
.MCSC_header_6,
.TO_header_6,
.TextBox_header_6 {
  font-size: 18px;
  color: #ff0000;
  margin-bottom: 10px;
}

.MatrixMC_option_1 {
}

.MatrixMC_part_1 {
}

.MatrixMC_prompt_1-1c,
.MatrixMC_prompt_1-2c,
.MatrixMC_prompt_1-3c,
.MatrixMC_prompt_1-4c,
.MatrixMC_prompt_1-5c,
.MatrixMC_prompt_1-6c,
.MatrixMC_prompt_1-7c,
.MatrixMC_prompt_1-8c,
.MatrixMC_prompt_1-9c,
.MatrixMC_prompt_1-10c {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.MatrixMC_prompt_1-1c {
  grid-column: 2/3;
}
.MatrixMC_prompt_1-2c {
  grid-column: 2/4;
}
.MatrixMC_prompt_1-3c {
  grid-column: 2/5;
}
.MatrixMC_prompt_1-4c {
  grid-column: 2/6;
}
.MatrixMC_prompt_1-5c {
  grid-column: 2/7;
}
.MatrixMC_prompt_1-6c {
  grid-column: 2/8;
}
.MatrixMC_prompt_1-7c {
  grid-column: 2/9;
}
.MatrixMC_prompt_1-8c {
  grid-column: 2/10;
}
.MatrixMC_prompt_1-9c {
  grid-column: 2/11;
}
.MatrixMC_prompt_1-10c {
  grid-column: 2/12;
}

.MatrixMC_stimulus_1 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #333333;
  margin: 20px 0;
}

.MatrixMC_stimulus_2 {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 20px 20px;
  font-weight: bold;
}

.MatrixMC_stimulus_3 {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 20px 20px;
}

.MatrixMC_textbox_1 {
  margin-bottom: 1rem;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  color: black;
  font-size: 19px;
  padding-block: 0.5rem;
}

.MatrixMC_textbox_6 {
  margin-bottom: 1rem;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  color: black;
  font-size: 16px;
  padding-block: 0.5rem;
}

.MCSC_box_1 {
}

.MCSC_header_1 {
  background-color: #ffdb58; /* Yellow background */
  padding: 10px;
  margin: 20px 5px; /* Top and bottom margin of 20px, left and right margin of 5px */
  text-align: center; /* Center the text */
  font-weight: bold; /* Make the text bold */
  font-size: 18px; /* Adjust font size as needed */
  border-radius: 10px; /* Rounded corners */
}

.MCSC_header_6,
.TO_header_6,
.TextBox_header_6 {
  font-size: 18px;
  color: #ff0000;
  margin-bottom: 10px;
}

.MCSC_prompt_1 {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 20px 20px;
}

.MCSC_stimulus_1 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #333333;
  margin: 20px 0;
}

.MCSC_stimulus_2 {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 20px 20px;
  font-weight: bold;
}

.MCSC_stimulus_3 {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 20px 20px;
}

.MCSC_textbox_1 {
}

.TextBox_box_1 {
}

.TextBox_header_1 {
}

.TextBox_header_6 {
}

.TextBox_prompt_1 {
}

.TextBox_prompt_2 {
}

.TextBox_prompt_3 {
}

.TextBox_prompt_4 {
}

.TextBox_prompt_5 {
}

.TextBox_prompt_6 {
}

.TextBox_stimulus_1 {
}

.TextBox_stimulus_2 {
}

.TextBox_stimulus_3 {
}

.TextBox_stimulus_4 {
}

.TextBox_stimulus_5 {
}

.TextBox_stimulus_6 {
}

.TO_header_1 {
}

.TO_header_2 {
}

.TO_header_3 {
}

.TO_header_4 {
}

.TO_header_5 {
}

.TO_header_6 {
}

.TO_text_1 {
}

.TO_text_2 {
}

.TO_text_3 {
}

.TO_text_4 {
}

.TO_text_5 {
}

.TO_text_6 {
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding-inline: 1.3rem;
  /* border-radius: 15px 15px 0 0; */
}

.header div:not(.right-aligned-logo) {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header div.right-aligned-logo {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.framework-grid {
  background: white;
  border-radius: 15px;
  border: black 10px solid;
  border-top: none;
  overflow: hidden;
}

.prev-button {
  background-image: url("https://sc06.iea-scoring.org:82/SE_PRL2026_FT_PROTOTYPE_study1_item45/leftarrow.svg");
}

.next-button {
  background-image: url("https://sc06.iea-scoring.org:82/SE_PRL2026_FT_PROTOTYPE_study1_item45/rightarrow.svg");
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-block: 1rem;
  padding-inline: 25%;
}

.footer-button {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  height: 3.5rem;
  /* width: clamp(175px, 35vw, 350px); */
  /* height: min(5vh, 2.5rem); */
  border: 2px solid black;
  box-shadow: inset 0 0 0 3px white;
  border-radius: 9999px;
  background-color: #8cc63f;
  padding: 25px;
  min-width: 5.5rem;
  cursor: pointer;
}

.logo-height {
  height: 70%;
}

.TO_header_2 {
  font-size: 33px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: gray;
}

/* PIRLS2026 (General): Start */
.header div.right-aligned-logo {
  height: 100%;
}

img#logo-boston {
  height: 70%;
}

.framework-grid .header {
  padding-inline-end: unset;
}

.question-text {
  font-size: 16px;
}

@media only screen and (max-width: 1023px) {
  .framework-grid {
    grid-template-columns: 100%;
    grid-template-rows: 45px calc(100vh - 55px);
    min-width: 300px;
  }

  .framework-grid .mainarea {
    overflow-y: auto;
  }

  .framework-grid .hamburger-menu {
    margin-block-start: 5px;
    width: 35px;
    height: 35px;
  }

  .framework-grid .navbar {
    width: 100%;
    height: calc(100% - 40px);
  }
}

@media only screen and (min-width: 1024px) {
  .framework-grid .mainarea {
    grid-column: 2 / 4;
  }
}
/* PIRLS2026 (General): End */

/*Text_only - TALIS default*/

.Text_only_Style31 {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  padding: 0.5rem 1rem 1.5rem 1rem;
  /*margin-bottom: 4rem;*/
  color: black;
}

.Text_only_Style31 p {
  margin-bottom: 0px;
  margin-top: 0px;
}

.Text_only_Style31 h1 {
  margin-bottom: 2rem;
  font-size: 30px;
}

.Text_only_Style31 h2 {
  margin-bottom: 4rem;
  margin-top: 4rem;
  font-size: 33px;
}

.Text_only_Style31 h3 {
  /*margin-top: 4rem;*/
  /*margin-bottom: 0.5rem;*/
  font-size: 22px;
}

.Text_only_Style31 h4,
.Text_only_Style31 h5,
.Text_only_Style31 h6 {
  font-weight: normal;
}

.Text_only_Style31 h4 {
  margin-bottom: 2rem;
  font-size: 19px;
}

.Text_only_Style31 h5 {
  margin-bottom: 2rem;
  font-size: 19px;
}

.Text_only_Style31 h6 {
  margin-top: 0rem;
  margin-bottom: 0.5rem;
  font-size: 19px;
}

.Text_only_Style31 ul {
  margin-bottom: 0rem;
  margin-top: 0rem;
}

.TO_header_2 {
  font-size: 33px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: gray;
}

/* PIRLS2026: Start */
/* PIRLS2026 (General): Start */
.header div.right-aligned-logo {
  height: 100%;
}

img#logo-boston {
  height: 70%;
}

.framework-grid .header {
  padding-inline-end: unset;
}

.question-text {
  font-size: 16px;
}

@media only screen and (max-width: 1023px) {
  .framework-grid {
    grid-template-columns: 100%;
    grid-template-rows: 45px calc(100vh - 55px);
    min-width: 300px;
  }

  .framework-grid .mainarea {
    overflow-y: auto;
  }

  .framework-grid .hamburger-menu {
    margin-block-start: 5px;
    width: 35px;
    height: 35px;
  }

  .framework-grid .navbar {
    width: 100%;
    height: calc(100% - 40px);
  }
}

.TO_header_4 {
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
  font-size: 20px;
}

.TO_header_5 {
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
  font-size: 18px;
}

@media only screen and (min-width: 1024px) {
  .framework-grid .mainarea {
    grid-column: 2 / 4;
  }
}
/* PIRLS2026 (General): End */

/* PIRLS2026: End */

.playButton {
  padding-inline: 3em;
  border-radius: 50em;
  border: 3px solid green;
  background: white;
  /* margin-left: -160px; */
}

.playButton:active {
  transform: scale(0.95);
}

.playButton:hover {
  background: mintcream;
}

.playButtonIcon {
  width: 50px;
  height: 50px;
}

.playButtonContainer {
  margin-top: 5em;
  width: 100%;
  /*height: 100%;*/
  display: flex;
  justify-content: center;
  /*align-items: center;*/
}

.disabled {
  filter: grayscale(100%);
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: all;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
}

.overlay.hidden {
  display: none;
  pointer-events: none;
}

.spinner {
  padding: 1em;
  border: 1px solid #868686;
  border-radius: 0.5em;
  width: max-content;
  background: rgba(255, 255, 255, 1);
  text-align: center;
}

.spinner *::selection {
  background: transparent;
}

.spinner img {
  width: 2em;
}

.overlay-message {
  font-family: Arial, sans-serif;
  width: auto;
  max-width: 20em;
  padding: 1em;
  /* display: none; */
}
