<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.mobile-nav-toggle {
display:none}

.mobile-nav-menu {
display:none}

details &gt; summary {
list-style: none;
box-sizing:border-box;
cursor: pointer;
font-size: 16px;
font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
font-weight: normal;
font-style: normal;
line-height: 1.5;
display: inline-block;

}

details[open] &gt; summary::after {
content: "âœ•";
display:inline-block;
float:right;
color: indianred;
background:none;
border-radius:5px;
padding-right: 7px;
padding-left: 7px;
padding-top: 1.7px;
}

details[open] &gt; summary:hover {
color: indianred;
}
details[open] &gt; summary {
width:100%;
padding: 10px;
background: honeydew;
border-radius:5px 5px 0px 0px;
border-bottom: 1px solid seagreen;
}

details:hover{
   background:honeydew;
   cursor: pointer;
}

details[open] {
   display:block;
   cursor:default;
   padding: 0px;
   border: 1px solid seagreen;
}

details[open]:hover {

background-color: rgba(255,255,255,0.8);
}

details &gt; summary::-webkit-details-marker {
  display: none;
}

details p {
   padding: 15px;
}

input::-webkit-calendar-picker-indicator {
  display: none !important;
}

.tumme
{width:100px;
    height:100px;}

    .thumbs { 
        padding: 8px; 
        overflow: auto; 
        display:flex; 
        flex-wrap: wrap;
        gap: 8px;
		border-top: 1px solid gainsboro;
    }
        
    
    .thumbs img {
       border: 2px solid transparent;
       border-radius: 6px;
   }
  
     
       .thumbs img:hover{
           border:2px solid midnightblue;
       }
		 
		 .thumbs img:active{
			
			 position: relative;
			 top: 2px;
			 left: 2px;
			 margin-bottom:0px;
			 border: 2px solid transparent;
		 }
       
.sidethumbs
{width:105px;
   background:ghostwhite;}

.description  
{background: midnightblue;
    font-size: 18px;
    font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
    color: aliceblue;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
    padding:10px;} 
    
a .description:hover
    {background: #2A2ABB;
        font-size: 18px;
        font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
        color: white;
        font-weight: normal;
        font-style: normal;
        line-height: 1.5;
        padding:10px;}        
       
/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 30px;
	margin-right: 10px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.gron {
	color: seagreen;
	font-weight: 800;
}


#searchband{
    background:transparent;
    text-align:middle;
    border:none;
    text-align: center;
    font-size:20px;
    font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
    margin:0px;
    padding:7px;
    width:50%;
}

::placeholder
{color:rgb(60, 71, 86);}

input:focus
{
    outline:none;
}

summary:focus
{
    outline:none;
}

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

input::-webkit-calendar-picker-indicator {
  display: none;
}

#searchband:focus{
    background:ghostwhite;
}


.tabbed{
  width : 100%;
}

.tabbed &gt; input{
  display : none;
}

.tabbed &gt; section &gt; h1{
  float       : left;
  box-sizing  : border-box;
  margin      : 0;
  padding     : 2.5px 0.5em 0;
  overflow    : hidden;
  font-size   : 1.2em;
  font-weight : normal;
}

.tabbed &gt; input:first-child + section &gt; h1{
  padding-left : 0em;
}

.tabbed &gt; section &gt; h1 &gt; label{
  display                 : block;
  padding                 : 0.25em 0.75em;
  border                  : 0px solid #dfdfe6;
  border-bottom           : none;
  border-top-left-radius  : 4px;
  border-top-right-radius : 4px;
  background              : #dfdfe6;;
  cursor                  : pointer;
     -moz-user-select     : none;
      -ms-user-select     : none;
  -webkit-user-select     : none; 
  text-transform          : none;   
}

.tabbed &gt; section &gt; h1 &gt; label:hover{
    background:mintcream;
    color:seagreen;

   
}

.tabbed &gt; section &gt; div{
  position      : relative;
  z-index       : 1;
  float         : right;
  box-sizing    : border-box;
  width         : 100%;
  margin        : 2.5em 0 0 -100%;
  background: linear-gradient(to bottom, white 0%,ghostwhite 100%);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 14px 28px rgba(23, 23, 89, 0.25), 0 10px 10px rgba(23, 23, 89,0.22);
  border-radius: 0px 10px 10px 10px;
  
}

.tabbed &gt; input:checked + section &gt; h1{
  position : relative;
  z-index  : 2;
}

.tabbed &gt; input:checked + section &gt; h1 &gt; label{
    background:white;

}

.tabbed &gt; input:not(:checked) + section &gt; div{
  display : none!important;
}
/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(69, 100, 125);
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 23px;
	width: 23px;
	left: 4px;
	bottom: 4px;
	background-color: ghostwhite;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: seagreen;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}


.select-css {
	display: inline-block;
	font-size: 16px;
	color: black;
	line-height: 1.3;
	max-width: 100%;
	box-sizing: border-box;
	padding: 10px;
	border: 1px solid mediumseagreen;
	border-radius: 5px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: mintcream;
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
	width:180px;
   margin-left:12px;
}
.select-css::-ms-expand {
	display: none;

}
.select-css:hover {
	border-color: seagreen;
	background-color: rgb(171, 233, 199);
}

.select-css option {
	font-weight: normal;
}

.select {
	-webkit-appearance: none;
}

.goldbox {
	padding: 5px 20px 5px 20px;
	background: honeydew;
	border-radius: 8px 8px 8px 8px;
}
.bildbox {
	display: block;
	position: relative;
	overflow: hidden;
	object-fit: cover;
	flex:50%;
}

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

.bildbox-r {
	display: block;
	position: relative;
	overflow: hidden;
	object-fit: cover;
	flex:50%;
}

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

img {
	display: block;
   height:auto;
}


.ikon {
	height: 32px;
	vertical-align: middle;
	margin-right: 10px;
	display: inline-block;
}


.footer {
	margin-top: 300px;
	background: rgba(0,0,50,0.45);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
   display:flex;
   flex-direction:row;
   
}

.footer p{
   color:ghostwhite;
}


.bokaknapp {
	background-color: seagreen;
	border-radius: 5px;
	display: inline-block;
	color: white !important;
	padding: 12px 24px;
	text-decoration: none;
	font-size: 20px;
	font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	line-height: 150%;
	-webkit-appearance: none;
	border: none;
	width: auto;
}


.bokaknapp:hover {
	background-color: midnightblue;
	color: mintcream !important;
}
.bokaknapp:active {
	position: relative;
	top: 1px;
}
.papper {
	width: 80%;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	background-color: rgba(255,255,255,0.85);
	border-collapse: separate;
	display: block;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.52);
	border-spacing: 0;
	margin: 0 auto;
	line-height: 0;
   	border-radius: 10px;
   	overflow: hidden;
}

.papper:has(.tabbed){
   overflow: visible ;
}

.smal {
    width: 800px;
}
 
.kortknapp
{
border-left: 10px solid;
border-radius: 0px;
padding-top:4px;
padding-bottom:4px;
padding-left: 10px;
padding-right: 10px;
}
 

a .kortknapp:hover {
	background-color: honeydew;
}

 
body:after {
   background-size: cover!important;
	content: "";
	position: fixed; /* stretch a fixed position to the whole screen */
	top:0;
   height: 100vh;
	left:0;
	right: 0;
	z-index: -1; /* needed to keep in the background */
	
}
 


	
.frigg {
	padding: 30px;
	line-height: 1.5em;
    flex:1;
}


.gallery
{
    padding:0px;
    flex:1;
}

#panel {
    max-height:600px; 
    overflow:hidden
}

.largeImage {
    width:100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

	
.svidur {
	padding: 20px;
}

.balder {
   padding: 15px;
   background: seagreen;
   display:flex;
   gap:8px;
   justify-content: center;
   flex-wrap:wrap;
}

.balder &gt; h4 {
      white-space: nowrap;
}
	
.band {
	-webkit-backdrop-filter: blur(10px);
	-o-filter: blur(10px);
	background-color: rgba(255,255,255,0.5);
	width: 100%;
    box-sizing: border-box;
    display:flex;
    justify-content:space-around;
	border-top: 1px solid snow;
    
}

.band &gt; * {
    white-space: nowrap;
}
 
h1, h2, h3, h4, h5, h6, p, a, ul, ol, li {
	margin: 0;
	padding: 0;
}

h1 {
	margin: 10;
	padding: 0;
}

.frigg {
	line-height: 150%;
	box-sizing: border-box;
}

p {
	margin: 10px 0;
	font-family: Helvetica, 'Roboto', Tahoma, Arial, Sans-Serif;
	line-height: 1.5;
}

h1 a,
h2 a,
h3 a,
a:link {
	text-decoration: none;
	color: #313F9B;
}


a:hover{
	color: seagreen;
}

p a{
	text-decoration: underline !important;
	text-underline-offset: 0.25em;
	color: #313F9B;}

p a:hover {
		text-decoration-color: seagreen !important;
}


h1 {
	font-size: 28px;
	font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
	font-weight: bold;
	font-style: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 150%;
}
 h2 {
	margin: 5px 0;
	font-size: 20px;
	font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	line-height: 150%;
}
 h2 a:hover {
	color: seagreen;
}
h4 {
    margin:10px 0;
	font-size: 16px;
	font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	line-height: 1.5;
}
h5 {
	color: ghostwhite;
	font-size: 48px;
	font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
	font-weight: 800;
	line-height: 150%;
	text-shadow: 3px 3px 6px rgb(0, 0, 0);
    text-shadow: 3px 3px 11px rgba(0, 0, 0, 0.73); }
}
header, nav, #hmenu-bg, .checkbox:before, .radiobutton:before {
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul {
	list-style-type: none;
}

ol {
	list-style-position: inside;
}

html, body {
	height: 100%;
	overflow: hidden;
}
  

body {
	padding: 0;
	margin: 0;
	color: black;
	background: lightsteelblue;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.header {
	margin: 0 auto;
    margin-bottom:250px;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	position: relative;
	z-index: auto !important;
	box-shadow: 0 14px 28px rgba(23, 23, 89, 0.25);

}

.invert {
	background: none;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

.invert&gt;nav a{
	color: black !important;
}

.invert&gt;a&gt;.kivi {
	filter: invert();
}


.kivi {
	width: 296px;
	margin: 18px;
	margin-right: 0px;
	margin-bottom: 0px;
	display: inline-block;
	z-index: 100;
}

.nav {
	padding: 24px;
	padding-left: 0px;
	float: right;
	z-index: 90;
	text-align: right;
	display: inline-block;
}


.nav p {
    margin:0px;
}


ul.hmenu li {
	float: left;
	display: block;
	font-size: 18px;
	font-family: 'Nunito Sans', 'Trebuchet MS', Helvetica, Arial;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	text-align: center;
	border: 1px transparent;
	color: ghostwhite !important;
	border-radius: 7px;
	line-height: 30px;
}


ul.hmenu {
	display: flex;
	align-items: center;
}
ul.hmenu&gt;li {
	margin-left: 10px;
}

ul.hmenu&gt;li:last-child, ul.hmenu&gt;li.last-child {
	margin-right: 4px;
}

ul.hmenu&gt;li&gt;a {
	padding: 0 10px;
	margin: 1px;
	position: relative;
	height: 30px;
	cursor: pointer;
	text-decoration: none;
	color: #DEEDE3;
	line-height: 30px;
}

.lang-select
{

	display: inline-block;
	color: #DEEDE3;
	max-width: 100%;
	box-sizing: border-box;
	padding: 5px 5px 5px 5px;
	border: 0px solid ghostwhite;
	border-radius: 5px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: rgba(0,0,50, 0.4);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;


	font-size: 18px;
	font-family: 'Nunito Sans', 'Trebuchet MS', Helvetica, Arial;

}

.hmenu&gt;li&gt;a, 
.hmenu&gt;li&gt;a:link, 
.hmenu&gt;li&gt;a:visited, 
.hmenu&gt;li&gt;a.active, 
.hmenu&gt;li&gt;a:hover {
	font-size: 18px;
	font-family: 'Nunito Sans', 'Trebuchet MS', Helvetica, Arial;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	text-align: center;
	border: 1px transparent;
}

ul.hmenu&gt;li&gt;a.active {
	background-color: rgba(255,255,255, 0.6);
	-webkit-backdrop-filter: blur(15px);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	border-top: 1px solid snow;
	box-shadow: 4px 4px 8px rgba(23, 23, 89, 0.25);
	color: #000000;
	text-decoration: none;
}
ul.hmenu&gt;li&gt;a:visited, 
ul.hmenu&gt;li&gt;a:hover, 
ul.hmenu&gt;li:hover&gt;a {
}

ul.hmenu&gt;li&gt;a:hover, .desktop ul.hmenu&gt;li:hover&gt;a {
	color: midnightblue;
	border-radius: 7px;
	border: 1px solid mintcream;
	padding: 0 10;
	margin: 0 auto;
	background: mintcream;
}


ul.hmenu&gt;li&gt;a:hover, 
.desktop ul.hmenu&gt;li:hover&gt;a {
	text-decoration: none;
}

.tg {
    line-height:150%;
	 table-layout: fixed; 
	 width: 100%;
	 border-collapse:collapse;
	 border-spacing:0;
	 border:none;
    font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
	 padding:8px;
}

.tg td {
	font-size:14px;
	padding:8px;
	overflow:hidden;
	word-break:normal;
	vertical-align:top
}

.tg th {
	text-align:left;
	font-weight:bold;
	font-size:16px;
	padding:8px;
	vertical-align:top;
	overflow:hidden;
}

hr {
	border: 0;
	border-bottom: solid 1px gray;
	margin: 2rem 0;
}
  
.foter-hr {
	border: 0;
	margin: 0px;
}
 
 
.isor-hl {
	background: rgba(0,0,0,0.2);
	border-radius: 5px;
	padding-right: 20px;
	padding-left: 20px;
	padding-top: 2px;
	padding-bottom: 2px;
	text-align: center;
    cursor:pointer;

}
.isor-active{
	border-bottom: 2px solid; 
    color: #313F9B;
}
}

.dropdown {
	position: relative;
	display: block;
	text-color: black;
    text-align: center;
}

.dropdown-content {
	display: none;
	position: absolute;
	-webkit-backdrop-filter: blur(20px);
	border-radius: 5px;
	background-color: rgba(255,255,255,0.8);
	z-index: 80;
}

.lang {

	text-align: center;
    min-width: none;
    overflow:hidden;
    box-shadow: 0 14px 28px rgba(23, 23, 89, 0.25), 0 10px 10px rgba(23, 23, 89,0.22);
    border-top: 1px solid ghostwhite;
    border-left: 1px solid ghostwhite;
}

.lang a{
    text-decoration:none;
}


.lang ul li{
    width: 100%;
    padding:5px;
    border-radius:0px;
    color:black!important;
}
.lang li:hover{
    background: mintcream;
    color:seagreen!important;
    border-radius:0px;
}

.dropdown:hover .dropdown-content {
	display: block;
    text-decoration:none;
}
.row {
	display: flex;
   flex-shrink: 0;
}
.sidebar {
    flex:1.3; 
    background: ghostwhite; 
    text-align:right; 
    vertical-align:top;
}

.sidebar h4 {
	color:seagreen;
	font-weight:700;

}
input, textarea, a.search-button span {
	vertical-align: middle;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	border: 1px solid gainsboro;
	padding: 15px 15px;
	width: 180px;
	box-sizing: border-box;
   margin-left: 12px;
}

input[type="date"] { 
	-webkit-appearance: none;
	background:white;
	font-size: 16px;
	padding: 15px 15px;
}

.nav .menu-btn {
	border-radius: 0px;
	display: none;
	background: none;
	float: right;
	padding: 18px;
	width: 20px;
	z-index: 99;
}

.menu-btn:hover{
cursor:pointer}

body &gt; .knapp{
   margin-right:10%;
}

.knapp {
	 all: unset; /* Reset button styles */
	display: inline-block;
	-webkit-backdrop-filter: blur(10px);
	margin: 4px 2px;
	background-color: rgba(255,255,255,0.8);
	text-align: middle;
	border: 1px solid transparent;
	border-radius: 5px;
	padding: 10px;
	text-transform:none;
	font-size: 16px;
	font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;

line-height: 1.5;

}
	 
a .knapp:hover {
	background-color: honeydew;
	border: 1px solid transparent;
}

.knapp:active {
    position:relative;
    top:1px;
}

.knapp-v {
	display: inline-block;
	margin: 5px auto;:;
	text-align: middle;
	background: rgb(46, 103, 139);
	color: white;
	border-radius: 5px 0px 0px 5px;
	padding: 10px;
}

.knapp-h {
	display: inline-block;
	margin: 5px auto;:;
	text-align: middle;
	background: Cornsilk;
	color: black;
	border-radius: 0px 5px 5px 0px;
	padding: 10px;
   font-weight: normal;
}

.gronknapp {
    white-space: nowrap;
    background: seagreen;
    background: radial-gradient(circle, rgba(46,139,87,1) 0%, rgba(15,99,72,1) 100%); 
    color:mintcream;
}
.guldknapp {
    white-space: nowrap;
    background: gold;
    background: radial-gradient(circle, rgba(255,215,0,1) 0%, rgba(255,158,0,1) 100%); 
    color:black;"
}


.color:seagreen {
	background-color: seagreen;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	display: inline-block;
	cursor: pointer;
	color: #fff !important;
	padding: 12px 24px;
	text-decoration: none;
	font-size: 20px;
	font-family: 'Nunito Sans',  Helvetica, Arial, Sans-serif;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	line-height: 150%;
}

.bokapris {
	background-color: ghostwhite;
	padding: 15px;
	text-align: right;
	display: flex;
	border-top: 1px solid gainsboro;
	justify-content: flex-end; 
	align-items: center; 
	gap: 20px
}

.ingar {
	display: flex;
	background:rgb(169, 217, 193);
	border-radius: 10px 0px 0px 10px;
	margin-left: 20px;
	margin-bottom: 20px;
}

.ingar-sida {
	display: flex;
	background:rgb(169, 217, 193);
	border-radius: 0; 
	flex-direction: column; 
}

.flap {
	border-radius: 10px 0px 0px 10px; 
	writing-mode: vertical-rl;
	background:seagreen;
	color: mintcream;
	text-align: center;
	font-weight: 800;
}

.personpris {
	background: seagreen;
	color: mintcream;
	text-align: center;
	font-weight: 800;
	border-bottom:1px dashed honeydew;
	padding:5px;
	margin-bottom: 0;
}

.ingar-sida h2 {
	color: darkgreen;
	text-align: center;
	font-weight: 800;
	border-bottom:1px dashed seagreen;
	padding:5px;
	margin-bottom: 0;}

.tillval {
	background: #EDE9E0;
}

.tillval h2 {
	color: #6D4C27;
	text-align: center;
	font-weight: 800;
	border-bottom:1px dashed darkgoldenrod;
	padding:5px;
	margin-top: 0;
}


.color:seagreen:hover {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0061a7), color-stop(1, #007dc1));
	background: -moz-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background: -webkit-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background: -o-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background: -ms-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background: linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#007dc1',GradientType=0);
	background-color: #0061a7;
}
.color:seagreen:active {
	position: relative;
	top: 1px;
}
.nav .menu-btn span {
	background: #DEEDE3;
	border-radius: px;
	display: block;
	height: 3px;
	margin: 3px 1px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.invert &gt; .nav .menu-btn span {
	background: black;
}

.nav .menu-btn:hover span {
	background: seagreen;
}
.desktop-only {
	display: inline-block;
}

.mobile-only {
	display: none;
}

.datenote {

}</pre></body></html>