/*
2025 © Monoform
http://www.monoform.no
*/

/* RESET
----------------------------------------------- */

* {
  shape-rendering: crispEdges;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

* {
  margin: 0; 
  padding: 0; 
}

ol, ul {
  list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

img, picture, video, canvas {
  display: block;
  width: 100%;
  height: auto;
  
  vertical-align: middle; 
  font-style: italic;
}

input, button, textarea, select {
  font: inherit; 
}

html, body {
  height: 100%; 
  scroll-behavior: smooth;
  scroll-padding-top: 1em;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* FOCUS STYLING
----------------------------------------------- */

*:focus {
  outline-offset: 0;  /* Kan settes til -4px For å gjøre focusrammen mindre rundt objektet */
}

input:focus {
    outline: 0;
}

/* DEFAULT STYLING
----------------------------------------------- */

html:not([lang="no"]) .norskinnhold {
  display: none !important;
}

html:not([lang="en"]) .engelskinnhold {
  display: none !important;
}

:root {
  --font-primary: "helvetica-neue-lt-pro", serif; /* Regular 400, Medium 500 og Bold 700 */
  --color-primary: #030091;
  --color-blue: #3727C5;
  --color-neon: #A9FFCE;
  --color-yellow: #FFE680;
  --color-lightblue: #F2F2F9;
  --color-lightyellow: #FFF2BF;
  --color-red: #E6413E;
  --color-text: #222222;
  --color-lightbackground: #f0f0f0;
  --global-spacing: 60px;
  --global-gap: 40px;
  --standard-lineheight: 1.4;
}

@media only screen and (max-width: 1023px) { /* Tablet Vertical */
  :root {
    --global-spacing: 40px;
  }
}

html {
  font-size: 62.5%;
}

body { 
  background-color: #ffffff;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: var(--standard-lineheight);
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}

/* MARGER, PADDING OG STØRRELSER */

.wrapper-full {
  margin: 0 auto; 
  width: 88%; 
  max-width: 1380px;
}

.wrapper-large,
.forside .wrapper-normal {
  margin: 0 auto; 
  width: 88%; 
  max-width: 1139px;
}

.wrapper-normal {
  margin: 0 auto; 
  width: 88%; 
  max-width: 980px;
}

.global-padding {
  padding: var(--global-spacing) 0;
}

.bg-blue {
  background-color: var(--color-lightblue);
}

.bg-yellow {
  background-color: var(--color-lightyellow);
}

.bg-none + .bg-none,
.bg-blue + .bg-blue,
.bg-yellow + .bg-yellow {
  margin-top: calc(var(--global-spacing) * -1);
}

/* TEXT STYLING 
Bruk https://geary.co/clamp-calculator/
Min viewport 570px, Max viewport 1300px */

h1 {font-size: clamp(3.5rem, 0.685vw + 3.11rem, 4rem);}
h2 {font-size: 3.0rem;}
h3 {font-size: 2.6rem;}
h4 {font-size: 2.2rem;}
h5 {font-size: clamp(1.6rem, 0.274vw + 1.444rem, 1.8rem);}
h6 {font-size: clamp(1.4rem, 0.274vw + 1.244rem, 1.6rem);}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  text-wrap: balance;
  color: var(--color-primary);
}

h1, h2 {
  line-height: 1.2;
}

h3, h4, h5, h6 { 
  line-height: 1.35;
}

.titlestyle {
  padding-top: var(--global-spacing);
}

.titlestyle h1, 
.titlestyle h2 {
  padding-bottom: 0.8em;
}

.titlestyle h3,
.titlestyle h4, 
.titlestyle h5, 
.titlestyle h6 {
  padding-bottom: 1em;
}

.textstyle h3,
.textstyle h2,
.textstyle h1 {
  padding-bottom: 0.3em;
}

/* Styling av titler i moduloversikten */
h3 span {
  color: red;
  opacity: 0.5;
  font-weight: 500;
}

/* Order: a, a:visited, a:hover, a:active */

a {
  color: var(--color-primary);
  text-decoration: underline;
}

a:hover {
  color: var(--color-text);
}

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.bildetekst {
  font-size: 1.8rem;
  font-style: italic;
  margin-top: 0.5em;
}

.vis-flere {
  text-align: right;
  padding-top: 40px;
}

.vis-flere a {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-primary);
}

.vis-flere a:hover {
  color: var(--color-text);
}

.vis-flere a i {
  font-weight: 700;
  margin-left: 8px;
}

@media only screen and (max-width: 1279px) { /* Tablet Horizontal */
  .vis-flere a {
  font-size: 2.2rem;
  }
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  .vis-flere a {
  font-size: 2.0rem;
  }
}

.textstyle ol, .textstyle ul {
	margin-left: 0;
	padding-left: 0;
}

.textstyle ul {
  list-style: disc;
  margin-left: 1.15em;
}

.textstyle ol {
  list-style: decimal;
  margin-left: 1.4em;
}

.textstyle p+p, .textstyle ul+p, .textstyle ol+p, .textstyle ol+ul, .textstyle ul+ol, .textstyle p+h4, .textstyle h4+h4, .textstyle ul+h4, .textstyle ol+h4, .textstyle p+h3, .textstyle h3+h3, .textstyle ul+h3, .textstyle ol+h3, .textstyle p+h2, .textstyle h2+h2, .textstyle ul+h2, .textstyle ol+h2, .textstyle p+h1, .textstyle h1+h1, .textstyle ul+h1, .textstyle ol+h1 {
  margin-top: 1.5em;
}

/* JUMP TO MAIN CONTENT */

a.jump-to-main {
  position: absolute;
  left: -2000px;
  top: 10px;
  font-size: 16px;
  background-color: var(--color-text);
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  z-index: 99990;
}

a.jump-to-main:focus-visible {
  left: 10px;
}

/* LAZY LOAD IMAGES */

.blurload::before {
  content: "";
  position: absolute;
  inset: 0;
  animation: blinker 2s infinite;
  z-index: 99;
}

.blurload.loaded:before {
  content: none;
}

.blurload {
  position: relative;
  background-size: cover;
  background-position: center;
  display: block;
  width: 100%;
}

.blurload > img {
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

.blurload.loaded > img {
  opacity: 1;
}

@keyframes blinker {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  
  50% {
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  100% {
    background-color: rgba(255, 255, 255, 0);
  }
}

/* RESET FORM */

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
input[type=password],
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance:none;
  border: 0;
  border-radius: 0;
  color: inherit;
}

input:focus::placeholder {
  color: transparent;
}

::placeholder {
   color: #9f9f9f;
}

::-webkit-input-placeholder {
   color: #9f9f9f;
}

:-moz-placeholder { /* Firefox 18- */
   color: #9f9f9f;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #9f9f9f;
}

:-ms-input-placeholder {  
   color: #9f9f9f;
}

/* BUTTON */

.button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance:none;
  display: inline-block;
  border: 0;
  border-radius: 0.25em;
  font-size: 2.0rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.8em 1.4em;
  margin: 0;
  cursor: pointer;
  transition: background-color 200ms ease-in;
}

.button-primary {
  background-color: var(--color-primary);
  color: #fff;
}

.button-primary:hover {
    background-color: var(--color-text);
    color: #fff;
}

.buttonwrapper {
  display: flex;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}

/* STYLING MAGNIFIC-POPUP */

.mfp-figure:after {
  background-color: #fff !important; 
}

.gallery-arrow {
  font-family: "Font Awesome 6 Pro";
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1em;
  cursor: pointer;
  z-index: 9999;
}
.gallery-arrow-left{
  left: 30px;
}
.gallery-arrow-left:before{
  content: '\f053'; /* < */
}
.gallery-arrow-right{
  right: 30px;
}
.gallery-arrow-right:before{
  content: '\f054'; /* > */
}

.mfp-title {
  font-size: 1.4rem;
  line-height: 1.4em !important;
  padding-bottom: 20px;
  padding-right: 50px !important;
}

/* GRID */

.gridcontent {
  display: grid;
  grid-gap: var(--global-gap);
}

.grid-4 {
  --grid-min-col-size: 250px;
  grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-min-col-size), 100%), 1fr));
}

.grid-3 {
  --grid-min-col-size: 300px;
  grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-min-col-size), 100%), 1fr));
}

.grid-2 {
  --grid-min-col-size: 360px;
  grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-min-col-size), 100%), 1fr));
}

/* TOPPSØK */

.toppsok ::placeholder {
  color: #fff;
}

.toppsok ::-webkit-input-placeholder {
  color: #fff;
}

.toppsok :-moz-placeholder { /* Firefox 18- */
  color: #fff;
}

.toppsok ::-moz-placeholder {  /* Firefox 19+ */
  color: #fff;
}

.toppsok :-ms-input-placeholder {
  color: #fff;
}

.toppsok {
  background-color: var(--color-text);
  padding: 40px 0;
  display: none;
}

.sok {
  width: 100%;
  padding: 50px 0;
}

.sokefelt {
  position: relative;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

.sokefelt i {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 2.6rem;
  font-weight: 400;
}

.sokefelt input {
  background-color: transparent;
  font-size: 2.0rem;
  color: #fff;
  width: 100%;
  padding-left: 35px;
}

.sokefelt input:focus {
  outline: none;
}

/* SØKERESULTATER */

.resultat-container {
  border-top: 1px solid var(--color-text);
  margin-top: 30px;
}
.soke-item {
  display: flex;
  text-decoration: none;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-text);
  justify-content: space-between;
  align-items: center;
}

.soke-item i {
  font-size: 2.8rem;
  font-weight: 500;
}

/* MAIN MENU */

:root {
  --menu-height: 178px;
}

html {
  scroll-padding-top: var(--menu-height);
}

body {
  padding-top: var(--menu-height);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.mainmenu {
  display: flex;
  align-items: center;
  background-color: #fff;
}

/* Clear styling on buttons in main menu */
.mainmenu button {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: inherit;
  font: inherit;
  border-radius: 0;
  appearance: none;
  cursor: pointer;
}

/* Klasser for å legge på skygge og skjule headeren */
header.shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Legg til en lett skygge */
}

header.hidden {
    transform: translateY(-100%); /* Skjul headeren */
}

.menu-flex {
  height: var(--menu-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.mainlogo {
  margin-right: auto;
}

.mainlogo img {
  max-width: 190px;
}

nav {
  margin-top: 40px;
  position: relative;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

nav ul li a {
  font-size: 2.0rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-primary);
}

nav ul li a:hover,
.mainmenu button:hover {
  color: var(--color-primary);
  opacity: 0.6;
}

.hiddenmenu {
  display: none;
}

.submenu {
  position: absolute;
  top: 84px;
  left: 0;
  width: calc(100% + 100vw/2);
  
  background-color: var(--color-blue);
  padding: 80px 140px;
}

.submenu li,
.submenu a {
  color: #fff;
  font-weight: 400;
  font-size: 2.4rem;
}

.submenu a:hover, 
.submenu button:hover i {
  color: #fff;
  opacity: 0.6;
}

.submenu .submenu-header {
  font-size: 3.2rem;
  font-weight: 700;
  padding-bottom: 20px;
}

.submenu-item {
  display: block;
  padding: 10px 0;
}

.submenu li {
  border-bottom: 1px solid var(--color-neon);
  width: 50%;
  max-width: 430px;
}

.submenu .closemenu {
  position: absolute;
  top: 30px;
  left: 30px;
  border: 0;
}

.closemenu i {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 400;
}

.menu-icon {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  padding: 20px 0 20px 10px;
  display: block;
}

.menu-icon .menu-icon-bar,
.menu-icon .menu-icon-bar::before,
.menu-icon .menu-icon-bar::after {
  width: 30px;
  height: 4px;
  background-color: var(--color-primary);
  display: block;
  transition: all 0.3s ease-out;
}

.menu-icon .menu-icon-bar {
  display: block;
  position: relative;
}

.menu-icon .menu-icon-bar::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  transition: all 0.3s;
}

.menu-icon .menu-icon-bar::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  transition: all 0.3s;
}

body.menu-visible .menu-icon .menu-icon-bar {
  background-color: transparent;
}

body.menu-visible .menu-icon .menu-icon-bar:before {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff;
}

body.menu-visible .menu-icon .menu-icon-bar:after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}

.menytrigger {
  visibility: hidden;
  display: none;
}

.nav-indicator {
  display: none;
}

.mainmenu .language-trigger {
  color: #8E8E8E;
  position: absolute;
  top: -55px;
  right: 0;
}

.mainmenu .language-trigger i {
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.mainmenu .language-trigger a {
  border-bottom: 0 !important;
}

@media only screen and (max-width: 1133px) {
  :root {
    --menu-height: 120px;
  }
  .mainlogo img {
    max-width: 185px;
  }
  
  .menytrigger {
    visibility: visible;
    display: block;
    z-index: 99999;
  }
  
  nav {
    margin-top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--color-blue);
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.3s ease-in-out;
    padding: 136px 6%;
  }
  
  body.menu-visible nav {
    visibility: visible;
    opacity: 1;
  }
  
  body.menu-visible {
    overflow: hidden;
  }
    
  body.menu-visible main {
    pointer-events: none;
  }
  
  body.menu-visible header.hidden {
      transform: none;
  }
  
  .mainmenu .language-trigger {
    color: #fff;
    top: 46px;
    left: 6%;
  }
  
  nav > ul {
    flex-direction: column;
    gap: 0;
    border-top: 1.2px solid var(--color-neon);
  }
  
  nav ul li {
    border-bottom: 1.2px solid var(--color-neon);
  }
  
  nav ul li a {
    color: #fff;
    font-size: 2.5rem;
    display: block;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
  }
  
  nav ul li a:hover {
    color: #fff;
    opacity: 0.6;
  }
  
  .nav-indicator {
    display: block;
  }
  
  .nav-indicator .fa-minus {
    display: none;
  }
  
  a.submenytrigger.open .nav-indicator .fa-plus {
    display: none;
  }
  
  a.submenytrigger.open .nav-indicator .fa-minus {
    display: inline;
  }
  
  .submenu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .submenu a {
    font-size: 2.2rem;
    padding: 10px 0;
  }
  
  .submenu .submenu-header {
    display: none;
  }
  
  .submenu-item {
    display: block;
    padding: 0;
  }
  
  .submenu li {
    border-bottom: none;
    width: 100%;
    max-width: 100%;
  }
  
  .submenu .closemenu {
    display: none;
  }
}

/* Menysøk */

.menu-search {
  display: none;
  background: var(--color-yellow);
  position: relative;
  margin-top: 70px;
}

.menu-search input[type=text] {
  background: transparent;
  width: 100%;
  padding: 12px 42px;
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 400;
}

.menu-search i {
  position: absolute;
  top: 17px;
  left: 12px;
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 400;
}

.menu-search ::-webkit-input-placeholder {
   color: var(--color-primary);
   font-weight: 400;
}

.menu-search :-moz-placeholder { /* Firefox 18- */
   color: var(--color-primary);
   font-weight: 400;
}

.menu-search ::-moz-placeholder {  /* Firefox 19+ */
   color: var(--color-primary);
   font-weight: 400;
}

.menu-search :-ms-input-placeholder {  
   color: var(--color-primary);
   font-weight: 400;
}

@media only screen and (max-width: 1133px) { 
  .menu-search {
    display: block;
  }
}

/* KART */

.kartwrapper {
  width: 100%;
  height: 650px !important;
  position: relative;
  z-index: 0;
}

/* Reino overstyring */

.marker-cluster div {
  font: 16px var(--font-primary) !important;
  font-weight: 700 !important;
  color: #fff;
}

.marker-cluster-small {
  background-color: rgba(3, 0, 145, 0.6) !important;
}

.marker-cluster-small div {
  background-color: rgba(3, 0, 145, 1) !important;
}

.marker-cluster-medium {
  background-color: rgba(3, 0, 145, 0.6) !important;
}

.marker-cluster-medium div {
  background-color: rgba(3, 0, 145, 1) !important;
}

.marker-cluster-large {
  background-color: rgba(3, 0, 145, 0.6) !important;
}

.marker-cluster-large div {
  background-color: rgba(3, 0, 145, 1) !important;
}

/* TOPPTEKST FORSIDE */

.topptekst-forside {
  color: var(--color-primary);
  font-size: clamp(2.2rem, 0.548vw + 1.888rem, 2.6rem);
  padding: 16px 0 35px 0;
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  .topptekst-forside {
    padding: 16px 0 22px 0;
  }
}

/* HERO BANNER */

.herobanner {
  position: relative;
  width: 100%;
  height: 650px;
  background-color: #fff;
}

.herobanner.bigger-banner {
  height: 790px;
}

.herobanner.wrapper-full {
  width: 88%;
  margin-top: var(--global-spacing);
}

.herobanner-image,
.herobanner-video {
  object-fit: cover;
  object-position: 50% 50%;
}

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

.herobanner-transparent {
  background-color: #000;
  pointer-events: none;
}

.herobanner-payoff-flex {
  display: flex;
  align-items: center;
  padding: var(--global-spacing) 0;
  pointer-events: none;
}

.herobanner h1 {
  color: #fff;
}

@media only screen and (max-width: 1023px) { /* Tablet Vertical */
  .herobanner,
  .kartwrapper {
    height: 420px !important;
  }
  .herobanner.bigger-banner {
    height: 520px;
  }
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  .herobanner,
  .kartwrapper {
    height: 250px !important;
  }
  .herobanner.bigger-banner {
    height: 340px;
  }
}

/* SØK OG TJENESTER FORSIDE */

.forside-sok-og-tjenester {
  background-color: var(--color-yellow);
  color: var(--color-primary);
}

.forside-sok-og-tjenester h2 {
  margin-bottom: 0.8em;
}

.sok-og-tjenester-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 5%;
}

/* forsidesøk */

.forside-search {
  background: #fff;
  position: relative;
  margin-bottom: 2em;
  border: 1.8px solid var(--color-primary);
}

.forside-search input[type=text] {
  background: transparent;
  width: 100%;
  padding: 12px 42px;
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 400;
}

.forside-search i {
  position: absolute;
  top: 17px;
  left: 12px;
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 400;
}

.forside-search ::-webkit-input-placeholder {
   color: #C4C4C4;
   font-weight: 400;
}

.forside-search :-moz-placeholder { /* Firefox 18- */
   color: #C4C4C4;
   font-weight: 400;
}

.forside-search ::-moz-placeholder {  /* Firefox 19+ */
   color: #C4C4C4;
   font-weight: 400;
}

.forside-search :-ms-input-placeholder {  
   color: #C4C4C4;
   font-weight: 400;
}

.mest-besokt-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mest-besokt-tittel {
  margin-bottom: 0.6em;
}

.mest-besokt-item {
  text-decoration: none;
  padding: 0.5em 0.7em;
  border: 1.8px solid var(--color-primary);
}

.mest-besokt-item:hover {
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.2);
}

.tjenestegrid {
  display: grid; 
  --grid-min-col-size: 140px;
  grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-min-col-size), 100%), 1fr));
  gap: 12px;
}

.tjenesteitem {
  text-decoration: none;
  text-align: center;
  
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 10px;
  font-weight: 500;
  padding: 25px 15px;
  
  border: 1.8px solid var(--color-primary);
}

.tjenesteitem:hover {
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.2);
}

.tjenesteitem img {
  align-self: end;
  margin: 0 auto;
}

@media only screen and (max-width: 885px) {
  .sok-og-tjenester-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* FORSIDE INTROTEKST m/URL */

.forside-introtekst {
  margin-bottom: 30px;
}

.forside-introtekst-tekst {
  font-size: clamp(2.2rem, 1.096vw + 1.575rem, 3rem);
  color: var(--color-primary);
}

.forside-introtekst a {
  font-size: clamp(2.2rem, 0.274vw + 2.044rem, 2.4rem);
}

.forside-introtekst .read-more-arrow i {
  font-size: clamp(2.6rem, 0.548vw + 2.288rem, 3rem);
}

/* FLUID CONTENT
----------------------------------------------- */

/* HR STYLING */

hr {
  border: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-text);
}

/* Innhold-ingress */

.innhold-ingress {
  font-size: 2.2rem;
  font-weight: 400;
}

.innhold-ingress.bg-none + .innhold-brodtekst.bg-none {
  margin-top: calc(var(--global-spacing) * -1);
  padding-top: 1.4em;
}

/* Innhold-tittel */

.innhold-tittel.bg-none + .bg-none {
  margin-top: calc(var(--global-spacing) * -2); 
}

.innhold-tittel.bg-none + .bg-yellow,
.innhold-tittel.bg-none + .bg-blue {
  margin-top: calc(var(--global-spacing) * -1); 
}

.innhold-tittel.bg-yellow + .bg-yellow,
.innhold-tittel.bg-blue + .bg-blue {
  padding-top: calc(var(--global-spacing) * -2);
}

.innhold-tittel + .innhold-parallax {
  margin-top: calc(var(--global-spacing) * -1); 
}

/* Innhold-sitat */

.sitat-bilde {
  width: 200px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.sitat-bilde img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.sitat-flex {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--global-gap);
}

.sitat-tekstcontainer {
  align-self: center;
}

.sitat-sitat p {
  font-size: clamp(2.6rem, 0.548vw + 2.288rem, 3rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--color-primary);
}

.sitat-kilde p {
  margin-top: 1em;
}

.sitat-kilde span {
  font-weight: 600;
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  .sitat-flex {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .sitat-bilde {
    width: 170px;
  }
}

/* Innhold-bilde */

.innhold-bilde.bg-none + .innhold-bilde.bg-none,
.innhold-bilde.bg-yellow + .innhold-bilde.bg-yellow,
.innhold-bilde.bg-blue + .innhold-bilde.bg-blue {
  margin-top: calc(var(--global-spacing) * -1);
  padding-top: var(--global-gap);
}

.bildegrid {
  display: grid;
  grid-gap: var(--global-gap);
  /* direction: rtl; Sette bilder til høyre */
}
/* Unngå høyrejustert tekst i bildeteksten
.bildeitem {
  direction: ltr;
}
*/

.bildegrid.spaltegrid-1 {
  grid-template-columns: 1fr;
}

.bildegrid.spaltegrid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.bildegrid.spaltegrid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.innhold-bilde .bildeaspekt {
  aspect-ratio: 550 / 367;
  object-position: center;
  object-fit: cover;
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  .bildegrid.spaltegrid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 567px) { /* Mobile Vertical */
  .bildegrid.spaltegrid-2,
  .bildegrid.spaltegrid-3 {
    grid-template-columns: 1fr;
  }
}

/* Innhold-bilde-stor */

.innhold-bilde-stor .bildetekst {
  padding: 0 6%;
}

.bilde-stor-hoyde {
  object-fit: cover;
  height: 550px;
}

@media only screen and (max-width: 1023px) { /* Tablet Vertical */
  .bilde-stor-hoyde {
    height: 420px;
  }
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  .bilde-stor-hoyde {
    height: 270px;
  }
}

/* Innhold-lenkekarusell */

.slick-slider {
  margin-left: -20px;
  margin-right: -20px;
}

.slick-list {
  clip-path: inset(0 20px 0 20px);
}

.slick-slide {
  margin-left: 20px;
  margin-right: 20px;
}

.karusell-item {
  text-decoration: none;
}

.karusell-item:hover {
  opacity: 0.6;
}

.karusell-image {
  width: 100%; 
  aspect-ratio: 353/269;
  margin-bottom: 0.6em;
  object-fit: cover;
}

.karusell-tekst {
  font-size: 2.2rem;
}

/* Innhold-bildegalleri */

.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-gap: 15px;
  
}

.wrapper-normal .gallery {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 158px;
}

.wrapper-large .gallery {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 184px;
}

.gallery > a > img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery > a {
  overflow: hidden;
  position: relative;
}

.gallery a:hover img {
  transform: scale(1.2);
}

.gallerycenter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallerycenter div {
  background-color: #282828;
  width: 50px;
  height: 50px;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s ease;
  border-radius: 5px;
}

.gallery a:hover .gallerycenter div {
  opacity: 1;
}

.gallerycenter i {
  color: #fff;
}

.size1x2 {
  grid-row: span 2;
}

.size2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.size2x3 {
  grid-column: span 2;
  grid-row: span 3;
}

@media only screen and (max-width: 567px) { /* Mobile Horisontal */
  .wrapper-normal .gallery,
  .wrapper-large .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  
  .size1x1,
  .size1x2,
  .size2x2,
  .size2x3 {
    grid-column: 1 / -1;
    grid-row: span 1; 
  }
}

/* Innhold-apnelukkekai */

.kai-tittel {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.8em 1em;
  background-color: var(--color-lightblue);
  border-radius: 5px;
}

.kai-tittel:hover {
  opacity: 0.8;
}

.kai-tittel:hover,
.kai-tittel.open-style {
  background-color: var(--color-primary);
  color: #fff;
}

.kai-tittel.open-style {
  border-radius: 5px 5px 0 0;
}

.kai-tittel i {
  margin-left: auto;
  position: relative;
  padding-left: 40px;
  font-size: 2.2rem;
  font-weight: 500;
}

.kai-item + .kai-item {
  margin-top: 12px;
}

.kai-item .listeinnhold {
  background-color: var(--color-lightblue);
  padding: 40px 30px;
}

.kai-padding + .kai-padding {
  margin-top: 40px;
}

.kai-les-mer {
  display: block;
}

@media only screen and (max-width: 567px) { /* Mobile Vertical */
  .kai-item .listeinnhold {
    padding: 40px 20px;
  }
}

/* Innhold-filnedlasting */
/* Innhold-lenke */

.filoglenke-item {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.8em;
  background-color: var(--color-lightblue);
  border-radius: 5px;
}

.filoglenke-item:hover {
  color: var(--color-text);
  opacity: 0.8;
}

.bg-blue .filoglenke-item,
.bg-yellow .filoglenke-item {
  background-color: var(--color-primary);
  color: #fff;
}

.filoglenke-item + .filoglenke-item {
  margin-top: 12px;
}

.link-yellow {
  background-color: var(--color-lightyellow);
}

.bg-blue .link-yellow,
.bg-yellow .link-yellow {
  background-color: var(--color-yellow);
  color: var(--color-primary);
}

.filoglenke-item span {
  opacity: 0.5;
  font-size: 1.6rem;
  margin-left: 6px;
  font-weight: 400;
}

.filoglenke-item i {
  margin-left: auto;
  position: relative;
  padding-left: 40px;
  font-size: 2.2rem;
}

/* Innhold-bildeogtekst */

.bildeogtekst-flex {
  display: flex;
  gap: 40px;
}

.bildeogtekst-bilde {
  width: 50%;
}

.bildeogtekst-tekst {
  width: 50%;
  font-size: clamp(2rem, 0.274vw + 1.844rem, 2.2rem);
}

.midtstill-vertikalt {
  display: flex;
  align-items: center;
}

.switch-place .bildeogtekst-bilde {
  order: 2;
}

.circleimage .blurload {
  display: block;
  border-radius: 50%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

.circleimage img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.circleimage {
  padding-right: 2.5%;
}

.switch-place .circleimage {
  padding-right: 0;
  padding-left: 2.5%;
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  .bildeogtekst-flex {
    flex-wrap: wrap;
  }
  
  .circleimage,
  .switch-place .circleimage {
    padding-right: 0;
    padding-left: 0;
  }
  
  .bildeogtekst-bilde,
  .bildeogtekst-tekst {
  width: 100%;
  }
  
  .bildeogtekst-bilde {
    order: 3;
  }
}

/* Innhold-apne-lukke-tekst */

.list-index {
  border-top: 1.5px solid var(--color-primary);
}

.list-item {
  border-bottom: 1.5px solid var(--color-primary);
}

.list-tittel {
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6em 0;
  font-size: 2.2rem;
  font-weight: 400;
}

.list-tittel i {
  font-weight: 500;
  margin-left: 40px;
}

.listeinnhold {
  padding: 0 0 30px 0;
}

.listeinnhold iframe {
  width: 100%;
}

/* Innhold-video */

.videowrapper {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.videowrapper::before {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.videowrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Kontaktboks */

.kontaktboks-container {
  color: var(--color-primary);
  font-size: 2.0rem;
}

.boks-blue .kontaktboks-container,
.boks-yellow .kontaktboks-container {
  padding: 30px;
  max-width: 750px;
}

.boks-blue .kontaktboks-container {
  background-color: var(--color-lightblue);
}

.boks-yellow .kontaktboks-container {
  background-color: var(--color-lightyellow);
}

.kontaktboks-person {
  display: flex;
  align-items: center;
  gap: 24px;
}

.kontaktboks-container img {
  max-width: 205px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}

.kontaktboks-person h4 {
  margin-bottom: 0.6em;
  font-weight: 700;
}

.boks-blue .kontaktboks-mobilogepost,
.boks-yellow .kontaktboks-mobilogepost {
  margin-top: 0.4em;
}

.title-over {
  display: none;
}

@media only screen and (max-width: 567px) { /* Mobile Vertical */
  
  .kontaktboks-person {
    display: flex;
    align-items: center;
    gap: 20px;
    
    flex-direction: column;
    align-items: flex-start;
  }
  
  .kontaktboks-person .title-over {
    display: block;
    margin-bottom: 0;
  }
  
  .title-under {
    display: none;
  }
}

/* Innhold-bildelink */

.bildelink-item img {
  aspect-ratio: 550/343;
  object-fit: cover;
}

.bildelink-item {
  text-decoration: none;
  background-color: var(--color-primary);
  font-size: 2.2rem;
}

.bildelink-item:hover {
  color: #fff;
  opacity: 0.8;
}

.bildelink-tekstwrapper {
  padding: 30px 35px;
}

.bildelink-item,
.bildelink-item h2,
.bildelink-item .read-more-arrow {
  color: #fff;
}

.bildelink-item h2 {
  margin-bottom: 0.4em;
}

/* Innhold-aktueltsaker */

.aktueltsaker-item {
  text-decoration: none;
  color: var(--color-text);
}

.aktueltsaker-item:hover {
  opacity: 0.6;
}

.bildeaspekt-aktueltsaker {
  aspect-ratio: 353/220;
  object-position: center;
  object-fit: cover;
}

.bildeaspekt-aktueltsaker.bildeaspekt-kaier {
  aspect-ratio: 300/220;
}

div.aktueltsaker-indexbilde {
  background-color: var(--color-lightbackground);
}

.bg-yellow div.aktueltsaker-indexbilde,
.bg-blue div.aktueltsaker-indexbilde {
  background-color: #fff;
}

.aktueltsaker-indexbilde {
  margin-bottom: 0.6em;
}

.aktueltsaker-dato {
  font-size: 1.6rem;
  color: var(--color-primary);
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--color-primary);
  margin-bottom: 0.8em;
}

.aktueltsaker-dato.titteldato {
  margin-bottom: 2em;
}

.aktueltsaker-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
}

.read-more-arrow {
  margin-top: 1.5rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.read-more-arrow span {
  font-weight: 700;
  text-decoration: underline;
}

.read-more-arrow i {
  margin-top: 3px;
  font-size: 2.5rem;
  margin-left: 8px;
}

/* Innhold-embedkode */

  .innhold-embedkode iframe {
    display: block;
    width: 100%;
  }

/* Innhold-logogrid */
  
  .logogrid-grid {
    display: grid;
    grid-gap: var(--global-gap);
    grid-template-columns: repeat(5, 1fr);
  }
  
  .wrapper-normal .logogrid-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .boks-bilde {
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    aspect-ratio: 505 / 272;
  }
  
  a.boks-bilde:hover img {
    opacity: 0.8;
  }
  
  .boks-padding {
    padding: 12% 14%;
    height: 100%;
  }
  
  .innhold-logogrid .blurload {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  .boks-padding img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  @media only screen and (max-width: 1023px) { /* Tablet Vertical */
    .logogrid-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media only screen and (max-width: 767px) { /* Mobile Horizontal */
    .logogrid-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
  }
  
  @media only screen and (max-width: 567px) { /* Mobile Vertical */
    .logogrid-grid,
    .wrapper-normal .logogrid-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

/* Innhold programoversikt */

.programcontainer {
  border-bottom: 2px dotted var(--color-primary);
}

.program-flex {
  display: flex;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-primary);
  
  padding: 15px 0;
  border-top: 2px dotted var(--color-primary);
}

a.program-flex:hover {
  color: var(--color-text);
}

.program-tittel {
  font-weight: 700;
}

.program-flex-sub {
  display: flex;
  width: 100%;
  padding-right: 26px;
}

.program-info {
  width: 100%;
}

.program-klokkeslett {
  color: var(--color-primary);
}

.program-merinfo {
  color: var(--color-text);
  padding-top: 22px;
  padding-bottom: 5px;
}

.program-klokkeslett {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 250px;
}

.program-klokkeslett i {
  color: var(--color-primary);
  margin-right: 8px;
}

.hiddeninnhold {
  display: none;
}

.program-flex-main {
  flex: 1;
}

.program-flex-toggle {
  align-self: center;
}

.program-flex-toggle i {
  color: var(--color-primary);
}

.merinfo-flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.merinfo-flex .program-portrettbilde {
  shrink: 0;
  width: 160px;
  aspect-ratio: 1/1.2;
}

.program-portrettbilde img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.merinfo-flex .program-merinfo-tekst {
  flex: 1;
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  /* Programoversikt */
  
  .program-flex-sub {
    flex-direction: column;
  }
  
  .program-klokkeslett {
    max-width: none;
  }
  
  .program-klokkeslett {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 567px) { /* Mobile Vertical */
  .merinfo-flex {
    flex-direction: column;
    gap: 0;
  }
}

/* Innhold-faktaboks */

.faktaboks {
  font-size: 2.2rem;
  color: var(--color-primary);
  display: flex;
}

.faktaboks a {
  color: var(--color-primary);
}

.faktaboks a:hover {
  opacity: 0.6;
}

.fact-white {
  background-color: #fff;
  border: 2px solid var(--color-primary);
}

.fact-blue {
  background-color: var(--color-primary);
}

.fact-blue,
.fact-blue h1,
.fact-blue h2,
.fact-blue h3,
.fact-blue h4,
.fact-blue a {
  color: #fff;
}

.fact-yellow {
  background-color: var(--color-yellow);
}

.faktaboks + .faktaboks {
  margin-top: 50px;
}

.maks-faktahoyde {
  min-height: 350px;
}

.faktaboks-tekst-padding {
  padding: 35px;
}

.faktaboks-tekst {
  width: 100%;
  display: flex;
  align-items: center;
}

.faktaboks .blurload {
  position: relative;
  width: 100%;
}

.faktaboks-bilde img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.snu-faktaboks .blurload {
  order: 1;
}

@media only screen and (max-width: 1023px) { /* Tablet Vertical */  
  .faktaboks {
    flex-direction: column;
  }
  
  .maks-faktahoyde {
    min-height: auto;
  }
    
  .faktaboks-bilde {
    width: 100%;
    height: 300px;
  }
  
  .faktaboks-tekst-padding {
    padding: 40px;
  }
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */  
  .faktaboks + .faktaboks {
    margin-top: 30px;
  }
  
  .faktaboks-tekst-padding {
    padding: 40px 25px;
  }
}

/* PARALLAX */

.text-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;					
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px;
}

.overlay-text {
  place-self: center;
  text-align: center;
  width: 88%;
  max-width: 834px;
}

.overlay-tekst-background {
  background-color: var(--color-text);
  color: #FFFFFF;
  display: inline;
  white-space: pre-wrap;
  line-height: 1.9;
  font-size: 2.0rem;
  font-family: arial, sans-serif;
  padding: 5px 12px 5px 13px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 4px;
}

.innhold-parallax + .innhold-bunntekst {
  margin-top: var(--global-spacing);
}

/* innhold-vaerdata */

.innhold-vaerdata h3 {
  margin-bottom: 0.8em;
}

.stedscontainer + .stedscontainer {
  margin-top: var(--global-spacing);
}

.symbol-grid {
  display: grid; 
  --grid-min-col-size: 123px;
  grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-min-col-size), 100%), 1fr));
  gap: 40px;
}

.symbol-grid strong {
  font-weight: 500;
}

.symbol-item {
  text-align: center;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 10px;
  color: var(--color-primary);
}

a.symbol-item {
  text-decoration: none;
}

a.symbol-item:hover {
  color: var(--color-primary);
  opacity: 0.6;
}

.symbol-item img {
  align-self: end;
  margin: 0 auto;
}

.updated {
  margin-top: 1.5em;
  padding-top: 0.6em;
  border-top: 1px solid var(--color-primary);
  font-size: 1.6rem;
  color: #bebebe;
}

@media only screen and (max-width: 567px) { /* Mobile Vertical */
  .symbol-grid {
    gap: 40px 20px;
  }
}

/* Innhold-lengdeogbreddegrader */

.innhold-lengdeogbreddegrader {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* VIKTIG MELDING */

.viktig-melding {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--color-red);
  color: #fff;
  z-index: 100;
}

.viktig-melding .wrapper-normal {
  position: relative;
}

.viktig-melding-tekst {
  font-size: 2.0rem;
}

.viktig-melding h2 {
  color: #fff;
  margin-bottom: 0.4em;
  font-weight: 700;
}

.close-important {
  all: unset; /* fjerner all standard knapp-styling */
  cursor: pointer;
  font-size: 4.0rem;
  color: #fff;
  
  position: absolute;
  top: -25px;
  right: 0;
}

.close-important:hover {
  color: #fff;
  opacity: 0.6;
}

/* FOOTER */

.footer {
  position: sticky;
  top: 100vh;
  font-size: 1.8rem;
  padding-top: 30px;
}

.footer-toppinfo {
  background-color: var(--color-yellow);
  color: var(--color-primary);
  padding: 35px 0;
}

.footer-toppinfo a {
  color: var(--color-primary);
}

.footer-toppinfo a:hover {
  color: var(--color-primary);
  opacity: 0.6;
}

.footer-toppinfo-flex {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.tittel-flex {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 270px;
}

.footer-toppinfo-tittel {
  width: 100%;
}

.footer-toppinfo-tekst {
  width: 100%;
  border-left: 1.6px solid var(--color-primary);
  padding-left: 20px;
}

.footer-toppinfo img {
  max-width: 63px;
}

.footer-maininfo {
  background-color: var(--color-primary);
  padding: var(--global-spacing) 0 calc((var(--global-spacing)) + 20px) 0;
  color: #fff; 
}

.footer-maininfo a {
  color: #fff;
}

.footer-maininfo a:hover {
  opacity: 0.6;
}

.footer-flex {
  display: flex;
  gap: 30px 65px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 190px;
}

.footer-adresser {
  margin-right: auto;
}

.footer-adressespalter {
  display: flex;
  gap: 30px 45px;
  margin-bottom: 30px;
}

.footer-fakturaadresse {
  width: 100%;
  display: block;
}

.footer-some a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  font-size: 2.4rem;
}

.footer-bunntekst {
  font-size: 1.2rem;
}

.footer .wrapper-large {
  position: relative;
}

.footerwaves {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 198px;
}

@media only screen and (max-width: 767px) { /* Mobile Horizontal */
  .footer-toppinfo-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-toppinfo-tekst {
    width: 100%;
    border-left: 0;
    padding-left: 0;
  }
  
  .footerwaves {
    display: none;
  }
}

@media only screen and (max-width: 567px) { /* Mobile Vertical */
  .footer-adressespalter {
    flex-direction: column;
  }
  
  .footer-adresser {
    width: 100%;
  }
  
  .footerwaves {
    bottom: 80px;
  }
}