.no-animations,
.no-animations *,
.no-animations *::before,
.no-animations *::after
{
	animation: none !important;
	transition: none !important;
}


/* animation sets */

/* move child from / to  */

.ani-child-moveToLeft,
.ani-child-moveFromLeft,
.ani-child-moveToRight,
.ani-child-moveFromRight
{
	overflow: visible !important;
}

.ani-child-moveToLeft > * {
	animation: child-moveToLeft .4s cubic-bezier(1,.16,.26,.97) both;
}

.ani-child-moveFromLeft > * {
	animation: child-moveFromLeft .4s cubic-bezier(1,.16,.26,.97) both;
}

.ani-child-moveToRight > * {
	animation: child-moveToRight .4s cubic-bezier(1,.16,.26,.97) both;
}

.ani-child-moveFromRight > * {
	animation: child-moveFromRight .4s cubic-bezier(1,.16,.26,.97) both;
}

/********************************* keyframes **************************************/

/* move from / to  */

@keyframes child-moveToLeft {
	from { }
	to { opacity: 0; transform: translateX(-1070px); }
}

@keyframes child-moveFromLeft {
	from { opacity: 0; transform: translateX(-1070px); }
}

@keyframes child-moveToRight { 
	from { }
	to { opacity: 0; transform: translateX(1070px); }
}

@keyframes child-moveFromRight {
	from { opacity: 0; transform: translateX(1070px); }
}




/* animation sets */

/* move from / to  */

.ani-moveToLeft {
	-webkit-animation: moveToLeft .6s ease both;
	animation: moveToLeft .6s ease both;
}

.ani-moveFromLeft {
	-webkit-animation: moveFromLeft .6s ease both;
	animation: moveFromLeft .6s ease both;
}

.ani-moveToRight {
	-webkit-animation: moveToRight .6s ease both;
	animation: moveToRight .6s ease both;
}

.ani-moveFromRight {
	-webkit-animation: moveFromRight .6s ease both;
	animation: moveFromRight .6s ease both;
}

/********************************* keyframes **************************************/

/* move from / to  */

@-webkit-keyframes moveToLeft {
	from { }
	to { -webkit-transform: translateX(-100%); }
}
@keyframes moveToLeft {
	from { }
	to { -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

@-webkit-keyframes moveFromLeft {
	from { -webkit-transform: translateX(-100%); }
}
@keyframes moveFromLeft {
	from { -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

@-webkit-keyframes moveToRight { 
	from { }
	to { -webkit-transform: translateX(100%); }
}
@keyframes moveToRight { 
	from { }
	to { -webkit-transform: translateX(100%); transform: translateX(100%); }
}

@-webkit-keyframes moveFromRight {
	from { -webkit-transform: translateX(100%); }
}
@keyframes moveFromRight {
	from { -webkit-transform: translateX(100%); transform: translateX(100%); }
}


/* bounce  */

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.btn
{
    color: #fff;
    background-color: #E44F4E;
    line-height: 32px;
    padding: 0 20px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
	display: inline-block;
	font-size: 18px;
	min-width: 140px;
}

.is-havsbrun .btn
{
    background-color: #004A93;
}

.is-forka .btn
{
    background-color: #009DD3;
}

.btn:hover
{
    background-color: #E50008;
}

.is-havsbrun .btn:hover
{
    background-color: #003161;
}

.is-forka .btn:hover
{
    background-color: #007DA8;
}
a { color: inherit; }

/**umb_name:Yvirskrift*/
h1 {
font-size: 30px; font-weight: bold; color: #000; margin: 0 0 20px;line-height: 30px;
}

/**umb_name:Inngangur*/
h2 {
font-size: 20px; font-weight: bold; color: #000; margin: 0 0 20px;line-height: 30px;
}

/**umb_name:Vanligt*/
p {
font-size: 16px; line-height: 1.8; font-weight: normal; color: #000; margin: 0 0 15px;
}


@media screen and (max-width: 600px) {
	h1
	{
		font-size: 24px;
		line-height: 24px;
	}
}
#layout .umbraco-forms-form input.text,
#layout .umbraco-forms-form textarea
{
	border: 0;
	width: 100%;
	box-sizing: border-box;
	max-width: initial !important;
}

#layout .umbraco-forms-form input.text
{
	line-height: 38px;
	height: 38px;
    padding: 0 10px;
}

#layout .umbraco-forms-form textarea
{
    padding: 10px;
    height: 68px;
}

#layout .umbraco-forms-form .umbraco-forms-label
{
	font-weight: normal;
	font-size: 16px;
}

#layout .umbraco-forms-form .umbraco-forms-field
{
	margin-bottom: 20px;
}

#layout .umbraco-forms-form fieldset
{
	margin-bottom: 4px;
	border: 0;
}

#layout .umbraco-forms-form .btn.primary
{
	cursor: pointer;
}

#layout .umbraco-forms-form .field-validation-error
{
	color: red;
}

#layout .umbraco-forms-caption
{
    margin: 0;
    font-size: 26px !important;
}

#layout .umbraco-forms-form .btn
{
    border: 0;
}

#layout .forms-submit-validation-error
{
    border: solid 1px red;
    background-color: #fffacc;
    padding: 10px 15px;
    color: red;
}

.umbraco-forms-submitmessage
{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 20px;
    margin: 10px 0;
    display: inline-block;
}

.icon {
  background-image: url('../images/icons1576768720.png');
}

.icon-arrow-down-black {
  background-position: -0px -0px;
  width: 18px;
  height: 15px;
}
.icon-arrow-up-red {
  background-position: -0px -15px;
  width: 18px;
  height: 15px;
}
.icon-arrow-right-black {
  background-position: -0px -30px;
  width: 13px;
  height: 16px;
}
.icon-mail-black {
  background-position: -0px -46px;
  width: 26px;
  height: 20px;
}
.icon-cross-white {
  background-position: -0px -66px;
  width: 20px;
  height: 20px;
}
.icon-cross-red {
  background-position: -0px -86px;
  width: 20px;
  height: 20px;
}
.icon-arrow-down-red {
  background-position: -0px -106px;
  width: 20px;
  height: 21px;
}
.icon-twitter-black {
  background-position: -0px -127px;
  width: 24px;
  height: 22px;
}
.icon-arrow-up-green {
  background-position: -0px -149px;
  width: 21px;
  height: 22px;
}
.icon-search-white {
  background-position: -0px -171px;
  width: 23px;
  height: 22px;
}
.icon-flag-fo {
  background-position: -0px -193px;
  width: 28px;
  height: 22px;
}
.icon-flag-en {
  background-position: -0px -215px;
  width: 28px;
  height: 22px;
}
.icon-arrow-right-lightblue {
  background-position: -0px -237px;
  width: 19px;
  height: 24px;
}
.icon-arrow2-right-white {
  background-position: -0px -261px;
  width: 18px;
  height: 24px;
}
.icon-arrow-right-blue {
  background-position: -0px -285px;
  width: 19px;
  height: 24px;
}
.icon-arrow-right-red {
  background-position: -0px -309px;
  width: 19px;
  height: 24px;
}
.icon-linkedin-black {
  background-position: -0px -333px;
  width: 24px;
  height: 25px;
}
.icon-facebook-black {
  background-position: -0px -358px;
  width: 24px;
  height: 25px;
}
.icon-instagram-black {
  background-position: -0px -383px;
  width: 24px;
  height: 25px;
}
.icon-menu-white {
  background-position: -0px -408px;
  width: 36px;
  height: 28px;
}
.icon-menu-black {
  background-position: -0px -436px;
  width: 36px;
  height: 28px;
}
.icon-download-red {
  background-position: -0px -464px;
  width: 27px;
  height: 31px;
}
.icon-download-blue {
  background-position: -0px -495px;
  width: 27px;
  height: 31px;
}
.icon-search-black {
  background-position: -0px -526px;
  width: 32px;
  height: 32px;
}
.icon-file-pdf-black {
  background-position: -0px -558px;
  width: 29px;
  height: 33px;
}
.icon-file-video-black {
  background-position: -0px -591px;
  width: 29px;
  height: 33px;
}
.icon-file-img-black {
  background-position: -0px -624px;
  width: 29px;
  height: 33px;
}
.icon-arrow-right-white {
  background-position: -0px -657px;
  width: 30px;
  height: 46px;
}
.icon-arrow-left-white {
  background-position: -0px -703px;
  width: 30px;
  height: 46px;
}

#layout
{
    min-height: 450px;
}

#layout::after
{
    content: " ";
    display: block;
    clear: both;
}

.section-inner, .section-inner-white
{
    margin: 0 auto;
    max-width: 1170px;
    padding: 0 10px;
    position: relative;
}

.section-inner-white
{
    background-color: #fff;
    margin-bottom: 20px;
    overflow: hidden;
}

.section-inner-white::after
{
    content: '';
    display: block;
    clear: both;
}

.section-content, .section-left
{
    margin: 20px;
    min-height: 400px;
}

.section-left
{
	display: none;
}

.recipe-type .section-left
{
	display: block;
}

.overlay-advs
{
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
}

.section-wide
{
	margin: 0 auto;
	max-width: 670px;
	padding: 0 10px;
}

.text-page .section-wide
{
	margin-bottom: 30px;
}

.list-page .section-wide
{
    margin-bottom: 30px;
}


@media screen and (min-width: 600px){
	.overlay-advs
	{
		bottom: 10px;
	}
}

@media screen and (min-width: 800px){
    .section-content
    {
		/* 675 / 1170 */
        width: 57.6923076923077%;
        margin: 0 0 0 30px;
        float: left;
    }

    .section-left
    {
		/* 368 / 1170 */
        width: 31.4529914529915%;
        float: left;
        margin: 0;
		display: block;
    }

    .overlay-advs
    {
        bottom: 40px;
    }

	.section-inner-margin
	{
		padding: 36px 100px;
	}
}

@media screen and (min-width:1200px){
	.section-wide
	{
		margin: 0 0 0 194px;
    }
}

@media screen and (min-width:1200px){
    .overlay-advs
    {
        bottom: 80px;
    }
}

@media screen and (min-width:1920px){
    .overlay-advs
    {
        bottom: 126px;
    }
}
html, body
{
	margin: 0;
	padding: 0;
	min-width: 320px;
}

body
{
	font-family: "proxima-nova",sans-serif;
	font-style: normal;
	font-size: 16px;
	color: #000000;
	background-color: #fff;
}

body:not(.is-front) #page
{
	background-color: #F4F6F8;
	padding-top: 60px;
}

#page::before
{
	content: '';
	display: block;
	background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%,rgba(0,0,0,0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 300px;
}

.is-front #page::before
{
	background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%,rgba(0,0,0,0) 100%);
	z-index: 2;
}


img { border: 0; max-width: 100%; }
img.full { display: block; width: 100%; }
p > img { height: auto !important; }
.ng-cloak { display: none; }

div.js-responsive-image
{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

.icon { display: inline-block; vertical-align: middle; }
.icon-center
{
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
a.over-link
{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
body:not(.search-type) table
{
	border-collapse: collapse;
	border-spacing: 0;
	background-color: #F4F6F8;
}

.textpage-page table
{
	max-width: 672px;
}

.widepage-page table
{
	max-width: 1024px;
}

body:not(.search-type) table td, body:not(.search-type) table th
{
	margin: 0;
	vertical-align: center;
	text-align: left;
	font-size: 14px;
	font-weight: normal;
	color: #303030;
	padding: 12px 8px 8px;
    border-bottom: solid 1px #e6e6e6;
}

body:not(.search-type) table td:first-child, body:not(.search-type) table th:first-child
{
	padding-left: 16px;
}

body:not(.search-type) table td:last-child, body:not(.search-type) table th:last-child
{
	padding-right: 16px;
}

body:not(.search-type) table tr:nth-child(odd) td
{
	background-color: #fff;
}

.legislation-status-past body:not(.search-type) table tr:nth-child(odd) td
{
	background-color: rgba(253, 253, 253,0.7);
}

body:not(.search-type) table th, body:not(.search-type) table tr:first-child td
{
	font-weight: bold;
	background-color: #99A7BA;
	font-size: 18px;
	border-bottom: 0;
}

body:not(.search-type) table tr:last-child td, body:not(.search-type) table tr:last-child th
{
	border-bottom: 0;
}

body:not(.search-type) table tr:nth-child(2) td
{
	padding-top: 20px;
}

body:not(.search-type) table p
{
	margin-bottom: 0;
	font-weight: inherit;
	color: inherit;
	font-size: inherit;
}

body:not(.search-type) table p:last-child
{
	margin-bottom: 0;
}
.video
{
	height: 100%;
	width: 100%;
	position: relative;
}

.video.loaded
{
	z-index: 100;
}

.video.ready
{
	cursor: pointer;
	height: 100%;
	width: 100%;
	background: url(/images/videoPlay.png) no-repeat center center;
	background-size: 12%;
	opacity: 0.8;
}

.video.ready:hover
{
	opacity: 1;
}

.video iframe
{
	width: 100%;
	height: 100%;
	display: block;
	background-color: #000;
	opacity: 0;
	transition: opacity .5s ease-in-out;
}

.video.loaded iframe
{
	opacity: 1;
}

.video video
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	min-width: 100%;
	min-height: 100%;
	opacity: 0;
	transition: opacity .2s ease-in-out;
}

.video video.video-playing
{
	opacity: 1;
}

@media screen and (min-width:800px){
	.video.ready
	{
		background-size: auto;
	}
}
.c-404-not-found {
  margin: 0 auto;
  max-width: 712px;
  margin-top: 400px;
  padding: 0 32px;

  position: relative;
  z-index: 4;

  @media screen and (max-width: 1200px){
    margin-top: 140px;
  }
}

.advs
{
    margin: 0 auto;
    max-width: 1170px;
    padding: 0 5px;
    overflow: hidden;
}

.advs > a
{
    width: 32.933%;
    float: left;
    background-color: #fff;
    display: block;
    line-height: 22px;
    font-size: 15px;
    padding: 9px 2px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
	margin-bottom: 5px;
}

.advs.advs4 > a
{
    width: 49.7%;
}

.advs.advs4 > a:nth-child(even)
{
    float: right;
}

.advs.advs4 > a:not(:nth-child(3n+1))
{
    margin-left: 0;
}

.investorfront-type .advs > a
{
	width: 49.7%;
}

.investorfront-type .advs .icon1,
body:not(.investorfront-type) .advs .icon2
{
	display: none !important;
}

.advs > a:not(:nth-child(3n+1))
{
    margin-left: 0.6%;
}

.advs .icon
{
    display: none;
}

.advs > a[href]:hover
{
	background-color: #EAEDF1;
}

@media screen and (min-width: 600px) {
	.advs
	{
		padding: 0 10px;
	}

	.advs .icon
	{
		left: auto;
		right: 5px;
		display: block;
	}

	.advs > a
	{
		line-height: 22px;
		font-size: 18px;
		width: 31.6239316239316%;
		padding: 9px 30px;
		margin-bottom: 30px;
        height: 62px;
        position: relative;
	}

    .advs > a > span
    {
        top: 50%;
        transform: translateY(-50%);
        position: relative;
        display: block;
        max-height: 44px;
        overflow: hidden;
    }

	.advs:not(.advs4) > a:not(:nth-child(3n+1))
	{
		margin-left: 2.5641025641026%;
	}

    .advs.advs4 > a
    {
        width: 23.125%;
    }

	.advs.advs4 > a:not(:nth-child(4n+1))
	{
		margin-left: 2.5%;
	}

	.investorfront-type .advs > a
	{
		width: 48.718%;
	}

	.investorfront-type .advs > a:not(:nth-child(3n+1))
	{
		margin-left: 0;
	}

	.investorfront-type .advs > a:nth-child(even)
	{
		margin-left: 2.5641%;
	}

	.investorfront-type .advs > a
	{
		font-size: 20px;
		line-height: 24px;
		padding-top: 12px;
		font-weight: 600;
		text-align: left;
	}

	.investorfront-type .advs > a::before
	{
		content:'';
		display: block;
		width: 45px;
		background-color: #002254;
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
	}
}
.advs-container
{
	margin: 0 auto;
	max-width: 1170px;
	padding: 0 5px;
}

.advs-container::after {
	clear: both;
	content: '';
	display: block;
}

.advs-container > div
{
	margin-bottom: 2px;
	background-color: #fff;
	box-sizing: border-box;
	position: relative;
}

.advs-container > div > .title::after
{
	content: '';
	display: block;
	border-bottom: solid 2px #000;
	width: 44px;
	margin: 2px auto 0;
}

@media screen and (max-width: 799px) {
	.advs-container > div > .content
	{
		display: none;
	}

	.advs-container > div > .title
	{
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		text-transform: uppercase;
		border: solid 10px #fff;
	}

	.advs-container > div > .link
	{
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.advs-container > div > .link .icon
	{
		display: none;
	}
}	

@media screen and (min-width: 800px) {
	.advs-container
	{
		padding: 0 10px;
	}

	.advs-container > div
	{
		float: left;
		width: 31.6239316239316%;
		margin-bottom: 30px;
		background-color: #DEDEDE;
		border: solid 10px #fff;
		min-height: 275px;
		padding: 29px 19px 10px;
	}
	
	.advs-container > div:not(:nth-child(3n+1))
	{
		margin-left: 2.5641025641026%;
	}
	
	.advs-container > div > .title
	{
		font-size: 20px;
		font-weight: 600;
		text-transform: uppercase;
	}
	
	.advs-container > div > .title::after
	{
		border-bottom: solid 4px #000;
		margin: 15px 0;
	}
	
	.advs-container .link
	{
		display: block;
		width: 45px;
		height: 45px;
		position: absolute;
		background-color: #002254;
		right: 0;
		bottom: 0;
	}

	.advs-container .link:hover
	{
		opacity: 0.8;
	}
}
.advs-txt
{
    margin: 0 auto;
    max-width: 1170px;
    padding: 0 5px;
}

.advs-txt::after
{
    clear: both;
    content: '';
    display: block;
}

.advs-txt > div
{
    position: relative;
    height: 55px;
	margin-bottom: 2px;
}

.advs-txt > div > div
{
    background-color: #fff;
    border: solid 10px #fff;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    transition: all .3s ease-in-out;
}

.advs-txt .title
{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 8px 0 3px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.advs-txt .line
{
    border-top: solid 2px #E44F4E;
    display: block;
    width: 52px;
    margin: 0 auto;
    transition: margin-bottom .2s ease-in-out, width .6s ease-in-out, width .6s ease-in-out;
}

.is-havsbrun .advs-txt .line
{
    border-top-color: #004A93;
}

.is-forka .advs-txt .line
{
    border-top-color: #009DD3;
}


.advs-txt .content
{
    display: none;
}

.advs-txt .text
{
    font-weight: 600;
    line-height: 19px;
    text-align: center;
	margin-bottom: 60px;
	min-height: 90px;
}

.advs-txt .ln
{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

@media screen and (max-width: 599px) {
	.advs-txt > div
	{
		height: auto;
	}

	.advs-txt > div > div
	{
		position: relative;
	}
}

@media screen and (min-width: 600px) {
	.advs-txt
	{
		padding: 0 10px;
	}

	.advs-txt > div
	{
		float: left;
		height: 100px;
		margin-bottom: 30px;
	}

	.advs-txt > div > div
	{
		min-height: 102px;
	}

	.advs-txt .title
	{
		margin: 23px 5px 14px;
	}

	.advs-txt .line
	{
		margin-bottom: 19px;
	}

	.advs-txt .content
	{
		display: block;
		overflow: hidden;
		max-height: 0;
		max-width: 194px;
		margin: 0 auto;
		transition: all 1s ease-in-out;
	}

	/* hover */

	.advs-txt > :hover > div
	{
		background-color: #EAEDF1;
	}

	.advs-txt > :hover .line
	{
		width: 180px;
		margin-bottom: 18px;
	}

	.advs-txt > :hover .content
	{
		max-height: 500px;
	}

	/* */

	.advs-txt1 > div
	{
		width: 40%;
		margin-left: 30%;
	}

	.advs-txt2 > div
	{
		width: 40%;
		margin-left: 8.75%;
	}

	.advs-txt2 > div:not(:nth-child(2n+1))
	{
		margin-left: 2.5%;
	}

	.advs-txt3 > div
	{
		width: 31.6239316239316%;
	}

	.advs-txt3 > div:not(:nth-child(3n+1))
	{
		margin-left: 2.5641025641026%;
	}

	.advs-txt4 > div
	{
		width: 23.125%;
	}

	.advs-txt4 > div:not(:nth-child(4n+1))
	{
		margin-left: 2.5%;
	}
}
#bgOverlay
{
	opacity: 0;
}

#bgOverlay.open
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	background-color: rgba(0,0,0,0.4);
	z-index: 99;
	transition: opacity .3s ease-in-out;
	opacity: 1;
}

body.stop-scrolling {
  height: 100% !important;
  overflow: hidden !important;
}
.boardOfDirectors
{
	margin-bottom: 38px;
}

.boardOfDirectors .item
{
	background-color: #fff;
	overflow: hidden;
	margin-bottom: 2px;
	position: relative;
}

.boardOfDirectors .image
{
	width: 200px;
	height: 200px;
	position: relative;
	background-color: #54585A;
	left: 50%;
    margin-left: -100px;
}

.boardOfDirectors .image > div
{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.boardOfDirectors .container
{
	box-sizing: border-box;
	padding: 10px 10px 35px;
	max-width: 730px;
	position: relative;
}

.boardOfDirectors .container > div
{
	overflow: hidden;
	max-height: 140px;
	transition: max-height .3s ease-in-out;
}

.boardOfDirectors .container > .fade
{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	height: 20px;
	background: linear-gradient(to top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); 
}

.boardOfDirectors .item.active .container > div
{
	max-height: 1500px;
}

.boardOfDirectors .name
{
	font-weight: 600;
	font-size: 20px;
}

.boardOfDirectors .title
{
	font-size: 20px;
}

.boardOfDirectors .more
{
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 14px;
	cursor: pointer;
}

.boardOfDirectors .item.active .more
{
	color: #E44F4E;
}

.is-havsbrun .boardOfDirectors .item.active .more
{
	color: #004A93;
}

.is-forka .boardOfDirectors .item.active .more
{
	color: #009DD3;
}

.boardOfDirectors .item.active .when-not-active,
.boardOfDirectors .item:not(.active) .when-active
{
	display: none;
}

.boardOfDirectors .item.active .more .icon
{
	margin-top: -2px 0 0 5px;
}

@media screen and (min-width: 600px) {
	.boardOfDirectors .image
	{
		float: left;
		left: auto;
		margin-left: 0;
	}

	.boardOfDirectors .container
	{
		float: left;
		width: calc(100% - 200px);
		padding: 30px 40px;
	}
}
.breadcrumb
{
	visibility: hidden;
	height: 60px;
	overflow: hidden;
}

@media screen and (min-width: 1170px) {
	.breadcrumb
	{
		list-style: none;
		margin: 0 0 30px 200px;
		padding: 0;
		height: 60px;
		visibility: visible;
	}

	.breadcrumb li
	{
		padding: 0 3px;
		margin: 23px 0;
		float: left;
		font-size: 12px;
		line-height: 14px;
		color: rgba(0,0,0,0.50);
		font-weight: bold;
	}

	.breadcrumb li a
	{
		color: inherit;
		display: block;
		font-weight: normal;
	}

	.breadcrumb li a:not(:hover)
	{
		text-decoration: none;
	}
}
.contacts
{
    margin-top: 25px;
}

.contacts ul
{
	list-style: none;
	margin: 0;
    padding: 0;
    overflow: hidden;
}

.contacts li
{
	margin: 0;
    padding: 0;
}

/**/
.contacts .departments
{
    margin-bottom: 20px;
}

.contacts .departments li
{
    background-color: #EAEDF1;
    line-height: 40px;
    padding: 0 22px;
    margin: 0 10px 10px 0;
    font-size: 16px;
    float: left;
    cursor: pointer;
    user-select: none;
}

.contacts .departments .active
{
    text-shadow: 1px 0 0 black;;
}

/**/
.contacts .items li
{
    margin-bottom: 10px;
    background-color: #fff;
    box-sizing: border-box;
    padding: 28px 30px;
	font-size: 16px;
	min-height: 207px;
	width: 100%;
}

.contacts span
{
    display: inline-block;
    min-width: 55px;
}

.contacts .name
{
    font-weight: bold;
}

.contacts .title
{
    border-bottom: solid 1px #E44F4E;
    padding-bottom: 11px;
    margin-bottom: 9px;
}

.is-havsbrun .contacts .title
{
    border-bottom-color: #004A93;
}

.is-forka .contacts .title
{
    border-bottom-color: #009DD3;
}

.contacts .email
{
    margin-top: 10px;   
}

@media screen and (min-width: 600px) {
	.contacts .items
	{
		margin-left: -30px;
	}

    .contacts .items li
    {
        width: calc(50% - 30px);
        float: left;
        margin: 0 0 30px 30px;
    }

    .contacts .items li:nth-child(2n+1)
    {
        clear: left;
    }
}

@media screen and (min-width: 900px) {
    .contacts .items li
    {
        width: calc(33% - 30px);
    }

    .contacts .items li:nth-child(2n+1)
    {
        clear: none;
    }

    .contacts .items li:nth-child(3n+1)
    {
        clear: left;
    }
}


@media screen and (min-width: 1170px) {
    .contacts .items li
    {
        width: calc(25% - 30px);
    }

    .contacts .items li:nth-child(3n+1)
    {
        clear: none;
    }

    .contacts .items li:nth-child(4n+1)
    {
        clear: left;
    }
}
.country-restriction
{
    margin-bottom: 30px;
}

.country-restriction form
{
    display: inline-block;
    margin-right: 20px;
}

.country-restriction select
{
    display: block;
    height: 38px;
    min-height: 38px;
    margin-bottom: 20px;
    font-size: 14px;
}

.country-restriction .text
{
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    color: #000;
}

.country-restriction .text li
{
    margin-bottom: 10px;
}

.country-restriction button
{
    cursor: pointer;
}
.events-archive.normal ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

.events-archive.normal li
{
	padding: 11px 0;
	margin: 0;
	line-height: 18px;
	border-bottom: solid 1px #D8D8D8;
	overflow: hidden;
	position: relative;
}

.events-archive.normal .head
{
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 3px;
	margin-bottom: 12px;
}

.events-archive.normal .date
{
	float: left;
	width: 120px;
}

.events-archive.normal .title
{
	float: left;
	width: calc(100% - 120px);
}

.events-archive.normal .title:hover
{
	text-decoration: underline;
}

.events-archive.normal .icon
{
	position: absolute;
	right: 0;
}

/* mini */

.events-archive.small h1, .events-archive.small .head, .events-archive.small .icon
{
	display: none;
}

.events-archive.small ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

.events-archive.small li
{
	margin: 0 0 15px 0;
	display: block;
    width: calc(100% - 30px);
}

.events-archive.small a
{
	text-decoration: none;
	display: block;
}

.events-archive.small a:hover
{
	opacity: 0.7;
}

.events-archive.small .title
{
    font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}

.events-archive.small .date {
	font-size: 12px;
	text-decoration: none;
}
footer
{
    background-color: #fff;
}

footer .logo
{
    display: block;
    background: url(/images/logo.svg) no-repeat center -28px;
    background-size: 140%;
    width: 120px;
	height: 65px;
	margin-bottom: 26px;
}

.is-havsbrun footer .logo
{
    background-image: url(/images/logo_havsbrun.svg);
    background-size: 118px;
    background-position: center top;
    height: 75px;
}

.is-forka footer .logo
{
    background-image: url(/images/logo_forka.svg);
    background-size: 118px;
    background-position: center top;
    height: 75px;
}

footer > div
{
    margin: 0 auto;
    max-width: 1170px;
    padding: 50px 20px;
    overflow: hidden;
}

footer .info :first-child p
{
	margin: 0;
}

footer .credits
{
	margin: 0 auto;
    max-width: 1170px;
	text-align: right;
	padding: 0 10px;
	font-size: 14px;
}

footer p
{
	font-size: 14px;
}

@media screen and (min-width: 800px) {

	footer .info > div
	{
		float: left;
		width: 19%;
		min-height: 200px;
		box-sizing: border-box;
	}
	
	footer .info > div:not(:first-child)
	{
		border-left: solid 1px #979797;
		padding-left: 8%;
	}
	
	footer .info > div:not(:last-child)
	{
		padding-right: 8%;
	}
	
	footer .info > div:nth-child(2)
	{
		width: 60%;
	}

}
.gallery
{
    margin-top: 25px;
}

.gallery ul
{
	list-style: none;
	margin: 0;
    padding: 0;
    overflow: hidden;
}

.gallery li
{
	margin: 0;
    padding: 0;
}

/**/
.gallery .folders
{
    margin-bottom: 20px;
}

.gallery .folders li
{
    background-color: #EAEDF1;
    line-height: 40px;
    padding: 0 22px;
    margin: 0 10px 10px 0;
    font-size: 16px;
    float: left;
    cursor: pointer;
    user-select: none;
}

.gallery .folders .active
{
    text-shadow: 1px 0 0 black;;
}

/**/
.gallery .items li
{
    margin-bottom: 10px;
    box-sizing: border-box;
    padding: 0;
	font-size: 16px;
	min-height: 207px;
	width: 100%;
}

.gallery .items a
{
    text-decoration: none;
    display: block;
}

.gallery .items a:hover
{
    opacity: 0.8;
}

.gallery .image
{
    padding-top: 56.2162162162162%;
    background-color: #54585A;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery .title
{
    font-size: 16px;
    padding: 3px 30px 0 5px;
    position: relative;
}

.gallery .title .icon:first-child
{
    margin-left: -7px;
}

.gallery .title .icon:last-child
{
    left: auto;
    right: -15px;
}

@media screen and (min-width: 600px) {
	.gallery .items
	{
		margin-left: -30px;
	}

    .gallery .items li
    {
        width: calc(50% - 30px);
        float: left;
        margin: 0 0 30px 30px;
    }

    .gallery .items li:nth-child(2n+1)
    {
        clear: left;
    }
}

@media screen and (min-width: 900px) {
    .gallery .items li
    {
        width: calc(33% - 30px);
    }

    .gallery .items li:nth-child(2n+1)
    {
        clear: none;
    }

    .gallery .items li:nth-child(3n+1)
    {
        clear: left;
    }
}
header
{
    height: 60px;
    background-color: #fff;
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    transition: transform .2s ease-in-out, height 0.2s ease-in, background-color 0.2s ease-in-out;
}

.is-front header
{
    background-color: transparent;
	position: absolute;
	z-index: 10;
	width: 100%;
}

header.hide
{
    transform: translateY(-120px);
}

header > .inner
{
    margin: 0 auto;
    max-width: 1170px;
    padding: 0 18px;
    position: relative;
}

header .logo
{
    display: block;
    background: url(/images/logo.svg) no-repeat top center;
    background-size: 100%;
    width: 170px;
    height: 114px;
    position: absolute;
    z-index: 1;
}

.is-havsbrun header .logo
{
    background-image: url(/images/logo_havsbrun.svg);
    background-color: #fff;
    background-size: 120px;
    background-position: center 24px;
    height: 120px !important;
}

.is-forka header .logo
{
    background-image: url(/images/logo_forka.svg);
    background-color: #fff;
    background-size: 120px;
    background-position: center 44px;
    height: 120px !important;
}

header .search
{
    z-index: 10;
    position: absolute;
    right: 49px;
    top: 2px;
    width: 40px;
    height: 40px;
}

header .menu-button
{
    display: none;
}

@media screen and (max-width: 1199px) {

    header .menu-button
    {
        height: 43px;
        width: 50px;
        position: absolute;
        top: 0;
        right: 5px;
        z-index: 10;
        cursor: pointer;
        display: block;
    }

    header.menu-open .menu-button
    {
        background-color: #F4F6F8;
    }

	.is-front header .menu-button .icon-menu-black { display: none; }
    header .menu-button .when-active { display: none; }
    header.menu-open .menu-button .when-not-active { display: none; }
	header.menu-open .menu-button .when-active { display: inline-block; }
}


@media screen and (min-width: 1170px) {
    header.menu-open
    {
        z-index: 100;
    }

    .header-inner
    {
        height: 60px;
    }

    header .social
    {
        margin-top: 15px;
    }

	.is-front header .logo
	{
		height: 274px;
	}

    header .search
    {
        width: 60px;
        height: 60px;
        top: 0;
        right: 0;
    }
    
    header.search-open .menu
    {
        display: none;
    }
}
.list-pages > div
{
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.list-pages .image
{
	padding-top: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

.list-pages .text
{
    box-sizing: border-box;
    padding: 30px 30px 70px 30px;
    background-color: #fff;
}

.list-pages .black .text
{
	background-color: #000;
}

.list-pages .title
{
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.list-pages .title, .list-pages .description
{
	max-width: 520px;
}

.list-pages .black .title, .list-pages .black .title p, .list-pages .black .description, .list-pages .black .description p
{
	color: #fff;
}

.list-pages .btn
{
	position: absolute;
	bottom: 10px;
}


@media screen and (min-width: 800px) {
	.list-pages > div
	{
		height: 433px;
	}

	.list-pages .image
	{
		padding-top: 0;
		background-color: #eaeaea;
	}

	.list-pages .image, .list-pages .text
	{
		position: absolute;
		height: 100%;
		overflow: hidden;
	}

	/* col */
	.list-pages .img4 .image, .list-pages .txt4 .text, .list-pages .img4-txt4-img8 .image:nth-child(1)
	{
		width: 31.6239316239316%;
	}

	.list-pages .img6 .image, .list-pages .txt6 .text
	{
		width: 48.7179487179487%;
	}

	.list-pages .img8 .image, .list-pages .txt8 .text
	{
		width: 65.8119658119658%;
	}

	/* */
	.list-pages .img4-txt4-img8 .text,
	.list-pages .txt6-img6 .text,
	.list-pages .txt8-img4-img4 .text,
	.list-pages .img8-txt4 .image,
	.list-pages .img8-txt4 .image,
	.list-pages .img4-txt4-img8 .image
	{
		left: 0;
	}

	.list-pages .img8-txt4 .text,
	.list-pages .img8-txt4 .text,
	.list-pages .txt6-img6 .image,
	.list-pages .txt8-img4-img4 .image,
	.list-pages .img4-txt4-img8 .image:nth-child(2)
	{
		right: 0;
		left: auto;
	}

	/* */
	.list-pages .txt8-img4-img4 .image, .list-pages .img4-txt4-img8 .image:nth-child(1), .list-pages .img4-txt4-img8 .text
	{
		height: 47%;
	}

	.list-pages .txt8-img4-img4 .image:nth-child(2), .list-pages .img4-txt4-img8 .text
	{
		bottom: 0;
	}

	.list-pages .img4-txt4-img8 .description
	{
		display: none;
	}
}

@media screen and (max-width: 800px) {
	.list-pages p
	{
		font-size: 12px;
	}
}


@media screen and (max-width: 900px) {
	.list-pages p
	{
		font-size: 14px;
	}
}

@media screen and (max-width: 1000px) {
	.list-pages p
	{
		line-height: 1.4;
	}
}
.list-products
{
	margin-bottom: 40px;
}

.list-products > div
{
	padding: 20px;
	background-color: #fff;
	overflow: hidden;
	margin-bottom: 2px;
}

.list-products > div > div
{
	margin: 0 auto;
	max-width: 816px;
}

.list-products .image
{
	width: 215px;
	height: 121px;
	background-position: center center;
	background-repeat: no-repeat;
}

.list-products .content
{

}

.list-products .btn
{
	width: 160px;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: bold;
}

.list-products .title
{
	font-size: 20px;
	font-weight: 600;
	margin: 16px 0 7px;
}

.list-products .description
{
	font-size: 14px;
	
}

@media screen and (min-width:800px){
	.list-products .image
	{
		float: left;
		width: 215px;
		height: 121px;
	}

	.list-products .content
	{
		float: left;
		margin-left: 20px;
		width: 581px;
		width: calc(100% - 415px)
	}

	.list-products .btn
	{
		float: right;
		margin-top: 45px;
	}
}
.market-announcement:not(.ready)
{
	display: none !important;
}

.market-announcement .item
{
	display: block;
	text-decoration: none;
	margin-bottom: 15px;
	width: calc(100% - 30px);
}

.market-announcement .item:hover
{
	opacity: 0.7;
}

.market-announcement .item > span
{
	display: block;
}

.market-announcement .date
{
	font-size: 12px;
}

.market-announcement .title
{
	font-size: 16px;
	font-weight: 600;
}

.market-announcement .subscribe
{
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
}

.market-announcement .subscribe:hover
{
	opacity: 0.8;
}

.market-announcement .icon
{
	margin: -4px 0 0 -4px;
}

.market-announcement .subscribe-popup, .market-announcement .subscribe-popup-success
{
	display: none;
}

.subscribe-popup label
{
	font-size: 16px;
	margin-bottom: 10px;
	display: block;
}

.subscribe-popup input
{
	background-color: #EAEDF1;
	border: 0;
	padding: 0 10px;
	line-height: 38px;
	height: 38px;
	width: calc(100% - 20px);
	margin-bottom: 20px;
}

.subscribe-popup .btn, .subscribe-popup-success .btn
{
	border: 0;
	float: right;
	line-height: 40px;
	cursor: pointer;
}
.market-announcement-signup
{
    background-color: #fff;
    padding: 30px 40px 10px;
    overflow: hidden;
}

.market-announcement-signup .subscribe-popup
{
    display: block !important;
}
.menu, .menu ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu li
{
	margin: 0;
	padding: 0;
}

.menu a
{
	display: block;
	text-decoration: none;
}

/* main mobile */
@media screen and (max-width: 1199px) {
	.menu.main
	{
		position: absolute;
		left: 276px;
		top: 43px;
		left: 0;
		right: 0;
		width: 100%;
		background-color: #F4F6F8;
		z-index: 101;
		max-height: 0;
		overflow: hidden;
	}

	header.menu-open
	{
		position: absolute;
	}

	header.menu-open .menu.main
	{
		transition: max-height 0.25s ease-in;
		max-height: 5000px;
		padding: 20px 0 30px;
	}

	.menu.main li
	{
		border-top: solid 1px #D4D4D4;
	}

	.menu.main > li
	{
		color: #000;
		background-color: #F4F6F8;
		margin: 0 20px;
	}

	.menu.main > li:first-child
	{
		border-top: none;
	}

	.menu.main .selected, .menu.main .pselected, .menu.main .open, .menu.main ul
	{
		background-color: #F4F6F8;
	}

	.menu.main > .close
	{
		background-color: #F4F6F8;
	}

	.menu.main li li > a { padding-left: calc(17px * 1); }
	.menu.main li li li > a { padding-left: calc(17px * 2); }
	.menu.main li li li li > a { padding-left: calc(17px * 3); }

	.menu.main a
	{
		text-decoration: inherit;
		display: block;
		line-height: 20px;
		padding: 14px 0;
		color: #000;
		font-size: 18px;
		position: relative;
		box-sizing: border-box;
	}

	.menu.main .hasChildren > a
	{
		width: calc(100% - 50px)
	}

	.menu.main .hasChildren > a::before
	{
		display: block;
		width: 49px;
		content: '';
		position: absolute;
		right: -49px;
		top: 11px;
		bottom: 11px;
		border-left: solid 1px #D4D4D4;
	}

	.menu.main .hasChildren > a::after
	{
		display: block;
		width: 49px;
		content: '';
		position: absolute;
		right: -49px;
		top: 11px;
		bottom: 11px;
		background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAZCAYAAADuWXTMAAAABGdBTUEAALGPC/xhBQAAAFNJREFUOBFjYIAAcyC1E4j5oXyiKR6gyldA/B+ITwAxyQb4ATX9HDVgNAyong6YgSYSC24CFYKSsg0QywCxIBATDchOwqMa8YTxSAgciktPssptAOFtRywsff8TAAAAAElFTkSuQmCC) no-repeat center center;
		background-size: 25%;
	}

	.menu.main ul a::after
	{
		transform: rotate(0deg);
	}

	.menu.main .selected > a::after,
	.menu.main .pselected > a::after,
	.menu.main .open > a::after
	{
		transform: rotate(90deg);
	}

	.menu.main .close a::after
	{
		transform: rotate(0deg);
	}

	.menu.main ul .close a::after
	{
		transform: rotate(0deg);
	}

	.menu.main ul
	{
		max-height: 0;
		overflow: hidden;
	}

	.menu.main .selected > ul, .menu.main .pselected > ul, .menu.main .open > ul
	{
		transition: max-height 0.25s ease-in;
		max-height: 5000px;
	}

	.menu.main .close > ul
	{
		transition: none;
		max-height: 0;
	}

	.menu.main .selected > a, .menu.main .pselected > a
	{
		font-weight: bold;
	}

	.menu.main .splitmenu
	{
		display: none;
	}
}

/* main desktop */
@media screen and (min-width: 1200px) {    
	.menu.main
	{
		float: right;
		margin-right: 42px;
	}

	.menu.main > li
	{
		float: left;
		color: #fff;
		padding: 18px 0;
    }
    
    .is-havsbrun .menu.main > li, .is-forka .menu.main > li
    {
        max-width: 200px;
    }

	.menu.main > li.hover
	{
		background-color: #F4F6F8;
	}

	.menu.main:not(.hover) > li.pselected, .menu.main:not(.hover) > li.selected
	{
		background-color: #e4e6e8;
		color: #002254;
	}

	.menu.main > li > a
	{
		height: 24px;
		display: block;
		padding: 0 40px 0 20px;
		font-size: 14px;
		font-weight: 600;
		text-transform: uppercase;
		line-height: 16px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-content: center;
		flex-direction: column;
		background-repeat: no-repeat;
		background-position: right 13px center;
	}

	.is-front .menu.main > li:not(.selected) > a,
	.is-front .menu.main.hover > li > a
	{
		color: #fff;
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAKCAMAAACKYC6uAAAACVBMVEUAAAD///////9zeKVjAAAAAnRSTlMAgJsrThgAAAAuSURBVHjaZYqxDQAwDMKA/4/uUCOGZMG2ItniPjuhwE4L2DlwXvEVfAVfwVfqDykKAHFR5BOLAAAAAElFTkSuQmCC);
	}

	.menu.main > li > a, .is-front .menu.main > li.hover > a
	{
		color: #002254;
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAKCAMAAACKYC6uAAAACVBMVEUAAAAAJFYAIlSS8OO3AAAAAnRSTlMAgJsrThgAAAAuSURBVHjaZYqxDQAwDMKA/4/uUCOGZMG2ItniPjuhwE4L2DlwXvEVfAVfwVfqDykKAHFR5BOLAAAAAElFTkSuQmCC);
    }
    
    .is-forka .menu.main > li > a, .is-forka.is-front .menu.main > li.hover > a
    {
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAKCAYAAAC9vt6cAAAABGdBTUEAALGPC/xhBQAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAEKADAAQAAAABAAAACgAAAAA9zdzrAAAAeElEQVQoFY2Piw2AMAhEqfs4lYO0DtKpXMgcNLXIR0lKAty9AhGiX40fFz/Soi/DWIftpGNvKQJmoqnfXuKabqLNbC2c7cBuEmgEAEog+PrgAUQQJsybUantNMCHCEKyMqNlAejac9A1ZjR9ACYa4pohywMQAYW6G0KuOHiMPACmAAAAAElFTkSuQmCC');
    }

	.menu.main li:first-child > a
	{
		border-left: 0;
	}
	
	.menu.main > li.hover > a, .menu.main > li.hover + li > a
	{
		border-color: transparent;
	}

	.menu.main ul
	{
		display: none;
	}

	.menu.main .splitmenu
	{
		display: block;
		position: absolute;
		z-index: 100;
		left: 249px;
		right: 18px;
		top: 60px;
		background-color: #F4F6F8;
		max-height: 0;
		overflow: hidden;
		padding: 0 32px;
	}
	
	.menu.main > li.hover .splitmenu
	{
		transition: max-height 0.25s ease-in;
		max-height: 2000px;
		box-shadow: 0 3px 4px #b1b1b1;
	}

	.is-front .menu.main > li.hover .splitmenu
	{
		box-shadow: none;
	}
	
	.menu.main .splitmenu > ul
	{
		margin: 50px 0;
		display: block;
		width: 22.8571428571429%;
		float: left;
		margin-left: 2.8571428571429%;
		box-sizing: border-box;
	}
	
	.menu.main .splitmenu > ul:nth-child(4n+1)
	{
		clear: left;
		margin-left: 0;
	}
	
	.menu.main .lvl2 > li > a
	{
		padding: 9px 0;
		color: #002254;
		font-size: 14px;
		font-weight: 600;
		line-height: 16px;
		border-top: solid 1px #D4D4D4;
	}

	.menu.main .lvl2 > li:first-child > a
	{
		border-top: 0;
	}
	
	.menu.main .lvl2 > li > a:hover
	{
		text-decoration: underline;
	}
	
	.menu.main .lvl2 > .pselected > a, .menu.main .lvl2 > .selected > a
	{
		font-weight: bold;
	}

	.menu.main .lvl3
	{
		display: block;
		margin-left: 7px;
	}

	.menu.main .lvl3 li a
	{
		color: #002254;
		font-size: 14px;
		font-weight: normal;
		border-top: solid 1px #D4D4D4;
		line-break: 16px;
		padding: 9px 0;
	}

	.menu.main .lvl3 li a:hover
	{
		text-decoration: underline;
	}
}

/* sub */
.menu.sub
{
	border-bottom: solid 1px #99A7BA;
}

.menu.sub li
{
	border-top: solid 1px #99A7BA;
}

.menu.sub .lvl2 > .selected, .menu.sub .lvl2 > .pselected
{
	background-color: #EAEDF1;
}

.menu.sub a
{
	padding: 6px 28px;
	line-height: 18px;
	font-size: 15px;
	position: relative;
}

.menu.sub .hasChildren > a::after
{
	content: '';
	display: block;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAKCAQAAADSxYyGAAAAP0lEQVQI12NgEGPYz6DHAAdxDP8Z3jAYIgQyGf4xvGMwQQikAgU+MJgjBBIZ/jJ8ZLDCykVRjGJULKpFKM4AAIKBFjIY3NzGAAAAAElFTkSuQmCC) no-repeat center center;
	height: 10px;
	width: 7px;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -5px;
}

.menu.sub .lvl2 > .selected > a, .menu.sub .lvl2 > .pselected > a
{
	background-color: #99A7BA;
	font-weight: bold;
}

.menu.sub .lvl3 > .selected > a
{
	font-weight: bold;
}

.menu.sub .selected.hasChildren > a::after, .menu.sub .pselected.hasChildren > a::after
{
	transform: rotate(90deg);
}

.menu.sub .lvl3 a { padding-left: 38px; }
.menu.sub .lvl4 a { padding-left: 58px; }
.menu.sub .lvl5 a { padding-left: 78px; }
.menu.sub .lvl6 a { padding-left: 98px; }

.menu.sub ul ul
{
	display: none;
}

.menu.sub .selected > ul, .menu.sub .pselected > ul
{
	display: block;
}


/* bottom */
.menu.bottom
{
	margin: 10px 0 40px;
	overflow: hidden;
}

.menu.bottom li
{
	float: left;
}

.menu.bottom a
{
	display: block;
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 18px;
}

.menu.bottom :first-child a
{
	padding-left: 0;
}

.menu.bottom ul
{
	display: none;
}
.newsArchive
{
    overflow: hidden;
}

.newsArchive h1
{
    margin: 0 auto 21px;
    max-width: 670px;
    display: block;
}

.newsArchive .item
{
    margin-bottom: 80px;
}

.newsArchive .title
{
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
}

.newsArchive a
{
    text-decoration: none;
}

.newsArchive .date
{
    font-size: 14px;
    color: rgba(0, 34, 84, 0.5);
    margin: 30px 0 15px;
}

.newsArchive .text
{
    font-size: 16px;
    line-height: 20p;
    color: #000000;
}

.newsArchive .readMore
{
    margin-top: 55px;
    background-color: #E44F4E;
    font-size: 18px;
    color: #fff;
    padding: 11px 44px;
    display: inline-block;
    font-weight: bold;
}

@media screen and (min-width: 600px){


    .newsArchive .items
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        height: 50000px;
        -ms-flex-line-pack: justify;
        align-content: space-between;
    }
    
    .newsArchive .items::before,
    .newsArchive .items::after
    {
        content: "";
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 0;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    
    .newsArchive .item
    {
        position: relative;
        width: 47.5%;
    }
    
    .newsArchive .item:nth-child(2n+1)
    {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .newsArchive .item:nth-child(2n+2)
    {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

}
.pagination
{
	list-style: none;
	padding: 30px 0;
	margin: 0;
	overflow: hidden;
	text-align: center;
}

.pagination li
{
    border: solid 1px #DEDEDE;
	border-right: 0;
	background-color: #fff;
	display: inline-block;
	margin: 0 -3px;
}

.pagination li:last-child
{
    border-right: solid 1px #DEDEDE;
}

.pagination a
{
	text-decoration: inherit;
	color: inherit;
	padding: 0 13px;
	line-height: 32px;
	font-size: 14px;
}

.pagination a:hover
{
    text-decoration: underline;
}

.pagination .selected
{
	background-color: #DEDEDE;
}
#popup
{
    opacity: 0;
    position: absolute;
}

#popup.open
{
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    z-index: 100;
    transition: opacity .15s ease-in-out;
    opacity: 1;
}

#popup > .container
{
    display: none;
}

#popup.open > .container
{
    display: block;
    margin: 10% auto 0;
    max-width: 470px;
    background-color: #fff;
    padding: 30px 20px 20px;
    position: relative;
}

#popup.open > .container > .close
{
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    background-color: #E44F4E;
    width: 40px;
    height: 40px;
}

.is-havsbrun #popup.open > .container > .close
{
    background-color: #004A93;
}

.is-forka #popup.open > .container > .close
{
    background-color: #009DD3;
}

#popup.open > .container > .close:hover
{
    opacity: 0.8;
}

#popup.open > .container > .close .icon
{
    margin-top: -3px;
}

#popup.open > .container > .content
{
    min-height: 300px;
}

@media screen and (min-width: 600px) {
    #popup.open > .container
    {
        padding: 40px;
    }
}

@media screen and (min-width: 910px) {
    #popup.open > .container
    {
        padding: 60px 115px;
    }
}
.resp-image
{
	position: relative;
	margin-bottom: 30px;
}

.resp-image img, .resp-image video
{
	position: absolute;
	top: 0;
}


.resp-image img
{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}
.search
{
	width: 40px;
	height: 40px;
	color: #000;
	font-size: 18px;
	position: relative;
}

.search.open
{
	transition: width .2s ease-in-out;
	width: 207px;
	border-left: solid #fff 10px;
	background-color: #fff;
}

.search .button
{
	cursor: pointer;
	float: right;
    width: 40px;
    height: 40px;
	position: relative;
}

.search.open .button
{
	background-color: #002254;
}

.search input
{
	display: none;
}

.search.open input
{
	display: block;
	font-size: inherit;
	color: inherit;
	display: block;
	height: 100%;
	float: left;
	padding: 0;
	margin: 0;
	border: 0;
	background-color: transparent;
	width: 70%;
	padding: 0;
	width: calc(100% - 60px);
	outline: none;
	-webkit-appearance: none;
	color: #4A4A4A;
	font-size: 18px;
}

.search .icon-search-black { display: none; }

@media screen and (min-width: 400px) {
	.search.open
	{
		width: 250px;
	}
}

@media screen and (min-width: 600px) {
	.search.open
	{
		width: 378px;
		border-left: solid #fff 20px;
	}

	body:not(.is-front) .search.open
	{
		border-color: #f7f7f7;
	}
	
	body:not(.is-front) .search.open input
	{
		background-color: #f7f7f7;
	}
}

@media screen and (min-width: 1200px) {
	.search.open
	{
		width: 745px;
	}

	.search .button
	{
		background-color: #fff;
		width: 60px;
		height: 60px;
	}

	.search.open .button
	{
		background-color: #EAEDF1;
	}

	.search .icon-search-black { display: block; }
	.search .icon-search-white { display: none; }
}
.section
{
    float: right;
	margin: 8px 67px 0 10px;
    padding: 0;
    list-style: none;
}

.section li
{
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    overflow: hidden;
	color: #385A88;
	float: left;
}

.section li:hover
{
    transform: scale(1.1);
}

.section li a
{
    display: block;
    text-transform: uppercase;
	text-decoration: none;
	padding: 3px;
	display: block;
	position: relative;
}

.section li:not(.selected) a::after
{
	content: '';
	display: block;
	position: absolute;
	left: 7px;
	right: 7px;
	bottom: 7px;
	top: 7px;
	background-color: rgba(255,255,255,0.6);
}

@media screen and (min-width: 1200px) {
	.section
	{
		margin: 15px 19px 0 10px;
	}
}
.share-info:not(.ready)
{
	display: none !important;
}

.share-info.box .name
{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 2px;
}

.share-info.box .last
{
	font-size: 24px;
	font-weight: 600;
}

.share-info.box .change
{
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
}

.share-info.box .date
{
	font-size: 12px;
}

.share-info.box .icon
{
	margin-top: -3px;
}



/* bottom-bar */
.share-info.bottom-bar
{
	display: none;
}

@media screen and (min-width: 700px) {
	.share-info.bottom-bar
	{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: rgba(0,0,0,0.7);
		z-index: 1;
		color: #fff;
		padding: 16px 10px;
		font-size: 17px;
	}
	
	.share-info.bottom-bar .container
	{
		margin: 0 auto;
		max-width: 1170px;
	}
	
	.share-info.bottom-bar .container > div:first-child
	{
		float: left;
		width: 200px;
		text-transform: uppercase;
	}
	
	.share-info.bottom-bar .container > div.info
	{
		float: left;
		width: calc(100% - 400px);
		text-align: center;
	}
	
	.share-info.bottom-bar .container > div:last-child
	{
		float: right;
		width: 200px;
		text-align: right;
	}

	.share-info.bottom-bar .date
	{
		padding-right: 8px;
	}
	
	.share-info.bottom-bar a
	{
		text-decoration: none;
	}
	
	.share-info.bottom-bar a:hover
	{
		opacity: 0.8;
	}
	
	.share-info.bottom-bar .icon
	{
		margin: -2px 0 0 2px;
	}
}
.slideshow 
{
	position: relative;
	overflow: hidden;
	height: 100%;
}

.slideshow ul
{
	list-style: none;
	padding: 0;
	margin: 0;
	height: 100%;
}

.slideshow li
{
	padding: 0;
	margin: 0;
}

.slideshow .slides li
{
	margin: 0 auto;
	position: absolute;
	visibility: hidden;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.slideshow .slides .image
{
	margin: 0 auto;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

.slideshow .slides li.current
{
	visibility: visible;
	z-index: 1;
}

.video-playing-iframe .slideshow li.current
{
	z-index: 2;
}

.slideshow li.initShow > div > * 
{
	visibility: visible;
}

.slideshow .middle
{
	max-width: 1070px;
	padding: 0 10px;
	margin: 0 auto;
}


/* progress */
.slideshow .progress {
	display: none;
	position: relative;
    z-index: 1;
    margin-top: -45px;
}

.slideshow.multiple .progress {
    display: block;
}

.slideshow .progress li {
	margin: 0;
	padding: 0;
	background-color: #fff;
	width: 10px;
	/*border: solid 1px #000000;*/
	height: 10px;
	float: left;
	cursor: pointer;
	margin-right: 5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.slideshow .progress li.selected
{
	background-color: #FDCF41;
	border-color: #fff;
}

/* nav */
.slideshow .nav {
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	cursor: pointer;
	z-index: 1;
	display: none;
	height: 100%;
}

.slideshow.multiple .nav {
    display: block;
}

.slideshow .navRight {
	left: auto;
	right: 0;
	background-position: -201px center;
}

.slideshow .nav:hover {
	-webkit-transition: background-color 0.3s ease-in;
    -moz-transition: background-color 0.3s ease-in;
    -o-transition: background-color 0.3s ease-in;
    transition: background-color 0.3s ease-in;
    background-color: rgba(255,255,255,0.2);
}


/* video */

.slideshow .video
{
	position: absolute;
	top: 0;
	left: 0;
}

.slideshow .video.iframe
{
    background-position: center 45%;
	height: 100%;
}

/* texts */ 

.slideshow a
{
	text-decoration: none;
}

.slideshow .box
{
	position: absolute;
	bottom: 156px;
    font-size: 30px;
	line-height: 32px;
    font-weight: bold;
    display: block;
    color: #FFDDE2;
	max-width: 1000px;
	text-shadow: 1px 1px 1px rgba(0,0,0,.5);
}

.slideshow .description
{
	font-size: 16px;
	line-height: 16px;
	font-weight: normal;
	font-style: italic;
}

.slideshow .goDown
{
	position: absolute;
	z-index: 1;
	left: 50%;
	bottom: 30px;
	cursor: pointer;
	padding: 20px;
	animation: bounce 2s 2s 3;
}

@media screen and (min-width: 600px) {
	.slideshow .nav
	{
		width: 120px;
	}

	.slideshow .box
	{
		font-size: 60px;
		line-height: 75px;
	}

	.slideshow .description
	{
		font-size: 20px;
		line-height: 20px;
	}
}

@media screen and (min-width: 600px) {
    .blockSlideshow .js-window-height
    {
        min-height: 760px;
    }
}

@media screen and (min-width: 1600px) {
	.slideshow .box
	{
		font-size: 90px;
		line-height: 100px;
	}
}

@media screen and (min-width: 1920px) {
    .blockSlideshow .js-window-height
    {
        min-height: 900px;
    }
}











.small-images
{
	margin-top: 30px;
	overflow: hidden;
}

.small-images img
{
	display: block;
	width: 100%;
}

@media screen and (max-width: 599px) {
	.small-images img:not(:first-child)
	{
		display: none;
	}
}

@media screen and (min-width: 600px) {
	.small-images img
	{
		width: 31.624%;
		float: left;
		margin-bottom: 2.564%;
	}

	.small-images img:not(:nth-child(3n+1))
	{
		margin-left: 2.564%;
	}
}
.webCast td[data-webcastid]
{
    text-decoration: underline;
    cursor: pointer;
}