@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Noto+Color+Emoji&display=swap");
:root {
  --color-princess-peach: #FAE2D1;
  --barely-there-blue: #EFF5F7;
  --color-hummingbird: #DFF2FE;
  --color-tacao: #F1AE7E;
  --color-bae-b-blue: #8AD3FA;
  --color-carrot: #F28720;
  --color-regal-blue: #043F5E;
  --color-white: #ffffff;
  --color-almost-white: #FBFBFD;
  --color-dove-white: #F4F4F4;
  --color-mouse-grey: #ECECEC;
  --color-stone-grey: #DBDBDB;
  --color-charcoal: #404040;
  --color-black: #000000;
  --font-family-archivo: "Archivo", serif;
  --font-family-emoji: "Apple Color Emoji", "Noto Color Emoji", "Segoe UI Emoji", sans-serif;
  --font-family-primary: var(--font-family-archivo);
  --font-family-emoji: var(--font-family-noto-color-emoji);
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --border-width-thin: 0.0625rem;
  --border-width-medium: 0.125rem;
  --border-radius: 0.75rem;
  --border-radius-round: 1.5rem;
}

/* Slider */
.slick-slider {
  position: relative;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  padding-bottom: 16px;
  display: flex;
  overflow: hidden;
  max-width: 100%;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  margin-inline: 0.375rem;
  min-height: 1px;
  width: 345px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*------------------------------------*/
/*  #MEDIA-QUERIES
/*------------------------------------*/
/*
 * Legal Disclaimer
 *
 * These Fonts are licensed only for use on these domains and their subdomains:
 * <insert website domain here>
 *
 * It is illegal to download or use them on other websites.
 *
 */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Improved, customizable focus styling by Stephanie Eckles */
/* https://moderncss.dev/modern-css-for-dynamic-component-based-architecture/#css-reset-additions */
:focus-visible {
  --outline-size: max(2px, 0.15em);
  outline: var(--outline-width, var(--outline-size)) var(--outline-style, solid) var(--outline-color, currentColor);
  outline-offset: var(--outline-offset, var(--outline-size));
}

/* Scroll padding allowance above anchor links */
:target {
  scroll-padding-block-start: 2rem;
}

/* Scroll padding allowance below focused elements
  to ensure they are clearly in view */
:focus {
  scroll-padding-block-end: 8vh;
}

.svg-icon-penguin {
  background: url("../images/sprite.svg?v=1664968285886") no-repeat;
  background-size: 60px 72px;
  background-position: 0 0;
  width: 24px;
  height: 36px;
}

.svg-icon-tools {
  background: url("../images/sprite.svg?v=1664968285886") no-repeat;
  background-size: 60px 72px;
  background-position: -24px -36px;
  width: 36px;
  height: 36px;
}

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

input[type=text],
input[type=search],
input[type=url],
input[type=email],
input[type=password],
input[type=number],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: var(--border-width-thin) solid;
  font: inherit;
}

select {
  border: var(--border-width-thin) solid;
  font: inherit;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  cursor: pointer;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

html {
  background-color: var(--barely-there-blue);
}

/*------------------------------------*\
    #IMAGES
\*------------------------------------*/
figure {
  margin: 0;
}
svg,
img {
  max-width: 100%;
}

/*------------------------------------*\
    #LISTS
\*------------------------------------*/
ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

dl dt {
  font-weight: bold;
}
/*------------------------------------*/
/* #TYPOGRAPHY
/*------------------------------------*/
/**
 * Base styling of typographic elements
 */
body {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  body {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
body {
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-primary);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1-heading,
.h2-heading,
.h3-heading,
.h4-heading,
.h5-heading {
  margin-bottom: 1em;
  margin-top: 2.5rem;
  font-weight: var(--font-weight-bold);
}

h1,
.h1-heading {
  font-size: 1.75rem;
  line-height: 1.25;
}
@media screen and (min-width: 58rem) {
  h1,
  .h1-heading {
    font-size: 2rem;
    line-height: 1.25;
  }
}

h2,
.h2-heading {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  h2,
  .h2-heading {
    font-size: 1.75rem;
    line-height: 1.375;
  }
}

h3,
.h3-heading {
  font-size: 1.375rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  h3,
  .h3-heading {
    font-size: 1.5rem;
    line-height: 1.375;
  }
}

h4,
.h4-heading {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  h4,
  .h4-heading {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

h5,
.h5-heading {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  h5,
  .h5-heading {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

p {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  p {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}
p {
  margin-bottom: 1.5rem;
  max-width: 50rem;
}

a {
  /* Relatively sized underline thickness and offset */
  text-decoration-thickness: max(0.08em, 1px);
  text-underline-offset: 0.15em;
}
.l-alternative-background {
  align-items: center;
  background-color: var(--color-hummingbird);
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  margin-left: -0.75rem;
  padding-bottom: 2rem;
  padding-inline: 0.75rem;
  width: calc(100vw - var(--scrollbar-width));
}
@media screen and (min-width: 50rem) {
  .l-alternative-background {
    margin-left: calc(-0.5 * (100vw - var(--scrollbar-width) - 100%));
  }
}
@media screen and (min-width: 58rem) {
  .l-alternative-background {
    margin-left: -1.5rem;
    padding-inline: 1.5rem;
    width: min(90rem, 100vw - var(--scrollbar-width));
  }
}
.l-alternative-background > *:last-child {
  margin-bottom: 0;
}
.l-alternative-background--secondary {
  background-color: var(--color-princess-peach);
}

.l-container {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin: 0 auto;
  max-width: 61rem;
  width: 100%;
}
@media screen and (min-width: 50rem) {
  .l-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.l-site {
  background-color: var(--color-white);
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1019607843);
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 90rem;
  min-height: 100vh;
}
.l-site__content {
  flex-grow: 1;
  outline: none;
  padding-inline: 0.75rem;
}
@media screen and (min-width: 58rem) {
  .l-site__content {
    padding-inline: 1.5rem;
  }
}

.apply-link {
  font-size: 2rem;
  line-height: 1.25;
  align-items: center;
  background-color: var(--color-white);
  border: solid var(--border-width-medium) var(--color-black);
  border-radius: var(--border-radius);
  box-shadow: 0.375rem 0.5rem var(--color-regal-blue);
  color: var(--color-black);
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 4rem;
  margin-inline: auto;
  overflow: hidden;
  padding-block: 1rem;
  padding-inline: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 200ms, box-shadow 250ms, translate 250ms;
  width: -moz-fit-content;
  width: fit-content;
}
.apply-link:hover, .apply-link:focus-visible {
  background-color: var(--color-dove-white);
  box-shadow: 0.125rem 0.125rem var(--color-regal-blue);
  translate: 0.25rem 0.375rem;
}

.footer {
  background-color: var(--color-dove-white);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 2.5rem;
  padding-inline: 0.75rem;
  padding-top: 4rem;
}
@media screen and (min-width: 50rem) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 4rem;
    padding-inline: 1.5rem;
    padding-top: 3rem;
  }
}
@media screen and (min-width: 58rem) {
  .footer {
    padding-inline: 6rem;
  }
}
.footer__logo-link {
  height: 48px;
}
@media screen and (min-width: 58rem) {
  .footer__logo-link {
    height: 64px;
  }
}
.footer__logo-link .logo {
  height: 48px;
  margin-inline: auto;
  width: 240px;
}
@media screen and (min-width: 50rem) {
  .footer__logo-link .logo {
    margin-inline: 0;
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 58rem) {
  .footer__logo-link .logo {
    height: 64px;
    width: 320px;
  }
}
.footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__link-list-item {
  width: -moz-fit-content;
  width: fit-content;
}
.footer__link {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  .footer__link {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.footer__link {
  align-items: center;
  color: var(--color-black);
  display: flex;
  flex-wrap: wrap;
  font-weight: var(--font-weight-medium);
  text-align: center;
  text-decoration: none;
}
.footer__link .icon {
  flex-shrink: 0;
  margin-bottom: 0.125rem;
  transition: transform 150ms;
  width: 2rem;
}
@media screen and (min-width: 58rem) {
  .footer__link .icon {
    margin-bottom: 0;
  }
}
.footer__link:focus-visible .icon, .footer__link:hover .icon {
  transform: translateX(0.5rem);
}
.footer__link-text {
  word-break: break-all;
}

.header {
  display: flex;
  justify-content: center;
  padding-block: 1.75rem;
  padding-inline: 0.75rem;
}
@media screen and (min-width: 58rem) {
  .header {
    background-color: var(--color-almost-white);
    padding-inline: 5.75rem;
  }
}
.header__navigation {
  align-items: center;
  display: flex;
  gap: 4rem;
  justify-content: center;
  max-width: 90rem;
  width: 100%;
}
@media screen and (min-width: 58rem) {
  .header__navigation {
    justify-content: space-between;
  }
}
.header__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.header__logo .logo {
  height: 40px;
  width: auto;
}
.header__desktop-link-list {
  display: none;
}
@media screen and (min-width: 58rem) {
  .header__desktop-link-list {
    align-items: center;
    display: flex;
    gap: 2rem;
  }
}
.header__link {
  font-size: 1.25rem;
  line-height: 1.5;
  border-bottom: var(--border-width-medium) solid transparent;
  color: var(--color-black);
  font-weight: 700;
  padding-bottom: 0.125rem;
  text-decoration: none;
  transition: border-color 100ms;
}
.header__link.selected, .header__link:hover {
  border-color: var(--color-bae-b-blue);
}

.hero {
  display: flex;
  justify-content: center;
  margin-bottom: 4.5rem;
  margin-inline: auto;
}
.hero__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  width: 100%;
}
.hero__heading {
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 58rem) {
  .hero__heading {
    font-size: 4rem;
    line-height: 1;
  }
}
.hero__heading {
  font-weight: 700;
  margin-block: 2rem;
  text-align: center;
}
@media screen and (min-width: 50rem) {
  .hero__heading {
    margin-block: 4.5rem;
  }
}
.hero__image-wrap {
  height: 100%;
}
.hero__image {
  aspect-ratio: 16/9;
  border: 1px solid var(--color-mouse-grey);
  border-radius: var(--border-radius);
  box-shadow: 0.375rem 0.5rem var(--color-carrot);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 58rem) {
  .hero--wide {
    align-items: center;
    background-color: var(--color-almost-white);
    padding-top: 4rem;
    margin-inline: -1.5rem;
    padding-bottom: 4rem;
    padding-inline: 5.75rem;
  }
  .hero--wide .hero__inner {
    flex-direction: row;
    gap: 4rem;
    max-width: 90rem;
  }
  .hero--wide .hero__heading {
    font-size: 4rem;
    line-height: 1;
    flex-basis: 33%;
  }
  .hero--wide .hero__image {
    max-width: 40rem;
  }
}

.link-button-list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}
@media screen and (min-width: 58rem) {
  .link-button-list {
    flex-direction: row;
    gap: 3rem;
  }
}

.link-button {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  .link-button {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}
.link-button {
  align-items: center;
  background-color: var(--color-tacao);
  border: solid var(--border-width-medium) var(--color-black);
  border-radius: var(--border-radius);
  color: var(--color-black);
  display: flex;
  font-weight: var(--font-weight-medium);
  gap: 0.5rem;
  justify-content: space-between;
  max-width: 376px;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  text-align: start;
  text-decoration: none;
  transition: background-color 200ms;
}
.link-button:hover, .link-button:focus-visible {
  background-color: var(--color-princess-peach);
}
.link-button:hover .icon, .link-button:focus-visible .icon {
  transform: translateX(0.5rem);
}
.link-button--external {
  background-color: var(--color-bae-b-blue);
}
.link-button--external:hover, .link-button--external:focus-visible {
  background-color: var(--color-hummingbird);
}
.link-button--external:hover .icon, .link-button--external:focus-visible .icon {
  animation: 250ms tilt-shaking;
  transform: none;
}
.link-button .icon {
  flex-shrink: 0;
  transition: transform 150ms;
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(12deg);
  }
  75% {
    transform: rotate(-12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.link--skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  overflow: visible;
}
.link--skip:focus {
  color: var(--color-charcoal);
  font-weight: 700;
  height: auto;
  margin-block: 1rem;
  margin-inline: auto;
  position: static;
  width: auto;
}

.page-not-found {
  text-align: center;
}
.page-not-found__heading {
  font-size: 2.5rem;
  line-height: 1;
}
@media screen and (min-width: 58rem) {
  .page-not-found__heading {
    font-size: 4rem;
    line-height: 1;
  }
}
.page-not-found__heading {
  margin-bottom: 2rem;
  margin-top: 4.5rem;
}
@media screen and (min-width: 58rem) {
  .page-not-found__heading {
    margin-bottom: 3rem;
  }
}
.page-not-found__emoji {
  font-size: 4rem;
  line-height: 1;
  font-family: var(--font-family-emoji);
  margin-bottom: 2rem;
}
@media screen and (min-width: 58rem) {
  .page-not-found__emoji {
    margin-bottom: 3rem;
  }
}
.page-not-found__text {
  font-weight: 600;
  margin-inline: auto;
}

.rich-text {
  margin-inline: auto;
  max-width: 50rem;
  text-align: center;
}
@media screen and (min-width: 58rem) {
  .rich-text {
    max-width: 90rem;
  }
}
.rich-text > h2 + h3,
.rich-text > h3 + h4 {
  margin-top: 0;
}
.rich-text > p {
  margin-bottom: 4rem;
  margin-inline: auto;
  padding-inline: 0.5rem;
  text-align: center;
}
.rich-text > p:has(+ ul:not([class])) {
  margin-bottom: 0.75rem;
}
.rich-text ul:not([class]) {
  list-style: revert;
  margin-bottom: 0.75rem;
  padding: revert;
}
.share-button {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  .share-button {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}
.share-button {
  align-items: center;
  background-color: var(--color-bae-b-blue);
  border: solid var(--border-width-medium) var(--color-black);
  border-radius: var(--border-radius);
  color: var(--color-black);
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 4rem;
  margin-inline: auto;
  overflow: hidden;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  text-decoration: none;
  transition: background-color 250ms;
  width: -moz-fit-content;
  width: fit-content;
}
.share-button:hover, .share-button:focus-visible {
  background-color: var(--color-hummingbird);
}
.share-button:hover .icon, .share-button:focus-visible .icon {
  animation: 500ms come-fly-with-me cubic-bezier(0.42, 0.08, 0.25, 1);
  transform: none;
}
.share-button.success {
  justify-content: center;
}

@keyframes come-fly-with-me {
  59% {
    transform: translate(60px, -60px);
  }
  60% {
    transform: translate(60px, 60px);
  }
  61% {
    transform: translate(-60px, 60px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.text-block {
  margin-bottom: 4rem;
}
.text-block h2 {
  max-width: 50rem;
  margin-inline: auto;
}
.text-block p {
  margin: 0 auto;
  text-align: left;
}
.text-block ul {
  max-width: 50rem;
  margin: 0 auto;
  font-size: 1.25rem;
}
.text-block ul li {
  text-align: left;
  margin-bottom: 12px;
}
@media screen and (min-width: 58rem) {
  .text-block ul {
    font-size: 1.375rem;
  }
}

/* TinyMCE overrides: gjelder kun i editorens iframe når BodyClass = "tiny text-block"*/
.mce-content-body.text-block {
  margin-inline: 0;
  max-width: none;
  padding: 1rem;
}
.mce-content-body.text-block h2 {
  text-align: center;
}
.mce-content-body.text-block ul {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.text-carousel {
  background-color: var(--color-mouse-grey);
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  margin-inline: -0.75rem;
  max-width: 50rem;
}
@media screen and (min-width: 50rem) {
  .text-carousel {
    border-radius: var(--border-radius);
    margin-inline: 0;
  }
}
@media screen and (min-width: 58rem) {
  .text-carousel {
    margin-inline: auto;
  }
}
.text-carousel__heading {
  margin-block: 2rem;
}
.text-carousel__slick-wrapper {
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 50rem) {
  .text-carousel__slick-wrapper {
    width: 100%;
  }
}
.text-carousel__slick-wrapper .slick-list {
  max-width: 100%;
}
@media screen and (min-width: 50rem) {
  .text-carousel__slick-wrapper .slick-list {
    margin-inline: auto;
  }
}
.text-carousel__slick-wrapper .slick-slide {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0.375rem 0.5rem var(--color-carrot);
  margin-bottom: 1rem;
  margin-inline: 1.5rem;
  padding-block: 1rem;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 50rem) {
  .text-carousel__slick-wrapper .slick-slide {
    margin-inline: 11rem;
  }
}
.text-carousel__slide-counter {
  margin-left: auto;
  margin-bottom: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.text-carousel__text {
  text-align: center;
  font-weight: var(--font-weight-medium);
}
.text-carousel__dots-buttons-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}
@media screen and (min-width: 50rem) {
  .text-carousel__dots-buttons-wrapper {
    margin-bottom: 2.5rem;
    margin-left: 180px;
  }
}
.text-carousel .slick-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.text-carousel .slick-dots > li {
  background-color: var(--color-white);
  border: var(--border-width-medium) solid var(--color-black);
  border-radius: 999em;
  color: transparent;
  height: 0.75rem;
  width: 0.75rem;
}
.text-carousel .slick-dots > li.slick-active {
  background-color: var(--color-black);
}
.text-carousel__button-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  gap: 1rem;
  justify-content: flex-end;
  padding-right: 0.75rem;
  position: relative;
}
@media screen and (min-width: 50rem) {
  .text-carousel__button-wrapper {
    margin-right: 180px;
    padding-right: 0;
  }
}
.text-carousel__button {
  background-color: var(--color-tacao);
  border: solid var(--border-width-medium) var(--color-charcoal);
  border-radius: var(--border-radius);
  line-height: 0;
  padding: 0.4375rem;
  transition: all 150ms;
}
.text-carousel__button:hover, .text-carousel__button:focus-visible {
  background-color: var(--color-princess-peach);
}
.true-or-false {
  margin-bottom: 4rem;
  margin-inline: -0.75rem;
  max-width: 50rem;
  overflow: hidden;
}
@media screen and (min-width: 58rem) {
  .true-or-false {
    margin-inline: auto;
    width: 100%;
  }
}
.true-or-false__heading {
  margin-bottom: 4rem;
}
.true-or-false__cards-buttons-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 50rem) {
  .true-or-false__cards-buttons-wrap {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 58rem) {
  .true-or-false__cards-buttons-wrap {
    flex-direction: row;
  }
}
.true-or-false__card-list {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: var(--max-card-height, 16rem);
  margin-bottom: 2rem;
  margin-inline: auto;
  padding-inline: 3rem;
  width: 100%;
}
@media screen and (min-width: 50rem) {
  .true-or-false__card-list {
    padding-inline: 5rem;
  }
}
@media screen and (min-width: 58rem) {
  .true-or-false__card-list {
    margin-bottom: 0;
    padding-left: 3rem;
  }
}
.true-or-false__card {
  transition: transform 1000ms ease;
  max-width: 27rem;
  width: 100%;
}
.true-or-false__card[data-answer].correct .true-or-false__card-back::after {
  display: none;
}
.true-or-false__card[data-answer].wrong .true-or-false__card-back::after {
  display: none;
}
.true-or-false__card:first-child .true-or-false__card-front::after {
  content: "🥁";
  opacity: 0.7;
}
.true-or-false__card:first-child .true-or-false__card-back::after {
  display: none;
}
.true-or-false__card.flipped .true-or-false__card-front {
  transform: perspective(600px) rotateY(-180deg);
}
.true-or-false__card.flipped .true-or-false__card-back {
  transform: perspective(600px) rotateY(0deg);
}
.true-or-false__card.flipped:first-child {
  animation: drum-roll 50ms 30 250ms;
}
.true-or-false__card.flipped:first-child .true-or-false__card-text {
  animation: drum-roll 50ms 30 reverse 250ms;
}
.true-or-false__card.flipped:first-child .true-or-false__card-front {
  transition: transform 500ms linear 2000ms;
}
.true-or-false__card.flipped:first-child .true-or-false__card-back {
  transition: transform 500ms linear 2000ms;
}
.true-or-false__card.yeet {
  transform: translateX(-150%);
}
.true-or-false__card:nth-child(1) {
  rotate: 0deg;
}
.true-or-false__card:nth-child(2) {
  rotate: 7deg;
}
.true-or-false__card:nth-child(3) {
  rotate: -2deg;
}
.true-or-false__card:nth-child(4) {
  rotate: 2deg;
}
.true-or-false__card:nth-child(5) {
  rotate: -3deg;
}
.true-or-false__card:nth-child(6) {
  rotate: 4deg;
}
.true-or-false__card:nth-child(7) {
  rotate: -5deg;
}
.true-or-false__card:nth-child(8) {
  rotate: 2deg;
}
.true-or-false__card:nth-child(9) {
  rotate: -2deg;
}
.true-or-false__card-front {
  align-items: center;
  background-color: var(--color-dove-white);
  backface-visibility: hidden;
  border: solid var(--border-width-medium) var(--color-black);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
  display: flex;
  gap: 1rem;
  flex-direction: column;
  min-height: 16rem;
  justify-content: space-evenly;
  padding: 2rem;
  padding-bottom: 1rem;
  position: absolute;
  transform: perspective(600px) rotateY(0deg);
  transition: transform 0.5s linear 0s;
  width: 100%;
}
.true-or-false__card-front::after {
  font-size: 4rem;
  line-height: 1;
  color: var(--color-bae-b-blue);
  content: "🤔";
  display: block;
  font-family: var(--font-family-emoji);
  font-weight: 600;
  opacity: 0.5;
}
.true-or-false__card-back {
  align-items: center;
  background-color: var(--color-hummingbird);
  backface-visibility: hidden;
  border: solid var(--border-width-medium) var(--color-black);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 16rem;
  justify-content: space-evenly;
  padding: 2rem;
  padding-bottom: 1rem;
  position: absolute;
  transform: perspective(600px) rotateY(180deg);
  transition: transform 0.5s linear 0s;
  width: 100%;
}
.true-or-false__card-back::after {
  font-size: 4rem;
  line-height: 1;
  content: "temp";
  display: block;
  font-family: var(--font-family-emoji);
  opacity: 0;
}
.true-or-false__card-text {
  font-weight: var(--font-weight-medium);
  margin: 0;
  word-break: break-word;
}
.true-or-false__card-text.hide {
  display: none;
}
.true-or-false__button-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-inline: 0.75rem;
}
@media screen and (min-width: 58rem) {
  .true-or-false__button-wrapper {
    flex-direction: column;
    flex-basis: 70%;
    flex-grow: 0;
    padding-left: 0;
  }
}
.true-or-false__button {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  .true-or-false__button {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}
.true-or-false__button {
  border: solid var(--border-width-medium) var(--color-black);
  border-radius: var(--border-radius);
  box-shadow: 0.375rem 0.5rem var(--color-regal-blue);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  padding-block: 1.25rem;
  padding-inline: 2rem;
  transition: box-shadow 250ms, translate 250ms;
}
.true-or-false__button:hover, .true-or-false__button:focus-visible {
  box-shadow: 0.125rem 0.125rem var(--color-regal-blue);
  translate: 0.25rem 0.375rem;
}
.true-or-false__button:hover .true-or-false__button-icon, .true-or-false__button:focus-visible .true-or-false__button-icon {
  animation: 250ms tilt-shaking;
}
.true-or-false__button.hide {
  display: none;
}
.true-or-false__button-icon {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  .true-or-false__button-icon {
    font-size: 1.75rem;
    line-height: 1.375;
  }
}
.true-or-false__button-icon {
  display: inline-block;
  font-family: var(--font-family-emoji);
  line-height: 1rem;
}
.true-or-false__progress {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.true-or-false__progress-heading {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  .true-or-false__progress-heading {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}
.true-or-false__progress-heading {
  margin-block: 0;
}
.true-or-false__progress-list {
  counter-reset: progress;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding-left: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.true-or-false__progress-node {
  background-color: var(--color-mouse-grey);
  border: solid var(--border-width-medium) var(--color-charcoal);
  border-radius: 0.375rem;
  counter-increment: progress;
  height: 1.5rem;
  position: relative;
  transition: background-color 400ms;
  width: 1.5rem;
}
.true-or-false__progress-node::before {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  content: "Spørsmål " counter(progress) ": ubesvart";
}
.true-or-false__progress-node .icon {
  display: none;
  height: 1.5rem;
  left: 0.125rem;
  min-width: 1.5rem;
  position: absolute;
  top: -0.375rem;
}
.true-or-false__progress-node.correct {
  background-color: var(--color-bae-b-blue);
}
.true-or-false__progress-node.correct::before {
  content: "Spørsmål " counter(progress) ": riktig";
}
.true-or-false__progress-node.correct .icon.icon--check {
  display: block;
}
.true-or-false__progress-node.correct .icon.icon--check path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: dash 750ms ease-in forwards;
}
.true-or-false__progress-node.wrong {
  background-color: var(--color-bae-b-blue);
}
.true-or-false__progress-node.wrong::before {
  content: "Spørsmål " counter(progress) ": feil";
}
.true-or-false__progress-node.wrong .icon.icon--cross {
  display: block;
  left: -0.125rem;
}
.true-or-false__progress-node.wrong .icon.icon--cross path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: dash 750ms ease-out forwards;
}
.true-or-false__progress-node.wrong .icon.icon--cross path + path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: dash 750ms ease-out 400ms forwards;
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(12deg);
  }
  75% {
    transform: rotate(-12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes drum-roll {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  75% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.video-carousel {
  background-color: var(--color-mouse-grey);
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  margin-inline: -0.75rem;
  max-width: 50rem;
}
@media screen and (min-width: 50rem) {
  .video-carousel {
    border-radius: var(--border-radius);
    margin-inline: 0;
  }
}
@media screen and (min-width: 58rem) {
  .video-carousel {
    margin-inline: auto;
  }
}
.video-carousel__heading {
  margin-block: 2rem;
}
.video-carousel__slick-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  padding-top: 0.5rem;
}
.video-carousel__slick-wrapper .slick-slide,
.video-carousel__slick-wrapper iframe {
  border-radius: var(--border-radius);
  box-shadow: 0.375rem 0.5rem var(--color-carrot);
  height: 27.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  width: 21.5625rem;
}
@media screen and (min-width: 58rem) {
  .video-carousel__slick-wrapper .slick-slide,
  .video-carousel__slick-wrapper iframe {
    height: 36.625rem;
    width: 27.5rem;
  }
}
.video-carousel__slick-wrapper .slick-slide {
  margin-inline: 0.75rem;
}
@media screen and (min-width: 50rem) {
  .video-carousel__slick-wrapper .slick-slide {
    margin-inline: 2rem;
  }
}
.video-carousel__slick-wrapper .slick-slide > * {
  filter: brightness(0.6);
  transition: filter 400ms;
}
.video-carousel__slick-wrapper .slick-slide.slick-current > * {
  filter: brightness(1);
}
.video-carousel__item {
  position: relative;
}
.video-carousel__item::before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.slick-current .video-carousel__item::before {
  pointer-events: none;
}
.video-carousel__item .cookieconsent-optout-marketing {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  .video-carousel__item .cookieconsent-optout-marketing {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}
.video-carousel__item .cookieconsent-optout-marketing {
  background-color: var(--color-princess-peach);
  height: 27.75rem;
  padding-block: 11rem;
  padding-inline: 2rem;
  width: 100%;
}
@media screen and (min-width: 58rem) {
  .video-carousel__item .cookieconsent-optout-marketing {
    height: 36.625rem;
    padding-block: 15rem;
  }
}
.video-carousel__item .cookieconsent-optout-marketing a {
  color: var(--color-black);
}
.video-carousel__item .cookieconsent-optout-marketing a:hover, .video-carousel__item .cookieconsent-optout-marketing a:focus-visible {
  text-decoration-color: var(--color-carrot);
}
.video-carousel__dots-buttons-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}
@media screen and (min-width: 50rem) {
  .video-carousel__dots-buttons-wrapper {
    margin-bottom: 2.5rem;
    margin-left: 180px;
  }
}
.video-carousel .slick-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.video-carousel .slick-dots > li {
  background-color: var(--color-white);
  border: var(--border-width-medium) solid var(--color-black);
  border-radius: 999em;
  color: transparent;
  height: 0.75rem;
  width: 0.75rem;
}
.video-carousel .slick-dots > li.slick-active {
  background-color: var(--color-black);
}
.video-carousel__button-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  gap: 1rem;
  justify-content: flex-end;
  padding-right: 0.75rem;
  position: relative;
}
@media screen and (min-width: 50rem) {
  .video-carousel__button-wrapper {
    margin-right: 180px;
    padding-right: 0;
  }
}
.video-carousel__button {
  background-color: var(--color-tacao);
  border: solid var(--border-width-medium) var(--color-charcoal);
  border-radius: var(--border-radius);
  line-height: 0;
  padding: 0.4375rem;
  transition: all 150ms;
}
.video-carousel__button:hover, .video-carousel__button:focus-visible {
  background-color: var(--color-princess-peach);
}
.CookieDeclaration {
  text-align: left;
}
.CookieDeclaration p {
  margin-inline: auto;
  max-width: 50rem;
}
.CookieDeclaration a {
  color: var(--color-black);
  text-decoration: underline;
}
.CookieDeclaration a:focus-visible, .CookieDeclaration a:hover {
  text-decoration-color: var(--color-carrot);
}
.CookieDeclaration #CookieDeclarationUserStatusPanel {
  background-color: var(--color-hummingbird);
  border-radius: var(--border-radius);
  margin-inline: auto !important;
  max-width: 53rem;
  padding: 1.5rem;
}
.CookieDeclaration #CookieDeclarationUserStatusPanel > p, .CookieDeclaration #CookieDeclarationUserStatusPanel > div {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 58rem) {
  .CookieDeclaration #CookieDeclarationUserStatusPanel > p, .CookieDeclaration #CookieDeclarationUserStatusPanel > div {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}
.CookieDeclaration #CookieDeclarationUserStatusPanel > p, .CookieDeclaration #CookieDeclarationUserStatusPanel > div {
  margin-inline: auto;
  max-width: 50rem;
}
.CookieDeclaration #CookieDeclarationUserStatusLabel > div {
  margin-bottom: 1.5rem;
}
.CookieDeclaration .CookieDeclarationLastUpdated {
  font-weight: var(--font-weight-semibold);
  margin-block: 2rem;
}
.CookieDeclaration .CookieDeclarationType {
  margin-bottom: 4rem;
}

/*------------------------------------*/
/*  #NOSCRIPT
/*------------------------------------*/
/**
 * Components to be shown when JS is disabled
 */
.noscript__component {
  display: none !important;
}
.noscript .noscript__component {
  display: block !important;
  width: 100%;
}
.noscript__component > *:last-child {
  margin-bottom: 0;
}
.noscript .noscript__hide {
  display: none !important;
}
.noscript [data-toggle-element] {
  display: block;
}

/*------------------------------------*/
/*  #REDUCED MOTION
/*------------------------------------*/
/**
 * Removes transitions/animations for users who have enabled "Reduced Motion"
 * in their browser
 */
@media screen and (prefers-reduced-motion) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
/*------------------------------------*\
    #SHAME
\*------------------------------------*/
/**
 * The thing that should not be.
 * Your 1-stop place for all nasty hacks and overrides that are
 * sometimes necessary for the greater good.
 *
 * This file should be as small as possible and should be routinely reviewed
 * in order to refactor out unecessary hacks.
 */
/*------------------------------------*/
/* #UTILITY-CLASSES
/*------------------------------------*/
/**
 * Utility classes (single purpose classes that override defaults)
 * Prefixed u-
 */
.u-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/*# sourceMappingURL=source/css/style.css.map */