<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* stil til tema 03*/
.header {
  background-color: #dc4e7b;
  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;
}

.divOverlayX {
  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%;
}

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

.billedeClass img {
  width: 100%;
  height: auto;
  display: block;
}

.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(220, 78, 123, 0.85);
  padding: 30px;
}

.titleSmall {
  background-color: rgba(220, 78, 123, 0.85);
  padding: 20px;
}

@media (max-width: 799px) {
  /*det her gør at hvis det er en skærm som er mindre end 799px så laves det om*/
  .divOverlayX {
    aspect-ratio: none;
    margin: 1em;
  }
  .titleBig {
    padding: 10px;
  }

  .titleSmall {
    padding: 10px;
  }
}

.textHeader {
  color: #f3d430;
}

.barsGoo {
  color: #f3d430;
}

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

.headerØv {
  color: #dc4e7b;
}

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

.tooltip-text {
  color: #dc4e7b;
}

.tooltipTip {
  color: #f3d430;
}

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

/* a.01 */
/* css til slideshow som kan genbruges - tilføj fx 01 til alle navne på klasser, variabler samt id med chat gpt*/

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

/*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,
.dotB03:hover {
  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;
  padding-bottom: 15px;
}

/*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 {
  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;
}

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

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

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

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

/* a.02 */

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

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

div.bøj-skema-grid &gt; * {
  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;
  position: relative;
}

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

.feed {
  position: absolute;
  top: 0px;
  right: 0px;
  visibility: hidden;
}

/* a.03 */

/* match*/

.a01Grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin: 50px 50px 100px 50px;
  gap: 20px;
  font-size: 1.3em;
  position: relative;
  /*width: 860px;
  height: 340px;*/
}

/*media queries skal komme efter den klasse som de regulerer for at virke*/
@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*/
  .a01Grid {
    grid-template-columns: auto auto;
  }
}

.a01GridElement {
  background-color: white;
  border-radius: 7px;
  /*width: 200px;*/
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #86868b;
  transition: 0.3s ease;
}

.a01Grid &gt; div:hover {
  box-shadow: 5px 5px 10px #86868b;
  color: black;
  cursor: pointer;
}

.testClass {
  color: red;
}

.blueBorder {
  border: solid #005296;
}

.redBorder {
  border: solid red;
}

.greenBorder {
  border: solid green;
}

.slut {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20%;
  left: 42%;
}

.disp {
  display: none;
}

.slutImg {
  width: 200px;
  height: auto;
  border-radius: 50%;
  justify-self: left;
  margin-right: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.slutImg:hover {
  border: solid blue 1px;
  cursor: pointer;
}

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

.slutHead {
  color: #368542;
  font-size: 1.4em;
}

.slutP {
  border-bottom: solid #bbb;
  color: #86868b;
  padding: 10px;
}

.fade-in {
  display: block;
  animation: fade-in 2.3s ease-in forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    display: none;
  }

  100% {
    opacity: 1;
    display: block;
  }
}

/*a.04*/

.gridOvers {
  display: grid;
  grid-template-columns: 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;
  }
}

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

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

.spansk,
.dansk {
  padding: 15px 10px;
}

.dansk {
  padding: 15px 10px;
}

.spansk {
  padding: 10px 10px;
}

.inputSpanOvers::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;
}

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

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

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

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

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

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

.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;
}

.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);
}

.dotB03 {
  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%;
}

.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;
}

.talSlideShow {
  color: #86868b;
}

/*.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
} */

.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;
}

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

.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;
}

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

.info {
  font-size: 0.55em;
}

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

.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;
}

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

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

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

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

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

.iko {
  visibility: hidden;
  position: absolute;
  top: 3px;
  right: 3px;
}

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

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

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

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

.arrow {
  color: #dc4e7b;
  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;
}

/* b.03 */

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

.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.04 */
.gridi {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30px;
}

.gridiHead {
  grid-column: 1 / 4;
}

.gridiBoks {
  border: solid #ebebec;
  padding: 10px;
}

.inpFed {
  padding: 15px;
}

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

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

.feedd {
  position: relative;
  float: right;
}

.feeCon {
  position: relative;
}

.iku {
  visibility: hidden;
}

.fee {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.disp {
  display: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.imgConi {
  max-width: 350px;
}

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

/* c.01 */

.contImgC {
  position: relative;
}

.imgC {
  /*et billede med den her klasse tilpasser sig til den div den er i i breden, og renger selv proportionelt sin højde */
  width: 100%;
  height: auto;
}

.img01 {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: auto;
  height: 23%;
  border-radius: 3px;
  box-shadow: 5px 5px 10px #86868b;
}

.img02 {
  position: absolute;
  bottom: 5px;
  right: 21%;
  width: auto;
  height: 23%;
  border-radius: 3px;
  box-shadow: 5px 5px 10px #86868b;
}

/* falso correcto */
/* grid container til sandt falskt */
.grid-containerC02 {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  font-size: 1.2em;
  margin: 20px 30px 30px 30px;
}

.grid-headingC02 {
  grid-column: 1 / 4;
  /*text-align: center;*/
  /*font-weight: bold;*/
  color: black;
  margin-bottom: 20px;
  margin-top: 15px;
  border-bottom: solid #86868b;
  padding-bottom: 10px;
  text-align: center;
}

.spørgsmålC02 {
  grid-column: 1 / 2;
  margin-right: 20px;
  display: flex;
  align-items: center;
  color: #86868b;
}

.spørgsmålC02 p {
  /* den her klasse fjerner margin fra alle p-elementerne med spørgsmål i*/
  margin: 0px;
}

.sandtC02 {
  grid-column: 2 / 3;
}

.falsktC02 {
  grid-column: 3 / 4;
}

.falsktC02,
.sandtC02 {
  background-color: white;
  padding: 15px;
  border-radius: 10%;
  color: #bbb;
  width: 50px;
  height: 50px;
  display: flex;
  text-align: center;
  justify-content: center;
  transition: 0.6s ease;
}

@media (max-width: 799px) {
  /*det her gør at hvis det er en skærm som er mindre end 799px så laves det om*/
  .grid-containerC02 {
    grid-template-columns: auto auto auto auto;
    margin: 0px;
    gap: 1.5rem;
  }
  .grid-headingC02 {
    grid-column: 1 / 5;
  }
  .spørgsmålC02 {
    grid-column: 1 / 5;
  }
  .sandtC02 {
    grid-column: 1 / 3;
  }

  .falsktC02 {
    grid-column: 3 / 5;
  }

  .falsktC02,
  .sandtC02 {
    width: 100px;
    height: 100px;
  }
}

.falsktC02:hover,
.sandtC02:hover {
  box-shadow: 0px 8px 16px 0px;
  cursor: pointer;
  color: #86868b;
}

.dispNone {
  display: none;
}

.fade-in {
  display: block;
  animation-delay: 0.5s;
  animation: fade-in 1.2s ease-in forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    display: none;
  }

  100% {
    opacity: 1;
    display: block;
  }
}

.fade-out-02 {
  /* to add effects on events use js. You simply add the css class to the element with the effect through an eventlistener */
  animation: fade-out-02 0.03s ease-out forwards;
}
@keyframes fade-out-02 {
  0% {
    opacity: 1;
    display: block;
    /* visibility: visible;*/
  }

  100% {
    opacity: 0;
    display: none;
    /*visibility: visible;*/
  }
}

.red {
  color: red;
}

.green {
  color: green;
}

.corr {
  position: absolute;
  top: -18px;
  left: 0px;
  font-size: 12px;
}

/* c.03 */

.griid {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  column-gap: 10px;
  row-gap: 10px;
}

.griidH {
  grid-column: 1 / 5;
}

.GriidBil {
  grid-column: 1 / 2;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  color: #bbb;
  position: relative;
  border: solid 1px #bbb;
}

.imCorrect {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  visibility: hidden;
  transition: 0.3s ease;
}

.imCorrect:hover {
  top: -50px;
  left: -50px;
  width: 300%;
  height: 300%;
  z-index: 300;
}

.GriidTal {
  grid-column: 2/3;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  color: #bbb;
  border: solid 1px #bbb;
}

.griidPlay {
  grid-column: 3/4;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  color: #bbb;
  border: solid 1px #bbb;
  transition: 0.3s ease;
}

.griidPlay:hover {
  background-color: #bbb;
  color: white;
  cursor: pointer;
}

.griidVal {
  grid-column: 4/5;
  position: relative;
  width: 169px;
}

.drpKlik {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #86868b;
  border: solid 1px #bbb;
}

.drpKlik:hover {
  background-color: white;
  color: #86868b;
  cursor: pointer;
}

.alignC {
  display: flex;
  text-align: center;
}

.drpCon {
  position: absolute;
  background-color: #ebebec;
  width: 100%;
  z-index: 55;
  display: none;
}

.valg {
  border: solid #bbb;
  margin-top: 3px;
  padding: 15px;
  color: #bbb;
  background-color: white;
}
.valg:hover {
  background-color: #bbb;
  color: white;
  cursor: pointer;
}

.griidFeed {
  grid-column: 5/6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feeCon {
  position: relative;
}

.feeX {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.ikoX {
  visibility: hidden;
}

.disp {
  color: #bbb;
}

.fade-inX {
  display: block;
  animation: fade-in 2.3s ease-in forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    display: none;
  }

  100% {
    opacity: 1;
    display: block;
  }
}

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

.show {
  display: block;
}

.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;
  }
}

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

@keyframes fade-out-vis {
  0% {
    opacity: 0;
    visibility: visible;
  }

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

/* c.04 */

.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;
  }
}

/* c.05 */

.bill {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  border-bottom: solid #bbb;
}

.rundImg02 {
  width: 120px;
  height: auto;
  border-radius: 50%;
  margin: 10px;
  border: solid white 3px;
}

.tekstB {
  font-family: georgia, sans-serif;
  font-size: 1.1em;
  font-weight: bold;
  border: dotted #bbb;
  padding: 15px;
}

.divT {
  margin-top: 30px;
}

.tekstT {
  font-size: 1.1em;
  color: #86868b;
  text-align: justify;
  font-family: verdana, serif;
  line-height: 150%;
}

.aud {
  margin-top: 15px;
}

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

/* d.01 */

/* opgave d brug sproget */

.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;
}

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

.ordConiX {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 30px 40px 30px;
}
.ordConiX &gt; p:hover {
  box-shadow: 0px 8px 16px 0px #008080;
}

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

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

.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;
}

.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;
  margin-bottom: 10px;
  border: solid #bbb 3px;
}

.gridd {
  display: grid;
  grid-template-areas: "voc01 . voc02" ". voc03 . " "voc04 . voc05";
  padding: 5px;
  background-color: #ebebec;
}

.gridd &gt; div {
  background-color: white;
}

.item01 {
  grid-area: voc01;
  border: solid #228b22 1px;
  margin: 5px;
  border-radius: 30px 30px 0px 30px;
}

.item02 {
  grid-area: voc02;
  border: solid #bf00ff 1px;
  margin: 5px;
  border-radius: 30px 30px 30px 0px;
}

.item03 {
  grid-area: voc03;
  border: solid #bbb 1px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  text-align: center;
  position: relative;
  margin: 5px;
}

.item04 {
  grid-area: voc04;
  border: solid #008080 1px;
  margin: 5px;
  border-radius: 30px 0px 30px 30px;
}

.item05 {
  grid-area: voc05;
  border: solid #f3d430 1px;
  margin: 5px;
  border-radius: 0px 30px 30px 30px;
}

/*grid X*/
.griddX {
  display: grid;
  grid-template-areas: "voc01 voc01 voc01 voc01 voc01 . . voc02 voc02 voc02 voc02 voc02" ". . . . . voc03 voc03 . . . . ." ". . . . voc04 voc04 voc04 voc04 . . . .";
  padding: 5px;
  background-color: #ebebec;
}

.griddX &gt; div {
  background-color: white;
}

.item01X {
  grid-area: voc01;
  border: solid #228b22 1px;
  margin: 5px;
  border-radius: 30px 30px 0px 30px;
}

.item02X {
  grid-area: voc02;
  border: solid #bf00ff 1px;
  margin: 5px;
  border-radius: 30px 30px 30px 0px;
}

.item03X {
  grid-area: voc03;
  border: solid #bbb 1px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  text-align: center;
  position: relative;
  margin: 5px;
}

.item04X {
  grid-area: voc04;
  border: solid #008080 1px;
  margin: 5px;
  margin-top: 20px;
  border-radius: 30px 30px 30px 30px;
}

.center {
  color: #dc4e7b;
  font-size: 1.1em;
}

.head01 {
  color: #228b22;
  font-size: 1.2em;
  text-align: center;
  padding-top: 30px;
}

.head02 {
  color: #bf00ff;
  font-size: 1.2em;
  text-align: center;
  padding-top: 30px;
}

.head04 {
  color: #008080;
  font-size: 1.2em;
  text-align: center;
  padding-top: 30px;
}

.head05 {
  color: #623a05;
  /*border-bottom: solid #623a05 1px;*/
  font-size: 1.2em;
  text-align: center;
  padding-top: 30px;
}

.colori {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 5px;
  margin-bottom: 5px;
}

.imgAndT {
  max-width: 1000px;
  text-align: center;
  font-size: 0.9em;
  color: #86868b;
}

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

.ordi:hover {
  cursor: pointer;
}

.ordi:hover .tooltipVoc-text {
  visibility: visible;
}

.ordi:hover .tooltipTalTxt {
  visibility: visible;
}

.ordi:hover .tooltipVoc {
  color: #008080;
}

.ordi:hover .tooltipTal {
  color: #008080;
}

/*tooltip som jeg bruger til farvet vocab */

.tooltipTal {
  position: relative;
  display: inline-block;
}

.tooltipTalTxt {
  position: absolute;
  bottom: 170%; /* 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: -80px; /* du justerer med en negativ margen */
  z-index: 2;
  width: 160px;
  background-color: white;
  visibility: hidden;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px #bbb;
  border: solid #bbb;
  font-family: arial;
  font-weight: normal;
  font-size: 14px;
  color: #86868b;
  text-align: left;
  line-height: 150%;
}

.tooltipTal:hover {
  cursor: pointer;
}

.tooltipTal:hover .tooltipTalTxt {
  visibility: visible;
}
</pre></body></html>