.header {
  background-color: #368542;
  border-radius: 20px;
  margin: 10px;
  display: flex;
  justify-content: center; /*den her sammen med nedenstående giver en perfekt centrering*/
  align-items: center;
  position: relative;
}

.divOverlay {
  margin: 4em;
  position: relative;
  aspect-ratio: 2.6 / 1; /* en anden mulighed - passer med størrelsesforholdet på billedet - width skal være 100%*/
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1em;
}

.flexBillede {
  flex: 1; /* Distributes space evenly */
  max-width: calc(33.33% - 1em); /* Ensures they fit with the gap */
}

.HeaderTitel {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center; /*den her sammen med nedenstående giver en perfekt centrering*/
  align-items: center;
}

.flex-container {
  /* div container som indeholder titel på modul og og hvilket tema */
  display: flex;
  flex-direction: column; /* gør at modul og tema står over hinanden*/
  align-items: center; /* gør at de bliver centreret ift hinanden */
}

.titleBig {
  background-color: rgba(54, 133, 66, 0.85);
  padding: 30px;
}

.titleSmall {
  background-color: rgba(54, 133, 66, 0.85);
  padding: 20px;
}

.textHeader {
  color: #efbd57;
}

.barsGoo {
  color: #efbd57;
}

.øvelseBoxElement {
  border-left: solid #368542 0.2em;
}

.headerØv {
  color: #368542;
}

.tooltip {
  border-bottom: 1.5px dotted #368542;
}

.tooltip-text {
  color: #368542;
}

.brug-sprog-instr {
  border-left: solid #368542 0.2em;
}

/* a.01 */
/*start på css til øvelse med bøjningsskema a.01*/

.bøj-skema-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  /*margin: 20px 75px 100px 75px;*/
  gap: 5px;
}

div.bøj-skema-grid > * {
  padding: 5px;
  background-color: white;
  border-radius: 5px;
}

.skema-titel {
  grid-column: 1 / 4;
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 5px;
}

.skema-header {
  grid-column: 1 / 4;
  text-align: center;
  font-size: 1.1em;
}

.skema-kol01 {
  grid-column: 1 / 2;
  color: #86868b;
  font-style: italic;
  font-size: 0.8em;
}

.skema-kol02 {
  grid-column: 2 / 3;
  color: #86868b;
}

.skema-kol03 {
  /*input som jeg stiler*/
  grid-column: 3 / 4;
  border: none;
  font-size: 16px;
  outline: none;
  transition: 0.2s ease;
}

::placeholder {
  /*ændrer farven på placeholder text i input*/
  color: #ebebec;
}

/*a.02*/

.spørgs {
  background-color: white;
  color: #86868b;
  padding: 10px 20px;
  border-radius: 15px;
  border: solid #bbb;
}

/* a.03 */
/* css til slideshow a.03 */

.mySlidesA03 {
  /* en klasse som gør at alle slidesene ikke vises som udgangspunkt*/
  display: none;
}

.dotA03 {
  width: 15px;
  height: 15px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block; /*display: inline-block allows to set a width and height on the element. Also, with display: inline-block, the top and bottom margins/paddings are respected*/
  cursor: pointer;
  margin: 0em 0.2em;
  transition: background-color 0.6s ease; /*her angiver jeg en transition på 0,6 sek når farven ændres*/
}

.dots-container {
  position: absolute;
  bottom: 10%;
  width: 100%;
}

.active,
.dotA03:hover {
  background-color: #717171;
}

.slideshow-container {
  /*den her container bruger jeg til dr-øvelsen*/
  width: 100%;
  border: solid #86868b;
  position: relative;
  padding: 2em 0em 5em 0em;
  border-radius: 15px;
}

.slideshow-container-bøj-skema {
  /*den her container bruger jeg til dr-øvelsen*/
  width: auto;
  height: auto;
  /* border: solid yellow; */
  position: relative;
  padding: 0.3em 0em 5em 0em;
}

.flex-horizontal-center {
  display: flex;
  justify-content: center;
}

.flex-prev-next {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* border: solid red 1px; */
}

.flexbox-next {
  position: absolute;
  top: 0;
  right: 0;
}

.flexbox-prev {
  position: absolute;
  top: 0;
  left: 0;
}

.prev-next {
  font-size: 2em;
  color: #bbb;
  /* border: solid blue; */
  padding: 1em;
  transition: 0.6s ease;
}

.prev {
  position: absolute;
  top: 33%;
  left: 0;
}

.next {
  position: absolute;
  position: absolute;
  top: 33%;
  right: 0;
}

.prev-next:hover {
  color: #717171;
  cursor: pointer;
}

.talSlideShow {
  color: #86868b;
  padding-bottom: 15px;
}
/* slut css til slideshow */

/* a.03 test */
/* nedenstående er copy past fra modul 4 a.03 */

.test-main {
  border: solid #bbb;
  border-radius: 15px;
  width: 475px;
  /*margin: 20px;*/
  background-color: white;
}

.test-main:hover .test-quest {
  color: #368542;
}

.test-quest {
  font-size: 1.3em;
  color: black;
  padding: 20px;
  margin: 0px;
  border-bottom: solid #bbb;
  border-radius: 15px 15px 0px 0px;
  text-align: center;
}

.test-answ-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  min-height: 102px;
}

.answ {
  border: solid #bbb;
  width: 40%;
  padding: 15px;
  font-size: 1em;
  color: #86868b;
  border-radius: 15px;
  transition: 0.4s ease;
}

.answ:hover {
  color: #368542;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.visible {
  position: relative;
}

/* b.01: har taget nendstående fra c.04 t01m02 */

.c04MainFlex {
  display: flex;
  justify-content: center;
}

.c04MainContain {
  margin-bottom: 75px;
}

.c04Flex-container {
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  /*padding: 30px;*/
  height: auto;
  transition: 0.6s ease;
  flex-direction: row-reverse;
}

.c04Flex-element {
  border: solid grey 1px;
  font-size: 1.2em;
  margin: 5px;
  padding: 8px;
  height: 2em;
  border-radius: 15px;
  transition: 0.6s ease;
  color: #86868b;
  background-color: white;
  /*text-align: center;*/
}

.danskAdj {
  color: white;
  background-color: #bbb;
}

.c04Flex-element:hover {
  box-shadow: 0px 8px 16px 0px;
  cursor: pointer;
}

.blueBorder {
  border: solid #005296;
}

.redBorder {
  border: solid red;
}

.svarCss {
  /*omdøb den her ved lejlighed da den hedder b men skulle have hedet c*/
  background-color: white;
  color: #86868b;
  font-size: 1.2em;
  margin: 5px;
  padding: 8px;
  height: 2em;
  border: solid green;
  border-radius: 15px;
  transition: 0.4s ease;
  background-color: white;
}

/* b.02 */

.spørgsX {
  display: flex;
  justify-content: space-between;
  background-color: white;
  color: #86868b;
  padding: 20 30px;
  border-radius: 15px;
  border: solid #bbb;
  margin-top: 30px;
}

.contain {
  position: relative;
}

.imgEmoti {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.holder {
  background-color: white;
  position: absolute;
  padding: 15px;

  margin: 0px 15px 0px 15px;
}

/* b.03 */

.dFlex-container {
  display: flex;
  align-items: normal;
  margin-bottom: 20px;
}

.tekstInstr {
  color: #86868b;
  font-size: 1.1em;
  text-align: justify;
  line-height: 150%;
}

/* b.04  slideshow deler en del klasser med andre slideshows*/

.slideshow-containerX {
  /*den her container bruger jeg til dr-øvelsen*/
  width: 100%;
  position: relative;
  padding: 0.3em 0em 5em 0em;
}

.perfect-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testX-main {
  border: solid #bbb;
  border-radius: 15px;
  width: 300px;
  height: 316.81;
  margin: 20px;
}

.testX-main:hover .test-quest {
  color: #005296;
}

.testX-answ-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.answX {
  border: solid #bbb;
  width: 40%;
  padding: 15px;
  font-size: 1em;
  color: #86868b;
  border-radius: 15px;
  transition: 0.4s ease;
  text-align: center;
  margin: 5px;
}

.answX:hover {
  color: #efbd57;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.imgEsta {
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0px 0px;
}

.startTest {
  width: 300px;
  height: 313px;
}

.testP {
  position: absolute;
  top: -40px;
  left: 0px;
  color: #368542;
  font-size: 1em;
}

.laEstP {
  font-size: 1.8em;
  color: #efbd57;
  margin-bottom: 5px;
}

.arrow {
  color: #efbd57;
  border: solid #bbb;
  border-radius: 50%;
  margin: 0px;
  padding: 0px;
  position: absolute;
  bottom: -40px;
  right: 80px;
  transition: 0.4s ease;
}

.arrow:hover {
  color: #bbb;
  cursor: pointer;
}

/* c.01 */
/* jeg genbruger en del klasser fra slideshow i starten af dette dokuemnt. Men jeg modificerer også en del forneden */

.slideshowContImg {
  /*den her container bruger jeg til dr-øvelsen*/
  max-width: 1000px;
  position: relative;
}

@media (min-width: 768px) {
  /* This means “apply these styles when the viewport width is 768px or larger */
  .slideshowContImg {
    min-width: 819.23px;
    min-height: 619.17px;
  }
}

.imgSlide {
  width: 100%;
  height: auto;
}

.mySlidesC01 {
  display: none;
  position: relative;
}

.mySlidesY {
  display: none;
  position: relative;
}

.flex-horizontal-centerC01 {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 5%;
  left: 50%;
  z-index: 100;
  color: white;
}

.dotC01,
.dotY {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  display: inline-block; /*display: inline-block allows to set a width and height on the element. Also, with display: inline-block, the top and bottom margins/paddings are respected*/
  cursor: pointer;
  margin: 0em 0.2em;
  transition: background-color 0.6s ease; /*her angiver jeg en transition på 0,6 sek når farven ændres*/
}
.dotC01:hover,
.dotY:hover {
  background-color: #717171;
}

.prev-nextImg {
  font-size: 2em;
  color: white;
  /* border: solid blue; */
  padding: 1em;
  transition: 0.6s ease;
}

.prev-nextImg:hover {
  color: #717171;
  cursor: pointer;
}

.billTekst {
  position: absolute;
  background-color: white;
  color: #717171;
  font-size: 18px;
  padding: 6px;
  top: 0px;
  left: 16px;
  z-index: 100;
}

.afsnitTekst {
  font-size: 1.1em;
  text-align: justify;
  font-family: verdana, serif;
  line-height: 150%;
  padding: 0em 5em 0em 5em;
  font-style: italic;
  color: #86868b;
}

.rundImg02 {
  width: 75px;
  height: auto;
  border-radius: 50%;
  justify-self: left;
  margin-right: 10px;
  border: solid #bbb 3px;
}

.miniOver {
  display: block;
  margin-bottom: 10px;
  font-style: italic;
  font-size: 1.05em;
}

/* c.03 */

.gridOvers {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 2em;
}

@media (max-width: 1200px) {
  /*det her gør at hvis det er en skærm som er mindre end 1200px så laves øvelseBox om til display row i stedet*/
  .gridOvers {
    grid-template-columns: auto;
  }
}

.spansk {
  border: solid 1px #86868b;
  color: #86868b;
  padding: 10px 20px;
}

::placeholder {
  /*ændrer farven på placeholder text i input*/
  color: #bbb;
  font-style: italic;
}

.inputSpanOvers {
  border: none;
  border-bottom: 1px solid #86868b;
  font-size: 1em;
  outline: none;
  padding: 5px;
  transition: 0.4s ease;
  background-color: #ebebec;
}

.feedback {
  color: #ff5300;
  font-size: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

.mark {
  border-bottom: solid #86868b;
  font-style: italic;
}

.ikonS {
  color: green;
  font-size: 1.2em;
}

.ikonF {
  color: red;
  font-size: 1.2em;
}

.feedB {
  display: flex;
  align-items: center;
  width: 25px;
  height: 43px;
}

/*C.04*/

.gridDialog {
  display: grid;
  grid-template-columns: auto auto auto;
  margin: 20px 50px 50px 50px;
  gap: 10px;
}

@media (max-width: 1200px) {
  .gridDialog {
    width: 100%;
  }
}

.headDial {
  display: flex;
  justify-content: start;
  align-items: center;
  grid-column: 1 / 4;
  margin-bottom: 30px;
}

.billede {
  width: 400px;
  height: auto;
}

.talende {
  /* 1 kolonne med navn på den talende */
  transition: 0.3s ease;
  text-align: center;
  background-color: #bbb;
  color: white;
}

.divDialog 
/**/ {
  background-color: white;
  color: #86868b;
  border: solid #bbb 1px;
}

.talende,
.divDialog {
  padding: 15px 30px;
}

.dialog {
  margin: 0px;
  padding: 0px;
  line-height: 200%;
}

.vælg {
  /* indeholder VÆLG, innertext ændres afhængigt af svar */
  transition: 0.3s ease;
  text-align: center;
  border: solid #bbb 1px;
  color: #bbb;
  display: inline-block;
  margin-bottom: 5px;
}

.vælg:hover {
  cursor: pointer;
}

.artCont {
  /* container med svarmuligheder  etc*/
  /*width: 100%;*/
  z-index: 100;
  box-shadow: 0px 8px 16px 0px;
  top: 150%; /* du rykker den 100% væk fra top, så er den under tooltip */
  left: 50%; /* du rykker den 50% mod venstre, så er den inde over tooltip */
  margin-left: -28px; /* du justerer med en negativ margen på det halve af width*/
}

.vælg,
.artCont {
  width: 50px;
}

.artIn {
  /* hver individuel valgmulighed */
  color: #86868b;
  cursor: pointer;
  border: solid #bbb 1px;
  background-color: white;
  text-align: center;
  display: block;
}

.artIn:hover {
  background-color: #bbb;
  color: white;
}

.modalOverlayClick {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*z-index: 100;*/
  overflow: auto;
  /*background-color: rgba(0, 0, 0, 0.4); */
}

.valgNone {
  /* gemmer div med valgmuligheder A, B, C etc */
  display: none;
}

/* viser elementer når den bliver tilføjet med js  */
.displayOve {
  display: block;
  animation: fade-in 0.4s ease-in forwards;
}

.feedTip {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedTipP {
  color: #efbd57;
  border-radius: 50%;
  border: solid #368542;
  padding: 10px;
  background-color: white;
}

.imgg {
  width: 200px;
  border-radius: 15px;
  margin-left: 5px;
}

/* opgave d brug sproget */

.dFlex-element {
  border: solid grey 1px;
  font-size: 1.2em;
  margin: 5px;
  padding: 8px;
  height: 2em;
  border-radius: 15px;
  transition: 0.6s ease;
}

.dFlex-element:hover {
  box-shadow: 0px 8px 16px 0px;
}

.dFlex-container-plus {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center; /*den her sammen med nedenstående giver en perfekt centrering*/
  align-items: center;
}

.plusAbsolut {
  position: absolute;
  top: 50%;
  margin-top: auto;
  margin-bottom: auto;
  left: 96%;
  font-size: 2em;
  border: solid #bbb;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center; /*den her sammen med nedenstående giver en perfekt centrering*/
  align-items: center;
  color: #86868b;
  background-color: white;
  z-index: 1;
}

.plusAbsolutTop {
  position: absolute;
  bottom: 94%;
  margin-left: -15px;
  margin-bottom: auto;
  left: 50%;
  font-size: 2em;
  border: solid #bbb;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center; /*den her sammen med nedenstående giver en perfekt centrering af plustegnet inde i sin div*/
  align-items: center;
  color: #86868b;
  background-color: white;
  z-index: 1;
}

.dFlex-container {
  position: relative;
  border-radius: 15px;
  margin: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
  height: auto;
}

.dBoks01 {
  color: #620096;
  width: 170px;
  text-align: center;
}

.dBoks02 {
  /*width: 100px;*/
  color: #bbb;
  text-align: center;
}

.dBoks03 {
  color: #009659;
  text-align: center;
}

.dBoks04 {
  color: #005296;
  text-align: center;
}

.brug-sprog-instr {
  background-color: white;
  border-radius: 2%;
  margin-top: 50px;
}

.dTekst-holder {
  width: 500px;
  margin: 0px 60px 100px 60px;
}

.tekstInstr {
  color: #86868b;
  font-size: 1.1em;
  text-align: justify;
  line-height: 150%;
}

.flexCenter {
  display: flex;
  align-items: center;
}

.imgHolder {
  display: flex;
  justify-content: end;
}

.rundImg02 {
  width: 75px;
  height: auto;
  border-radius: 50%;
  margin: 10px;
  border: solid #bbb 3px;
}

/*d.01 nyt slidehow test*/

.slideshowContainer {
  max-width: 1000px;
  position: relative;
}

@media (min-width: 768px) {
  /* This means “apply these styles when the viewport width is 768px or larger */
  .slideshowContainer {
    min-width: 800px;
    min-height: 603.75px;
  }
}

.imageSlide {
  width: 100%;
  height: auto;
}

.imageSlide02 {
  width: auto;
  max-height: 596.84px;
  display: block;
  margin: auto;
}

.imageContainer {
  display: none;
  max-width: 797px;
  position: relative;
}

.imageContainerY {
  display: none;
  max-width: 797px;
  position: relative;
}

.flexHorizontalCenterContainer {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 5%;
  left: 50%;
  z-index: 100;
  color: white;
}

.dotD01 {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin: 0em 0.2em;
  transition: background-color 0.6s ease;
}

.dotD01:hover,
.dotD01:active {
  background-color: #717171;
}

.prevNextIcon {
  font-size: 2em;
  color: white;
  padding: 1em;
  transition: 0.6s ease;
}

.prevNextIcon:hover {
  color: #717171;
}

.slideText {
  position: absolute;
  background-color: white;
  color: #717171;
  font-size: 18px;
  padding: 6px;
  top: 0px;
  left: 16px;
  z-index: 100;
}

.additionalText {
  font-size: 1.1em;
  text-align: justify;
  font-family: verdana, serif;
  line-height: 150%;
  padding: 0em 5em 0em 5em;
  font-style: italic;
  color: #86868b;
}

.roundImage02 {
  width: 75px;
  height: auto;
  border-radius: 50%;
  justify-self: left;
  margin-right: 10px;
  border: solid #bbb 3px;
}
