.header {
  background-color: #e89b1a;
  border-radius: 20px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.divOverlay {
  margin: 4em;
  position: relative;
  aspect-ratio: 2.6 / 1;
  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;
  align-items: center;
}

.flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titleBig {
  background-color: rgba(232, 155, 26, 0.85);
  padding: 30px;
}

.titleSmall {
  background-color: rgba(232, 155, 26, 0.85);
  padding: 20px;
}

.textHeader {
  color: #d33e2d;
}

.barsGoo {
  color: #d33e2d;
}

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

.headerØv {
  color: #e89b1a;
}

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

.tooltip-text {
  color: #e89b1a;
}

.tooltipTip {
  color: #e89b1a;
}

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

/* a.01 */

.mySlides {
  /* en klasse som gør at alle slidesene ikke vises som udgangspunkt*/
  display: none;
  padding-top: 20px;
}

/*behold*/
.dot {
  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*/
}

/*behold*/
.dotsCon {
  position: absolute;
  bottom: 10%;
  width: 100%;
}

/*behold*/
.active,
.dot:hover,
.dot:active {
  background-color: #717171;
}

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

/*behold*/
.justCont {
  display: flex;
  justify-content: center;
}

/*behold*/
.flexPreNex {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*behold*/
.flexNext {
  position: absolute;
  top: 0;
  right: 0;
}

/*behold*/
.flexPrev {
  position: absolute;
  top: 0;
  left: 0;
}

/*behold*/
.prevNext {
  font-size: 2em;
  color: #bbb;
  padding: 1em;
  transition: 0.6s ease;
}

/*behold*/
.prevNext:hover {
  color: #717171;
  cursor: pointer;
}

/*behold*/
.tal {
  color: #86868b;
}
/* slut på css til slideshow */

/*css til DR's nyhedquiz (sandt / falsk etc*

/*behold*/
.flexCol {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.3rem;
}

/*behold*/
.word {
  background: white;
  display: inline-block;
  padding: 8px 20px 8px 8px;
  font-size: 1.3em;
  margin-bottom: 8px;
  color: #d33e2d;
}

/*behold*/
.respon {
  background-color: #333333;
  color: white;
  padding: 8px;
  width: fit-content; /*tilpasser en div til indholdet */
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: 0.6s ease;
  display: flex;
  align-items: center;
}

/*behold*/
.respon:hover {
  background-color: black;
}

/*behold*/
.arrow {
  padding-right: 4px;
}

/* a.02 */

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

@media (max-width: 1200px) {
  .gridOversW {
    grid-template-columns: auto;
  }
}

.danskW {
  background-color: white;
  color: #86868b;
}

.spanskW {
  border: solid 1px #86868b;
  color: #86868b;
}

.spanskW,
.danskW {
  padding: 15px 20px;
}

.danskW {
  padding: 15px 20px;
}

/*ændre navn*/
.spanskW {
  padding: 10px 20px;
}

/*skal ændres tilføj klasse foran*/
::placeholder {
  /*ændrer farven på placeholder text i input*/
  color: #bbb;
  font-style: italic;
}

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

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

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

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

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

.hideVisW {
  visibility: hidden;
}

/* b.01 */

/* jeg har copy pasted direkte fra w3schools. Der er flere ting som jeg ikke er sikker på hvordan fungerer*/

.info {
  font-size: 1.2rem;
}

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

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
}

.flip-card:hover {
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: white;
}

.flip-card-back {
  background-color: rgba(0, 82, 150, 0.3);
  color: white;
  font-size: 2em;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.flipCardSpecial {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}

.tipB01 {
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 0.5em;
  color: #ff5300;
}

/*ikon til udtale */

.ikon {
  padding: 10px;
  border-radius: 50%;
  transition: 0.4s ease;
  font-size: 0.6em;
  z-index: 100;
}

.ikon:hover {
  color: #86868b;
}

.klikVend {
  font-size: 14px;
  position: absolute;
  bottom: 8px;
  right: 40%;
  color: white;
}

.slideshow-container-new {
  width: 100%;
  position: relative;
  padding: 0.3em 0em 5em 0em;
}

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

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

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

.active,
.dot:hover,
.flex-horizontal-center {
  display: flex;
  justify-content: center;
}

.flex-prev-next {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

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

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

.counter-new {
  color: #86868b;
}

.tooltip-new {
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 0.5em;
  color: #ff5300;
}

.icon-new {
  padding: 10px;
  border-radius: 50%;
  transition: 0.4s ease;
  font-size: 0.6em;
  z-index: 100;
}

.icon-new:hover {
  color: #86868b;
}

.click-flip {
  font-size: 14px;
  position: absolute;
  bottom: 8px;
  right: 40%;
  color: white;
}

.flexCenter {
  display: flex;
  align-items: center;
  padding: 8px 0px 8px 5px;
}

/* b.02 */

/* css til slideshow */

.dotX {
  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-containerX {
  position: absolute;
  bottom: 10%;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

.talSlideShowX {
  color: #86868b;
}

.startTest {
  margin-left: 10px;
  margin-right: 10px;
}

.place {
  color: #efbd57;
  margin-top: 0px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.test-main {
  border: solid #bbb;
  border-radius: 15px;
  width: 375px;
  height: 450px;
  margin: 20px;

  background-color: white;
  position: relative;
}

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

.test-quest {
  font-size: 1.5rem;
  color: #86868b;
  padding: 30px;
  margin: 0px;
  border-bottom: solid #bbb;
  border-radius: 15px 15px 0px 0px;
  text-align: center;
}

.test-answ-cont {
  padding: 15px 15px;
}

.testP {
  position: absolute;
  top: -60px;
  left: 0px;
  color: #e89b1a;
  font-size: 1.5em;
}

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

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

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

.answ {
  border: solid #bbb;
  width: 100%;
  padding: 20px;
  font-size: 1.3rem;
  color: #86868b;
  border-radius: 15px;
  transition: 0.4s ease;
  margin-bottom: 25px;
  margin-top: 15px;
}

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

.p {
  margin: 0px;
}

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

/* b.03 */

.max-width {
  max-width: 600px;
  border: solid #ebebec;
  border-radius: 15px;
  padding: 3rem;
  position: relative;
}

.pencil-icon {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2rem;
  height: auto;
}

.item0x {
  margin: 5px;
}

.ordiX {
  /*width: 100px;*/
  color: #86868b;
  border: solid grey 1px;

  font-size: 1em;
  margin: 10px;
  padding: 10px;

  transition: 0.6s ease;
}

.ordConX {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 20px 30px 40px 30px;
}

.tTip {
  position: relative;
  display: inline-block;
  color: #e89b1a;
}

.tTip-text {
  position: absolute;
  bottom: 140%; /* du rykker den 100% væk fra bottom, så er den over tooltip men til højre for det*/
  left: 50%; /* du rykker den 50% mod venstre, så er den inde over tooltip */
  margin-left: -100px; /* du justerer med en negativ margen */
  z-index: 2;
  width: 200px;
  background-color: white;
  visibility: hidden;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px #bbb;
  border: solid #bbb;
  font-family: arial;
  font-weight: normal;
  font-size: 14px;
  color: black;
  text-align: center;
  line-height: 150%;
}

.tTip:hover {
  cursor: pointer;
}

.tTip:hover .tTip-text {
  visibility: visible;
}

.flexCen {
  display: flex;
  align-items: center;
  margin-top: 0.8rem;
  align-items: normal;
  margin-bottom: 15px;
}

.tekstIn {
  color: #86868b;
  font-size: 1.1rem;
  text-align: justify;
  line-height: 150%;
  margin: 0px;
}

.holderBilleder {
  width: 80%;
  margin-bottom: 3rem;
}

.bil1og2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.bil3 {
  margin-top: 1rem;
}

.bil50 {
  width: 49%;
  height: auto;
  border-radius: 16px;
}

.bil100 {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* c.01 */

.bil {
  position: absolute;
  bottom: 5%;
  right: -1%;
  width: 25%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border: solid #e89b1a;
}

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

/* c.02 */

.flexoMother {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.itemR {
  border: solid #dc4e7b 1px;
  margin: 5px;
  min-height: 307px;
  width: 30%;
  background-color: white;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 799px) {
  .flexoMother {
    flex-direction: column;
    width: 100%;
  }
  .itemR {
    width: 100%;
  }
}

.headR {
  color: #d33e2d;
  font-size: 1.4rem;
  text-align: center;
  padding: 1rem;
}

.ordConiR {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 1.2rem 1.2rem 1.2rem;
}

.ordiR {
  color: #86868b;
  border: solid grey 1px;
  font-size: 1em;
  margin: 10px;
  padding: 10px;
  border-radius: 15px;
  transition: 0.6s ease;
}

.bil02 {
  border: solid #e89b1a;
}

.flexoImcon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.bilTekst {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bilTekst p {
  color: white;
  font-size: 1.2em;
}

.headVoc {
  color: #86868b;
  font-size: 1.3rem;
  text-align: center;
  padding: 1rem;
  border-bottom: solid #bbb;
}

.max {
  max-width: 400px;
  border: solid #ebebec;
  border-radius: 15px;
  border: solid #bbb;
  margin: 1rem 1rem 1rem 0rem;
  padding: 1.5rem;
}

.instruT {
  color: #86868b;
  font-size: 1.1rem;
  text-align: justify;
  line-height: 120%;
  padding: 0px;
  margin: 0px 0px 0.8rem 0px;
}

/* c.03 */

.gridOv {
  display: grid;
  grid-template-columns: 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*/
  .gridOv {
    grid-template-columns: auto;
    max-width: 100%;
  }
}

.dan {
  background-color: white;
  color: #86868b;
}

.span {
  border: solid 1px #86868b;
  color: #86868b;
}

.span,
.dan {
  padding: 15px 10px;
}

.dan {
  padding: 15px 10px;
}

.span {
  padding: 10px 10px;
  position: relative;
}

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

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

@media (max-width: 799px) {
  .inputSpanOvers {
    width: 100%;
  }
}

.feedback {
  /*bruges den her?*/
  color: #ff5300;
  font-size: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

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

.feedQ {
  display: flex;
  align-items: center;
  width: 40px;
  height: 43px;
  position: absolute;
  top: 2%;
  right: 2%;
}

.ikonS {
  color: green;
  font-size: 1.2em;
  position: absolute;
  top: 2%;
  right: 2%;
}

.ikonF {
  color: red;
  font-size: 1.2em;
  position: absolute;
  top: 2%;
  right: 2%;
}

.gem {
  visibility: hidden;
}

.fade-in-vis {
  visibility: visible;
  animation: fade-in-vis 0.7s ease-in forwards;
}

@keyframes fade-in-vis {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* d.01 */

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

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

@media (max-width: 799px) {
  .dTekst-holder {
    width: 100%;
    margin: 0px 0rem 5rem 0rem;
    padding: 2rem;
  }
}

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

.flexCenter {
  display: flex;
  align-items: center;
  padding: 8px 0px 8px 5px;
}
