<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "smn/editor.css";
/*******************
editor css inneholder standard oppsett av font, lenkefarger, stï¿½rrelser og margins pï¿½ overskrifter, tabeller osv.
******************/


/**********************************
Standard layout, skjelettet
**********************************/
/* Ryan fait css sticky footer */
html, body {
    height: 100%;
}
body{
    margin:0;
    display: flex;
    flex-direction: column;
}

ul{
    padding-left: 1.2em;
}

#siteWrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 auto;
}

/* Wrapper for hele sideinnholdet minus navigasjon */
#pageWrapper {
    width: 100%;
}

#pageContentAndLeftColumnWrapper{
    float:left;
    width:743px;
    padding-top:25px;
}
#pageContentAndLeftColumnWrapper.dualcolumn{
    width: 100%;
}
/* Venstre spalte */
#pageContentAndLeftColumnWrapper #leftColumnPageContent{
    float:left;
    width:203px;
    margin:0 20px 0 0;
}
/* Midtspalte */
#pageContentAndLeftColumnWrapper #pageContent{
    float:right;
    width:520px;
}
#pageContentAndLeftColumnWrapper.dualcolumn #pageContent{
    width: 760px;
}
/* HÃ¸yrespalte */

/* Footer */
#footerWrapper{
    background-color: #002776;
    color: white;
    padding: 7.5rem 0;
}

#footerWrapper, #footerWrapper h4, #footerWrapper a {
    color: white;
}

#footerWrapper h4 {
    margin-bottom: 0.8rem;
}

.footer__link {
    display: block;
}

.footer__content {
    margin: 0 auto;
    padding: 0 1.6rem;
    text-align: center;
}

.footer__content &gt; section {
    margin-bottom: 1.6rem;
}

@media screen and (min-width: 768px) {
    .footer__content {
        text-align: left;
        display: flex;
        justify-content: space-between;
    }

    .footer__content &gt; section {
        flex-basis: 33%;
    }
}

.link-box__list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.link-box__list, .link-box__list-item {
    list-style: none;
}

.link-box__list-item {
    margin-bottom: 1.6rem;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .link-box__list-item {
        margin-bottom: 0;
        width: auto;
    }

    .link-box__list-item:not(:last-child) {
        margin-right: 3.2rem;
    }
}

.link-box {
    background-color: white;
    display: flex;
    min-width: 20rem;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #002776;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 0 4px #ADADAD;
    border-radius: 6px;
    padding: 1.6rem 3.2rem;
    transition: all ease .3s;
}

.link-box--image-on-top {
    flex-direction: column;
    justify-content: flex-end;
}

.link-box--image-on-top .link-box__icon {
    margin: 0 0 1.6rem  0;
}

.link-box__icon {
    width: 5rem;
    height: 5rem;
    fill: #002776;
    margin-right: 1.6rem;
}

.link-box:hover {
    box-shadow: 0 3px 14px 0 #adadad;
    color: #0071cd;
}

.link-box:hover &gt; .link-box__icon {
    fill: #0071cd;
}

.link-box__text {

}

/********************************
Header, navigasjon og sÃ¸k
********************************/
#page-header {
    position: relative;
}

.logolenke {
    display: inline-block;
    margin-top: 1.6rem;
}

.nav-button {
    position: absolute !important;
    right: 1.6rem;
    top: 1.6rem;

    border: 1px solid black;
}


#navTop {
    margin-top: 3.2rem;
    display: flex;
    justify-content: center;
    padding: 0 1.6rem;
}

#navTop &gt; ul {
    display: flex;
    padding-left: 0;
}

#navTop &gt; ul li:not(:first-child) {
    margin-left: 1.6rem;
}

#navTop &gt; ul &gt; li.open &gt; .navTop__link {
    text-decoration: underline;
    color: #002776;
}

.navTop__link {
    color: #4A5155;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.4rem;
}

.navTop__link:hover {
    color: #0071cd;
}

#navMain {
    padding: 1.6rem;
}

#navMain &gt; ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left:0;
}

#navMain li:not(:last-child) {
    margin-right: 3.2rem;
}

#navMain &gt; ul li.selected &gt; .navMain__link {
    font-weight: bold;
    color: #002776;
}

.navMain__list-item {
    position: relative;
}

.navMain__link {
    color: #002776;
    text-decoration: none;
    font-size: 3rem;
    font-weight: bold;
}

.navMain__link:hover {
    color: #0071cd;
}

#page-header &gt; #navTop,
#page-header &gt; #navMain {
    display: none;
}

#page-header.responsive &gt; #navTop {
    display: flex;
}
#page-header.responsive &gt; #navMain {
    display: block;
}

/* Hamburger button */
.hamburger {
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    display: inline-block;
    height: 24px;
    width: 40px;
    position: relative;
}

.hamburger:hover, .hamburger:focus {
    opacity: 0.7;
}

.hamburger-inner:after,
.hamburger-inner:before {
    content: "";
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    height: 4px;
    background-color: #002776;
    width: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
}

.hamburger-inner:before {
    top: 10px;
}

.hamburger-inner:after {
    top: 20px;
}

/* Active styling */
.hamburger.active .hamburger-inner:before {
    transform: rotate(-45deg) translate3d(6px, 0, 0);
    opacity: 0;
}

.hamburger.active .hamburger-inner {
    transform: translate3d(0,10px,0) rotate(45deg);
}

.hamburger.active .hamburger-inner:after {
    transform: translate3d(0,-20px,0) rotate(-90deg);
}

@media screen and (min-width: 960px) {
    .nav-button {
        display: none;
    }

    #page-header &gt; #navTop,
    #page-header.responsive &gt; #navTop {
        display: flex;
    }

    #page-header &gt; #navMain,
    #page-header.responsive &gt; #navMain {
        display: block;
    }

    .navMain__link {
        color: #4A5155;
        font-size: 1.6rem;
        font-weight: normal;
    }

    #navMain &gt; ul {
        flex-direction: row;
        padding-left: 0;
    }

    #navTop {
        position: absolute;
        top: 2.4rem;
        left: 1.6rem;
        margin-top: 0;
    }
}

/*#page-header {
    display: flex;
    justify-content: center;
    padding: 1.6rem;
    position: relative;
}

.logolenke {
    display: inline-block;
}

#navTop {
    position: absolute;
    left: 1.6rem;
    top: 2.6rem;
}


!* Hovedmeny *!
#navMain {
    padding: 1.6rem;
}

#navMain &gt; ul {
    display: flex;
    justify-content: center;
}

#navMain li:not(:last-child) {
    margin-right: 3.2rem;
}

#navMain &gt; ul li.selected &gt; .navMain__link {
    text-decoration: underline;
    color: #002776;
}

.navMain__list-item {
    position: relative;
}

.navMain__link {
    color: #4A5155;
    text-decoration: none;
}

.navMain__link:hover {
    color: #0071cd;
}

!* DROP DOWN MENU *!

.navMain__list-item &gt; ul {
    background-color: white;
    display: none;
}

.navMain__list-item:hover &gt; ul {
    display: block;
    position: absolute;
    top: 0;
}*/

div.paging{
    text-align: right;
}

/*******************************
Standard html elementer, a, h1, p etc. Ingen elementer med klassenavn skal inn her.
*******************************/
.showLabel{
    display: inline;
}
legend{
    display:none;
}

.tablewrapper{
    background:url("../bitmaps/common/tableBottom.gif") no-repeat left bottom;
    padding-bottom:10px;
}
.tablewrapper h2{
    background:url("../bitmaps/common/dark_dots.gif") repeat-x left bottom;
    padding-bottom:5px;
    margin-bottom:10px;
    font-weight:normal;
}
table{
    border-collapse:collapse;
    width:100%;
    border:none;
}
th{
    background:url("../bitmaps/common/tableHeader.gif") repeat-x left top;
    color:#fff;
    padding:5px 10px;
    border:none;
    border-left:1px solid #D4DDE4;
    text-align:left;
    font-weight:normal;
}
th:first-child{
    border-left:none;
}
td{
    background:url("../bitmaps/common/dark_dots.gif") repeat-x left bottom;
    padding:5px 10px;
    border:none;
    border-collapse:collapse;
    border-left:1px solid #D4DDE4;
}
td:first-child{
    border-left:none;
}
tr.even td{
    background:#EDF4FA url("../bitmaps/common/dark_dots.gif") repeat-x left bottom;
}

button {
    cursor: pointer;
}

/***************************
Diverse felles stiler pï¿½ tvers av maler
****************************/
.small-width-content {
    max-width: 720px;
    margin: 0 auto;
}

#breadcrumbs{
    position:absolute;
    left:10px;
    top:125px;
}

#pageContent .articlePhoto{
    margin:0 40px 15px 20px;
}
#pageContent .leadParagraph, .kampanjearkiv .leadParagraph{
    background:url("../bitmaps/common/dark_dots.gif") repeat-x left bottom;
    color:#8F8174;
    font-size:1.25em;
    margin:0 40px 15px 20px;
    padding:0 0 15px;
    line-height:1.2;
}
body.search #pageContent .leadParagraph{
    background:none;
    margin:0 0 10px 0;
}
#pageContent .runningText{
    background:url("../bitmaps/common/article_top_shade.gif") no-repeat left top;
    min-height:220px;
    padding:30px 50px 10px 30px;
    line-height:1.4;
}
.dualcolumn #pageContent .runningText{
    background: none;
    padding-left: 20px;
}

/* En enkel "boks" med overskrift, og lenker plassert pï¿½ undersider, som regel i venstrespalten */





/* To sÃ¦rtilfeller for kontaktlenker */
.lenkesamling .kontakt-tlf{
    background:url("../bitmaps/common/phone.gif") no-repeat left center;
    padding-left:20px;
}
.lenkesamling .kontakt-mail{
    background:url("../bitmaps/common/email.gif") no-repeat left center;
    padding-left:20px;
}

/* "Boks" med overskrift, lenke og bakgrunnsfarge. Som regel plassert i hï¿½yrespalten */
.stor-lenkeboks{
    background:#F3F2F1 url("../bitmaps/common/dark_dots.gif") repeat-x left bottom;
    margin-bottom:30px;
    padding-bottom:10px;
}
.stor-lenkeboks h3{
    background:url("../bitmaps/common/dark_dots.gif") repeat-x left top;
    padding:10px 10px 0;
}
.stor-lenkeboks p{
    padding: 0 10px;
}
.stor-lenkeboks a{
    background:url("../bitmaps/common/link_arrow_blue.gif") no-repeat right center;
    padding:0 10px 0 0;
}
.stor-lenkeboks a:visited{
    background:url("../bitmaps/common/link_arrow_visited.gif") no-repeat right center;
    padding:0 10px 0 0;
}
#rightColumnPageContent .prisliste{
    margin:20px 0;
    overflow:auto;
}

.kontaktossboks{
    position:relative;

    margin-bottom:25px;
    overflow:hidden;

    background: #a0cfeb; /* Old browsers */
    background: -moz-linear-gradient(top, #a0cfeb 0%, #00a1de 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a0cfeb), color-stop(100%, #00a1de)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #a0cfeb 0%, #00a1de 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #a0cfeb 0%, #00a1de 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #a0cfeb 0%, #00a1de 100%); /* IE10+ */
    background: linear-gradient(top, #a0cfeb 0%, #00a1de 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#a0cfeb', endColorstr = '#00a1de', GradientType = 0); /* IE6-9 */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;

    -moz-box-shadow: 0 0 6px 4px #e2ddd7;
    -webkit-box-shadow:  0 0 6px 4px #e2ddd7;
    -o-box-shadow:  0 0 6px 4px #e2ddd7;
    box-shadow: 0 0 6px 4px #e2ddd7;
}
.kontaktossboks .body{
    color:#FFFFFF;
    padding:25px 15px 20px;
}

.kontaktossboks .tlf{
    background:url("../bitmaps/common/kontaktoss-tlf-liten.png") no-repeat 0 0;
    padding:0 0 0 30px;
    font-size:1.5em;
    line-height:1.4em;
}
.kontaktossboks .epost{
    background:url("../bitmaps/common/kontaktoss-epost-liten.png") no-repeat 0 0;
    padding-left:29px;
    font-size:1.2em;
    line-height:1.3em;
}
.kontaktossboks .epost a, .kontaktossboks .epost a:hover, .kontaktossboks .epost a:visited{
    color:#fff;
    background:none;
    text-decoration:none;
}
.clearleft{
    clear:left;
}
.clearboth{
    clear:both;
}

.max-width-section {
    max-width: 1280px;
    width: 100%;
    padding: 6.4rem 1.6rem;
}

.accordion,
.accordion__list-item,
.accordion__item-button {
    width: 100%;
}

.accordion__list-item {
    border-bottom: 1px solid #D8D8D8;
}

.accordion__list-item--open {
    padding-bottom: 16px;
}

.accordion__item-button {
    display: block;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    color: #0071CD;
    font-weight: bold;
    margin: 0;
    position: relative;
    padding: 16px 30px 16px 0;
}

.accordion__item-button:after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0.8rem;
    border-left: 3px solid #D8D8D8;
    border-bottom: 3px solid #D8D8D8;
    border-top: 3px solid transparent;
    border-right: 3px solid transparent;
    transform: rotate(-45deg);
    transition: transform 0.2s ease-out;
}

.accordion__list-item--open &gt; .accordion__item-button:after {
    transform: rotate(135deg);
    border-left-color: #005AA4;
    border-bottom-color: #005AA4;
}

.accordion__list-item--open &gt; .accordion__item-button {
    color: #005AA4;
}

.accordion__list-item--open &gt; .accordion__item-text {
    visibility: visible;
}

.accordion__item-button:hover,
.accordion__item-button:focus {
    color: #005AA4;
    cursor: pointer;
}

.accordion__item-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin: 0;
    visibility: hidden;
}

/**************************
Fancybox override
***************************/
#fancybox-wrap {
    box-sizing: content-box;
}

.dialogbox {
    font-size: 12px;
}

.dialogbox .inputs.text &gt; * {
    padding: 0;
}

/**************************
FFE override
***************************/
.ffe-button {
    font-size: 1.8rem;
}

.ffe-button.ffe-button--shortcut {
    background-color: #002776;
    color: #fff;
    border: none;
}

.ffe-button.ffe-button--shortcut:hover, .ffe-button.ffe-button--shortcut:focus {
    background-color: #001f5d;
    box-shadow: 0 0 0 2px rgba(68,192,255,.5);
    outline: 0;
}


/**************************
Forsiden
***************************/
.frontpage__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.frontpage__section {
    max-width: 1280px;
    width: 100%;
    padding: 6.4rem 1.6rem;
}

#hovedkampanje-wrapper {
    width: 100%;
    background-color: #F6F6F3;
    display: flex;
    justify-content: center;
}

#hovedkampanje-stor{
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}

.hovedkampanje__content .ingress{
    margin-top: 0;
}

.hovedkampanje__content {
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.hovedkampanje__image {
    width: 100%;
    height: auto;
}

.hovekampanje_image_lenke {
    width: 100%;
    display: block;
}

@media screen and (min-width: 768px) {
    #hovedkampanje-stor{
        flex-direction: row-reverse;
    }

    .hovedkampanje__content {
        width: 50%;
    }

    .hovekampanje_image_lenke {
        width: 50%;
    }
}

#kalkulatorer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kalkulatorer__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.kalkulatorer__list-item {
    margin-bottom: 1.6rem;
    width: 100%;
}

.kalkulatorer__list, .kalkulatorer__list-item {
    list-style: none;
}

.kalkulatorer__link {
    height: 8rem;
}

@media screen and (min-width: 768px) {
    .kalkulatorer__list-item {
        width: auto;
    }

    .kalkulatorer__list-item:not(:last-child) {
        margin-right: 1.6rem;
    }
}

.illustrasjoner__wrapper {
    width: 100%;
    background-color: #F6F6F3;
    display: flex;
    justify-content: center;
}

.illustrasjoner__list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.illustrasjoner__list-item {
    width: 100%;
    margin-bottom: 1.6rem;
}

.illustrasjoner__list, .illustrasjoner__list-item {
    list-style: none;
}

#illustrasjoner {
    display: flex;
    justify-content: space-around;
}

@media screen and (min-width: 768px) {
    .illustrasjoner__list-item:not(:last-child) {
        margin-right: 1.6rem;
    }

    .illustrasjoner__list-item {
        width: auto;
    }
}

.fritekst__wrapper {
    width: 100%;
    background-color: #DFF1F9;
    display: flex;
    justify-content: space-around;
}

.fritekst {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
}

.fritekst__content {
    flex-basis: 50%;
}

@media screen and (min-width: 768px) {
    .fritekst {
        flex-direction: row;
        justify-content: space-between;
    }

    .fritekst__content {
        margin-right: 3.2rem;
    }

    .fritekst__bilde {
        margin-left: 3.2rem;
    }
}

.featured-links {
    max-width: 1280px;
    width: 100%;
    text-align: center;
    padding: 3.2rem 1.6rem;
}

.featured-links__list-item {
    display: inline-block;
    margin-bottom: 0.8rem;
    width: 100%;
}

.featured-links__list-item, .featured-links__list {
    list-style: none;
}

.featured-links__link {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .featured-links__list-item {
        width: auto;
    }

    .featured-links__list-item:not(:last-child) {
        margin-right: 1.6rem;
    }
}

#iphone-kampanje{
    width:458px;
}

/****************************
Artikkel
*****************************/
.article {

}

.article__header {
    text-align: center;
    margin-bottom: 6.4rem;
}

.article__heading {
    font-size: 4.6rem;
    margin-top: 0;
}

.article__lead-paragraph {
    color: #002776;
    font-size: 2.2rem;
}

.article__text {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6.4rem;
}

.article__subpages {
    margin-bottom: 6.4rem;
}

.article__documents {}

.article__documents-heading {}

.article__documents-listitem {
    margin-bottom: 1.6rem;
}

.article__documents, .article__documents-listitem {
    list-style: none;
}

.article__shortcuts-heading {
    margin-bottom: 1.6rem;
    text-align: center;
}

.article__shortcuts {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.article__shortcut-listitem {
    margin-bottom: 0.8rem;
}

.article__shortcuts, .article__shortcut-listitem {
    list-style: none;
}

.article__shortcut-listitem:not(:last-child) {
    margin-right: 1.6rem
}

#rightColumnPageContent .articlePhoto{
    margin-bottom:30px;
}
#leftColumnPageContent .lenkesamling{
    margin-bottom:30px;
}
#leftColumnPageContent ul{
    margin:0;
}
.sidespaltebilde{
    margin:20px 0;
}


/******************************
Liste
******************************/


/*****************************
Lenkearkiv
***************************/
body.lenkearkiv #pageContent ul{
    margin:0;
}
body.lenkearkiv #pageContent li{
    list-style:none;
}
body.lenkearkiv #pageContent ul ul{
    margin-left:25px;
}
body.lenkearkiv #pageContent li a{
    display:block;
    margin-top:10px;
}

/*****************************
Sï¿½keside og sï¿½keresultat
*****************************/


/*****************************
Kampanje
*****************************/
body.kampanjearkiv .kampanje{
    padding:20px 0;
    overflow:auto;
}

.kampanjearkiv h2{
    background:url("../bitmaps/common/tableHeader.gif") repeat-x 0 0;
    font-weight:normal;
    font-size:1.3em;
    padding:3px 3px 3px 10px;
    color:#fff;
}
.kampanjearkiv .kampanje .info{
    font-size:1.1em;
    padding-left:10px;
    clear:both;
}
.kampanjearkiv .hovedkampanje{
    float:left;
    width:763px;
    margin-right:10px;
}
.kampanjearkiv .detaljer{
    float:right;
    width:210px;
}
.kampanjearkiv .detaljer .body{
    background:#F3F2F1;
    padding:5px;
}
body.kampanjearkiv .kampanje h3{
    margin:10px 0 0;
    font-weight:normal;
    background: url("../bitmaps/common/dark_dots.gif") repeat-x left bottom;
    padding-bottom:5px;
}
.kampanjearkiv .minikampanje{
    width:236px;
    float:left;
}



/******************************
SÃ¸keresultat
*******************************/
body.search h1{
    background:url("../bitmaps/common/shadedPortletHeader.gif") repeat-x 0 0;
    margin:0;
    color:#fff;
    font-weight:normal;
    font-size:1.8em;
    padding:4px 4px 4px 10px;
}
body.search fieldset{
    background:#F7F6F2;
    padding:20px 5px 25px;
    margin-bottom:0;
}

body.search .hitCount{

    background: #F7F6F2;
    padding:0 0 20px 5px;
    font-size:1em;
    margin-bottom:10px;
    text-align:center;
}
body.search .navigationpath{
    color:#666;
    font-style:italic;
}

.hit{
    padding: 5px 10px;
    line-height:1.6
}

.hit a{
    display: block;
}

.hit .highlight{
    font-weight:bold;
}
.hit a:hover{
    background-color:#4BA6DB;
    color: #FFF;
}

.even{
    background: #EDF4FA url("../bitmaps/common/dark_dots.gif") repeat-x left bottom;
}
body.search .paging{
    margin:30px 0;
}

/*******************
aksess skjema
********************/
.formElement {
    margin-bottom: 1.6rem;
}

.formElement.submit{
    width:100%;
}
.formErrors{
    border:1px solid #ff0000;
    color:#ff0000;
    list-style:square;
    font-size:1.1em;
    font-weight:bold;
    padding:10px 10px 0px 35px;
    background:url("../bitmaps/common/alert.gif") no-repeat 10px 8px;
    margin-bottom:30px;
}

.betalingsforsikringError{
    font-weight: bold;
    margin-left: 20px;
    clear:both;

}

#wizardcontent .formErrors {
    background-color: #FFF0F0;
}

#wizardcontent fieldset{
    border: none;
}

.formErrors ul{
    margin:0;
    padding:0;
}
.formElement textarea{
    width:440px;
}

.formElement .heading{
    padding-bottom:0;
}
.formElement.mandatory .heading label, label.required, label.error{
    background:url("../bitmaps/common/mandatory_10x10.png") no-repeat right top;
    white-space:normal;
    padding-right: 11px;
}
.formElement label{
    display:inline;
    white-space:nowrap;
}

.samtykke{
    padding-right: 15px;
}
.formElement label.textwrap{
    display:inline;
    white-space: normal;
}

.textwrap p{
    display: inline;
}

.legend{
    color:#666666;
}



.helpText{
    color:#999;
    font-style:italic;
    padding-top:4px;
}

.inputs.text &gt; *, .inputs.textarea &gt; * {
    border: 2px solid #CCCCCC;
    border-radius: 4px;
    padding: 0.8rem 1.6rem;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .inputs.text &gt; *, .inputs.textarea &gt; * {
        width: auto;
    }
}

.formElement .infotekst{
    color:#666;
    margin-bottom:8px;
}

.formElement input[type=submit]{
    cursor:pointer;
}

/******************
SÃ¸knadsskjema kalkulator
*******************/
body.kalkulatordialog{
    background:none;
}
body.kalkulatordialog.normal{
    background:#fff;
}
body.kalkulatordialog #siteWrapper{
    width:auto;
    padding:0;
    margin:0;
}
body.kalkulatordialog.personopplysninger #pageWrapper{
    background:url("../bitmaps/common/kalkheader_repeat.png") repeat-x scroll 0 0;
}
body.kalkulatordialog.personopplysninger #siteWrapper{
    background:url("../bitmaps/common/kalkulatordialog-skillestrek.png") no-repeat scroll 260px -25px transparent;
}
body.kalkulatordialog input.formatpris{
    text-align:right;
    padding-right:5px;
}
body.kalkulatordialog #pageWrapper{
    padding-top:0;
}
body.kalkulatordialog #pageWrapper label{
    color:#666;
}
body.kalkulatordialog #pageWrapper label.inline{
    display:inline;
}
#kalkulatorsum{
    font-size:1.4em;
}
label.error, .errorMessage{
    color:#ff0000;
}

.inline_block {
    display: inline-block;
}

body.kalkulatordialog #footerWrapper{
    display:none;
}

body.kalkulatordialog .formElement.select{
    width:110px;
    float:left;
    clear:none;
}
body.kalkulatordialog #lopetid{
    clear:left;
}
body.kalkulatordialog .formElement.select select{
    width:90px;
}
.formElement.radio{
    width:205px;
}
body.kalkulatordialog .formElement.radio p{
    margin-bottom:5px;
}
.formElement.checkbox{
    width:200px;
}
body.kalkulatordialog .column.double .formElement.submit{
    width:435px;
    padding-top:20px;
    margin-bottom:0;
}
body.kalkulatordialog.beregning .formElement.submit{
    width:200px;
}
body.kalkulatordialog #skjema{
    float:left;
    width:230px;
    height:400px;
    min-height:400px;
    background:#fff;
    overflow:hidden;
}
body.kalkulatordialog #skjema.slideout{
    margin-left:-250px;
}
body.kalkulatordialog form#laaneberegning{
    margin:0 0 0 10px;
}
body.kalkulatordialog.beregning{
    background:url("../bitmaps/common/kalkulator-blaa-large-bg-ver2.png") repeat-x left top;
}
.hidden{
    display:none;
}
body.kalkulatordialog #skjemaresultat{
    height:335px;
    min-height:335px;
    overflow:hidden;
    color:#fff;
    padding:10px 10px 10px 20px;
    float: left;
    width:520px;
}
body.kalkulatordialog #skjemaresultat.slideout{
    width:200px;
}
body.kalkulatordialog #nedbetalingsplan{
    border-left:1px solid #ccc;
    height:380px;
    min-height:380px;
    padding:10px 10px 10px 20px;
    color:#000;
    display:none;
}
#nedbetalingsplanContainer{
    float:left;
    width:550px;
    margin-top:20px;
}


body.kalkulatordialog h1{
    color:#fff;
    background:none;
    padding:0;
    margin:0;
    font-size:2.6em;
}

body.kalkulatordialog .column h1{
    color:#000;
    background:none;
    padding:0;
    margin:0;
    font-size:1.6em;
}

body.kalkulatordialog h2{
    border-bottom:1px solid #f0efef;
    font-size:1.8em;
    margin-top:40px;
    margin-bottom:15px;
}
body.kalkulatordialog h3.toppbar{
    background:url("../bitmaps/common/kalkheader_repeat.png") repeat-x scroll 0 0;
    margin:0;
    padding:2px 0 10px 10px;
    color:#546380;
}
body.kalkulatordialog.personopplysninger h3.toppbar.left{
    float:left;
    width:250px;
    margin-bottom:15px;
}
body.kalkulatordialog.personopplysninger h3.toppbar{
    float:left;
    width:485px;
    padding-left:22px;
}
body.kalkulatordialog .medlaantaker .column{
    margin-left:15px;
}
body.kalkulatordialog .medlaantaker .column.laanetaker{
    margin-right:15px;
}
body.kalkulatordialog .medlaantaker .column.medlaantakerinfo{
    background:url("../bitmaps/common/kalkulatordialog-skillestrek.png") no-repeat 0 -25px;
    padding-left:10px;
}
body.kalkulatordialog .column h3{
    padding-bottom:5px;
}
body.kalkulatordialog #skjemaresultat p{
    font-size:1.3em;
    margin-bottom:0.5em;
}
body.kalkulatordialog #laanelink{
    top:355px;
    color:#FFFFFF;
    font-size:1.8em;
    position:absolute;
    right:20px;
    text-decoration:none;
    background:url("../bitmaps/common/kalkulator-soknad-pil.png") no-repeat right center;
    padding-right:24px;
}
body.kalkulatordialog #nedbetalingsplanLink{
    bottom:15px;
    padding:3px 8px 3px 25px;
    font-size:1.4em;
    position:absolute;
    left:245px;
    text-decoration:none;
    width: auto;
    background: url("../bitmaps/common/nedbetalingsplan.png") no-repeat 5px 6px;
    color:#fff;
}
body.kalkulatordialog #nedbetalingsplanLink.nedbetalingsplan{
    background: url("../bitmaps/common/kalkulator_edit.png") no-repeat 5px 6px;
    left:242px;
}
body.kalkulatordialog #laaneberegning .column h1 {
    display: inline;
}

body.kalkulatordialog #laaneberegning .personinfo ul li {
    list-style-type:none;
    display: inline;
}

body.kalkulatordialog #laaneberegning .personinfo ul {
    margin: 0;
}


body.kalkulatordialog #laaneberegning .personinfo a:link {
    text-decoration:none;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

body.kalkulatordialog .formElement input[type="text"], body.kalkulatordialog .formElement input[type="password"]{
    width:185px;
}
body.kalkulatordialog .skjemainnhold{
    padding:0;
    height:353px;
    min-height:353px;
    overflow:auto;
    position:relative;
}
body.kalkulatordialog .skjemainnhold.personopplysninger{
    position:relative;
    top:-10px;
}
body.kalkulatordialog .skjemainnhold .column{
    float:left;
    width:235px;
}
body.kalkulatordialog .skjemainnhold .column.double{
    float:left;
    width:470px;
}
#medlemsnummerPaakrevd{
    display:none;
}
body.kalkulatordialog .formElement textarea{
    width:430px;
}
body.kalkulatordialog.personopplysninger .formElement{
    margin-bottom:12px;
}
body.kalkulatordialog #formErrors h3{
    margin:0;
    padding:0;
    font-size:1em;
    color:#ff0000;
    line-height:1.5;
}
body.kalkulatordialog .formErrors{
    background:url("../bitmaps/common/alert.gif") no-repeat scroll 10px 2px transparent;
    margin-bottom:6px;
    padding:1px 10px 1px 35px;
    margin-right:20px;
}
body.kalkulatordialog #pageWrapper label.error{
    color:#ff0000;
    white-space:nowrap;
}
body.kalkulatordialog #pageWrapper label.error span{
    display:inline;
    white-space:nowrap;
}
body.kalkulatordialog .column.double .formElement{
    clear:none;
    margin-right:15px;
}

body.kalkulatordialog .column.double.submit{
    position:absolute;
    bottom:0;
    right:40px;
}
body.kalkulatordialog .column.double.merknader textarea{
    height:65px;
}
body.kalkulatordialog.personopplysninger .formElement.select{
    width:140px;
}

/*
  Kalkulatordialog oppsummeringsside
*/

body.kalkulatordialog.oppsummering .column{
    float:left;
    height:355px;
    padding:0;
    width:266px;
    background:url("../bitmaps/common/kalkulatordialog-skillestrek.png") no-repeat left center;
    font-size:1.2em;
    overflow:hidden;
}
body.kalkulatordialog.oppsummering .column:first-child{
    background:none;
}
body.kalkulatordialog.oppsummering .column .body{
    padding:5px 10px;
    overflow:hidden;
}
body.kalkulatordialog.oppsummering .column .body h3{
    margin:0 0 5px 0;
    border-bottom:1px solid #ccc;
    padding:0;
}
.medlaantaker h3{
    margin:0;
    font-size:1.3em;
    color:#546380;
    padding-bottom:0;
    line-height:1;
}
.medlaantaker p{
    color:#999;
    margin-top:0;
}
.medlaantaker .checkbox{
    float:left;
    width:23px;
}
body.kalkulatordialog .bestillingslinje{
    background:url("../bitmaps/common/kalkulator-blaa-large-bg.png") repeat-x 0 -180px;
    bottom:0;
    clear:both;
    left:0;
    padding:7px 0 10px 0;
    position:fixed;
    width:800px;
    height:3.5em;
    min-height:3.5em;
}
body.kalkulatordialog .bestillingslinje .submit.left{
    float:left;
    width:225px;
    margin:5px 0 0 20px;
}

body.kalkulatordialog .bestillingslinje .submit.middle{
    float:left;
    width:170px;
    margin:5px 0 0 20px;
    clear:none;
}

body.kalkulatordialog .bestillingslinje .separator{
    width: 1em;
    background: none;
    padding: 1em;
    color:white;
}
body.kalkulatordialog .bestillingslinje a:visited,
body.kalkulatordialog .bestillingslinje a:hover,
body.kalkulatordialog .bestillingslinje a{
    color:#fff;
    text-decoration:none;
}
body.kalkulatordialog .bestillingslinje .submit.right{
    float:right;
    width:180px;
    text-align:right;
    margin-right:20px;
}
body.kalkulatordialog.oppsummering .skjemainnhold{
    padding:0;
    min-height:400px;
    height:400px;
    width:800px;
}
body.kalkulatordialog.oppsummering .skjemainnhold p{
    margin-bottom:.3em;
}

body.kalkulatordialog .bestillingslinje input, body.kalkulatordialog .bestillingslinje a {
    background:transparent;
    color:#fff;
    font-size:1.2em;
    font-weight:bold;
    border:none;
}
body.kalkulatordialog .bestillingslinje input.fortsett {
    background:url("../bitmaps/common/kalkulator-soknad-pil.png") no-repeat right center;
    padding-right:20px;
    font-size:1.8em;
}

body.kalkulatordialog div.sender {
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    border: none;
}

body.kalkulatordialog .bestillingslinje input.tilbake,body.kalkulatordialog .bestillingslinje a.tilbake {
    background:url("../bitmaps/common/kalkulator-soknad-pil-tilbake.png") no-repeat left center;
    padding-left:15px;
}

body.kalkulatordialog.kvittering .skjemainnhold{
    padding:0 20px;
    font-size:1.2em;
}

/**
* Used for accessibility purposes.
* Content that should be visible to screen readers etc,
* but not normal browsers must be given this class.
*/
.hidefromview, .tooltiptext {
    position: absolute;
    left: -9999px;
}

/********************
iframe, prisliste
********************/
body.iframe{
    background:url("../bitmaps/common/topNavigation_domainLevel_iframe.png") repeat-x 0 0;
}
body.iframe #pageWrapper{
    margin:0 20px;
    padding-top:80px;
}
body.iframe .logolenke{
    position:absolute;
    top:5px;
    left:15px;
}
.prisliste-kategori h2{
    font-size:1.3em;
    font-weight:normal;
    background:url("../bitmaps/common/dark_dots.gif") repeat-x left bottom;
    padding-bottom:5px;
    margin-bottom:10px;
}
.prisliste-kategori th{
    padding:3px 5px;
}
.detaljerOgAnmerkninger{
    color:#999;
    font-style:italic;
}
.detaljerOgAnmerkninger p{
    margin:0.5em 0;
}


/********
Nedbetalingsplan
*******/
.nedbetalingsoversikt{
    width:540px;
    float:right;
    padding-bottom:4px;
}

body.kalkulatordialog h2.nedbetalingsplan{
    margin:-10px 0 0;
    padding-bottom:10px;
    border:none;
    padding-left:50px;
}

.nedbetalingsoversikt{
    color:#000;
    -moz-border-radius: 5px / 5px;
    -webkit-border-radius: 5px / 5px ;
    -o-border-radius: 5px / 5px;
    border-radius: 5px / 5px ;
    height:285px;
    padding:10px 10px 0 10px;
    background-color: #fff;
    overflow:auto;
}

#nedbetalingsplanContainer li{
    float:left;
    background: #57a8d4;
    display:block;
    margin-right:6px;
    padding:5px 10px 2px;
    position:relative;
    -moz-border-radius:5px 5px 0 0;
    -webkit-border-radius:5px 5px 0 0;
    -o-border-radius:5px 5px 0 0;
    border-radius:5px 5px 0 0;
    font-size:13px;
}
#nedbetalingsplanContainer li a{
    float:left;
    color:#000;
    display:block;
    float:left;
    text-decoration:none;
}
#nedbetalingsplanContainer li.ui-tabs-selected{
    background:#fff;
}
#nedbetalingsplanContainer table{
    border-bottom:0;
    margin-bottom:0;
}
#nedbetalingsplanContainer th{
    padding:3px 5px;
}
#nedbetalingsplanContainer td{
    padding:2px 5px;
}

table.nedbetalingsplan .termin{
    width:60px;
}
table.nedbetalingsplan .terminbelop{
    width:71px;
}
table.nedbetalingsplan .rente-og-gebyr{
    width:70px;
}
table.nedbetalingsplan .avdrag{
    width:58px;
}
table.nedbetalingsplan .betalingsforsikring{
    width:85px;
}


#skjemaresultat.beregning strong{
    float:right;
    width:200px;
    display:block;
    margin-right:125px;
}


table.oppsummering td{
    border:none;
    font-size:12px;
}
table.oppsummering .label{
    color:#666;
    width:40%;
    padding-left:2px;
}
table.oppsummering .value{
    text-align:right;
    font-weight:bold;
    padding-right:2px;
}
.kalkulatorkvittering #pageContent{
    margin:0 auto;
    width:520px;
}

.kalkulatorkvittering h2{
    margin-top: 0 !important;
}
.kalkulatorkvittering .logolenke{
    display:block;
    padding:8px 20px;
    width:fit-content;
    margin: 1.6rem auto 0 auto;
}

.kalkulatorkvittering .logolenke img{
    margin: 0 auto;
    width: fit-content;
}
.kalkulatorkvittering #pageContent .runningText{
    font-size:14px;
    background:none;
    padding:20px 0 10px 60px;
}
a.sb1-button {
    /* Sliding right image */
    background: transparent url('../bitmaps/common/input_button_bg_right.gif') no-repeat scroll top right;
    display: block;
    float: right;
    height: 21px; /* CHANGE THIS VALUE ACCORDING TO IMAGE HEIGHT */
    margin-right: 6px;
    padding-right: 10px; /* CHENGE THIS VALUE ACCORDING TO RIGHT IMAGE WIDTH */
    /* FONT PROPERTIES */
    text-decoration: none;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size:12px;
}
a.sb1-button span {
    /* Background left image */
    background: transparent url('../bitmaps/common/input_button_bg_left.gif') no-repeat;
    display: block;
    line-height: 21px; /* CHANGE THIS VALUE ACCORDING TO BUTTONG HEIGHT */
    padding: 0 0 0 12px;
}
a.sb1-button:hover span{
    text-decoration:none;
}
.buttonsWrapper{
    padding-top:30px;
}

.vertikalt-blokkelement{
    margin:30px 0;
}
.vertikalt-blokkelement.first{
    margin-top:0;
}

/*** Ny kalkulator ***/

#wizardwrapper {
    min-height: 500px;
    padding-bottom: 30px
}

#wizardwrapper &gt; * {
    box-sizing: content-box !important;
    font-size: 12px;
}

.formElement {
    margin-bottom: 1.6rem;
}

.formElement.nobreak{
    float:left;
    width:210px;
    margin-right:20px;
    clear:none;
}

/*ie.jcss*/
#wizardcontent {
    border:  1px solid #dedede;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;


    padding-bottom: 40px;
    position: relative;

    background: #fefefe;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    -o-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);

}

.soknadsinfo {
    border-left:  1px solid #dedede;
    min-height: 200px;
    margin-top: 4px;
    width: 300px;
}

#betingelserinfo {
    padding: 15px 20px;
    min-height: 197px;
}

#betingelsevalg{
    float: left;
    margin-top: 35px;
}

.betingelserText strong {
    font-weight: normal;
    float: right;
}

.grunnlagBox {
    background-color: #f9f9f9;
    border:  1px solid #dedede;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    width: 486px;
    padding: 5px 0 5px 0;
}

#betalingsforsikring, #betalingsforsikringMedlaantaker {
    float: right;
}

.radioOptions-options {
    width: 200px;
    margin: auto;
}

.wizardPersistentCol {
    overflow: auto;
    width: 343px;
    float:left;
    color: #444;
}

.wizardPersistentColpadding {
    padding: 11px 25px 10px 17px;
}

.wizardMainCol {
    width: 488px;
    float:left;
    padding: 15px 19px 0 22px;
    color:#444;
}

.wizardMainCol legend {
    display: inline;
    font-size: 1.6em;
    margin-bottom: 10px;
    padding: 0;
}

#wizardcontent {
    position:relative;
    behavior: url("${pageContext.request.contextPath}/resources/ie-behaviour/PIE.htc");
}

/********************/

#laanebelop {
    padding: 10px 0 15px 0;
}

#laanebelop h2 {
    line-height: 1;
    font-size: 2.5em;
    color: #adadad;
    font-weight: normal;
    text-align: center;
}

#laanebelop-value {
    color: #000;
}

.iframeContainer{
    width:600px;
    margin: 0 auto;
}

.signIframe {
    width:600px;
    height:540px;
    /* BankId 2.0
    width:396px;
    height:280px;*/
    border: none;
    frameBorder:0;
}

#signAvtalegiroIframe {
    border: none;
    width:778px;
    height: 650px;
    display: block; /* Needed to center iframe, centering within containing div didn't work for some reason. */
    margin: 0 auto;
    frameBorder: 0; /* Non-standard, but still needed for IE8. */
}

.betingelsevalgLeftmargin{
    margin-left: 20px;
}

/*ie.jcss*/
.bluebox {
    border: 1px solid #519BC4;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background: #daeffa;
    color: #4e6d81;
}

.redbox {
    border: 1px solid #f16262 !important;
    background: #fff0f0 !important;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    color: #ff0000 !important;
}

.bluebox h3, .bluebox h4 {
    margin: 0;
}

/*ie.jcss*/
.graybox {
    background: #fafafa;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border:  1px solid #dedede;
}

/*ie.jcss*/
.greenbox {
    background: #eaf6d4;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border:  1px solid #d3e4b7;
}

/*ie.jcss*/
.outlinebox {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border:  1px solid #d3e4b7;
}

/*ie.jcss*/
.greyoutlinebox {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border:  1px solid #dedede;
}

#sendSoknad {
    margin-top: 20px;
}


.sendSoknadText{
    margin-bottom: 10px;
    color: #96ab77;
}

.stladminbox{
    padding: 10px;
    margin-bottom: 10px;
}

.betingelserText {
    color: #4e6d81;
    font-weight: normal;
    background: url("../bitmaps/common/dark_dots.gif") repeat-x scroll left bottom transparent;
    padding-bottom: 2px;
    clear: both;
}

.noBackground{
    background: none;
}

div.betingelserText {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}
div.betingelserText.betalingsforsikring {
    margin-top: -10px;
    margin-bottom: 20px;
    background: none;
}
.betalingsforsikring p{
    display:inline;
}

#bilinfo{
    min-height: 260px;
    margin-top: 10px;
    padding-top: 1px;
}

.differensiertPrisInfo{
    margin-top: 10px;
    padding: 10px;
}


#bilinfo a {
    text-decoration: none;
}

.captchaContainer{
    margin-left: -6px;
    width: 320px;
}

.captchaSubmit{
    margin:  10px 5px 0 0px;
}

.captchaExplanation{
    padding:  10px;
}



/*ie.jcss*/
#progressbar{
    margin: 20px auto;
    height: 34px;
    width: 871px;
    background: #d1d4d7;
    background: -webkit-linear-gradient(top,#e5e7e8,#d1d4d7);
    background: -moz-linear-gradient(top,#e5e7e8,#d1d4d7);
    background: -o-linear-gradient(top,#e5e7e8,#d1d4d7);
}

.progressElement {
    float: left;
    height: 34px;
    font-size: 1.3em;
    line-height: 25px;
    text-align: center;

}

.progressElement.progresstext {
    background: url(../bitmaps/common/progress-sprite.png) no-repeat -13px 0;
}

.progresstext.fourstep {
    width: 205px;
}

.progresstext.fourstep.firststep, .progresstext.fourstep.laststep{
    width:205px;
}

.progresstext.threestep {
    width: 279px;
}

.progresstext.twostep{
    width: 426px;
}

.progresstext.threestep.firststep{
    width: 278px
}

.progresstext.twostep.firststep{
    width: 426px
}

.separator {
    background: url(../bitmaps/common/gray-gray.png) no-repeat -1px 0;
    width: 16px;

}

.progresstext.grunnlag, .progresstext.firststep {
    border-left: 1px solid #0086ba;
    border-radius: 3px 0 0 3px;
}

.progresstext.bekreftelse, .progresstext.laststep {
    border-right: 1px solid #b9c0c6;
    border-radius: 0 3px 3px 0;
}

/*progress*/
/*current tekst*/
.firststep .firststep, .secondstep .secondstep, .thirdstep .thirdstep, .laststep .laststep{
    background: url(../bitmaps/common/progress-sprite.1.png) no-repeat -13px -34px;
    border-top: none;
    border-bottom: none;
}

/*previous tekst*/
.secondstep .firststep,
.thirdstep .secondstep, .thirdstep .firststep,
.laststep .thirdstep, .laststep .secondstep, .laststep .firststep
{
    background: url(../bitmaps/common/progress-sprite.1.png) no-repeat -13px 0;
    border-top: none;
    border-bottom: none;
}

/*foran*/
.firststep .firststep+.separator, .secondstep .secondstep+.separator, .thirdstep .thirdstep+.separator, .laststep .laststep+.separator
{
    background: url(../bitmaps/common/dark-gray.png) no-repeat 0 0;
}

/*rett bak*/
.secondstep .firststep+.separator,
.thirdstep .secondstep+.separator,
.laststep .fourstep.thirdstep+.separator,
.laststep .threestep.secondstep+.separator,
.laststep .twostep.firststep+.separator
{
    background: url(../bitmaps/common/light-dark.png) no-repeat 0 0;
}

/*lenger bak*/
.thirdstep .firststep+.separator, .laststep .firststep+.separator, .laststep .fourstep.secondstep+.separator {
    background: url(../bitmaps/common/light-light.png) no-repeat 0 0;
}




/*step-numbers*/
#progressbar .stepnumber {
    float: none;
}

/*ie8.css*/
.stepnumber {
    background: url(../bitmaps/common/kalkulator-sprite.png) no-repeat 0 4px;
    padding: 1px 7px 3px 5px;
    margin-right: 10px;
    font-size: 1.3em;
    font-weight: bold;
}

/*ie8.css*/
.stepnumber:before {
    color: #eee;
    font-size: 0.7em;
    padding-left: 1px;
}

.firststep .stepnumber:before{
    content: '1';
}

.secondstep .stepnumber:before,
.twostep.laststep .stepnumber:before{
    content: '2';
}

.thirdstep .stepnumber:before,
.threestep.laststep .stepnumber:before{
    content: '3';
}

.laststep .stepnumber:before{
    content: '4';
}

.firststep .firststep .stepnumber,
.secondstep .secondstep .stepnumber,
.thirdstep .thirdstep .stepnumber,
.laststep .laststep .stepnumber{
    background: url(../bitmaps/common/kalkulator-sprite.png) no-repeat 0px -23px;
}

.secondstep .firststep .stepnumber:before,
.thirdstep .secondstep .stepnumber:before,
.thirdstep .firststep .stepnumber:before,
.laststep .firststep .stepnumber:before,
.laststep .secondstep .stepnumber:before,
.laststep .thirdstep .stepnumber:before{
    content: '';
}

.secondstep .firststep .stepnumber,
.thirdstep .secondstep .stepnumber,
.thirdstep .firststep .stepnumber,
.laststep .thirdstep .stepnumber,
.laststep .secondstep .stepnumber,
.laststep .firststep .stepnumber{
    background: url(../bitmaps/common/kalkulator-sprite.png) no-repeat -20px -23px;
    padding: 1px 10px;
}

/*ie.jcss*/
#ekindikator {
    height: 2em;
    background: #c2e2f4;
    background: -webkit-linear-gradient(top, #cbe7f5, #9dcfeb);
    background: -moz-linear-gradient(top, #cbe7f5, #9dcfeb);
    background: -o-linear-gradient(top, #cbe7f5, #9dcfeb);
    -pie-background: linear-gradient(top, #cbe7f5, #9dcfeb);
    margin: 10px 20px 0px 20px;
    border:1px solid #519bc4;
    overflow: hidden;
}

#ekindikator div {
    float:left;
}

/*ie.jcss*/
#ekindikator .ekindikator-value{
    background: #7fb9de;
    background: -webkit-linear-gradient(top,#94c6e5, #519bc4);
    background: -moz-linear-gradient(top,#94c6e5, #519bc4);
    background: -o-linear-gradient(top,#94c6e5, #519bc4);
    -pie-background: linear-gradient(#94c6e5, #519bc4);
    height: 100%;
    text-align: center;
    overflow: hidden;
}
#ekindikator .laanindikator-value {
    float:left;
    height: 100%;
    text-align: center;
    overflow: hidden;


}

.ekindikator-text {
    padding-top: 4px;
    display: inline-block;
    color:#456D72;
}

/*ie.jcss*/

#betalingsforsikring{
    margin-top: 35px;
}

.radioOptions{
    margin: 20px 0 20px 0px;
    padding: 10px 0px 5px;
}


.medlaantakerOption {
    overflow: auto;
    margin-left:0px
}


.radioOptions .formElement.radio {
    margin-bottom: 0;
    width: 200px;

}

.radioOptions-options .formElement.radio p{
    margin-bottom: 0.5em;
}


#velgbil {
    line-height: 3em;
}

.nocar {
    color: #adadad;
    display: block;
    position: relative;
    text-align: center;
    top: -30px;
    width: 100%;
}

.kmStand{
    margin-top: 0.5em;
}

.greenbutton {
    background-image: url(../bitmaps/common/btn-green-sprite.png);
}

.greybutton {
    background-image: url(../bitmaps/common/btn-grey-sprite.png);
}

.smallButtonStart {
    background-repeat: no-repeat;
    background-position: right -83px;
    padding-right: 5px;
    display:inline-block;
    text-decoration: none;
}

.smallButtonEnd{
    display:block;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 2px 5px 2px 10px;
    color: #8b8b8b;
    font-size: 1.2em;
}

.smallButtonStart:hover {
    background-position: right -111px;
}

.smallButtonEnd:hover {
    background-position: left -28px;
    color: #adadad
}

.smallButtonStart:active {
    background-position: right -139px;
}

.smallButtonEnd:active {
    background-position: left -56px;
}


.buttonStart {
    background-repeat: no-repeat;
    background-position: right -94px;
    padding-right: 5px;
    display:inline-block;
    text-decoration: none;
}

.buttonStart input {
    background-color: transparent;
    border: none;
}

.buttonEnd{
    display:block;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 4px 15px 4px 20px;
    color: #4b7f00;
    font-size: 1.3em;
}

.buttonStart:hover {
    background-position: right -126px;
}

.buttonEnd:hover {
    background-position: left -32px;
    color: #6da102;
}

.buttonStart:active {
    background-position: right -158px;
}

.buttonEnd:active {
    background-position: left -64px;
}

/*ie8*/
.buttonButton {
    /*for Ã¥ arve fra body pÃ¥ samme mÃ¥te som lenker*/
    font-family: inherit;
    min-height: 30px;
}

/*ie8*/
.buttonDisabled {
    opacity: 0.5;
}

.buttonDisabled.buttonStart:hover, .buttonDisabled.buttonStart:active {
    background-position: right -94px;
}

.buttonDisabled .buttonEnd:hover, .buttonDisabled .buttonEnd:active {
    background-position: left top;
    color: #4b7f00;
}

.navigation {
    float:right;
}

.navigationForward {
    position: absolute;
    bottom: 0;
    right: 0px;
}

.kundeNavigation{
    text-align: right;
}

.navigationBackward {
    position: absolute;
    bottom: 0;
    right: 100px;
}

.navigationBackwardLast a.big-button{
    padding: 5px 28px;
}

.navigationNoObject{
    top:280px;
}
.navigationSend {
    margin: auto;
    height: 30px;
}

.wizardForm {
    display: flex;
    justify-content: center;
}

.wizardFormElement {
    clear: left;
    float: left;
    margin-bottom: 20px;
}

.wizardFormElement label {
    display: inline;
}

.wizardFormElement .heading {
    padding-bottom: 3px;
    color: #444;
}

.wizardFormElement input[type="text"]{
    width: 190px;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #CCC;
    padding: 4px;
    height: 18px;
    font-size: 1.4em;
    text-align: left;
}
.wizardFormElement textarea,.wizardFormElement select, .formaal select, .midlenesOpprinnelse select{
    border: 1px solid #CCC;
}

.wizardFormElement .wideInput input[type="text"] {
    width: 259px;
}

.wizardFormElement select {
    width: 190px;
}

.wizardFormElement .mediumselect select {
    width: 190px;
}

.wizardFormElement .tinyselect select {
    width: 80px;
}

/*ie.jcss*/
.wizardFormElement input[type="text"]:focus {
    border: 1px solid #519BC4;
    -moz-box-shadow: 0 0 3px  #519BC4;
    -webkit-box-shadow: 0 0 2px #519BC4;
    -o-box-shadow: 0 0 2px #519BC4;
    box-shadow: 0 0 2px #519BC4;
}

.wizardFormElement input[type="text"].textfieldError {
    border: 1px solid #FF0000;
    background-color: #FFF0F0;
}

.wizardFormElement textarea {
    width: 210px;
}

.inputcolumn {
    float:left;
    width: 214px;
    padding: 10px 10px 0 10px;
}

.firstcolumn{
    margin-right: 14px;
}

/*bildisplay*/
.objectdisplay {
    padding:  5px;
}


.objectimg img {
    width: 250px;
    min-width: 165px;
}

/*bilskjema*/
.bilOptions{
    float:right;
    /*   width:150px;*/
    text-align:right;
    clear:both;
}

#bilvalgCancel{
    margin-right: 5px;
}

.bilselectPadding{
    padding: 10px 14px;
}

#bilselect .wizardFormElement {
    margin-bottom: 10px;
}

.externalLookup{
    margin-top: 10px;
}

.velgManuelt{
    margin-bottom: 100px;
    margin-top: 40px;
    text-align: center;
}

.finncodeContainer input[type="text"]{
    width:135px;
    margin-right: 10px;
}

.smallInput input[type="text"]{
    width:150px;
}

.wizardFormElement.kmStand {
    clear:none;
    margin-left:28px;
    margin-top: 0px;
    position: relative;
}
.labelinside {
    position: relative;
}

.labelinside label{
    position: absolute;
    top:3px;
    font-size: 1.2em;
    left:9px;
    color:#aaa;
}

.labelinside .labelerror{
    top:-18px;
    left:0px;
    background-image: none;
    color: #ff0000;
    font-size: 1em;
}

.horizontal {
    width: 100%;
    overflow: auto;
}

.horizontal div {
    float: left;
}

.horizontal .text {
    width: 48px;
    text-align: center;
    color: #adadad;
}

.horizontal .ruler {
    width: 110px;
    border-bottom: 1px solid #e3e3e3;
    margin-top: 7px;
}

#bilInputs ul {
    margin: 0;
    overflow: hidden;
}

#bilInputs ul li {
    list-style: none;
    display: inline;
}

#bilInputs ul li a{
    padding:  5px;
    background-color: #f0f0f0;
    border: 1px solid #cbcbcb;
    border-top: none;
    border-right: none;
    float:left;
    display: block;
    width: 138px;
    text-align: center;
}

#bilInputs ul li:first-child a{
    border-left: none;
}



#bilInputs ul li.ui-tabs-selected a{
    background-color: #fafafa;
    border-bottom: none;

}

/*bekreftelse*/
.signChoiceContainer {
    width: 450px;
    margin: auto;
    padding: 20px;
    overflow: auto;
    color:#444;
    font-size: 14px;
}

.signChoiceContainer h2 {
    font-size: 18px;
}

.signChoice {
    width:192px;
    padding: 10px;
    float:left;
    margin:10px 0 10px 0;
    text-align: center;
}

.signCenter {
    float: none;
    margin: auto;
}

.signChoiceRight{
    float:right;
}

.signChoiceRight .signer-button{
    color: #fff !important;
}

.signering-hjelpetekst {
    text-align: center;
    padding: 30px;
}

.signering-hjelpetekst td {
    border: none;
    background: none;
}

.signering-hjelpetekst th {
    border: none;
    background: none;
    color: black;
}

.signering-hjelpetekst ul {
    list-style-type: none;
}

.longButton {
    width: 170px;
}

.download {
    text-align: center;
    clear:both;
}

.center {
    text-align: center;
}

.maildocuments {
    background: url(../bitmaps/common/mail-ikon.png) no-repeat top left transparent;
    height: 30px;
    width: 29px;
    border: none;
}

.maildocuments:hover {
    background-position: -28px 0;
}

.maildocuments:active {
    background-position: -56px 0;
}

/*ie.jcss*/
.bekreftelseHeader {
    background: -webkit-linear-gradient(left,#fff, #cdef8f 50%, #fff 100%);
    background: -moz-linear-gradient(left,#fff, #cdef8f 50%, #fff 100%);
    background: -o-linear-gradient(left,#fff, #cdef8f 50%, #fff 100%);
    -pie-background: linear-gradient(left,#fff, #cdef8f 50%, #fff 100%);
    color:#86b757;
    font-weight: bold;
    margin: 20px auto;
    padding: 1px 0;
    font-size: 1.5em;
    width: 424px;
}

.bekreftelseHeader &gt; h2{
    padding: 10px 0;
    background: -webkit-linear-gradient(left,#fff, #edfbd4 50%, #fff 100%);
    background: -moz-linear-gradient(left,#fff, #edfbd4 50%, #fff 100%);
    background: -o-linear-gradient(left,#fff, #edfbd4 50%, #fff 100%);
    -pie-background: linear-gradient(left,#fff, #edfbd4 50%, #fff 100%);
}

.messagebox{
    margin:  40px auto;
}

.oppsummeringHeading {
    border-bottom: 1px solid #dedede;
    margin-top: 0.5em;
    font-size: 1.4em;
}

.oppsummeringLabel {
    color: #777;
    width: 80px;
}

.oppsummeringValue{
    width:100%;
    text-align: right;
}

.oppsummeringTable {
    width:280px;
    border: none;
}

.oppsummeringTable td {
    background: none;
    border: none;
    margin: 0;
    padding: 0 0 0.2em 0;
}

.leadText {
    color: #adadad;
    display: inline-block;
    width: 80px;
}
h2.oppsummeringHeading {
    margin: 0 0 1em;
    font-weight: normal;
    font-size: 17px;
}

.oppsummeringRow {
    margin-bottom: 0.3em;
    font-size: 14px;
}

.oppsummeringTable .oppsummeringExtraSpace{
    padding-top: 0.5em;
}

.noborder {
    border: none;
}



/*slider*/
.sliderField {
    margin: 25px 0 0 0;
}

.sliderField label{
    display: inline;
}

.sliderField .heading {
    padding: 0 0 4px 0;
    font-size: 1.1em;
    color: #444;
}

.sliderElement {
    margin-right: 2px;
}

/*ie.jcss*/
.grunnlagslider{
    width: 266px;
    float: left;
    margin: 8px 0 0 24px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;

}

.sliderElement .wizardFormElement {
    clear:none;
    float: right;
    margin-right: 3px;
    margin-bottom: 0;
}
.sliderElement .wizardFormElement input[type="text"]{
    width: 150px;
    text-align: center;
}

.ui-slider {
    position: relative;
    text-align: left;
}
.ui-slider .ui-slider-handle {
    cursor: default;
    height: 2.1em;
    position: absolute;
    width: 4.8em;
    z-index: 2;
}
.ui-slider .ui-slider-range {
    background-position: 0 0;
    border: 0 none;
    display: block;
    font-size: 0.7em;
    position: absolute;
    z-index: 1;
}
.ui-slider-horizontal {
    height: 0.5em;
    background: url("../bitmaps/common/slider-sprite.png") repeat-x scroll 0 -8px #FFFFFF;
    border: 1px solid #AAAAAA;
    color: #222222;
}
.ui-slider-horizontal .ui-slider-handle {
    margin-left: -1.8em;
    top: -0.6em;
    background: url("../bitmaps/common/slider-sprite.png") no-repeat scroll 0 -16px transparent;
}
.ui-slider-horizontal .ui-slider-range {
    height: 100%;
    top: 0;
}

.ui-slider-horizontal .ui-slider-range-min {
    bottom: 0;
    background: url("../bitmaps/common/slider-sprite.png") repeat-x scroll 0 0 #FFFFFF;
}

/*tooltip*/
.tooltip {
    background: url("../bitmaps/common/kalkulator-sprite.png") -41px 0;
    width: 20px;
    display: inline-block;
    margin-left: 3px;
    line-height: 19px;
}

.headerTooltip{
    line-height: 18px;
}


/*buttons*/
.blue-button {
    background-color: #0092e0;
    background: -webkit-linear-gradient(#00b0eb, #0092e0);
    background: -moz-linear-gradient(#00b0eb, #0092e0);
    -pie-background: linear-gradient(#00b0eb, #0092e0);

    -webkit-box-shadow: 0 0 0 rgba(0,0,0,0);
    -moz-box-shadow: 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 rgba(0,0,0,0);

    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid #0086ba;
    display: inline-block;

    color: #fff;
    font: 16px arial;
    text-shadow: 0 1px 0 rgba(255,255,255,.3);
    text-decoration:none;
}



.blue-button:hover {
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.3) inset;
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.3) inset;
    box-shadow: 0 1px 1px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.3) inset;
    color: #fff;
}


.blue-button:active {
    background-color:#0092e0;
    background: -webkit-linear-gradient(#00a3da, #0092e0);
    background: -moz-linear-gradient(#00a3da, #0088d1);
    -pie-background: linear-gradient(#00a3da, #0088d1);

    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.2);
    box-shadow: 0 1px 3px rgba(0,0,0,.3) inset;
    color: #fff;
}

.blue-button:visited {
    color: #fff;
}

.green-button {
    background-color: #91d059;
    background: -webkit-linear-gradient(#bbe574, #91d059);
    background: -moz-linear-gradient(#bbe574, #91d059);
    -pie-background: linear-gradient(#bbe574, #91d059);

    -webkit-box-shadow: 0 0 0 rgba(0,0,0,0);
    -moz-box-shadow: 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 rgba(0,0,0,0);

    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid #6ca83a;

    color: green;
    font: 16px arial;
    text-shadow: 0 1px 0 rgba(255,255,255,.3);
    text-decoration:none;

}

.green-button:hover {
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.3) inset;
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.3) inset;
    box-shadow: 0 1px 1px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.3) inset;

    color: green;
}

.green-button:active {
    background-color: #82c228;
    background: -webkit-linear-gradient(#b3da5c, #82c228);
    background: -moz-linear-gradient(#b3da5c, #82c228);
    -pie-background: linear-gradient(#b3da5c, #82c228);

    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.2);
    box-shadow: 0 1px 3px rgba(0,0,0,.3) inset;

    color: green;
}

.green-button:visited {
    color: green;
}

.grey-button {
    background-color: #ddd;
    background: -webkit-linear-gradient(#eee, #ddd);
    background: -moz-linear-gradient(#eee, #ddd);
    -pie-background: linear-gradient(#eee, #ddd);

    -webkit-box-shadow: 0 0 0 rgba(0,0,0,0);
    -moz-box-shadow: 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 rgba(0,0,0,0);

    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid #aaa;

    color: #555;
    font: 16px arial;
    text-shadow: 0 1px 0 rgba(255,255,255,.3);
    text-decoration:none;
}



.grey-button:hover {
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.3) inset;
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.3) inset;
    box-shadow: 0 1px 1px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.3) inset;

    color: #555;
}


.grey-button:active {
    background-color: #ccc;
    background: -webkit-linear-gradient(#ddd, #ccc);
    background: -moz-linear-gradient(#ddd, #ccc);
    -pie-background: linear-gradient(#ddd, #ccc);

    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.2);
    box-shadow: 0 1px 3px rgba(0,0,0,.3) inset;

    color: #555;
}

.grey-button:visited {
    color: #555;
}

.grey-button.buttonDisabled:active{
    background: -webkit-linear-gradient(#eee, #ddd);
    background: -moz-linear-gradient(#eee, #ddd);
    -pie-background: linear-gradient(#eee, #ddd);
}

.blue-button.buttonDisabled:active {
    background: -webkit-linear-gradient(#00b0eb, #0092e0);
    background: -moz-linear-gradient(#00b0eb, #0092e0);
    -pie-background: linear-gradient(#00b0eb, #0092e0);
}

.green-button.buttonDisabled:active {
    background: -webkit-linear-gradient(#bbe574, #91d059);
    background: -moz-linear-gradient(#bbe574, #91d059);
    -pie-background: linear-gradient(#bbe574, #91d059);
}

.buttonDisabled:hover, .buttonDisabled:active {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.big-button {
    padding: 4px 20px;
}

a.big-button{
    padding: 5px 20px;
}

.huge-button {
    padding:  10px 10px;
}

.huge-button-lr{
    padding-left:40px;
    padding-right: 40px;
}

.signer-button{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    min-width: 170px;
}

.signer-button:hover {
    color: #f7f7f7;
}

.dialogueButtons{
    margin: 20px 0 10px 0;
}

.ui-tooltip.qtip-helptext{
    font-size: 12px;
}
.qtip-content{
    line-height: 1.3;
}

/****ny nedbetalingsplan****/
.nedbetalingsplanHeader {
    border: none;
}
#nedbetalingsplanContainerOnPage {
    width: 100%;
    min-height: 300px;
}
.nedbetalingsoversiktOnPage {
    clear:left;
    padding: 10px 10px 1px 10px;
    background-color: #f0f0f0;

}
#nedbetalingsplanContainerOnPage li{
    float:left;
    background: #ccc;
    display:block;
    margin-right:6px;
    padding: 6px 10px 2px;
    -moz-border-radius:5px 5px 0 0;
    -webkit-border-radius:5px 5px 0 0;
    -o-border-radius:5px 5px 0 0;
    border-radius:5px 5px 0 0;
    font-size:13px;
    -webkit-box-shadow: 0 -1px 2px rgba(0,0,0,.2) inset;
    -moz-box-shadow: 0 -1px 2px rgba(0,0,0,.2) inset;
    -o-box-shadow: 0 -1px 2px rgba(0,0,0,.2) inset;
    box-shadow: 0 -1px 2px rgba(0,0,0,.2) inset;
}
#nedbetalingsplanContainerOnPage li a{
    float:left;
    color:#444;
    display:block;
    float:left;
    text-decoration:none;
}

#nedbetalingsplanContainerOnPage li.ui-tabs-selected{
    background:#f0f0f0;
    color:#fff;
    box-shadow: none;

}

#nedbetalingsplanContainerOnPage table {
    border-left: 1px solid #adadad;
    border-right: 1px solid #adadad;
}

#nedbetalingsplanContainerOnPage td {
    padding:  2px 5px;
    text-align: right;
    background-color: #f8f8f8;
}
#nedbetalingsplanContainerOnPage tr.even td{
    background-color: #efefef;
}
#nedbetalingsplanContainerOnPage th {
    padding: 5px 6px;
    background: #ccc;
    background: -webkit-linear-gradient(top, #ddd, #aaa);
    background: -moz-linear-gradient(top, #ddd, #aaa);
    background: -o-linear-gradient(top, #ddd, #aaa);
    border: 1px solid #aaa;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
    -o-box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
    box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
    color: #555;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
    font-size: 1.1em;
    text-align: center;
}

.hjelpetekstUtenVerdi{
    color: red;
}

.vertikalt-blokkelement h2:first-child {
    color:gray;
}

.opplasting{
    margin-top: 20px;
}

.opplastingSubmit{
    margin:20px 0;
    text-align: center;

}

.opplastingField{
    text-align: center;
}

.opplastingField label{
    display: none;
}

.opplastingField label.error{
    display: inline;
    font-size: 0.9em;
    background:none;
}

.opplastingField .heading{
    text-align: center;
}


.spinner{
    position: absolute;
    top: 450px;
}

.spinnerLeft{
    left: 465px;
}


.helpTextHeadline{
    font-size: 1.5em;
}

.helpTextOnsite{
    font-style: italic;
}

.noMarginBtm{
    margin-bottom: 0;
}
.slider{
    background: url("../bitmaps/common/slider-sprite.png") repeat-x scroll 0 0 rgb(255, 255, 255);
    bottom: 0;
    border: 1px solid rgb(170, 170, 170);
    color: rgb(34, 34, 34);
    height: 9px;
    border-radius: 5px 5px 5px 5px;
    float: left;
    margin: 8px 0 0 24px;
    width: 266px;
    overflow: visible;
    position: relative;
}
.slider .noUi-handle{
    background: url("../bitmaps/common/slider-sprite.png") no-repeat scroll 0 -16px transparent;
    margin: -8px 0 0 0;
    cursor: default;
    height: 22px;
    width: 48px;
    position: relative;
    left: -24px;
}

.formaal {
    background-color: #f9f9f9;
    border:  1px solid #dedede;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    width: 486px;
    padding: 5px 0 5px 0;
}

.midlenesOpprinnelse {
    background-color: #f9f9f9;
    border:  1px solid #dedede;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    width: 486px;
    padding: 5px 0 5px 0;
    display: flex;
    justify-content: flex-end;
 }

.formaal .disclaimer {
    display: inline-block;
    vertical-align: top;
    margin-left: 24px;
    width: 266px;
    font-size: 0.9em;
}

.formaal select, .midlenesOpprinnelse select {
    display: inline-block;
    vertical-align: top;
    float: right;
    margin-right: 3px;
    width: 160px;
    font-size: 1.2em;
    color: #444;
    margin-top: 5px;
}

#sendAvtaleGiro{
    float:left;
    width: 250px;
}


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


}

.avtalegiro-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.avtalegiro-container p{
    font-size: 1.8rem;
    text-align: center;
    margin: 2em;
}

.midlenes-opprinnelse-leasing{
    height: 140px;
}</pre></body></html>