/*
=========================================================
BASE CSS
=========================================================
 * Innehåller grundläggande styling och förbättringar för
 * webbplatsen
 * 
 * Copyright (C) Limepark AB. Upprättad 2016.
=========================================================*/


/*
---------------------------------------------------------
FIXAR/FÖRBÄTTRINGAR
---------------------------------------------------------*/


/* Fast textstorlek vid rotation i iPhone */
body {
   -webkit-text-size-adjust: 100%;
}

/* Fix av IE-bugg med understrukna pseudoelement */

a:before, a:after { 
   text-decoration: underline; 
}

a:before, a:after { 
   text-decoration: none;
} 


/* Fix för att bilder ska skalas i nyhetsmoduler */
.sv-responsive .sv-archive-portlet img { 
   width: auto !important;
   height: auto !important;
   max-width: 100% !important;
}

/* Modulavstånd i innehållsytor (ej textmoduler) */
.pagecontent > .sv-portlet {
   margin-bottom: 10px; 
}

/* Ändrar rubriker i nyhetsmodul till blockelement */
.sv-archive-portlet h2.subheading a span {
   display: block; 
}

/* Fix för att spalterna ska ta plats även vid tom */
div[class*='sv-column-'] {
   min-height: 1px;
}


/* Göm innehåll, men visas för skärmläsare */
.lp-user-hidden {
   position:absolute;
   left:-10000px;
   top:auto;
   width:1px;
   height:1px;
   overflow:hidden;
}


/* Responsiva iframes etc */
iframe,
object, 
embed {
   border: medium none;
   max-width: 100%;
   overflow: hidden;
}

.pagecontent {
}

#__ba_panel {
	display: none;
}


/*
---------------------------------------------------------
GRUNDLAYOUT
--------------------------------------------------------- */

.lp-wrapper {
   margin: 0 auto; 
   max-width: 1000px;
   border: 1px solid #ccc;
}

.lp-content,
.lp-secondary-content,
.lp-submenu {
   margin: 40px 0 20px;
   
}

.lp-section-blue {
   padding: 40px 0 40px;
   /* padding: 40px 0 60px; */
   background: #e9f0f5;
}

.lp-section-blue .heading {
   margin: 0 0 40px !important;
}


/* Direktlänk till innehåll och meny som visas vid tabbning */
a.lp-skip-to-content, a.lp-skip-to-menu {
   position: absolute;
   overflow: hidden;
   text-indent: -9999px;
}

a.lp-skip-to-content:focus, a.lp-skip-to-menu:focus {
   display: block;
   overflow: visible;
   z-index: 30000;
   width: 100%;
   padding: 10px 0;
   background: #000;
   color: #fff;
   text-indent: inherit;
   text-align: center;
}

.lp-singel-box {
   max-width: 500px;
   margin: 100px auto 0;
   padding: 20px;
   box-shadow: 0 0 20px 0 #eee;
   border: 1px solid #eee;
}


/** Ikoner **/
.icon {
  /* Allows sizing by changing the icons font-size */
  width: 1em; height: 1em;
  /* Nice visual alignment for icons alongside text */
  vertical-align: -0.15em;
  /* Default path fill = value of the color property */
  fill: currentColor;
  /* Paths and strokes that overflow the viewBox can show in IE.
     If you use normalize.css, it already sets this. */
  overflow: hidden;
}

.sv-linkicon {
    padding-left: 4px;
    max-width: 11px;
    display: none;
}

.sv-file-portlet .sv-file-portlet-fileicon img {
   max-width: 14px;
   margin: 4px 0 0;
}

.sv-file-portlet td {
   vertical-align: top;
}

/*
---------------------------------------------------------
INPUTFÄLT
--------------------------------------------------------- */

input[type=text],
input[type=email],
input[type=url],
input[type=tel],
input[type=number],
input[type=password],
textarea,
select,
.sv-defaultFormTheme input[type=text],
.sv-defaultFormTheme input[type=email],
.sv-defaultFormTheme input[type=url],
.sv-defaultFormTheme input[type=tel],
.sv-defaultFormTheme input[type=number],
.sv-defaultFormTheme input[type=password],
.sv-defaultFormTheme textarea,
.sv-defaultFormTheme select {
   padding: 11px 15px;
   color: #404040;
   background-color: #fff;
   border: 1px solid #bfc4c8;
   border-radius: 5px;
   box-sizing: border-box;
   -webkit-appearance: none;
}

input[type=text]:hover,
input[type=email]:hover,
input[type=url]:hover,
input[type=tel]:hover,
input[type=number]:hover,
input[type=password]:hover,
textarea:hover,
select:hover,
.sv-defaultFormTheme input[type=text]:hover,
.sv-defaultFormTheme input[type=email]:hover,
.sv-defaultFormTheme input[type=url]:hover,
.sv-defaultFormTheme input[type=tel]:hover,
.sv-defaultFormTheme input[type=number]:hover,
.sv-defaultFormTheme input[type=password]:hover,
.sv-defaultFormTheme textarea:hover,
.sv-defaultFormTheme select:hover {
   border: 1px solid #bfc4c8;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus,
select:focus,
.sv-defaultFormTheme input[type=text]:focus,
.sv-defaultFormTheme input[type=email]:focus,
.sv-defaultFormTheme input[type=url]:focus,
.sv-defaultFormTheme input[type=tel]:focus,
.sv-defaultFormTheme input[type=number]:focus,
.sv-defaultFormTheme input[type=password]:focus,
.sv-defaultFormTheme textarea:focus,
.sv-defaultFormTheme select:focus {
   border: 1px solid #bfc4c8;
   outline: none;
}


/* Reset på SiteVision's inline style */
.sv-defaultFormTheme input[type=text],
.sv-defaultFormTheme input[type=email],
.sv-defaultFormTheme input[type=url],
.sv-defaultFormTheme input[type=tel],
.sv-defaultFormTheme input[type=number],
.sv-defaultFormTheme input[type=password],
.sv-defaultFormTheme textarea,
.sv-defaultFormTheme select {
   height: auto;
   box-shadow: none;
   transition: none;
}

.sv-defaultFormTheme input[type=text]:focus,
.sv-defaultFormTheme input[type=email]:focus,
.sv-defaultFormTheme input[type=url]:focus,
.sv-defaultFormTheme input[type=tel]:focus,
.sv-defaultFormTheme input[type=number]:focus,
.sv-defaultFormTheme input[type=password]:focus,
.sv-defaultFormTheme textarea:focus,
.sv-defaultFormTheme select:focus {
   outline-style: none;
   box-shadow: none;
}


/*
---------------------------------------------------------
KNAPPAR
--------------------------------------------------------- */

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.sv-defaultFormTheme input[type=button],
.sv-defaultFormTheme input[type=submit],
.sv-defaultFormTheme input[type=reset] {
   padding: 12px 40px;
   font-family: "Source Sans Pro", Helvetica;
   font-size: 12px;
   line-height: 16px;
   color: #fff;
   text-transform: uppercase;
   border: none;
   background-color: #004b8d;
   border-radius: 5px;
   cursor: pointer;
   box-sizing: border-box;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
.sv-defaultFormTheme input[type=button]:hover,
.sv-defaultFormTheme input[type=submit]:hover,
.sv-defaultFormTheme input[type=reset]:hover,
.sv-defaultFormTheme input[type=button]:focus,
.sv-defaultFormTheme input[type=submit]:focus,
.sv-defaultFormTheme input[type=reset]:focus {
   color: #fff;
   background-color: #035aa7;
   outline: none;
}


/* Reset på SiteVision's inline style */
.sv-defaultFormTheme input[type=button]:active,
.sv-defaultFormTheme input[type=submit]:active,
.sv-defaultFormTheme input[type=reset]:active {
   box-shadow: none;
}


/* Fix för att ta bort plattformspecifik styling */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.sv-defaultFormTheme input[type=button],
.sv-defaultFormTheme input[type=submit],
.sv-defaultFormTheme input[type=reset] {
   -webkit-appearance: none;
}

input[type="submit"]::-moz-focus-inner,
.sv-defaultFormTheme input[type=submit]::-moz-focus-inner {
   border: 0; /* fix för felaktig höjd i Firefox */
} 

button::-moz-focus-inner,
.sv-defaultFormTheme input[type=button]::-moz-focus-inner {
   padding: 0;
   border: 0;
}


/*
-----------------------------------------------------------
Genvägar höger
-----------------------------------------------------------*/
.special-menu-btn a {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff!important;
    text-transform: none;
    text-decoration: none!important;
    text-align: center;
    background-color: #990a2c;
    display: block;
    /*border: 1px solid #990a2c;*/
    border-radius: 0;
    position: relative;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
    text-orientation: mixed;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    z-index: 20;
    letter-spacing: .1em;
    /*border-right: 1px solid #ffffff;
    border-left: 1px solid transparent;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;*/
    border: none;
   
   /*position: fixed;
    right: 0;
    top: 50%;
    transform-origin: bottom right;
    transform: rotate(-90deg) translateX(50%);
    width: 180px;
    background-color: #00a0d6;
    font-size: 15px;
    padding: 12px 10px 9px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.06), inset 0 0 0 1px rgba(0,0,0,.08);
    transition: all .2s ease-in-out;
    z-index: 20;
    text-align: center;
    color: #fff;
    font-weight: 500;
    cursor: pointer;*/
   
}

.special-menu-btn a:hover,
.special-menu-btn a:focus {
    background-color: #ffffff;
    color: #990a2c !important;
    /*border-right: 1px solid #990a2c;
    border-left: 1px solid transparent;
    border-top: 1px solid #990a2c;
    border-bottom: 1px solid #990a2c;*/
    border: none;
    text-decoration: none !important;
}

/*
---------------------------------------------------------
LÄNKKNAPP
--------------------------------------------------------- */

.lp-link-button a {
    padding: 24px 12px;
    font-size: 16px!important;
    line-height: 16px!important;
    color: #ffffff!important;
    text-transform: none;
    text-decoration: none!important;
    text-align: center;
    background-color: #990a2c;
    display: inline-block;
    border: 1px solid #990a2c;
    border-radius: 35px;
    position: relative;
    min-width: 226px;
    margin: 5px 20px 5px 0;
    transition: all .3s ease-in-out;
   
}

.lp-link-button a:hover,
.lp-link-button a:focus {
   background-color: transparent;
   color: #ffffff !important;
   border: 1px solid #ffffff;
}
/*
---------------------------------------------------------
TABELLER
--------------------------------------------------------- */

table.sv-standard caption {
   display: none !important;
}

table.sv-standard {
   width: 100%;
   margin: 20px 0 30px;
   border-collapse: collapse;
   border-spacing: 0;
   /*border-bottom: 1px solid #ccc;*/
}

table.sv-standard th {
   padding: 12px 20px;
}

.sv-text-portlet table.sv-standard th p {
   font-weight: bold;
   color: #ffffff;
}

table.sv-standard td {
   padding: 0 20px;
}

table.sv-standard tr:nth-child(even) th,
table.sv-standard tr:nth-child(even) td {
   background: #990a2c;
}

/* Header vid stapling av tabell */

table.sv-standard th.sv-responsiveTable--stacked__headRow--main {
   background: #bbb;
}

/*
---------------------------------------------------------
SIDHUVUD
--------------------------------------------------------- */

header {
    background: linear-gradient(180deg, rgba(34,67,105,0.9) 100%, rgba(34,67,105,0.05) 90%);
    position: relative;
    overflow: hidden;
    /*padding: 0 40px 0 0;*/
    z-index: 1000;
    display: block;
    width: 100%;
    
}
   
   /*background: rgba(34,67,105,.80);
   background: #234369;
   position: relative;
   overflow: hidden;
   padding: 0 40px 0 60px;*/
   
   /*position: absolute;
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    overflow: hidden;*/
}

.lp-logo {
 
   margin: 20px 25px 16px 30px;
   float: left;
   position: relative;
   z-index: 2;
}

.lp-subweb-logo {
   margin: 20px 25px 16px -15px;
   padding: 0 0 0 15px;
   float: left;
   position: relative;
   z-index: 3;
   border-left: 1px solid #5586b2;
}

.lp-logo-print {
   display: none;
}

.lp-logo img,
.lp-subweb-logo img {
   height: auto !important;
   width: 160px !important; /* ändra till halva bildbredden för retinaupplösning */
   max-width: 100% !important; /* för skärumupplösning lägre än logotypens bredd */
   display: block;
}

.lp-logo a:focus {
   border-bottom: 5px solid #fff;
}


/*
---------------------------------------------------------
SÖKRUTA SIDHUVUD 
--------------------------------------------------------- */

header .sv-searchform-portlet {
   position: relative;
   margin: 20px 0;
}

header .sv-searchform-portlet input[type="text"] {
}

header .sv-searchform-portlet input[type="text"]:focus {
   background: #eee;
   outline: none;
}

header .sv-searchform-portlet input[type="submit"] {
   position: absolute;
   top: 0;
   right: 0;
   margin: 0;
   -webkit-appearance: none;
}

header .sv-searchform-portlet input[type="text"]:focus + input[type=submit] {
   background-color: #ccc;
}


/*
---------------------------------------------------------
SIDFOT
--------------------------------------------------------- */

footer {
   margin-top: 0;
   padding: 40px 0 40px 0px;
   /*border-top: 7px solid #ffffff;*/
   background: #990a2c;
}

footer .subheading {
   margin: 0 0 20px !important;
   color: #ffffff ;
   font-weight: bold;
   text-transform: uppercase;
   border-bottom: 1px solid #ffffff;
   padding: 15px;
}

footer a {
   text-decoration: none !important;
}

footer a:hover,
footer a:focus {
   text-decoration: underline;
}

footer .sv-script-portlet .sv-text-portlet-content * {
	white-space: normal !important;
}

footer .sv-script-portlet p.normal > .icon {
	position: absolute;
	left: 0;
	top: 4px;
}

footer .sv-script-portlet p.normal {
	padding-left: 25px;
	position: relative;
}


/* Kommunbolag */
.lp-footer-companies {
   margin: 0;
   padding: 0;
   list-style: none;
}

.lp-footer-companies li {
   margin: 0 0 15px;
}

.lp-footer-companies a:after {
   height: 9px;
   width: 6px;
   margin: 0 0 0 8px;
   content: '';
   background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAjCAMAAACn3QoXAAAASFBMVEUAAAAASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0Y//LEAAAAF3RSTlMA8Tf2QlvrLfoj5E3KVeHTd9yzejwcAe12OA4AAAB3SURBVCjP1c9JDoAgEETRltEBnLXvf1OjgoFOJ8rSv3yLSgpA9zh0QPN4pik7vPKE+5trsjMj61ZGV5mLKrgs9Ep8cmuiW95NqTeZN23wttCnLfMRQy5Vjc+rX6iPKtdEuzqqelXFKgysAq9gWIWRVdgXg05QPQDa3RgKURcobgAAAABJRU5ErkJggg==');
   background-size: 6px 9px;
   display: inline-block;
}


/* Sociala länkar */
.lp-social-links {
   margin: 0;
   padding: 0;
   list-style: none;
   display: flex;
}

.lp-social-links li {
   margin: 0 0 15px;
}

.lp-social-links .icon {
   margin: 0 10px 0 0;
   font-size: 18px;
   /*color: #222;*/
   margin: 10px 0 0 0;
   font-size: 18px;
   height: 25px;
   width: 25px;
   /*border-radius: 50%;*/
   padding: 15px;
   background-color: transparent;
   fill: #fff;
   flex-direction: row !important;
   text-align: center !important;
   display: flex !important;
   /*border:1px solid #fff;*/
      
}

/* Extra meny */
.lp-footer-extra-menu {
   margin: 30px 0 0;
   padding: 15px 0 0;
   list-style: none;
   border-top: 1px solid #d2d7db;
}

.lp-footer-extra-menu li {
   margin: 0 20px 0 0;
}

.lp-footer-extra-menu a:after {
   height: 9px;
   width: 6px;
   margin: 0 0 1px 8px;
   content: '';
   background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAjCAMAAACn3QoXAAAASFBMVEUAAAAASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0Y//LEAAAAF3RSTlMA8Tf2QlvrLfoj5E3KVeHTd9yzejwcAe12OA4AAAB3SURBVCjP1c9JDoAgEETRltEBnLXvf1OjgoFOJ8rSv3yLSgpA9zh0QPN4pik7vPKE+5trsjMj61ZGV5mLKrgs9Ep8cmuiW95NqTeZN23wttCnLfMRQy5Vjc+rX6iPKtdEuzqqelXFKgysAq9gWIWRVdgXg05QPQDa3RgKURcobgAAAABJRU5ErkJggg==');
   background-size: 6px 9px;
   display: inline-block;
}

/*
---------------------------------------------------------
PUNKT-, NUMRERAD OCH LÄNKLISTA
--------------------------------------------------------- */

.sv-text-portlet-content > ul,
.sv-text-portlet-content > ol { 
   margin: 15px 0 30px;
}


/* Numrerad lista */
.sv-text-portlet-content ol { 
   padding: 0 0 0 20px;
}

.sv-text-portlet-content ol li {
   padding: 2px 0;
}


/* Punktlista */
.sv-text-portlet-content ul {
   list-style: none;
   padding: 0;
}

.sv-text-portlet-content > ul {
   padding: 0;
}

.sv-text-portlet-content ul li {
   padding: 2px 0 2px 20px;
}

.sv-text-portlet-content ul li:before {
   font-size: 22px;
   color: #990a2c;
   margin: 0 0 0 -16px;
}

	.sv-text-portlet-content > ul li:before {
   content: "○ ";
}

.sv-text-portlet-content > ul > li:before {
   font-size: 26px;
   content: "• ";
}


/* Länklista */
ol.generated-list-name-Lanklista {
	padding: 0;
	list-style: none;
}

ol.generated-list-name-Lanklista li {
	padding: 3px 0;
}

.generated-list-name-Lanklista a {
	text-decoration: none !important;
}

.generated-list-name-Lanklista a:after {
   height: 9px;
   width: 6px;
   margin: 0 0 0 12px;
   content: '';
   background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAjCAMAAACn3QoXAAAASFBMVEUAAAAASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0Y//LEAAAAF3RSTlMA8Tf2QlvrLfoj5E3KVeHTd9yzejwcAe12OA4AAAB3SURBVCjP1c9JDoAgEETRltEBnLXvf1OjgoFOJ8rSv3yLSgpA9zh0QPN4pik7vPKE+5trsjMj61ZGV5mLKrgs9Ep8cmuiW95NqTeZN23wttCnLfMRQy5Vjc+rX6iPKtdEuzqqelXFKgysAq9gWIWRVdgXg05QPQDa3RgKURcobgAAAABJRU5ErkJggg==');
   background-size: 6px 9px;
   display: inline-block;
   vertical-align: middle;
}
/*
.generated-list-name-Lanklista a:hover,
.generated-list-name-Lanklista a:focus {
	text-decoration: underline !important;
}


/*
---------------------------------------------------------
BLOCKCITAT
--------------------------------------------------------- */

blockquote {
   margin: 15px 0 !important;
   padding: 0 !important;
   background: none !important;
}

blockquote p {
   margin: 0 !important;
   font-style: italic !important;
}

blockquote p:before,
blockquote p:after {
   height: 12px;
   width: 15px;
   content: '';
   background: no-repeat;
   background-size: 15px 12px;
   display: inline-block;
}

blockquote p:before {
   margin: 0 10px 0 0;
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXBAMAAADuEeJZAAAAMFBMVEUAAAA4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/FwRqJ6AAAAD3RSTlMAd7vuMxHdZqpEiCKZzFWxYFM/AAAAzElEQVQY01XPPQ4BURQF4DvxHwqRqBREpdNQk0i0VAqVRk1iAWYHlmBiA7MEW7ADdiBDzE9IjnOf25jmy7lz38l7ot+y7hDPd+Q3mbPQj5w7xHN1CoxJCYCvayNgTffAc0snAILfeKCnr0BCF/w9pmUAutYGXP0RiHSN6xfNfeBFPAB1WqEdWrRcszyjK5qjb62jkc1TGlLcRO5qwFp1yD01sxxZTi0/LEPk8JfND/vVWOSsJryXzT3rr1i/hPbenb03f+o1iVQb3ZbIF82up+kcSjFLAAAAAElFTkSuQmCC');
}

blockquote p:after {
   margin: 0 0 0 10px;
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXBAMAAADuEeJZAAAAMFBMVEUAAAA4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/E4z/FwRqJ6AAAAD3RSTlMAEZl37kTM3apmM1Uiu4jGdvBUAAAAyElEQVQY0y3PTw7BUBAG8A8hIfFnIbbcoF3ZEluLuoE4ATcoJ3ACaRcO0BvUwt4RuAFpg0qajO915m1++eZ1Om+A2lQWMXhOUiRkJCI/WqcZ9ajwg8jpA4FzDxydc3Qc8rL6G01RUZnz3nKgGaFlz3Jq+Wq5bv9rWx13uqMzWtI1ndCh1fs0oV36oGORL0GL+UIj3Qc33acWaptboLR9V7avz+ute4XuXZCzTRvRjU7NoNM+A9qsutgXyMGJ57ICaa72BmojBs8fQqWwi0fnMBYAAAAASUVORK5CYII=');
}


/*
---------------------------------------------------------
RUBRIKLÄNK
---------------------------------------------------------*/

.lp-header-link .subheading {
	margin: 0 0 10px !important;
	text-transform: uppercase;
}

.lp-header-link .subheading,
.lp-header-link .subheading a {
	font-size: 20px;
	line-height: 28px;
}

.lp-header-link .subheading a {	
	color: #004b8d;
	text-decoration: none;
}

.lp-header-link .subheading a:hover,
.lp-header-link .subheading a:focus {
	text-decoration: underline;
}

.lp-header-link .subheading a:after {
   height: 13px;
   width: 8px;
   margin: -4px 0 0 5px;
   /*margin: -4px 0 0 12px;*/
   content: '';
   background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAjCAMAAACn3QoXAAAASFBMVEUAAAAASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0Y//LEAAAAF3RSTlMA8Tf2QlvrLfoj5E3KVeHTd9yzejwcAe12OA4AAAB3SURBVCjP1c9JDoAgEETRltEBnLXvf1OjgoFOJ8rSv3yLSgpA9zh0QPN4pik7vPKE+5trsjMj61ZGV5mLKrgs9Ep8cmuiW95NqTeZN23wttCnLfMRQy5Vjc+rX6iPKtdEuzqqelXFKgysAq9gWIWRVdgXg05QPQDa3RgKURcobgAAAABJRU5ErkJggg==');
   background-size: 8px 13px;
   display: inline-block;
   vertical-align: middle;
}


/* Rubriklänk i puff */
.lp-box .lp-header-link .subheading {
	margin: 0 0 15px;
	padding: 0 0 15px !important;
	border-bottom: 1px solid #d9d9d9;
}

.lp-box .lp-header-link .subheading,
.lp-box .lp-header-link .subheading a {
	font-size: 24px;
	font-weight: bold;
}

.lp-header-link .subheading br {
	display: none !important;
}

.lp-box .lp-header-link .subheading a:after {
   height: 17px;
   width: 11px;
   background-size: 11px 17px;
}

.lp-box p.normal {
   margin: 0 !important;
}


/* Länklista i puff */

.lp-box .generated-list-name-Lanklista.normal {
	margin: 0 !important;
}

.lp-box .generated-list-name-Lanklista a {
	font-size: 18px !important;
	line-height: 30px !important;
}

/*
---------------------------------------------------------
WAVE
---------------------------------------------------------*/
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave svg {
    position: relative;
    display: block;
    width: calc(141% + 1.3px);
    height: 345px;
}

.wave .shape-fill {
    fill: #FFFFFF;
}
/*
---------------------------------------------------------
PUFF
---------------------------------------------------------*/

.lp-box {
   min-height: 198px;
   margin: 0 0 20px;
   padding: 20px;
   background: #fff;
   border-top: 4px solid #004b8d;
   border-radius: 0 0 5px 5px;
}

.lp-box p {
   margin: 0 0 15px !important;
   font-size: 18px;
   line-height: 28px;
}


/*
---------------------------------------------------------
TOPPMENY
---------------------------------------------------------*/

.lp-topmenu {
   position: relative;
   float: right;
   
}

.lp-topmenu ul {
   display: table;
   width: 100%;
   max-width: 980px;
   margin: 0;
   padding: 0;
   list-style: none;
   overflow: hidden;
}

.lp-topmenu li {
   display: table-cell;
}

.lp-topmenu li > a {
      font-size: 1.1rem;
    box-sizing: border-box;
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    display: block;
    vertical-align: middle;
    transition: all .3s ease-in-out;
    border-bottom: 3px solid transparent;
    padding: 1.9rem 0.1rem;
    font-weight: 300;
    margin-right: 2rem;
}

.lp-topmenu li > a.lp-current {
   /*background: #0c2740;*/
   color: #ffffff;
    border-color: #ffffff;
    margin-bottom: .5rem;
    padding-bottom: .4rem;
}

.lp-topmenu li > a:hover, 
.lp-topmenu li > a:focus {
   color: #ffffff;
   border-color: #ffffff;
   margin-bottom: .5rem;
   padding-bottom: .4rem;
}


/*
---------------------------------------------------------
UNDERMENY 1/3 - Standardinställningar
--------------------------------------------------------- */

/* Döljer alla huvudsidors menyer */
.lp-menu .lp-level-1 > li {
   display: none;
}

/* Men visar huvudusidan man är inne på */
.lp-menu .lp-level-1 > li.lp-open {
   display: block;
}

/* Döljer pilknappen på första nivån så att man inte kan stänga menyn */
.lp-menu .lp-level-1 > li > button {
   display: none;
}

/* Döljer alla nivåer initialt */
.lp-menu .lp-level-1 ul {
   display: none;
}

/* Men visar undersidor när man har klickat på pilknappen */
.lp-menu .lp-open > ul {
   display: block;
}

.lp-menu ul {
   margin: 0;
   padding: 0;
   list-style-type: none;
}

.lp-menu li.lp-has-children {
   position: relative;
}


/* Döljer länken till menyn i mobilen */
.lp-skip-to-menu-mobile {
   display: none; 
}


/*
---------------------------------------------------------
UNDERMENY 2/3
--------------------------------------------------------- */

.lp-menu a {
   display: block;
   background: #fff;
   border-top: 1px solid #e2e2e2;
   padding: 14px 50px 14px 10px;
   font-size: 16px;
   line-height: 24px;
   text-decoration: none;  
}

.lp-menu a:hover,
.lp-menu a:focus {
   text-decoration: underline;
}

.lp-menu .lp-current > a {
   font-weight: bold;
}

/* Nivåer */
.lp-level-1 > li > a {
   color: #fff;
   font-size: 18px;
   font-weight: bold;
   background: #234369;
}

.lp-level-2 > li > a {
   padding-left: 10px;
}

.lp-level-2 > .lp-open > a {
   background-color: #16436d;
   color: #fff;
}

.lp-level-3 > li > a {
   padding-left: 24px;
}

.lp-level-2 > .lp-open .lp-level-3 > li > a {
   background-color: #e9f0f6;
}

.lp-level-4 > li > a {
   padding-left: 36px;
}

.lp-level-2 > .lp-open .lp-level-4 > li > a {
   background-color: #f5f8fb;
}

.lp-level-5 > li > a {
   padding-left: 48px;
}

.lp-level-6 > li > a {
   padding: 10px 36px 10px 60px;
}

.lp-level-7 > li > a {
   padding: 10px 36px 10px 72px;
}


/*
---------------------------------------------------------
UNDERMENY 3/3 - Knappar
--------------------------------------------------------- */

.lp-close-button {
	display: none;
}

.lp-menu button {
   height: 44px;
   width: 44px;
   padding: 0;
   border: none;
   position: absolute;
   top: 5px;
   right: 0;
   background: none;
   -webkit-transition: all .3s ease;
   -moz-transition: all .3s ease;
   -ms-transition: all .3s ease;
   -o-transition: all .3s ease;
   transition: all .3s ease;
}

.lp-has-children > button svg {
   fill: #15436d;
}

.lp-open.lp-has-children > button svg {
   fill: #15436d;
}

.lp-level-2 > .lp-open.lp-has-children > button svg {
   fill: #fff;
}

.lp-open.lp-has-children > button {
   -moz-transform: rotate(90deg);
   -webkit-transform: rotate(90deg);
   -o-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
}

/* Avvikelser */
.lp-level-6 button {
   height: 36px;
}


/*
---------------------------------------------------------
SIDHUVUD - VERTKTYGSMENY
---------------------------------------------------------*/

.lp-toolsmenu {
   float: right;
}

.lp-toolsmenu:before {
   height: 78px;
   width: 100%;
   content: "";
   /*background: #004b8d;*/
   position: absolute;
   left: 0;
}

.lp-toolsmenu ul {
   height: 78px;
   margin: 0;
   padding: 0;
   list-style: none;
}

.lp-toolsmenu li {
   margin: 0 -4px 0 0;
   display: inline-block;
   position: relative;
}

.lp-toolsmenu li > a {
   min-width: 32px;
   padding: 25px 16px 8px;
   font-size: 14px;
   color: #8e1f2f;
   text-decoration: none;
   text-align: center;
   /*border-left: 1px solid #1a619f;*/
   display: block;
}

.lp-toolsmenu li > a:hover,
.lp-toolsmenu li > a:focus,
.lp-toolsmenu li.tool-state-open > a {
   /*background: #15436d;*/
   
}

.lp-toolsmenu .icon {
   width: 35px;
   height: 35px;
   margin: 0 auto 5px;
   fill: #8e1f2f;
   display: block;
}

.lp-toolsmenu img {
   display: none;  /*tar bort bilden som visas för externa länkar */
}

/* Visa dölj länkar om man har JS eller ej */
#lp-tool-listen {
    display: none;
}

.lp-js #lp-tool-listen,
.lp-js #lp-tool-search,
.lp-js #lp-tool-language {
    display: inline-block; /* Samma som li ovan */
}

/*
---------------------------------------------------------
SIDHUVUD - VERTKTYGSFUNKTIONER
---------------------------------------------------------*/

/* Generellt */
.lp-tool-listen-wrapper,
.lp-tool-search-wrapper,
.lp-tool-translate-wrapper {
    display: none;
}

.lp-js .lp-tool-listen-wrapper,
.lp-js .lp-tool-search-wrapper,
.lp-js .lp-tool-translate-wrapper {
   padding: 20px;
   background: #fce096;
   /*border-bottom: 1px solid #d7dee4;*/
   text-align: center;
}

.lp-js .lp-tools-wrapper .lp-link-button p {
   margin: 0 !important;
}


/* Lyssna */
.lp-js .lp-tool-listen-wrapper > div {
   margin: 0 5px;
   display: inline-block;
}


/* Translate */
.lp-js .lp-tool-translate-wrapper .goog-te-gadget-simple {
   margin: 0 0 5px;
   padding: 11px 15px;
   border: none !important;
   /*border: 1px solid #234369;*/
   border-radius: 25px;
}

.lp-js .lp-tool-translate-wrapper .goog-te-gadget-simple a {
   margin: 0;
}

.lp-js .lp-tool-translate-wrapper .goog-te-gadget-simple a > span {
   margin: 0 5px;
}

.lp-js .lp-tool-translate-wrapper p {
   margin: 0;
   font-size: 13px;
}

/* Sök */
.lp-tool-search-wrapper form {
   max-width: 620px;
   margin: 0 auto;
   position: relative;
}

.lp-tool-search-wrapper input[type=text] {
   padding: 15px 60px 15px 15px;
   border: none;
   border-radius: 25px;
}

.lp-tool-search-wrapper input[type=image],
.sv-facetedsearch-portlet form input[type=image] {
   height: 21px;
   width: 21px;
   padding: 19px;
   position: absolute;
   top: 0;
   right: 0;
}


/*
---------------------------------------------------------
SIDVERKTYG - GENERELLT
--------------------------------------------------------- */

.lp-pagetools {
   margin: 0 0 20px;
   background: #e9f0f5;
}

/* Knappar - Generellt */
.lp-pagetool-button {
   padding: 12px 20px;
   font-size: 12px;
   font-weight: normal;
   text-decoration: none;
   text-transform: uppercase;
   border-right: 1px solid #b0e5f4;
   display: block;
   -webkit-transition: all 0.1s ease;
   -moz-transition: all 0.1s ease;
   -ms-transition: all 0.1s ease;
   -o-transition: all 0.1s ease;
   transition: all 0.1s ease;
}

.lp-pagetool-button .icon {
   width: 25px;
   height: 25px;
   margin: 0 15px 0 0;
   fill: #38cff1;
   vertical-align: middle;
   display: inline-block;
}

.lp-pagetool-button:hover,
.lp-pagetool-button:focus,
.lp-pagetool-button.lp-toggle-open {
   color: #000;
   background: #38cff1;
}

.lp-pagetool-button:hover .icon ,
.lp-pagetool-button:focus .icon,
.lp-pagetool-button.lp-toggle-open .icon {
   fill: #fff;
}

.lp-pagetool-button:hover,
.lp-pagetool-button:focus,
.lp-pagetool-button.lp-toggle-open {
 background: #38cff1;
}

.lp-pagetool-button:hover .icon,
.lp-pagetool-button:focus .icon,
.lp-pagetool-button.lp-toggle-open .icon {
fill: #000;
}
/*
---------------------------------------------------------
SIDVERKTYG - DELA
--------------------------------------------------------- */

.lp-share-wrapper {
   padding: 20px;
   border-top: 2px solid #38cff1;
}

.lp-share-wrapper h2.subheading {
   margin: 0 0 15px;
   font-size: 20px;
   display: block;
}

.lp-share-page {
   list-style-type: none;
   margin: 0;
   padding: 0;
}

.lp-share-page li {
   display: inline-block;
   margin: 0 2px 0 0;
}

.lp-share-page a {
   overflow: hidden;
   display: block;
   width: 44px;
   height: 44px;
   background: #eee no-repeat 50% 50%;
   background-size: 22px auto;
   border: 2px solid #fff;
   border-radius: 50%;
   text-indent: -999px;
   text-decoration: none;
   -webkit-transition: all 150ms ease;
   -moz-transition: all 150ms ease;
   -ms-transition: all 150ms ease;
   -o-transition: all 150ms ease;
   transition: all 150ms ease;
}

.lp-share-page a:hover,
.lp-share-page a:focus {
   border-color: #bbb;
}

.lp-share-page-facebook a {
   background-color: #3d5b96;
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsBAMAAADsqkcyAAAAJFBMVEUAAAD///////////////////////////////////////////+0CY3pAAAAC3RSTlMAu3dEme4W1WZVM0JpqTsAAABoSURBVCjPY0ACKdG7d+/ewIAGmICCWIS9sQpz7sYqzI5deDZcGNNoQUEBNGFpoKgbAwYAKU7AKryRYcCFOQQFBYHCW4GUAHqYQj1PknABdmEcZivgEcZ04IJBGYKjwiQJGxsbWzEQAADLr6QBXTboDAAAAABJRU5ErkJggg==');
}

.lp-share-page-twitter a {
   background-color: #29a7de;
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsBAMAAADsqkcyAAAAMFBMVEUAAAD///////////////////////////////////////////////////////////87TQQwAAAAD3RSTlMA7ndEuzMRIt2IzJlVqmam4tDYAAABJklEQVQoz73Rv0vDQBTA8YexDaKb1NF0ExRJEZ3Fzc2Ii25xFByCq4uos3ZycHETnET9A+zQvf0P2tK/oG0oobS8vtdc7keua/tdkvtw3D04WEDu0Ty993BSo28AUFC6hlQcQr0K0IkknyH3+NML6f8z03UUjWmBSSD4OOP2ATFuamdwk5MSFOlbTodDWZt3Y1JhdqRu0+qbh2JfybTHl/lIjXY0joG6Tv+/uo7BG6hS7EZ+nvvM8b7NFFoNmFsWD5kbFj8wr1pcZXa9PFeAO89pArOK/9Z8nHNrDrPFaN9ZFrtNpfdN+zB4rF5crwlZvqajULL7rrgEWpfaO6pu5m6+8+TJkaAQLnZR9gaiQ9R6IrD9BbSuXsUQf2BU2DtFfP4NYDlNATnA19pg9YMpAAAAAElFTkSuQmCC');
}

.lp-share-page-linkedin a {
   background-color: #4392cc;
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsBAMAAADsqkcyAAAALVBMVEUAAAD///////////////////////////////////////////////////////+hSKubAAAADnRSTlMARHcR7thmqpkzIruIVWxeWUQAAAC9SURBVCjPY8AFGOueVGIRznv37t0FTMXvgMAZQ5gDJPwMQ5gbJPyIWGEmkPBLDGHmOKDwBkwHTn337rkBFodfUprAQF3AJSgMoZWAQIGBAURpMdgA3RWzABYmDxgYQNRDNj8Q5YQunPcODBpQhR+9g4A3KMIIMAG7cAF24Veowk8vM9aBowVVuAEaWy9QhJ8aAAMa5PTXcGF4JJ0DMp6gegeWQN5hCsuNCtNSmFkQCAQYGIAkJFUaglg4Ei4ATJSkyywtUH0AAAAASUVORK5CYII=');
}

.lp-share-page-gplus a {
   background-color: #dd4b38;
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsBAMAAADsqkcyAAAAMFBMVEUAAAD///////////////////////////////////////////////////////////87TQQwAAAAD3RSTlMAd0S7Ee4z3ZnMZiKqiFUgPQIDAAABdklEQVQoz4WTsUoDQRCG10uMYsTkQLCIEgmCjZKApUUOOwsrxUq4Q7CwsrARm8TCKkUs0l8aOyH4BPERfIRgYx1jvIsgn7m98243CfgXO8PH7MywMyuknqsEGuaFqh2uawD7Gj2iIQwXX2hKu/3xeQivGl6mMj6zNh8a7tALTBFPwzWswHShp1ADolyo/c3Bn60oOAWOvDWF27JPeNH6oy6dqdwnIZbJcoMQZ6Af2CxjkGBRZRiErfCl4QtoydJtDRs2I0ekm99Cw+ISBuZ9EJw1zaJnmoVoDDZhXQOp+CmdJp86DmVLnC6VyqNSaSvGYZKwpCIX2jNwB/wZOAW0JrCxsQcwsjT8BMd36zJc0TteQU6eH4UuRauXscFKcJnT+CXz6prk43nUlRyISE0qSsNxR1cKnk9wTsmdw0tcJ8YLsBm5XWVlF+EhcovKgmfBt8IGte9QhFvpPPpCXzZu3sTB2sT32yZUQ+jadYGzVTGlczns//ULv3/aNfPU6uUAAAAASUVORK5CYII=');
}

.lp-share-page-email a {
   background-color: #555;
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsBAMAAADsqkcyAAAALVBMVEUAAAD///////////////////////////////////////////////////////+hSKubAAAADnRSTlMAuxHuecyqRJlVMyLdZlQgeRAAAADZSURBVCjP1dJBCgFRHMfxrwkTSrK1eYobKFaasncEOcGUbC3EXsoFHIE7KFt3GCMb/zMYZt4wM89S8lu9Pr1+77d4fDO2ZOMrimKIQ9XEYzPPKZj4RMmgngI3yzegbaoGa5TW80PJp5vXKAqKWZLrlIPdXazVu3ZgWKMqDqX+S/0tewn4cWjGGl4K+PnyQOsRy5WQpUE5WnlVbESzdyKvt7UkZrkoptG2kWZdGW6TiPUA2+3t2EuS/R0QbEvys4CKK2mWw9ZeSpJ1fshjciZ2Pv1YJhn1Fvxr7v2NEFv+Dk8GAAAAAElFTkSuQmCC');
}


/*
---------------------------------------------------------
SIDVERKTYG - RELATERAD KONTAKT
--------------------------------------------------------- */

.lp-pagetool-contact-button {
   border-right: 0;
   border-left: 1px solid #b0e5f4;
   background: #38cff1;
   color: #000;
 
}

.lp-js .lp-toggle-remotecontent {
	display: none;
}


/* Innehåll */
.lp-remotetoggle-contact.lp-toggle-remotecontent {
   padding: 20px;
   border-top: 2px solid #38cff1;
}

.lp-remotetoggle-contact.lp-toggle-remotecontent .subheading {
   margin: 0 0 15px;
   font-size: 20px;
   display: block;
}

/* Innehåll - Knappar */
.lp-remotetoggle-contact.lp-toggle-remotecontent .lp-link-button p {
   margin: 0 0 20px !important;
}

.lp-remotetoggle-contact.lp-toggle-remotecontent .lp-link-button a {
   display: block;
}


/*
---------------------------------------------------------
BYLINE - ÅTERKOPPLING / HJÄLPTE SIDAN DIG OCH SENAST UPPDATERAD-DATUM
--------------------------------------------------------- */

.lp-js .lp-feedback .sv-form-portlet,
.lp-js .lp-feedback .sv-text-portlet {
   display: none;
}

.lp-byline {
   clear: both;
   margin: 30px 0 0;
   padding: 10px 0 0;
   border-top: 1px solid #bababa;
}

.lp-byline button {
   margin: 0 0 0 5px;
   padding: 4px 12px;
}

.lp-feedback > .sv-text-portlet,
.lp-feedback .sv-form-portlet {
   margin: 20px 0 0;
   padding: 20px;
   background: #e9f0f5;
}

.lp-feedback > .sv-text-portlet .normal {
   margin: 0;
}

.lp-feedback label {
   margin: 10px 0 20px;
   font-size: 18px;
   font-weight: normal !important;
   display: block;
}

.lp-feedback br {
   display: none;
}


/*
---------------------------------------------------------
RELATERADE LÄNKAR
--------------------------------------------------------- */

.lp-links {
   margin: 0 0 30px;
   padding: 20px;
   background: #e9f0f5;
}

.lp-links .subheading a {
	font-size: 14px;
	float: right;
	padding: 0;
}

.sv-related-portlet {
   clear: both;
   padding: 0; 
   margin: 0; 
   list-style-type: none;
}

.sv-related-portlet ul {
   padding: 0; 
   margin: 0; 
   list-style-type: none;
}

.lp-remotetoggle-contact {
   /* display: table; */
   width: 100%;
   box-sizing: border-box;
}

.lp-remotetoggle-contact > div {
   display: table-cell;
   float: none !important;
}

.lp-remotetoggle-contact > div:first-child {
   padding: 0 15px 0 0;
   border-right: 1px solid #c4d5e1;
}

.lp-remotetoggle-contact > div:last-child {
   padding: 0 0 0 15px;
   text-align: right;
}

.sv-related-portlet .lp-pagespecific-contact {
   margin: 0 0 20px;
}

.lp-remotetoggle-contact .icon {
   margin: 0 10px 0 0;
   fill: #000;
}

.lp-remotetoggle-contact .sv-related-portlet li {
   margin: 0 0 3px 0;
}

.lp-links li {
   position: relative;
}

.lp-links .subheading {
   margin: 0 0 20px;
   display: block;
}

.lp-links a {
   padding: 15px 110px 15px 55px;
   color: #004b8d;
   text-decoration: none;
   display: block;
   -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
   -ms-transition: all 0.5s ease;
   -o-transition: all 0.5s ease;
   transition: all 0.5s ease;
}

.lp-links li:nth-child(odd) a {
   background: #f6f9fb;
}

.lp-links a:hover,
.lp-links a:focus,
.lp-links li:nth-child(odd) a:hover,
.lp-links li:nth-child(odd) a:focus {
   text-decoration: underline;
}

.lp-links .icon {
   height: 25px;
   width: 25px;
   margin: 0 15px -5px 0;
}

.lp-links li svg {
   position: absolute;
   left: 15px;
}

.lp-links li .lp-related-meta {
   position: absolute;
   right: 15px;
   top: 15px;
   font-size: 12px;
}


/*
---------------------------------------------------------
FAQ
--------------------------------------------------------- */

.lp-faq {
   margin: 0 0 50px;
   border-top: 1px solid #fff;
}

.lp-faq .lp-toggle-container {
   border-bottom: 1px solid #fff;
   padding: 0 0 5px 0;
}

.lp-faq button {
   width: 100%;
   padding: 12px 20px;
   background: #e9f0f5;
   text-align: left;
   text-transform: none;
   border-radius: 0;
   border: none;

}

.lp-faq .subheading {
   margin: 0 !important;
   color: #000;
   font-size: 16px;
   line-height: 26px;
}

.lp-faq button:before {
   height: 18px;
   width: 18px;
   margin: 3px 0 0;
   content: '';
   float: right;
   background: no-repeat url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAxZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QThCM0VCMzNFQkVFMTFFNUJCQTBCQzAyRUIyRUVDMEQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QThCM0VCMzJFQkVFMTFFNUJCQTBCQzAyRUIyRUVDMEQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9IjlEOUIyQTc0NUEwRTUwNEQ0MEZBQkMwOEZGNDdBQUFGIiBzdFJlZjpkb2N1bWVudElEPSI5RDlCMkE3NDVBMEU1MDRENDBGQUJDMDhGRjQ3QUFBRiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ptuk9CoAAANbSURBVHjazFjPaxNBFN5sEkGCUUEQjKUg9oc/IGohaAsWRWiLB6Ei9eChFHKpPfUfCGi9FkXJJSCleNCLoJdQEA8pqZ7E+LOtIi21QsGDNRShovF78m14xt1mN2mSPviY2ZnZ9759szPz3gQMjxKJRI6g6AO6gHagCQixew1YAmaBLJBeXl5+60W/zyWJbSgGgWEg6vEbckASmAC59aoJgUw/inGgWTV/BzLAC+ATsMr2ncAB4ARwGgirdxaBUZB6WBEhENmBIgUMqOYpfq1Mxc8yHxLk1IpXe1TXAyCO9/OuCUHZfho/zCbxxAiUPDMqEOg7heIOPSfyTkhC3+fSsaYDmRlF5gYQq5SMCN+NUZdB3TO05ewhTtNzviBTMgRl94xNFNi4guIuEKSnTurpK/VQSnlm08nQW6JzSHkqpfv9JavpmjVNePGmh6/2hcNhXz6fdzUe415hfJAr8Sjqr9H2vugh7jPj6gdOeCCzHcWcgHW3kqAtkXFyKE7ZoNpnZDX98qB4L9BCtHqYOrExwsdmcigSGrb2mWpWk9udv2T1TWkOJs8m6zhIGvUXy2ZUuJjcTa3jIN0AQmnaFukzeWqLZModB7UQ2szwsctkCGGoP74RYtluDzCeMXhqb7S0Wx1+2n2q3oaxdioKwDy88cPBhGW7KaCCq9UyMU2Liy+9v0HfB5BtA6mCTZ9lO2QaW0wCDDtDDK6cJMoN0E7kxJ5m/TwPTDtZcfCOoWyvBRgDtzPSc1oJMvcLDv+XfvyCsQsVOMayvWQyIBc53sCZsmzPmswORLoZdtZVaLObj1lT7c4SkPc2wDu9KhlIm8ybcmy42gBCls2ccDFLDrgeuDBWhfKCx+mKqYwkqcOPCeZNfzsw0O9B74psesS8BzJ+5YhFcvg3IQQKxFgdfuYxZa//v5haYlrEtockxpVYF/U5tL2pEZnLKG5ZiSP+netOWUdc7bSTeHGgBmRE56RKGOO2WQe9tA7PPEb1ErAbuCjZBDCNvkKVRPzQI4H9bdqVE+IMvPN1w8yV6W0n2fuYHWShsKMKMh3cgBPUKbo77VJpr5cNj7gynkDZ7zIk5GPPMXi/UNVlg4vrGHHzU+Al8BH4xvZdwEHgGHAW2LNp1zFb9sKq3ld6fwQYAOm5M92nOg2/AAAAAElFTkSuQmCC');
   background-size: 18px 18px;
}

.lp-faq .lp-toggle-open button:before {
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAMAAADW3miqAAAAYFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////98JRy6AAAAH3RSTlMALh4F1s9PC69e9OCogXRmUjbxuLOEV/ri2kXryKl54aqrVwAAAQ9JREFUOMuNlOeSgzAMBgW26b0lIWXf/y1v7uYMxJTx/mUZybI/yZagSnQGmU6qQA5RtWGDqdXeaXKgG8o0itJy6IC8cZS4APpo+VlFPVDEWyfUYFr5ojWgw41zh1Htmhzhvlix5pbKAekNbSsWYB3XguL/XDDKCSM0f6VzjDqTlCH//VhDK6e0UIuIoZcLeoxIANGVFEEgFZ26klRHJQmDXDKQiKa8lkq0ZHaQcegQ24FmsvT9wOGxdO4nreUCh7WcV+NeI/Aapte1+Fyw11PxenQ+z3cJwnTsTFBsIjUdOjZSNpzlPpylDeca85cb8xfocLcwklkW5mRdGM7qeb4/0zxPn/dzXT2+S8xrHf4AYjse09S+rQoAAAAASUVORK5CYII=');
}


/* Öppen */
.lp-toggle-open button {
   background: #004b8d;
}

.lp-toggle-open .subheading {
   color: #fff;
}

.lp-toggle-content {
   padding: 20px;
   background: #e9f0f5;
}

.lp-toggle-content .normal:last-child {
   margin: 0 0 15px;
}


/* Länklista i FAQ */
.lp-faq .generated-list-name-Lanklista.normal {
	margin: -10px 0 !important;
}

.lp-faq ol.generated-list-name-Lanklista li {
	padding: 10px 0;
}

.lp-faq .generated-list-name-Lanklista a {	
	font-size: 16px !important;
	line-height: 26px !important;
}


/* Tabeller i FAQ */

.lp-faq table.sv-standard {
   margin: 0;
   border-bottom: none;
}

.lp-faq table.sv-standard th {
    padding: 12px 20px;
}

.lp-faq .sv-text-portlet table.sv-standard th p {
    font-weight: normal;
}


/*
---------------------------------------------------------
VIKTIG RUTA
--------------------------------------------------------- */

.lp-important-box {
   width: 48.38709677419355%;
   margin: 10px 0 30px 3.225806451612904%;
   padding: 20px;
   background: #f7fdff;
   border: 2px solid #acecfa;
   border-radius: 3px;
   box-sizing: border-box;
   float: right;
}
.lp-important-box-full {
   width:auto;
   margin: 10px 0 0 0;
   padding: 20px;
   background: #1c3b5d;
   border: none;
   border-radius: 10px;
   box-sizing: border-box;
   float:none;
}

.lp-important-box .subheading,
.lp-important-box .subsubheading {
   margin: 0 0 5px;
   font-size: 20px;
   line-height: 26px;
}

.lp-important-box .normal:last-child {
   margin: 0 0 0px;
}

.lp-important-box a {
   text-decoration: none !important;
}

.lp-important-box a:hover,
.lp-important-box a:focus {
   text-decoration: none !important;
}

.lp-important-box a:after {
   height: 9px;
   width: 6px;
   margin: 0 0 0 8px;
   /*content: '';
   background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAjCAMAAACn3QoXAAAASFBMVEUAAAAASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0Y//LEAAAAF3RSTlMA8Tf2QlvrLfoj5E3KVeHTd9yzejwcAe12OA4AAAB3SURBVCjP1c9JDoAgEETRltEBnLXvf1OjgoFOJ8rSv3yLSgpA9zh0QPN4pik7vPKE+5trsjMj61ZGV5mLKrgs9Ep8cmuiW95NqTeZN23wttCnLfMRQy5Vjc+rX6iPKtdEuzqqelXFKgysAq9gWIWRVdgXg05QPQDa3RgKURcobgAAAABJRU5ErkJggg==');*/
   background-size: 6px 9px;
   display: inline-block;
   vertical-align: middle;
}


/*
---------------------------------------------------------
NYHETSLISTNING
--------------------------------------------------------- */

.lp-news-archive ul {
   margin: 0 0 40px;
}

.lp-news-archive li {
   margin: 0 0 20px;
}

.lp-news-archive br {
   display: none;
}

.lp-news-archive .normal {
   font-size: 14px;
   line-height: 22px;
}

.lp-news-archive .litenxtext {
   font-size: 14px;
   line-height: 22px;
   font-weight: bold;
}

.lp-news-archive .litenxtext:before {
   margin: 0 5px 0 0;
   content: '- ';
   display: inline-block;
}

.lp-news-archive .subheading a {
   font-size: 18px;
   line-height: 24px;
   color: #004b8d;
   text-decoration: none;
   text-transform: uppercase;
   display: block;
}

.lp-news-archive .subheading a span {
   display: inline !important;
}

.lp-news-archive .subheading a:after {
   height: 13px;
   width: 8px;
   margin: 0 0 0 8px;
   content: '';
   background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAjCAMAAACn3QoXAAAASFBMVEUAAAAASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0ASo0Y//LEAAAAF3RSTlMA8Tf2QlvrLfoj5E3KVeHTd9yzejwcAe12OA4AAAB3SURBVCjP1c9JDoAgEETRltEBnLXvf1OjgoFOJ8rSv3yLSgpA9zh0QPN4pik7vPKE+5trsjMj61ZGV5mLKrgs9Ep8cmuiW95NqTeZN23wttCnLfMRQy5Vjc+rX6iPKtdEuzqqelXFKgysAq9gWIWRVdgXg05QPQDa3RgKURcobgAAAABJRU5ErkJggg==');
   background-size: 8px 13px;
   display: inline-block;
}


/* Hover */
.lp-news-archive li:hover .subheading a,
.lp-news-archive li:focus .subheading a,
.lp-news-archive li:hover .normal,
.lp-news-archive li:focus .normal,
.lp-news-archive li:hover .litenxtext,
.lp-news-archive li:focus .litenxtext {
   text-decoration: underline;
}

.lp-news-archive li:hover .litenxtext:before,
.lp-news-archive li:focus .litenxtext:before {
   text-decoration: none;
}

/* Skapa artikel-länkar */
a.sv-create-article-entry {
   margin: 0 0 20px;
   padding: 12px 40px;
   font-size: 12px !important;
   line-height: 16px !important;
   color: #fff !important;
   text-align: center;
   text-transform: uppercase;
   text-decoration: none !important;
   background-color: #004b8d;
   border-radius: 5px;
   box-sizing: border-box;
   display: block;
}

a.sv-create-article-entry:hover,
a.sv-create-article-entry:focus {
   background-color: #035aa7;
}


/*
---------------------------------------------------------
STARTSIDA - NYHETER
--------------------------------------------------------- */

.lp-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(153,10,44,0.9);
  /*border-bottom: 2px solid #004b8d;*/
  font-size: 14px;
  text-align: center;
  z-index: 99999;
  /*border-top: 2px solid #004b8d;*/
  color: #ffffff;
}

.lp-cookie-consent a {
       font-size: 14px;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    text-decoration: none;
}

.lp-cookie-consent button {
   margin: 0 0 0 10px;
    padding: 20px 40px;
    font-size: 14px;
    border: 1px solid #ffffff;
    color: #ffffff !important;
    background: transparent;
}


/*
---------------------------------------------------------
LOGINRUTA
--------------------------------------------------------- */
.sv-login-portlet label {
    display: block;
    width: 100%!important;
    padding: 4px 0 1px;
    /* border: 1px solid #004b8d; */
    border-radius: 0px;
    background: transparent;
    color: #004b8d;
    font-size: 10px;
    line-height: 14px;
    text-indent: 10px;
    text-transform: uppercase;
    box-sizing: border-box;
    margin-bottom: 10px;
}

/*
.sv-login-portlet label {
   display: block;
   width: 100% !important;
   padding: 4px 0 1px;
   border: 1px solid #ddd;
   border-radius: 5px 5px 0 0;
   background: #ddd;
   color: #333;
   font-size: 10px;
   line-height: 14px;
   text-indent: 10px;
   text-transform: uppercase;
   box-sizing: border-box;
}*/


.sv-login-portlet input[type=text], .sv-login-portlet input[type=password] {
    display: block;
    width: 100%!important;
    margin: 0 0 10px;
    padding: 8px 0;
    background: #fff;
    color: #333;
    border: 1px solid #004b8d;
    /* border-top: #aaa!important; */
    border-radius: 0;
    text-indent: 10px;
    box-sizing: border-box;
}
/*
.sv-login-portlet input[type=text],
.sv-login-portlet input[type=password] {
   display: block;
   width: 100% !important;
   margin: 0 0 10px;
   padding: 8px 0;
   background: #fff;
   color: #333;
   border: 1px solid #ddd;
   border-top: #aaa !important;
   border-radius: 0 0 5px 5px;
   text-indent: 10px;
   box-sizing: border-box;
}*/

.sv-login-portlet input[type=text]:focus,
.sv-login-portlet input[type=password]:focus {
   background: #f9f5e6;
   border-color: #f4fcdf;
}

.sv-login-portlet input[type=submit] {
    width: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #444545;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid #444545;
}
/*
.sv-login-portlet input[type=submit] {
   width: 100%;
   background: #84ad21;
   border: none;
   border-radius: 15px;
   color: #fff;
   font-size: 12px;
   text-transform: uppercase;
}*/

.sv-login-portlet input[type=submit]:hover,
.sv-login-portlet input[type=submit]:focus {
   background: #035aa7;
   color: #fff;
}

.sv-login-portlet fieldset {
   padding: 0;
}

.sv-login-portlet br {
   display: none;
}


/*
---------------------------------------------------------
STARTSIDA - BILDSPEL
--------------------------------------------------------- */

.lp-hero {
   background-position: 70% 0%;
   background-size: cover;
   /*background-attachment: fixed;
   background-image: url(/images/18.2775b75516e1880cae473c26/1574153983853/bild.jpg);*/
   background-repeat: repeat;
   height: 80vh; 
   min-height: 300px;
    
}

.lp-slideshow-slides {
   width: 100%;
   list-style: none;
   margin: 0;
   padding: 0;
}

.lp-hero {
   /*position: relative;*/
}

.lp-hero-text {
   position: absolute;
   left: 50%;
   top: 50%;
   margin-left: -465px;
   margin-top: -75px;
   width: 410px;
   max-width: 100%;   
   background-color: rgba(255, 255, 255, .9);
   padding: 20px;
   border-radius: 10px;
}

.lp-hero-text .subheading a {
   font-size: 28px;
   line-height: 32px;
   color: #cf6c1b;
   font-weight: bold;
   display: block;
   margin: 0 0 8px;
}

.lp-js .lp-slideshow-slides li:hover .subheading a {
   text-decoration: underline;
}

.lp-hero-text .subheading .icon {
    width: 16px;
    height: 16px;
    margin: -1px 0 0;
    vertical-align: middle;
}

.lp-hero-text a {
   text-decoration: none;
}

.lp-section-blue {
   position: relative;
   z-index: 100;
}

.lp-slideshow-menu {
   position: absolute;
   right: 50%;
   top: 40px;
   margin-right: -465px;
   border-radius: 10px;
   margin-left: 0;
   margin-top: 0;
   list-style: none;
   padding: 0;
   background: rgba(246, 109, 0, .85);
   width: 300px;
   cursor: pointer;
   overflow: hidden;
   z-index: 99;
}

.lp-slideshow-menu li {
   display: table;
   width: 100%;
   height: 70px;
   margin: 0;
   font-size: 16px;
   text-transform: uppercase;
   text-align: center;
}

.lp-slideshow-menu li.flex-active {
   background: #cf6c1b;
   font-weight: bold;
   color: #fff;
}

.lp-slideshow-menu li + li {
   border-top: 1px solid #e88023;
}

.lp-slideshow-menu li p.normal {
   display: table-cell;
   vertical-align: middle;
   margin: 0 !important;
   padding: 0 20px;
   color: #fff;
}

.lp-js .lp-slideshow-menu li:hover p.normal {
   text-decoration: underline;
}

/*
---------------------------------------------------------
   STARTSIDA - MEST SÖKTA / POPULÄRA LÄNKAR & SÖK
--------------------------------------------------------- */

.lp-start-popular-links-content {
   max-width: 940px;
   margin: -75px auto 20px;
   /*margin: -75px auto 60px;*/
   padding: 25px;
   border-radius: 5px;
   background: #0e5a9c; /* Old browsers */
   background: -moz-linear-gradient(top,  #0e5a9c 0%, #004b8d 100%); /* FF3.6-15 */
   background: -webkit-linear-gradient(top,  #0e5a9c 0%,#004b8d 100%); /* Chrome10-25,Safari5.1-6 */
   background: linear-gradient(to bottom,  #0e5a9c 0%,#004b8d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e5a9c', endColorstr='#004b8d',GradientType=0 ); /* IE6-9 */
}

.lp-start-popular-links-content .main-grid {
	width: 100%;
}

/* Mest sökta */
.lp-start-popular-links ul {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: table;
}

.lp-start-popular-links li {
	padding: 16px 8px;
	background: #fff;
	text-align: center;
	display: table-cell;
}

.lp-start-popular-links li:first-child {
	padding: 16px 5px 16px 15px;
	background: #15436d;
	text-align: left;
	border-radius: 5px 0 0 5px;
	position: relative;
}

.lp-start-popular-links li:first-child:after {
	width: 0;
	height: 0;
	content: '';
	border-style: solid;
	border-width: 29px 0 29px 10px;
	border-color: transparent transparent transparent #15426d;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
}

.lp-start-popular-links li:last-child {
	border-radius: 0 5px 5px 0;
}

.lp-start-popular-links a,
.lp-start-popular-links span {
	font-size: 14px !important;
	line-height: 14px !important;
}

.lp-start-popular-links span {
	color: #fff;
}

.lp-start-popular-links a {
	/*color: #434040 !important;
	display: block;*/
}


/* Sök innehåll */
.lp-start-popular-links-content .sv-searchform-portlet form {
	position: relative;
}

.lp-start-popular-links-content .sv-searchform-portlet input[type=text] {
	padding: 15px 20px 15px 15px;
	border: 1px solid #fff;
}

.lp-start-popular-links-content .sv-searchform-portlet input[type=image] {
	height: 21px;
	width: 21px;
	padding: 19px;
	position: absolute;
	top: 0;
	right: 0;
}

.lp-start-popular-links-content .sv-searchform-portlet input[type=image]:hover {
	outline: none;
}


/*
---------------------------------------------------------
STARTSIDA - SNABBLÄNKAR
--------------------------------------------------------- */


.lp-quick-links {
   margin: 0;
   padding: 0;
   list-style: none;
}

.lp-quick-links li {
   width: 22.580645161290324%;
   margin: 0 0 20px 3.225806451612904%;
   float: left;
}

.lp-quick-links li:nth-child(4n-7) {
   margin: 0 0 20px 0;
   clear: both;
}

.lp-quick-links a {
   min-height: 112px;
   padding: 20px 20px 10px;
   font-size: 12px;
   line-height: 16px;
   font-weight: normal;
   text-align: center;
   text-transform: uppercase;
   text-decoration: none;
   background: #fff;
   border-radius: 5px;
   display: block;
   color: #16436d;
   
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.lp-quick-links .icon {
   margin: 0 auto 15px;
   font-size: 56px;
   display: block;
   transform: translateZ(0);
   transition-duration: 0.3s;
   transition-property: transform;
   transition-timing-function: ease-out;
}

.lp-quick-links a:hover .icon,
.lp-quick-links a:focus .icon {
   -webkit-animation-name: hvr-icon-pop;
   animation-name: hvr-icon-pop;
   -webkit-animation-duration: 0.3s;
   animation-duration: 0.3s;
   -webkit-animation-timing-function: linear;
   animation-timing-function: linear;
   -webkit-animation-iteration-count: 1;
   animation-iteration-count: 1;
}

.lp-quick-links a:focus {
   text-decoration: underline;
}

/* Icon Pop */
@-webkit-keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

/*
---------------------------------------------------------
STARTSIDA - KUNDTJÄNST
--------------------------------------------------------- */

.lp-start-customer-service {
   text-align: center;
}

.lp-start-customer-service a {
   text-decoration: none;
}

.lp-start-customer-service a span {
   color: #004b8d;
   text-decoration: underline;
}

.lp-start-customer-service a span:hover,
.lp-start-customer-service a span:focus {
   text-decoration: none;
}

.lp-start-customer-service-phone {
   margin: 55px 0 30px;
   font-size: 32px;
   font-weight: bold;
   display: block;
}

.lp-start-customer-service-phone:hover,
.lp-start-customer-service-phone:focus {
   color: #004b8d;
}

.lp-start-customer-service-link {
   margin: 0 10px;
   font-size: 14px;
}

.lp-start-customer-service-link .icon {
   font-size: 16px;
}

.lp-start-customer-service .lp-link-button p {
   margin: 0 !important;
}

.lp-start-customer-service .lp-link-button a {
   margin: 40px 0 0;
   display: block;
}


/*
---------------------------------------------------------
STARTSIDA - NYHETER
--------------------------------------------------------- */

.lp-start-news ul {
	overflow: hidden;
}

.lp-start-news li {
	width: 31.914893617021274%;
	margin: 0 0 60px 2.127659574468085%;
	float: left;
}

.lp-start-news li:nth-child(3n+1) {
   margin: 0 0 60px;
}

.lp-start-news li img {
	margin: 0 0 10px;
	display: block;
}

.lp-start-news li a {
	line-height: 24px;
	display: block;
}

.lp-start-news .sv-archive-portlet h2.subheading a span {
	font-size: 18px;
	font-weight: bold;
	display: inline;
}

.lp-start-news li .litenxtext {
   display: inline-block;
	font-size: 12px;
	font-weight: bold;
   line-height: normal;
}

.lp-start-news li .litenxtext + .litenxtext {
   padding: 0 0 0 5px;
	border-left: 1px solid #ccc;
}

.lp-start-news li .normal {
	font-size: 14px;
	display: block;
}

/* Hover reset */
.lp-start-news .lp-header-link .subheading a {	
	text-decoration: none;
}

.lp-start-news .lp-header-link .subheading a:hover,
.lp-start-news .lp-header-link .subheading a:focus {
	text-decoration: none;
}

/* Hover */
.lp-start-news li:hover img,
.lp-start-news li:focus img,
.lp-start-news li:hover span,
.lp-start-news li:focus span {
   cursor: pointer;
	text-decoration: underline;
}

/* Knappar för att visa fler nyheter m.m. */
.lp-start-news .sv-horizontal {
   text-align: center;
}

.lp-start-news .sv-horizontal .sv-text-portlet {
   margin: 0 5px;
   float: none;
   display: inline-block;
}

/* Visa/Dölj beroende på javascript */
.lp-link-button.lp-start-news-show-more,
.sv-text-portlet.lp-link-button.lp-start-news-show-less {
   display: none;
}

.lp-js .lp-link-button.lp-start-news-show-more {
   display: block;
}

.lp-js .sv-text-portlet.lp-link-button.lp-start-news-show-less {
   display: inline-block;
}

/*
---------------------------------------------------------
EVENEMANGSLISTA
--------------------------------------------------------- */

.sv-eventcalendar-portlet {
   margin: 0 !important;
}

.sv-eventcalendar-portlet ul {
   list-style-type: none;
   display: table;
   width: 100%;
   margin: 0;
   padding: 0;
   table-layout: fixed;
}

.sv-eventcalendar-portlet li {
   display: table-cell;
   text-align: center;
}

.sv-eventcalendar-portlet li:first-child {
   text-align: left;
}

.sv-eventcalendar-portlet li:last-child {
   text-align: right;
}

.sv-eventcalendar-portlet a.normal {
   display: inline-block;
   padding: 10px;
   background: #e9f0f5;
   text-decoration: none;
}

.lp-event-list {
   border-top: 1px solid #eee;
}

.lp-event-list li {
   padding: 20px 0;
   border-bottom: 1px solid #eee;
}

.lp-event-list h2.subheading {
   display: block;
   margin: 0 0 10px;
}

.lp-event-list h2.subheading a {
   color: #004b8d;
   text-decoration: none;
}

.lp-event-list h2.subheading a:hover,
.lp-event-list h2.subheading a:focus {
   text-decoration: underline;
}

.lp-js .lp-event-list li:hover h2.subheading a,
.lp-js .lp-event-list li:focus h2.subheading a {
   text-decoration: underline;
}

.lp-js .lp-event-list li:hover,
.lp-js .lp-event-list li:focus {
}

.lp-event-details {
   display: table;
}

.lp-event-details > div {
   display: table-cell;
   vertical-align: middle;
}

.lp-event-date {
   padding: 0 20px 0 0;
}

.lp-event-date > span {
   display: inline-block;
   margin: 4px 0 0;
   vertical-align: top;
   color: #00498f;
   font-size: 18px;
   font-weight: bold;
}

.lp-event-date > div {
   display: inline-block;
}

.lp-event-startdate span,
.lp-event-enddate span {
   display: block;
   box-sizing: border-box;
   font-size: 16px;
}

.lp-event-startdate,
.lp-event-enddate {
   overflow: hidden;
   border-radius: 5px;
   text-align: center;
}

.lp-event-day {
   padding: 3px 20px;
   background: #fff;
   border: 1px solid #9bb9d4;
   border-bottom: none;
   border-radius: 5px 5px 0 0;
   color: #00488e;
   font-size: 22px;
}

.lp-event-month {
   padding: 3px 20px;
   background: #00488e;
   color: #fff;
   text-transform: uppercase;
}

.lp-event-year {
   display: none !important;
   padding: 0 20px;
   background: #00488e;
   color: #fff;
}

.lp-event-more {
   font-size: 16px;
   list-style-type:none;
   margin:0;
   padding:0;
   
}
.lp-event-more > li {display:inline-block;}
.lp-event-more > li:after {content:", "}
.lp-event-more > li:last-child:after {content:""}

.lp-event-detail-wrapper {
   float: right;
   margin: 0 0 30px 20px;
}

.lp-event-detail-wrapper .lp-event-details > div {
   display: block;
}

.lp-event span {
   line-height: normal;
}

.lp-event span {
   display: inline-block;
   margin: 0 3px 10px 0;
   padding: 0 8px 0 0;
}

.lp-event .lp-event-cathegory {
   display: inline-block;
   margin: 0 8px 10px 0;
   padding: 0 12px 0 0;
   border-right: 1px solid #ccc;
   color: #555;
   text-transform: uppercase;
}

/*
---------------------------------------------------------
SÖK
--------------------------------------------------------- */


.sv-facetedsearch-portlet {
	margin: 40px 0 0;
}

.sv-facetedsearch-portlet form {
	max-width: 620px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}

.sv-facetedsearch-portlet form input[name=query] {
	width: 100%;
	box-sizing: border-box;
	padding: 15px 60px 15px 15px;
}

.sv-facetedsearch-portlet .lp-hits-meta + div {
	border-top: 1px solid #c2d4e4;
}

.sv-facetedsearch-portlet .pagination {
	text-align: center;
}

.sv-facetedsearch-portlet .pagination a,
.sv-facetedsearch-portlet .pagination .next,
.sv-facetedsearch-portlet .pagination .prev,
.sv-facetedsearch-portlet .pagination .current {
	display: inline-block;
	padding: 10px 15px;
	font-family: "Source Sans Pro", Helvetica;
	font-size: 12px !important;
	line-height: 16px !important;
	color: #fff !important;
	border: none;
	background-color: #004b8d;
	border-radius: 5px;
	border: 1px solid #007ac3;
	
	text-decoration: none !important;
}

.sv-facetedsearch-portlet .pagination span,
.sv-facetedsearch-portlet .pagination a {
	float: none !important;
	display: inline-block;
}

.sv-facetedsearch-portlet .pagination .current {
	background-color: #0c2740;
	border-color: #6d6d6d;
}

.sv-facetedsearch-portlet .pagination .current.next,
.sv-facetedsearch-portlet .pagination .current.prev {
	background-color: #fff;
	border-color: #c3c3c3;
	color: #b8b8b8 !important;
}

.lp-hits-meta {
	/* white-space: nowrap; Tog bort när det blev fler facetter */
	text-align: center;
	padding: 20px 0 40px;
}

.lp-hit-count,
.lp-hit-facets {
	display: inline-block;
	text-align: left;
	padding: 0 15px;
}

.lp-facet {
	position: relative;
}

.lp-facet-field-list > li > a,
.lp-facet-field-list > li > .lp-facet-nohits {
	display: inline-block;
	padding: 10px 25px;
	font-family: "Source Sans Pro", Helvetica;
	font-size: 12px !important;
	line-height: 16px !important;
	color: #fff !important;
	border: none;
	background-color: #004b8d;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none !important;
}

.lp-facet-field-list > li.lp-facet-selected > a {
   padding: 10px 25px 10px 40px;
   background: #15436d 20px 50% no-repeat url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAMAAABF0y+mAAAAYFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////98JRy6AAAAH3RSTlMAtgX6B9vF8/fpID3LnopiRT9WokkoGdO9p5deJyQWe8yd1QAAAPhJREFUKM99k9sSwiAMRJFwtVBbbb3r/v9fWsxoqHWaFwJn2NkkoL7RtC4SRdc26jd2FiDrnCXA7mZom0C5MyU1XSakrbA+4vKQ7eOC+NXuKOzVLPaBOs7u3i88NN7fy6oT5J7cRdLFJw7qTxxQPNtwZMeaTzU7PQY7OUVmho1+sw2YZvSqRaf4sFBeuAa0ypFhOVOOC/vsyak4SQtlxmGjmnhFKzZp1lAXqGsosppltciKobcXI9SQ+y3F1KUsmmCqJqy2b73x6yNT4/9hj5wNFG5zdgs0fPLBIz8FPTP8INsxwV97nmd/9Ujj4lGH0/l8CtWjXv0OL+OrD4M2N7wXAAAAAElFTkSuQmCC');
   background-size: 14px auto;
}

.lp-facet-field-list > li > span.lp-facet-nohits {
   color: rgba(255, 255, 255, 0.5) !important;
   cursor: default;
   font-style: italic;
}

.lp-facet .lp-facet-count {
	position: absolute;
	right: 5px;
	top: 5px;
	color: #fff;
}

.lp-facet-field > h2 {
	display: none;
}

.lp-facet-field-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp-facet-field-list li {
	display: inline-block;
   margin-top:5px;
}

.sv-search-result > li:nth-child(even) {
	background: #f7f7f8;
	border-radius: 0;
}

.sv-search-hit {
	padding: 15px !important;
}

.sv-search-hit a {
	color: #004b8d !important;
	text-decoration: none;
}

.sv-search-hit .preamble a {
	font-size: 18px;
}

.sv-search-hit img {
	max-width: 20px;
	margin-right: 5px;
}

.sv-search-hit .sv-linkicon {
	display: none;
}

/** Merga med base:1092 **/
.sv-facetedsearch-portlet form input[type=image] {
    height: 21px;
    width: 21px;
    padding: 19px;
    position: absolute;
    top: 0;
    right: 18px;
}


/*
---------------------------------------------------------
VIKTIGT MEDDELANDE
---------------------------------------------------------*/

.sv-archive-portlet.lp-alert li {
   max-width: 940px;
   position: relative;
   margin: 25px auto;
	background: #ffe7e7;
   border: 2px solid #e13d3d;
}

.lp-alert .sv-channel-item h1 a {
   display: block;
   margin: 0;
   padding: 20px 10px 17px 220px;
   font-size: 20px;
   line-height: 25px;
   text-decoration: none;
}

.lp-alert .sv-channel-item h1 a:hover,
.lp-alert .sv-channel-item h1 a:focus {
   text-decoration: underline;
}

.lp-alert .sv-channel-item > div:first-child {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   vertical-align: middle;
   background: #e13d3d;
}

.lp-alert .sv-channel-item svg {
   fill: #fff;
   width: 40px;
   height: 40px;
   margin: 10px 15px 0 10px;
}

.lp-alert .sv-channel-item > div:first-child:after {
   display: inline-block;
   max-width: 115px;
   content: 'VIKTIGT MEDDELANDE ';
   color: #fff;
   font-size: 16px;
   line-height: 22px;
}

.sv-archive-portlet.lp-driftmeddelande li {
   max-width: 940px;
   position: relative;
   margin: 25px auto;
	background: #fffae8;
   border: 2px solid #fbe081;
   border-radius: 5px;
}

.lp-driftmeddelande .sv-channel-item h1 a {
   display: block;
   margin: 0;
   padding: 20px 10px 17px 150px;
   font-size: 20px;
   line-height: 25px;
   text-decoration: none;
}

.lp-driftmeddelande .sv-channel-item h1 a:hover,
.lp-driftmeddelande .sv-channel-item h1 a:focus {
   text-decoration: underline;
}

.lp-driftmeddelande .sv-channel-item > div:first-child {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   vertical-align: middle;
   background: #fbe081;
}

.lp-driftmeddelande .sv-channel-item svg {
   fill: #000;
   width: 40px;
   height: 40px;
   margin: 10px 15px 0 15px;
}

.lp-driftmeddelande .sv-channel-item > div:first-child:after {
   display: inline-block;
   content: '';
   color: #000;
   font-size: 16px;
   line-height: 22px;
}


/* PROXYPORTLET FÖR TRÄNINGSPASS PÅ BAD OCH TRÄNINGSCENTERS WEBBSIDA */
.sv-proxy-portlet th {
    text-align:left;
}


/* Dekorationer*/
/* Processflöde */
.lp-processflode ol {
    list-style-type:none;
    padding:0;
    margin:0;
}
.lp-processflode ol li {
    background-color:white;
    border:1px solid #E6E8E9;
    text-align:center;
    /*min-height:105px;*/
    vertical-align:middle;
    border-radius:5px;
    margin-bottom:10px;
    position:relative;
    padding-top:20px;
    padding-bottom:36px;

}
.lp-processflode ol li:after {
    display:block;
    width:42px;
    height:42px;
    color:white;
    line-height:40px;
    background-color:#004B8D;
    text-align:center;
    content:"▾";
    font-size:27px;
    font-weight:bold;
    font-family:"Source Sans Pro";
    position:absolute;
    bottom:-18px;
    z-index:1;
    border-radius:50%;
    left:50%;
    margin-left:-21px;
    border:2px solid white;

}
.lp-processflode ol li:last-child:after {
    display:none;
}
.lp-processflode ol li strong {
    font-weight: normal;
    font-style: normal;
    font-size: 22px;
    color: #222222;
    line-height: 30px;
}

/* Kriswebben */
.lp-crisis-log ol, 
.lp-crisis-log ul {
    list-style-type: none;
    padding:20px;
    margin:0;
    border-radius:5px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff9c46+0,df802c+100 */
    background: #ff9c46; /* Old browsers */
    background: -moz-linear-gradient(top,  #ff9c46 0%, #df802c 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #ff9c46 0%,#df802c 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #ff9c46 0%,#df802c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9c46', endColorstr='#df802c',GradientType=0 ); /* IE6-9 */
}
.lp-crisis-log ol li span,
.lp-crisis-log ul li span {
    line-height:16px;
}

.lp-crisis-log ul li span:first-child {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.lp-crisis-log ol li,
.lp-crisis-log ul li {
    font-size:14px;
    line-height:17px;
    padding-bottom:15px;
    margin-bottom:15px;
    border-bottom:1px solid #BF783A;
}
.lp-crisis-log ol li:last-child,
.lp-crisis-log ul li:last-child {
    padding-bottom:0;
    margin-bottom:0;
    border-bottom:0 none;
}
.lp-crisis-log ol li strong,
.lp-crisis-log ul li strong {
    font-size:14px;
    line-height:16px;
    display:block;
    margin-bottom:5px;
}

.lp-crisis-information h1.heading {
    color:#F6770C;
}

button, input[type="button"], input[type="submit"], input[type="reset"], .sv-defaultFormTheme input[type=button], .sv-defaultFormTheme input[type=submit], .sv-defaultFormTheme input[type=reset] {
    font-family: "Source Sans Pro", Helvetica;
    padding: 12px 40px;
    font-size: 12px !important;
    line-height: 16px !important;
    color: #222222 !important;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 35px !important;
    background: #ffffff;
    display: inline-block;
    border: 1px solid #ffffff;
    transition: all 200ms;
}

button:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, button:focus, input[type="button"]:focus, input[type="submit"]:focus, input[type="reset"]:focus, .sv-defaultFormTheme input[type=button]:hover, .sv-defaultFormTheme input[type=submit]:hover, .sv-defaultFormTheme input[type=reset]:hover, .sv-defaultFormTheme input[type=button]:focus, .sv-defaultFormTheme input[type=submit]:focus, .sv-defaultFormTheme input[type=reset]:focus {
	 /*color: #fff;
    background-color: #004b8d;
    outline: 0;*/
    /*background-color: #035aa7; */
    background-color: #990a2c !important;
    color: #fff !important;
}

input[type=text], input[type=email], input[type=url], input[type=tel], input[type=number], input[type=password], textarea, select, .sv-defaultFormTheme input[type=text], .sv-defaultFormTheme input[type=email], .sv-defaultFormTheme input[type=url], .sv-defaultFormTheme input[type=tel], .sv-defaultFormTheme input[type=number], .sv-defaultFormTheme input[type=password], .sv-defaultFormTheme textarea, .sv-defaultFormTheme select {
    font-family: "Source Sans Pro", Helvetica;
    padding: 12px 40px;
    font-size: 12px !important;
    line-height: 16px !important;
    color: #222222 !important;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 10px !important;
    background: #ffffff;
    display: inline-block;
    border: 1px solid #ffffff;
    transition: all 200ms;
}


/*
----------------------------------------------------
Länkar
----------------------------------------------------*/
/*
a.portlet-font:link, a.portlet-font-label:link, a.portlet-font-dim:link, a.portlet-msg-status:link, a.portlet-msg-info:link, a.portlet-msg-error:link, a.portlet-msg-alert:link, a.portlet-msg-success:link, a.portlet-section-header:link, a.portlet-section-body:link, a.portlet-section-alternate:link, a.portlet-section-selected:link, a.portlet-section-subheader:link, a.portlet-section-footer:link, a.portlet-section-text:link, a.portlet-form-label:link, a.portlet-form-input-field:link, a.portlet-form-button:link, a.portlet-icon-label:link, a.portlet-dlg-icon-label:link, a.portlet-form-field-label:link, a.portlet-form-field:link, a.portlet-menu:link, a.portlet-menu-item:link, a.portlet-menu-item-selected:link, a.portlet-menu-item-hover:link, a.portlet-menu-item-hover-selected:link, a.portlet-menu-cascade-item:link, a.portlet-menu-cascade-item-selected:link, a.portlet-menu-description:link, a.portlet-menu-caption:link, a.sv-portlet-link-description:link, a.sv-portlet-primary-paragraph:link, a.normal:link, .portlet-font a:link, .portlet-font-label a:link, .portlet-font-dim a:link, .portlet-msg-status a:link, .portlet-msg-info a:link, .portlet-msg-error a:link, .portlet-msg-alert a:link, .portlet-msg-success a:link, .portlet-section-header a:link, .portlet-section-body a:link, .portlet-section-alternate a:link, .portlet-section-selected a:link, .portlet-section-subheader a:link, .portlet-section-footer a:link, .portlet-section-text a:link, .portlet-form-label a:link, .portlet-form-input-field a:link, .portlet-form-button a:link, .portlet-icon-label a:link, .portlet-dlg-icon-label a:link, .portlet-form-field-label a:link, .portlet-form-field a:link, .portlet-menu a:link, .portlet-menu-item a:link, .portlet-menu-item-selected a:link, .portlet-menu-item-hover a:link, .portlet-menu-item-hover-selected a:link, .portlet-menu-cascade-item a:link, .portlet-menu-cascade-item-selected a:link, .portlet-menu-description a:link, .portlet-menu-caption a:link, .sv-portlet-link-description a:link, .sv-portlet-primary-paragraph a:link, .normal a:link, a.portlet-font:visited, a.portlet-font-label:visited, a.portlet-font-dim:visited, a.portlet-msg-status:visited, a.portlet-msg-info:visited, a.portlet-msg-error:visited, a.portlet-msg-alert:visited, a.portlet-msg-success:visited, a.portlet-section-header:visited, a.portlet-section-body:visited, a.portlet-section-alternate:visited, a.portlet-section-selected:visited, a.portlet-section-subheader:visited, a.portlet-section-footer:visited, a.portlet-section-text:visited, a.portlet-form-label:visited, a.portlet-form-input-field:visited, a.portlet-form-button:visited, a.portlet-icon-label:visited, a.portlet-dlg-icon-label:visited, a.portlet-form-field-label:visited, a.portlet-form-field:visited, a.portlet-menu:visited, a.portlet-menu-item:visited, a.portlet-menu-item-selected:visited, a.portlet-menu-item-hover:visited, a.portlet-menu-item-hover-selected:visited, a.portlet-menu-cascade-item:visited, a.portlet-menu-cascade-item-selected:visited, a.portlet-menu-description:visited, a.portlet-menu-caption:visited, a.sv-portlet-link-description:visited, a.sv-portlet-primary-paragraph:visited, a.normal:visited, .portlet-font a:visited, .portlet-font-label a:visited, .portlet-font-dim a:visited, .portlet-msg-status a:visited, .portlet-msg-info a:visited, .portlet-msg-error a:visited, .portlet-msg-alert a:visited, .portlet-msg-success a:visited, .portlet-section-header a:visited, .portlet-section-body a:visited, .portlet-section-alternate a:visited, .portlet-section-selected a:visited, .portlet-section-subheader a:visited, .portlet-section-footer a:visited, .portlet-section-text a:visited, .portlet-form-label a:visited, .portlet-form-input-field a:visited, .portlet-form-button a:visited, .portlet-icon-label a:visited, .portlet-dlg-icon-label a:visited, .portlet-form-field-label a:visited, .portlet-form-field a:visited, .portlet-menu a:visited, .portlet-menu-item a:visited, .portlet-menu-item-selected a:visited, .portlet-menu-item-hover a:visited, .portlet-menu-item-hover-selected a:visited, .portlet-menu-cascade-item a:visited, .portlet-menu-cascade-item-selected a:visited, .portlet-menu-description a:visited, .portlet-menu-caption a:visited, .sv-portlet-link-description a:visited, .sv-portlet-primary-paragraph a:visited, .normal a:visited, a.portlet-font:active, a.portlet-font-label:active, a.portlet-font-dim:active, a.portlet-msg-status:active, a.portlet-msg-info:active, a.portlet-msg-error:active, a.portlet-msg-alert:active, a.portlet-msg-success:active, a.portlet-section-header:active, a.portlet-section-body:active, a.portlet-section-alternate:active, a.portlet-section-selected:active, a.portlet-section-subheader:active, a.portlet-section-footer:active, a.portlet-section-text:active, a.portlet-form-label:active, a.portlet-form-input-field:active, a.portlet-form-button:active, a.portlet-icon-label:active, a.portlet-dlg-icon-label:active, a.portlet-form-field-label:active, a.portlet-form-field:active, a.portlet-menu:active, a.portlet-menu-item:active, a.portlet-menu-item-selected:active, a.portlet-menu-item-hover:active, a.portlet-menu-item-hover-selected:active, a.portlet-menu-cascade-item:active, a.portlet-menu-cascade-item-selected:active, a.portlet-menu-description:active, a.portlet-menu-caption:active, a.sv-portlet-link-description:active, a.sv-portlet-primary-paragraph:active, a.normal:active, .portlet-font a:active, .portlet-font-label a:active, .portlet-font-dim a:active, .portlet-msg-status a:active, .portlet-msg-info a:active, .portlet-msg-error a:active, .portlet-msg-alert a:active, .portlet-msg-success a:active, .portlet-section-header a:active, .portlet-section-body a:active, .portlet-section-alternate a:active, .portlet-section-selected a:active, .portlet-section-subheader a:active, .portlet-section-footer a:active, .portlet-section-text a:active, .portlet-form-label a:active, .portlet-form-input-field a:active, .portlet-form-button a:active, .portlet-icon-label a:active, .portlet-dlg-icon-label a:active, .portlet-form-field-label a:active, .portlet-form-field a:active, .portlet-menu a:active, .portlet-menu-item a:active, .portlet-menu-item-selected a:active, .portlet-menu-item-hover a:active, .portlet-menu-item-hover-selected a:active, .portlet-menu-cascade-item a:active, .portlet-menu-cascade-item-selected a:active, .portlet-menu-description a:active, .portlet-menu-caption a:active, .sv-portlet-link-description a:active, .sv-portlet-primary-paragraph a:active, .normal a:active {
    color: #004b8d;
    text-decoration: underline;
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid #004b8d;
    transition: background .2s;
}

a.portlet-font:hover, a.portlet-font-label:hover, a.portlet-font-dim:hover, a.portlet-msg-status:hover, a.portlet-msg-info:hover, a.portlet-msg-error:hover, a.portlet-msg-alert:hover, a.portlet-msg-success:hover, a.portlet-section-header:hover, a.portlet-section-body:hover, a.portlet-section-alternate:hover, a.portlet-section-selected:hover, a.portlet-section-subheader:hover, a.portlet-section-footer:hover, a.portlet-section-text:hover, a.portlet-form-label:hover, a.portlet-form-input-field:hover, a.portlet-form-button:hover, a.portlet-icon-label:hover, a.portlet-dlg-icon-label:hover, a.portlet-form-field-label:hover, a.portlet-form-field:hover, a.portlet-menu:hover, a.portlet-menu-item:hover, a.portlet-menu-item-selected:hover, a.portlet-menu-item-hover:hover, a.portlet-menu-item-hover-selected:hover, a.portlet-menu-cascade-item:hover, a.portlet-menu-cascade-item-selected:hover, a.portlet-menu-description:hover, a.portlet-menu-caption:hover, a.sv-portlet-link-description:hover, a.sv-portlet-primary-paragraph:hover, a.normal:hover, .portlet-font a:hover, .portlet-font-label a:hover, .portlet-font-dim a:hover, .portlet-msg-status a:hover, .portlet-msg-info a:hover, .portlet-msg-error a:hover, .portlet-msg-alert a:hover, .portlet-msg-success a:hover, .portlet-section-header a:hover, .portlet-section-body a:hover, .portlet-section-alternate a:hover, .portlet-section-selected a:hover, .portlet-section-subheader a:hover, .portlet-section-footer a:hover, .portlet-section-text a:hover, .portlet-form-label a:hover, .portlet-form-input-field a:hover, .portlet-form-button a:hover, .portlet-icon-label a:hover, .portlet-dlg-icon-label a:hover, .portlet-form-field-label a:hover, .portlet-form-field a:hover, .portlet-menu a:hover, .portlet-menu-item a:hover, .portlet-menu-item-selected a:hover, .portlet-menu-item-hover a:hover, .portlet-menu-item-hover-selected a:hover, .portlet-menu-cascade-item a:hover, .portlet-menu-cascade-item-selected a:hover, .portlet-menu-description a:hover, .portlet-menu-caption a:hover, .sv-portlet-link-description a:hover, .sv-portlet-primary-paragraph a:hover, .normal a:hover, a.portlet-font:focus, a.portlet-font-label:focus, a.portlet-font-dim:focus, a.portlet-msg-status:focus, a.portlet-msg-info:focus, a.portlet-msg-error:focus, a.portlet-msg-alert:focus, a.portlet-msg-success:focus, a.portlet-section-header:focus, a.portlet-section-body:focus, a.portlet-section-alternate:focus, a.portlet-section-selected:focus, a.portlet-section-subheader:focus, a.portlet-section-footer:focus, a.portlet-section-text:focus, a.portlet-form-label:focus, a.portlet-form-input-field:focus, a.portlet-form-button:focus, a.portlet-icon-label:focus, a.portlet-dlg-icon-label:focus, a.portlet-form-field-label:focus, a.portlet-form-field:focus, a.portlet-menu:focus, a.portlet-menu-item:focus, a.portlet-menu-item-selected:focus, a.portlet-menu-item-hover:focus, a.portlet-menu-item-hover-selected:focus, a.portlet-menu-cascade-item:focus, a.portlet-menu-cascade-item-selected:focus, a.portlet-menu-description:focus, a.portlet-menu-caption:focus, a.sv-portlet-link-description:focus, a.sv-portlet-primary-paragraph:focus, a.normal:focus, .portlet-font a:focus, .portlet-font-label a:focus, .portlet-font-dim a:focus, .portlet-msg-status a:focus, .portlet-msg-info a:focus, .portlet-msg-error a:focus, .portlet-msg-alert a:focus, .portlet-msg-success a:focus, .portlet-section-header a:focus, .portlet-section-body a:focus, .portlet-section-alternate a:focus, .portlet-section-selected a:focus, .portlet-section-subheader a:focus, .portlet-section-footer a:focus, .portlet-section-text a:focus, .portlet-form-label a:focus, .portlet-form-input-field a:focus, .portlet-form-button a:focus, .portlet-icon-label a:focus, .portlet-dlg-icon-label a:focus, .portlet-form-field-label a:focus, .portlet-form-field a:focus, .portlet-menu a:focus, .portlet-menu-item a:focus, .portlet-menu-item-selected a:focus, .portlet-menu-item-hover a:focus, .portlet-menu-item-hover-selected a:focus, .portlet-menu-cascade-item a:focus, .portlet-menu-cascade-item-selected a:focus, .portlet-menu-description a:focus, .portlet-menu-caption a:focus, .sv-portlet-link-description a:focus, .sv-portlet-primary-paragraph a:focus, .normal a:focus {
    color: #004b8d;
    text-decoration: none;
    text-decoration: none;
    background: #e9f0f5;
}*/

/*.normal a {
	 color: #444545;
    text-decoration: underline;
    /* background: #A4D9E7; */
    padding-right: 1px;
    padding-left: 1px;
    text-decoration: none;
    /*-webkit-box-shadow: rgba(153,204,255,.5) 0 -7px 0 -4px inset;*/
    box-shadow: rgba(252, 224, 150,.99) 0 -7px 0 -4px inset;
    -webkit-transition: -webkit-box-shadow .2s ease;
    transition: -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease;
    transition: box-shadow .2s ease,-webkit-box-shadow .2s ease;
    font-weight: 300;
    line-height: 1.4em;
}
*/
.normal a:focus, a:hover {
    /* color: #444545; 
     text-decoration: none; 
    box-shadow: rgba(252, 224, 150,.99) 0 -27px 0 -4px inset;*/
} 

.normal a:focus, a:hover {
    /* color: #444545; 
     text-decoration: none; 
    box-shadow: rgba(252, 224, 150,.99) 0 -27px 0 -4px inset;*/
}

a.sv-font-vit-brodtext, .sv-font-vit-brodtext a {
    color: #ffffff;
    text-decoration: none;
    /* color: #444545; 
    text-decoration: underline;*/
    /*padding-right: 1px;
    padding-left: 1px;*/
    text-decoration: none;
    box-shadow: rgba(255, 255, 255) 0 -5px 0 -4px inset;
    -webkit-transition: -webkit-box-shadow .2s ease;
    transition: -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease;
    transition: box-shadow .2s ease,-webkit-box-shadow .2s ease;
    font-weight: 300;
    line-height: 1.4em;
    padding-bottom: 0.2rem;
}

a.sv-font-vit-brodtext, .sv-font-vit-brodtext a:hover {
 
    color: #990a2c;
    /* text-decoration: none; */
    box-shadow: rgba(255, 255, 255) 0 -27px 0 -4px inset;
}

/*
-------------------------------------------------------
Cirkelformade bilder på startsidan
-------------------------------------------------------*/

.c95 {
   max-height: 200px;
    /*max-width: 200px;*/
    width: 100%;
    /*border-radius: 50%;*/
}

.rounded-corners img {
   border-radius: 50%;
}

#h-EttsamarbetemellanNybroochEmmabodakommun {
   font-size: 2.8em;
   line-height: 1.3em;
   font-weight: 500;
}

#myBtn {
   left: 80% !important;
}

/*
---------------------------------------------------------
FLERNIVÅLÄNK
--------------------------------------------------------- */

.sv-multilevellink-portlet {
  margin: 0;
}

.sv-multilevellink-portlet ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  background: #f5f5f5;
  padding: 12px 20px;
  display: inline-block;
  margin: 15px 0 15px 0;
}

.sv-multilevellink-portlet .small {
  font-size: 14px;
}

.sv-multilevellink-portlet a.small {
  text-decoration: underline;
}

.sv-multilevellink-portlet .lp-icon {
  font-size: .5em;
  margin: 0 0.1rem 0 0.5rem;
  vertical-align: -.1em;
  color: #004b8d;
}

.sv-multilevellink-portlet a.small:hover {
  text-decoration: none;
}

a.sv-portlet-image-caption, a.litenxtext, .sv-portlet-image-caption a, .litenxtext a {
    color: #224369;
    text-decoration: underline;
}

/*
---------------------------------------------------------
STARTSIDA - NYHETER
--------------------------------------------------------- */

.lp-news-list-with-img .subheading {
  margin-bottom: 20px!important
}

.lp-news-list-with-img ul {
  margin-bottom: 30px;
}

.lp-news-list-with-img li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  border-top: 1px solid #e8e8e8
}

.lp-news-list-with-img li > div.sv-clear-both {
  display: none;
}

.lp-news-list-with-img img {
  margin-right: 30px;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.lp-news-list-with-img-content .litenxtext {
  display: inline-block;
  text-transform: uppercase;
  border-color: #555;
  line-height: 18px;
  margin-bottom: 5px;
  /*margin-right: 10px;*/
}

.lp-news-list-with-img-content .subsubheading {
  font-size: 18px;
  line-height: 28px;
  display: block;
  margin: 0 0 5px;
}

.lp-news-list-with-img-content .subsubheading a {
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.lp-news-list-with-img-content .subsubheading a span {
  padding-right: 18px;
}

.lp-news-list-with-img-content .subsubheading a span:after {
  height: 12px;
  width: 8px;
  margin-left: 10px;
  margin-right: -18px;
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2037.54%2058.95'%20xmlns='http://www.w3.org/2000/svg'%20fill='%23222'%3E%3Cpath%20d='M1.89%2C1.63a5.62%2C5.62%2C0%2C0%2C1%2C8%2C0l27.7%2C28-28%2C27.7a5.62%2C5.62%2C0%2C1%2C1-7.91-8L22%2C29.15%2C1.85%2C9.58A5.62%2C5.62%2C0%2C0%2C1%2C1.89%2C1.63Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  display: inline-block;
}

.lp-news-list-with-img-content .normal {
  font-size: 16px;
}

.lp-news-list-with-img .lp-link-button a {
  display: inline-block;
}


/* Hover */
.lp-news-list-with-img li:hover .subsubheading a,
.lp-news-list-with-img li:focus .subsubheading a {
  margin-bottom: 3px;
  padding-bottom: 2px;
  border-color: #555;
}


/* Undantag nyheter på startsidan */
.lp-start-page .lp-news-list-with-img {
  margin-top: 120px;
}

.lp-slogan {
   position: relative;
    top: -330px;
    /* z-index: 9998; */
    margin-bottom: -300px;
    width: 350px;
    padding-left: 80px;
    
}

#svid12_770ba471176f9fc0d7a43c8 {
   background-color: #990a2c;
    border-radius: 0;
    margin-bottom: 20px;
    margin-top: -350px;
    padding: 5px 10px;
    position: relative;
    z-index: 1;
}

 
.lp-program-h1 {
   position: relative;       
   margin-bottom: -290px;     
   top: 0;
}

/*
---------------------------------------------------------
STARTSIDA - STARTSIDEPUFFAR
--------------------------------------------------------- */

.lp-start-boxes > .pagecontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}

.lp-start-boxes > .pagecontent > .sv-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 33.33333333333333%;
  margin-bottom: 30px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.lp-start-boxes > .pagecontent > .sv-layout:nth-child(4n+2),
.lp-start-boxes > .pagecontent > .sv-layout:nth-child(5n) {
  width: 66.66666666666667%;
}

.lp-start-boxes > .pagecontent > .sv-layout > div {
  width: 100%;
}

.lp-start-boxes > .pagecontent > .sv-layout > .sv-layout {
  background-color: #11A789;
  padding: 60px;
  position: relative;
  background-position: center;
  background-size: cover;
  min-height: 240px;
}

.lp-start-boxes > .pagecontent > .sv-layout:nth-child(odd) > .sv-layout {
  background-color: #DF792C;
}


/* Text */
.lp-start-boxes h2,
.lp-start-boxes h2 a {
  color: #fff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin: 0;
}

.lp-start-boxes h2 a {
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.lp-start-boxes p.normal {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0 !important;
}

/* Text utan bakgrundsbild */
.lp-start-boxes > .pagecontent > .sv-layout > .sv-layout > .sv-text-portlet h2,
.lp-start-boxes > .pagecontent > .sv-layout > .sv-layout > .sv-text-portlet h2 a {
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 15px;
}

.lp-start-boxes > .pagecontent > .sv-layout > .sv-layout > .sv-text-portlet h2 a {
  text-decoration: none;
  border-bottom-width: 4px;
}

.lp-start-boxes > .pagecontent > .sv-layout > .sv-layout > .sv-text-portlet h2 a {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 15px;
  text-decoration: none;
}

.lp-start-boxes > .pagecontent > .sv-layout > .sv-layout > .sv-text-portlet .normal:after {
  content: '';
  height: 38px;
  width: 25px;
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2037.54%2058.95'%20xmlns='http://www.w3.org/2000/svg'%20fill='%23fff'%3E%3Cpath%20d='M1.89%2C1.63a5.62%2C5.62%2C0%2C0%2C1%2C8%2C0l27.7%2C28-28%2C27.7a5.62%2C5.62%2C0%2C1%2C1-7.91-8L22%2C29.15%2C1.85%2C9.58A5.62%2C5.62%2C0%2C0%2C1%2C1.89%2C1.63Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  display: block;
  margin-top: 30px;
}

/* Text på bakgrundsbild */
.lp-start-boxes > .pagecontent > .sv-layout > .sv-layout > .sv-layout {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(34,34,34,0.7);
  padding: 20px 30px;
  width: auto;
}


/* Hover */
.lp-start-boxes > .pagecontent > .sv-layout > .sv-layout:hover h2 a {
  border-color: #fff;
  padding-bottom: 2px;
  margin-bottom: 5px;
}


/* Undantag i redigeringsläge*/
.lp-start-boxes > .pagecontent.sv-editable-layout > .sv-layout:nth-child(4n+2),
.lp-start-boxes > .pagecontent.sv-editable-layout > .sv-layout:nth-child(5n) {
  width: 33.33333333333333%;
}

.lp-start-boxes > .pagecontent.sv-editable-layout > .sv-layout:nth-child(4n+1),
.lp-start-boxes > .pagecontent.sv-editable-layout > .sv-layout:nth-child(4n) {
  width: 66.66666666666667%;
}

.lp-start-boxes > .pagecontent.sv-editable-layout > .sv-layout > .sv-layout {
  background-position: center !important;
  background-size: cover !important;
}

.c338 {
    color: #ffffff;
}

.sv-marketplace-sitevision-toTop #sv-to-top svg {
    border-radius: 50%;
    color: #fff;
    margin: 0;
    opacity: 0.6;
    padding: 10px;
    position: relative;
    transition: all 0.6s ease;
    border: 1px solid #ffffff;
}

/*
----------------------------------------------------------
Cookie-banner
----------------------------------------------------------*/
.sv-cookie-consent-modal .env-modal-dialog__header, .sv-cookie-consent-modal .env-modal-dialog__body, .sv-cookie-consent-modal .env-modal-dialog__footer {
    padding: var(--env-spacing-medium) var(--env-spacing-xxx-large);
    background: #fff;
}

	.env-modal-dialog__footer {
    border-radius: 0 0 var(--env-border-radius-medium) var(--env-border-radius-medium);
    border-top: 1px solid var(--env-border-color-light);
    padding: var(--env-spacing-small);
    text-align: left;
    margin: 40px 0 0;
}

.env-button--primary {
    background-color: #004b8d;
    border-color: var(--env-element-primary-background-color);
    color: var(--env-element-primary-font-color);
    padding: 15px;
    color: #ffffff !important;
    font-weight: normal;
}

.env-button--primary:active, .env-button--primary:hover {
    border-color: var(--env-element-primary-background-color-dark);
    color: #ffffff !important;
}

.env-button--primary.env-button--ghost {
    background-color: transparent;
    border-color: var(--env-element-primary-background-color-dark);
    color: #004b8d !important;
}
