﻿/* Import Css reset, responsive grid & clearfix includes.css */
@import 'includes.css';

/*
Project: V&V Digitaal Adviseur
Author: Voogd & Voogd Diensten
Description: Responsive theme for the V&V Digitaal Adviseur portal
Notes: - Font-sizes in this Css are calculated relative to standard desktop browser font-size (which is 16px).
	   - The standard Css is mostly based on the mobile version. Check the media queries for elements that are different in the desktop version.
File: screen.css
*/


* {
    /* Apply a natural box layout model to all elements */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* To stop elements from flashing during css3 animation hide backface visability 
    -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden;	backface-visibility: hidden; */
    /* Prevent user from double click selecting text */
    -webkit-user-select: none;
    /* wilco: wanneer je onderstaande gebruikt, werken alle input velden onder firefox niet meer goed
       de cursor staat dan altijd aan het begin van je input veld.
    */
    /*-moz-user-select: none;*/
    user-select: none;
    /* Prevent highlights on touch */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
}


/* Typography
---------------------.----------------------------------------- */

html, body {
    background: #efefef;
    color: #737373;
    font: 400 100%/1.5 Arial, sans-serif;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 720px) {
    html {
        overflow-x: hidden;
    }

    body {
        -webkit-text-size-adjust: none;
    }
}

@media screen and (max-width: 360px) {
    body {
        font-size: 87.5%; /* 14 / 16 */
    }
}

@media screen and (min-width: 720px) {
    html {
        background-color: #dfdfdf;
        overflow-y: scroll;
    }

    body {
        background-color: #dfdfdf;
        font-size: 93.75%; /* 15 / 16 */
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

p, ul, ol {
    margin-bottom: 2em;
}

    p.big {
        font-size: 1.2em;
        line-height: 1.4;
    }

ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.3em;
}

ol {
    list-style-type: decimal;
    list-style-position: outside;
    padding-left: 1.3em;
}

strong, b {
    font-weight: bold;
    color: #222;
}

em, i, .italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.small {
    font-size: .875em;
}


/* Headings
-------------------------------------------------------------- */

h1 {
    color: #333;
    margin: 0 0 1.5em;
    font-weight: 400;
    line-height: 1.3;
    font-size: 1.25em; /* 20 / 16 */
}

h2, h3 {
    margin: 0 0 1em;
    font-weight: 400;
    color: #333;
    font-size: 1.125em; /* 18 / 16 */
    line-height: 1.3;
}

h3 {
    margin-bottom: .5em;
    font-weight: bold;
}

h4, h5 {
    color: #444;
    margin: 0 0 1em;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.5625em;
}

h5 {
    color: #737373;
    font-size: .9375em;
    margin: 0 0 1em;
}

    h1 .icon, h2 .icon, h3 .icon, h4 .icon, h5 .icon {
        height: 2.4em;
        width: 2.4em;
        position: relative;
        display: inline-block;
        vertical-align: top;
        margin: -.6em -.1em -.5em -.4em;
        fill: #545454;
    }

h1 .icon {
    width: 4.3em;
    height: 4.3em;
    margin: -1em 0 -1em -.7em;
}

h2 .icon {
    width: 3.3em;
    height: 3.3em;
    margin: -1em 0 -1em -.7em;
}

h1 .lbl, h2 .lbl, h3 .lbl, h4 .lbl {
    display: inline-block;
    max-width: 80%;
    vertical-align: middle;
}


/* Links
-------------------------------------------------------------- */

a {
    color: #00a3ff;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
    -webkit-user-modify: read-only;
    -webkit-touch-callout: none;
}

    a strong, a b {
        color: #00a3ff;
    }

    a:hover {
        cursor: pointer;
    }

    a:focus {
        outline: thin dotted;
    }

    a:active, a:hover {
        color: #00c6ff;
        outline: 0;
        text-decoration: underline;
    }

        a:active strong, a:active b {
            color: #00c6ff;
        }

    a.fake, a.fake:hover {
        cursor: default;
        color: #777;
        text-decoration: none;
    }


/* Tables
-------------------------------------------------------------- */

tr:nth-child(even) td {
    background: #e9e9e9;
}

    tr:nth-child(even) td.ch {
        background: #e9e9e9;
    }

tr:nth-child(odd) td {
    background: #e0e0e0;
}

    tr:nth-child(odd) td.ch {
        background: #e0e0e0;
    }

th {
    color: #333;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .8125em;
    padding: 0 .7em .6em .7em;
    text-align: center;
    border-bottom: 1px solid #b4b4b4;
    min-width: 110px;
}

    th.ch {
        text-align: left;
    }

td {
    padding: 1em .7em;
    text-align: center;
    border-bottom: 1px solid #efefef;
    border-right: 1px solid #efefef;
    min-width: 100px;
}

    td.ch {
        text-align: left;
    }

    td:last-child {
        border-right: 0;
    }


table.smaller-table {
    width: auto;
}

.smaller-table th {
    text-transform: none;
    font-weight: normal;
}

.smaller-table td {
    padding-top: .3em;
    padding-bottom: .3em;
}


/* Layout
-------------------------------------------------------------- */

.wrapper {
    max-width: 100%;
    min-height: 100%;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.fake-top {
    display: none;
    position: fixed;
    width: 100%;
    z-index: 200;
    background-color: #dfdfdf;
    /* fix voor transparante headers van browsers op bv. ios */
    height: 30px;
    top: 0;
    /* fix voor crappy webkit browsers op sommige apple apparaten */
    left: -100%;
    width: 300%;
}

.fake-bottom {
    display: none;
    position: fixed;
    width: 726px;
    left: 50%;
    margin-left: -363px;
    bottom: 0;
    z-index: 200;
    height: 30px;
    -webkit-box-shadow: inset 0 -6px 6px 2px #dfdfdf;
    box-shadow: inset 0 -6px 6px 2px #dfdfdf;
    background-image: -webkit-gradient(linear, top, bottom, from(#c9c9c9), to(20%, #dfdfdf));
    background-image: -webkit-linear-gradient(top, #c9c9c9, #dfdfdf 20%);
    background-image: -moz-linear-gradient(top, #c9c9c9, #dfdfdf 20%);
    background-image: -ms-linear-gradient(top, #c9c9c9, #dfdfdf 20%);
    background-image: -o-linear-gradient(top, #c9c9c9, #dfdfdf 20%);
    background-image: linear-gradient(to bottom, #c9c9c9, #dfdfdf 20%);
}

@media screen and (min-width: 720px) {
    .wrapper {
        max-width: 720px;
        margin: 0 auto;
    }

    .fake-top {
        display: block;
    }

    .fake-bottom {
        display: block;
    }
}
/* 1.5 dpr */
@media screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 720px), (min-resolution: 144dpi) and (max-width: 720px) {
    .wrapper {
        -webkit-transform: scale(1);
    }
}

.page {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-perspective: 1000;
    perspective: 1000;
    background-color: #efefef;
}

    .page.nopad {
        top: 0;
        z-index: 201;
    }

    .page.noscroll {
        overflow-y: hidden;
        -webkit-overflow-scrolling: auto;
    }

@media screen and (min-width: 720px) {
    .page {
        height: 100%;
        width: 720px;
        left: 50%;
        margin-left: -360px;
    }
}

p.intro {
    margin: 2em 0;
}

.table {
    height: 100%;
    width: 100%;
    table-layout: fixed;
    display: table;
    padding: 2em 0;
}

.small-table {
    height: 100%;
    width: 100%;
    table-layout: fixed;
    display: table;
}

.valign {
    vertical-align: middle;
    display: table-cell;
}

.content {
    padding-top: 1.25em;
    padding-bottom: 3em;
}



@media screen and (max-width: 720px) {
    .content {
        top: 50px;
        height: 92%;
        overflow-y: auto;
        position: relative; /*absolute*/
    }

        .content.has-page-submit {
            padding-bottom: 9em;
        }

        .content.has-page-submit-more {
            padding-bottom: 12em;
        }

        .content.has-page-submit {
            height: calc(100% - 128px);
        }
}

@media screen and (min-width: 720px) {
    .content {
        min-height: 100%;
        padding-top: 110px;
        padding-bottom: 2.5em;
        background-color: #efefef;
        -webkit-box-shadow: 0 -6px 6px rgba(0,0,0,.1);
        box-shadow: 0 -6px 6px rgba(0,0,0,.1);
    }

        .content.has-page-submit {
            padding-bottom: 10em;
        }

        .content.has-page-submit-more {
            padding-bottom: 14em;
        }
}

.content.has-logo-header {
    padding-top: 145px;
}

@media screen and (max-width: 720px) {
    .content.has-logo-header {
        padding-top: 70px;
        padding-bottom: 100px;
    }
}


/* Header
-------------------------------------------------------------- */

.header {
    position: fixed;
    width: 100%;
    height: 50px;
    z-index: 200;
    top: 0;
    left: 0;
    background: #00a3ff;
    text-align: center;
    -webkit-box-shadow: inset 0 -1px rgba(0,0,0,.08), 0 3px 3px rgba(0,0,0,.1);
    box-shadow: inset 0 -1px rgba(0,0,0,.08), 0 3px 3px rgba(0,0,0,.1);
}

@media screen and (min-width: 720px) {
    .header {
        max-width: 720px;
        margin-top: 30px;
        font-size: 1em;
        left: 50%;
        width: 100%;
        margin-left: -360px;
    }
}

.header h1 {
    color: #fff;
    /* font-size:1.071428em;  1px larger */
    font-size: 1em;
    font-weight: 700;
    margin: 0;
    display: inline-block;
    letter-spacing: normal;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

    .header h1.full {
        max-width: 100%;
    }

    .header h1 .loader {
        vertical-align: top;
        margin-top: 1em;
    }

    .header h1 .icon {
        fill: #fff;
        height: 34px;
        width: 34px;
        display: inline-block;
        margin-right: -.61em;
        vertical-align: middle;
    }

    .header h1 .lbl {
        display: inline-block;
        line-height: 48px;
        vertical-align: middle;
        padding: 0 .5em;
        max-width: 160px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
    }

.header-wide h1 .lbl {
    max-width: 240px;
}

.header a {
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

.desktop .header a:hover {
    background-color: rgba(0,0,0,.07);
}

.header a:active {
    background-color: none;
}

.top-save {
    width: 100%;
}

.header a.back-btn, .header a.next-btn, .header a.save-btn, .header a.icon-btn {
    min-width: 70px;
    height: 50px;
    padding: 0 .2em;
    text-align: left;
    float: left;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.header a.back-btn, .header a.next-btn {
    padding: 0 .2em;
}

.header a.next-btn, .header a.save-btn {
    text-align: right;
    float: right;
}

.header a.icon-btn {
    min-width: 50px;
}

    .header a.back-btn .icon, .header a.next-btn .icon, .header a.icon-btn .icon {
        fill: #fff;
        height: 32px;
        width: 32px;
        position: relative;
        left: 0;
        top: .65em;
        display: inline-block;
    }

.header a.next-btn .icon {
    right: 0;
}

.header a.back-btn.ng-click-active, .header a.next-btn.ng-click-active, .header a.icon-btn.ng-click-active {
    opacity: .5;
    background-color: rgba(0,0,0,.5);
}

.header a.config-btn {
    min-width: 50px;
    text-align: center;
    padding: 0;
}

    .header a.config-btn .icon {
        height: 38px;
        width: 38px;
        top: .4em;
        right: 0;
    }

.header a.cancel-btn {
    color: #fff;
    text-decoration: none;
    text-align: right;
    float: right;
    display: inline-block;
    padding-right: .7em;
    padding-left: .7em;
    line-height: 48px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

    .header a.cancel-btn.ng-click-active {
        opacity: .5;
        background-color: rgba(0,0,0,.5);
    }

.header.wizard h1 {
    top: -.4em;
}

@media screen and (min-width: 720px) {
    .header.wizard h1 {
        top: -.4em;
    }
}

.header .subtitle {
    display: block;
    width: 100%;
    margin: 0;
    position: absolute;
    text-align: center;
    top: 2em;
    left: 0;
    z-index: 1;
    opacity: .6;
    font-size: .875rem;
}

    .header .subtitle .lbl {
        color: #fff;
        font-size: .9375em;
        font-weight: 400;
        margin: 0 auto;
        max-width: 250px;
        display: inline-block;
        letter-spacing: normal;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

ul.wizard {
    width: 200px;
    text-align: center;
    letter-spacing: -.31em;
    line-height: 1em;
    position: absolute;
    top: 2em;
    left: 50%;
    margin: 0 0 0 -100px;
}

    ul.wizard li {
        display: inline-block;
        letter-spacing: normal;
        text-indent: -100px;
        overflow: hidden;
        width: 6px;
        height: 6px;
        background-color: #fff;
        opacity: .3;
        -webkit-border-radius: 6px;
        border-radius: 6px;
        margin: 0 3px;
    }

        ul.wizard li.active {
            opacity: 1;
        }

        ul.wizard li.done {
            opacity: 1;
            background-color: #fff;
        }

/* Some pages have a logo at the top as a header */
.header.logo-header {
    background: #fff;
    height: 90px;
    -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.03);
    box-shadow: 0 2px 2px rgba(0,0,0,.03);
    border-bottom: 1px solid #e9e9e9;
}

@media screen and (max-width: 720px) {
    .header.logo-header {
        position: relative;
        -webkit-box-shadow: 0 0 0 transparent;
        box-shadow: 0 0 0 transparent;
    }
}

.header.logo-header img.logo {
    max-width: 155px;
    max-height: 65px;
    vertical-align: middle;
}


/* Footer
-------------------------------------------------------------- */

.has-footer {
    min-height: 100%;
    margin-bottom: -44px;
    padding-bottom: 5em;
}

@media screen and (max-width: 720px) {
    .has-footer {
        min-height: 92%;
    }
}

.has-footer:after {
    content: "";
    display: block;
}

.footer, .has-footer:after {
    height: 44px;
}

.footer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 10;
    text-align: center;
    padding: 0;
    border-top: 1px solid #cacaca;
    -webkit-box-shadow: 0 -2px 3px rgba(0,0,0,.08);
    box-shadow: 0 -2px 3px rgba(0,0,0,.08);
    background-color: #efefef;
}

@media screen and (min-width: 720px) {
    .has-footer {
        padding-bottom: 6em;
    }

        .has-footer:after {
            display: none;
        }

    .footer {
        backface-visibility: hidden; /* fix voor mac browsers op fixed elements */
        position: fixed;
        height: 60px;
        width: 720px;
        margin-left: -360px;
        left: 50%;
        bottom: 30px;
        font-size: 1.1em;
        -webkit-box-shadow: 0 0 0 transparent;
        box-shadow: 0 0 0 transparent;
        padding-top: 7px;
    }
}


ul.footer-info {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    letter-spacing: -.31em;
}

    ul.footer-info li {
        margin: 0;
        display: inline-block;
        letter-spacing: normal;
        position: relative;
        z-index: 1;
    }

@media screen and (min-width: 720px) {
    ul.footer-info li {
        margin-left: .3em;
        margin-right: .3em;
    }
}

ul.footer-info li.title {
    margin: 0;
    text-align: center;
    display: block;
    z-index: 0;
}

ul.footer-info a, ul.footer-info .phone {
    display: inline-block;
    text-decoration: none;
    line-height: 28px;
    padding: 8px 10px 8px 6px;
    color: #737373;
    font-size: 0.875em; /* 14 / 16 */
}

    ul.footer-info a:hover {
        text-decoration: underline;
    }

ul.footer-info .icon {
    display: inline-block;
    height: 28px;
    width: 28px;
    vertical-align: top;
    margin-right: -.2em;
    margin-top: 0;
    fill: #505050;
}

ul.footer-info a:active, ul.footer-info a.ng-active-click {
    text-decoration: none;
    color: #444;
    background-color: rgba(0,0,0,.07);
}

@-moz-document url-prefix() {
    ul.footer-info {
        letter-spacing: normal;
    }
}


/* Navigation
-------------------------------------------------------------- */

@media screen and (min-width: 720px) {
    #nav ul.news, #nav ul.main-nav, #nav .welcome-msg {
        margin-left: auto;
        margin-right: auto;
        max-width: 450px;
    }
}

ul.nav, ul.index {
    margin: 0 auto 1em;
    padding: 0 0 .2em;
    list-style: none;
}

    ul.nav li, ul.index li {
        width: 100%;
        display: block;
        margin: 0 0 -1px;
        position: relative;
    }

    ul.nav a, ul.index a,
    ul.nav .item, ul.index .item {
        display: block;
        position: relative;
        width: 100%;
        padding: 0 .3em 0 .7em;
        border: 1px solid #ccc;
        background-color: #fff;
        color: #737373;
        text-decoration: none;
    }

.desktop ul.nav a:hover, .desktop ul.index a:hover,
.desktop ul.nav a.item:hover, .desktop .summary-block a.more-btn:hover {
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: #f4f4f4;
}

ul.nav a:active, ul.index a:active,
ul.nav a.item:active, .summary-block a.more-btn:active {
    background-color: #ffffff;
}

ul.nav li:hover, ul.index li:hover {
    /* wilco: z-index aanpassen zorgt voor verspringen van buttons hoofdmenu (1px)*/
    /*z-index:2;*/
}

ul.nav li.grey a, ul.index li.grey a,
ul.nav li.grey .item, ul.index li.grey .item {
    background-color: #e2e2e2;
}

ul.nav a.ng-click-active, ul.index a.ng-click-active {
    z-index: 1;
    background: #e0e0e0;
    filter: none;
    border-color: #c3c3c3;
    -webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.07);
    box-shadow: inset 0 2px 3px rgba(0,0,0,.07);
}

ul.nav li.grey a.ng-click-active, ul.index li.grey a.ng-click-active {
    background-color: #ddd;
}

ul.nav a.ng-click-active .icon, ul.nav a.ng-click-active .lbl,
ul.index a.ng-click-active .icon, ul.index a.ng-click-active .lbl {
    top: 1px;
}

ul.nav .icon, ul.index .icon {
    height: 3.3em;
    width: 3.3em;
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: -.4em;
    margin-right: -.2rem;
    margin-top: .4em;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    fill: #505050;
}

ul.nav .lbl, ul.index .lbl {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 1.5em 0 1.5em;
    width: 72%;
    line-height: 1.2;
    color: #444;
}
/* next icon, same as on line 4610.... 
ul.nav .icon.arrow, ul.index .icon.arrow {
	height:1.5rem;
	width:1.5rem;
	position:absolute;
	right:0;
	top:0;
	margin:1.15rem 0 0 0;
    fill:#505050;
    opacity:.3;
}
*/
ul.nav li.parent {
    margin-top: 1.5em;
    z-index: 3;
}

ul.nav li:first-child {
    margin-top: 0;
}

ul.nav li.parent a {
    background-color: #efefef;
    background-image: -webkit-gradient(linear, top, bottom, from(#f3f3f3), to(#efefef));
    background-image: -webkit-linear-gradient(top, #f3f3f3, #efefef);
    background-image: -moz-linear-gradient(top, #f3f3f3, #efefef);
    background-image: -ms-linear-gradient(top, #f3f3f3, #efefef);
    background-image: -o-linear-gradient(top, #f3f3f3, #efefef);
    background-image: linear-gradient(to bottom, #f3f3f3, #efefef);
}

ul.nav .parent-arrow {
    z-index: 2;
    bottom: -9px;
    position: absolute;
    left: 50%;
    margin-left: -9px;
    width: 17px;
    height: 10px;
    background: transparent url(../images/layout/arrow-parent.png) no-repeat left top;
}

ul.nav li.active .parent-arrow {
    background-position: left bottom;
}

@media screen and (min-width: 720px) {
    ul.nav a .icon.arrow, ul.index .icon.arrow {
        right: .25em;
    }
}


/* Main navigation with big tiles 
-------------------------------------------------------------- */

ul.main-nav {
    letter-spacing: -0.31em;
    text-align: left;
}

    ul.main-nav li {
        width: 50%;
        display: inline-block;
        margin: 0 -1px -1px 0;
        vertical-align: top;
        letter-spacing: normal;
        text-align: center;
    }

    ul.main-nav a {
        padding: .8em 0 .5em;
    }

        ul.main-nav a .icon {
            display: block;
            width: 72px;
            height: 72px;
            margin: 0 auto;
        }

    ul.main-nav li .arrow {
        display: none;
    }

    ul.main-nav a .lbl {
        width: auto;
        margin: -.3em 0 0;
        padding: 0;
        min-height: 2.7em;
    }

    ul.main-nav li a {
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    ul.main-nav.items4 li:only-child a {
        -webkit-border-radius: 5px;
        border-radius: 5px;
    }

    ul.main-nav.items4 li:nth-child(1) a {
        -webkit-border-top-left-radius: 5px;
        border-top-left-radius: 5px;
    }

    ul.main-nav.items4 li:nth-child(2) a {
        -webkit-border-top-right-radius: 5px;
        border-top-right-radius: 5px;
    }

    ul.main-nav.items4 li:nth-last-child(2):nth-child(even) a,
    ul.main-nav.items4 li:last-child a {
        -webkit-border-bottom-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    ul.main-nav.items4 li:nth-last-child(2):nth-child(odd) a,
    ul.main-nav.items4 li:last-child:nth-child(odd) a {
        -webkit-border-bottom-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

@media screen and (min-width: 720px) {
    ul.main-nav {
        padding-bottom: 2em;
        text-align: left;
        margin-bottom: 4em;
    }

        ul.main-nav li {
            width: 33.333334%;
        }

        /* hoofdmenu rounded borders */
        ul.main-nav.items4 {
            text-align: left;
        }

            ul.main-nav.items4 li {
                width: 50%;
                z-index: 2;
            }
}



/* Exceptional nav states
-------------------------------------------------------------- */

ul.nav .lbl .new {
    background-color: #e14305;
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    display: block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    text-align: center;
    position: absolute;
    z-index: 0;
    top: -.85em;
    right: -17px;
}

ul.nav .lbl em, ul.index .lbl em {
    display: block;
    font-style: normal;
    font-size: 0.875em; /* 14 / 16 */
    margin-top: .3em;
    color: #777;
}

ul.nav li.mute {
    opacity: .4;
}


/* Index: eg. a list of family members, vehicles, insurances, etc.
-------------------------------------------------------------- */

ul.index {
}

    ul.index .lbl {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        width: 72%;
        line-height: 1.2;
    }


    ul.index strong {
        color: #505050;
    }

    ul.index .alert {
        font-size: 0.8125em; /* 13 / 16 */
        margin: -.55em 0 .3em 3.5em;
        display: block;
        position: relative;
    }

    ul.index .checkbox {
        width: 18px;
        height: 18px;
        display: inline-block;
        background-color: #fafafa;
        border: 1px solid #bbb;
        vertical-align: top;
        margin-top: 1.6em;
        margin-right: .5em;
        text-align: center;
        letter-spacing: -31em;
    }

        ul.index .checkbox ~ .lbl {
            width: 69%;
        }

        ul.index .checkbox .icon {
            display: none;
            width: 16px;
            height: 16px;
            line-height: 16px;
            vertical-align: top;
            fill: #333;
            padding: 0;
            margin: 0;
        }

    ul.index li.active {
        z-index: 2;
    }

        ul.index li.active a, ul.index li.active .item {
            background: #d2edfc;
            border-color: #bad4e3;
        }

        ul.index li.active .checkbox .icon {
            display: inline-block;
        }

    ul.index h3 {
        margin-top: 1.5em;
    }

    ul.index li:first-child h3 {
        margin-top: 0;
    }


.add-btns a.action {
    margin-bottom: 1em;
    margin-right: .6em;
}


ul.index .lbl {
    max-width: 60%;
}

ul.index .price {
    position: absolute;
    right: .6rem;
    top: 1.5rem;
    text-align: right;
    font-size: 1em;
    line-height: 1em;
    color: #444;
}

ul.index .item > .parent-item .price {
    right: 1.8rem;
}

    /*ul.index .item > .parent-item .price span:first-child,
    ul.index .item > .parent-item .lbl span:first-child {
        font-weight: bold;
    }*/

ul.index .item > .sub-item {
    border-top-style: dashed;
}

ul.index a .price {
    right: 30px;
}

ul.index .from-price {
    font-size: .8125rem;
    position: absolute;
    color: #999;
    right: 1.5rem;
    top: -1.1rem;
}

.tag {
    display: inline-block;
    width: auto;
    font-size: .8125rem;
    color: #fff;
    line-height: 1.6;
    padding: 0 4px;
    margin-top: .3em;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

    .tag.list-tag {
        min-width: 70px;
        color: #6f6a53;
        background-color: #fff4bf;
        border: 1px solid #e6daa1;
        line-height: 1.5;
    }

a.action.float-action {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    max-width: 32%;
    line-height: 1.3;
    padding: .3rem .5rem;
    display: inline-block;
    margin-right: .75rem;
    margin-top: 1.3rem;
}

ul.index a.inline-link {
    border: 0;
    background: none transparent;
    filter: none;
    display: inline-block;
    color: #00a3ff;
    padding: 0;
    margin: 0 0 0 .3em;
    width: auto;
    font-size: .9375em;
    line-height: 1.6;
}

/*Price termijn styling list*/
.price .betalingstermijn {
    display: block;
    text-align: right;
    margin-top: 5px;
    color: #777;
    font-size: 11.26px;
}



/* Products */

ul.products li {
    margin-bottom: .4rem;
    transition: all 200ms ease-in-out;
}

ul.products.has-checkbox .parent-item {
    padding-left: 2.4rem;
    position: relative;
}

ul.products li.active {
    background-image: -webkit-gradient(linear, top, bottom, from(#e6f1ff), to(#dbebff));
    background-image: -webkit-linear-gradient(top, #e6f1ff, #dbebff);
    background-image: -moz-linear-gradient(top, #e6f1ff, #dbebff);
    background-image: -ms-linear-gradient(top, #e6f1ff, #dbebff);
    background-image: -o-linear-gradient(top, #e6f1ff, #dbebff);
    background-image: linear-gradient(to bottom, #e6f1ff, #dbebff);
    border-color: #94b9cd;
    -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.12);
    box-shadow: 0 2px 2px rgba(0,0,0,.12);
}

    ul.products li.active .checkbox-ui input:checked + label .input,
    ul.products li.active .checkbox-ui input:checked + .input {
        background-color: #fff;
        border-color: #94b9cd;
    }

ul.products .item {
    padding-left: 0;
    padding-right: 0;
}

ul.products .icon {
    width: 2.8rem;
    height: 2.8rem;
    margin-top: .6rem;
}
.zorg ul.products .icon {
    margin-top:16px;
}

ul.products .checkbox-ui {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

    ul.products .checkbox-ui label {
        position: relative;
        min-width: 3rem;
        display: block;
        vertical-align: middle;
        width: 100%;
        height: 100%;
    }

        ul.products .checkbox-ui label .input {
            top: 1.5rem;
            left: .6rem;
        }

ul.products a.edit-product, ul.products li.active a.edit-product {
    position: relative;
    z-index: 3;
    background-color: transparent;
    display: block;
    border: 0;
    padding: 1.4rem 0 1rem;
    margin: -1.4rem 0 -1.6rem;
    width: auto;
    color: #0086d2;
    font-size: .875rem;
}

    ul.products a.edit-product:hover span, ul.products li.active a.edit-product:hover span {
        text-decoration: underline;
    }

ul.index .parent-item, ul.index a.parent-item {
    padding-left: .7rem;
    padding-right: .7rem;
    border: 0;
    min-height: 62px;
}

ul.index .sub-item {
    border-top: 1px solid #e2e2e2;
}

    ul.index .sub-item.grey {
        border-color: #d2d2d2;
        background-color: #e2e2e2;
    }

    ul.index .sub-item .lbl {
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-size: .875em;
    }

    ul.index .sub-item .icon.sub-icon {
        height: 2rem;
        width: 2rem;
        margin-left: .5rem;
        margin-right: .2rem;
        margin-top: .4rem;
    }

    ul.index .sub-item .price {
        top: 1rem;
    }

ul.index .parent-item .icon.arrow {
    top: 1.2rem !important;
    margin-top: 0;
}

/* A list of sub products divided by a border-bottom */
ul.index ul.subs {
    list-style: none;
    margin: -1rem 0 .5rem;
    padding: 0;
    position: relative;
}

    ul.index ul.subs li {
        padding-left: 3rem;
        padding-top: .4rem;
        padding-bottom: .4rem;
        font-size: 0.875em;
        color: #777;
        border-bottom: 1px solid #e2e2e2;
    }

        ul.index ul.subs li:last-child {
            border-bottom: 0;
        }

ul.nav a.ng-click-active ul.subs, ul.index a.ng-click-active ul.subs {
    top: 1px;
}


ul.index a.action {
    text-align: center;
}

    ul.index a.action .lbl {
        width: auto;
        max-width: 100%;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    ul.index a.action .icon {
        margin-left: -.3rem;
        margin-right: .3rem;
        margin-top: .15rem;
    }

ul.index .bottomline {
    font-weight: 700;
}

    ul.index .bottomline .lbl {
        padding-top: .4rem;
        padding-bottom: .4rem;
        padding-left: .5em;
    }

    ul.index .bottomline .price {
        right: 10px;
        top: .5rem;
    }


/* News navigation (wide buttons at top op dashboard) 
-------------------------------------------------------------- */

ul.news {
    margin-top: 0;
    margin-bottom: 0;
}

    ul.news li:last-child {
        margin-bottom: 1.5em;
    }

    ul.news a .lbl {
        font-size: 0.9375em;
        line-height: 1.4;
        width: 78%;
        max-width: 100%;
        padding: 1.3em 0;
        vertical-align: middle;
        color: #737373;
    }

@media screen and (min-width: 720px) {
    ul.news a .lbl {
        width: 82%;
    }
}

ul.news a .lbl strong {
    font-weight: 400;
    color: #222;
}

.status {
    width: 35px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 .4em 0 0;
    padding: 0;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    text-align: center;
    background-color: #505050;
}

h2 .status {
    width: 2.6em;
    height: 2.6em;
    margin: 0 .4em 0 -.25em;
}

.status.open {
    background-color: #f7bb06;
}

.status.new {
    background-color: #e14305;
}

.status.closed {
    background-color: #09bb00;
}

.status .icon, ul.news a .status .icon {
    margin: 0;
    width: 33px;
    height: 33px;
    fill: #fff;
    vertical-align: top;
}

h2 .status .icon {
    width: 2.6em;
    height: 2.6em;
}


/* Tiles navigation (smaller icons)
-------------------------------------------------------------- */

ul.tile-nav {
    text-align: left;
}

    ul.tile-nav a {
        padding-bottom: 1em;
    }

@media screen and (max-width: 720px) {
    ul.tile-nav li a {
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    ul.tile-nav li:only-child a {
        -webkit-border-radius: 5px;
        border-radius: 5px;
    }

    ul.tile-nav li:nth-child(1) a {
        -webkit-border-top-left-radius: 5px;
        border-top-left-radius: 5px;
    }

    ul.tile-nav li:nth-child(2) a {
        -webkit-border-top-right-radius: 5px;
        border-top-right-radius: 5px;
    }

    ul.tile-nav li:nth-last-child(2):nth-child(even) a,
    ul.tile-nav li:last-child a {
        -webkit-border-bottom-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    ul.tile-nav li:nth-last-child(2):nth-child(odd) a,
    ul.tile-nav li:last-child:nth-child(odd) a {
        -webkit-border-bottom-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
}

@media screen and (min-width: 720px) {
    ul.tile-nav a {
        padding-top: 1.4em;
        padding-right: .7em;
        padding-left: .7em;
    }

    ul.tile-nav li a {
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    ul.tile-nav li:only-child a {
        -webkit-border-radius: 5px;
        border-radius: 5px;
    }

    /* bovenste rij border */
    ul.tile-nav li:first-child a {
        -webkit-border-top-left-radius: 5px;
        border-top-left-radius: 5px;
    }

    ul.tile-nav li:nth-child(2):last-child a {
        -webkit-border-top-right-radius: 5px;
        border-top-right-radius: 5px;
    }

    ul.tile-nav li:nth-child(3) a {
        -webkit-border-top-right-radius: 5px;
        border-top-right-radius: 5px;
    }

    /* onderste rij border */
    ul.tile-nav li:last-child a {
        -webkit-border-bottom-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    ul.tile-nav li:last-child:nth-child(3n+1) a,
    ul.tile-nav li:nth-last-child(2):nth-child(3n+1) a,
    ul.tile-nav li:nth-last-child(3):nth-child(3n+1) a {
        -webkit-border-bottom-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    ul.tile-nav li:nth-last-child(2):nth-child(3n) a,
    ul.tile-nav li:nth-last-child(3):nth-child(3n) a,
    ul.tile-nav li:nth-last-child(4):nth-child(3n) a {
        -webkit-border-bottom-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
}

/* Popups
-------------------------------------------------------------- */

.popup-content {
    background-color: #efefef;
    position: absolute;
    max-width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: scale(1);
}

.header.popup {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 1px solid #d9d9d9;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.08);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

    .header.popup h1 {
        color: #333;
        text-shadow: 0 0 0 transparent;
        width: 100%;
    }

    .header.popup a.back-btn, .header.popup a.save-btn {
        line-height: 48px;
        padding-left: .6em;
    }

    .header.popup a.save-btn {
        padding-left: 0;
    }

        .header.popup a.back-btn:hover, .header.popup a.save-btn:hover {
            text-decoration: none;
        }

        .header.popup a.save-btn .loader {
            top: .3em;
            margin-right: .15em;
        }

    .header.popup a.back-btn.ng-click-active {
        opacity: .4;
    }

    .header.popup span.green,
    .header.popup span.green.disabled.ng-click-active,
    .header.popup a.green.disabled:active, .header.popup a.green.disabled.active,
    .header.popup a.ng-click-active span.green.disabled {
        -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
        box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    }

    .header.popup a.green.ng-click-active, .header.popup a.green:active, .header.popup a.green.active, .header.popup a.ng-click-active span.green {
        -webkit-box-shadow: inset 0 2px 2px rgba(0,0,0,.2);
        box-shadow: inset 0 2px 2px rgba(0,0,0,.2);
    }



/***************************************************/
/*          Modal dialogs voor browsers            */
/***************************************************/

/*  backdrop (z-index wordt berekend en is hoger dan 1040) */
.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
        -webkit-transform: translate3d(0, -50%, 0);
        -o-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate3d(0, 50%, 0);
        -o-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    max-width: 400px;
    margin: 1em auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: alpha(opacity=65);
        opacity: .5;
    }

.modal-header {
    min-height: 16.42857143px;
    padding: 1em 2em;
    border-bottom: 1px solid #e5e5e5;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 2em;
    text-align: center;
}

.modal-footer {
    padding: 0 1em 2em;
    text-align: center;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.modal-dialog a.action {
    min-width: 100px;
    line-height: 2.5em;
    margin: 0 .3em;
}

.modal-dialog-center {
    padding-top: 25%;
}

/* Dialogs (submenu's at the bottom of the screen)
-------------------------------------------------------------- */

.dialog {
    position: absolute;
    z-index: 301;
    left: 0;
    padding: 0 .7em;
    width: 100%;
}

    .dialog .modal-content {
        /* reset bootstrap modal content */
        background-color: transparent;
        -webkit-background-clip: content-box;
        background-clip: content-box;
        border: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .dialog ul {
        list-style: none;
        margin: 0 auto 1em;
        max-width: 440px;
        padding: 0;
        -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
        box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
        border-radius: 8px;
        background-color: #fff;
    }

        .dialog ul li {
            border: 0;
            border-bottom: 1px solid #bbb;
            margin: 0;
            padding: 0;
        }

            .dialog ul li:last-child {
                border-bottom: 0;
            }

        .dialog ul h4, .dialog ul a {
            display: block;
            padding: .85em 1em;
            margin: 0;
            text-align: center;
        }

        .dialog ul h4 {
            padding: 1.2em 1.5em;
            color: #333;
        }

        .dialog ul a {
            text-decoration: none;
            font-size: 1.142857142857143em;
        }

            .dialog ul a:active, .dialog ul a.ng-click-active {
                background: rgba(0,0,0,.1);
                filter: none;
                border-color: #c3c3c3;
                -webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.07);
                box-shadow: inset 0 2px 3px rgba(0,0,0,.07);
            }

/*.slide-in {
	-webkit-animation: slideIn 1s ease-out;
    animation: slideIn 1s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes slideIn {
    0% { transform: translate3d(0,-100%,0); }
    100%   { transform: translate3d(0,0%,0); }
}
@keyframes slideIn {
    0% { transform: translate3d(0,-100%,0); }
    100%   { transform: translate3d(0,0%,0); }
}

.slide-out {
    -webkit-animation: slideOut 1s ease-out;
    animation: slideOut 1s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes slideOut {
    0% { transform: translate3d(0,0%,0); }
    100%   { transform: translate3d(0,-100%,0); }
}
@keyframes slideOut {
    0% { transform: translate3d(0,0%,0); }
    100%   { transform: translate3d(0,-100%,0); }
}*/


.overlay-fade {
    position: fixed;
    z-index: 300;
    background-color: rgba(0,0,0,.65);
    display: block;
    width: 100%;
    min-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation: fadeIn .5s;
    animation: fadeIn .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (min-width: 720px) {
    .overlay-fade {
        /* Mocht mac en ipad buggen dan:
        width:300%;
        min-height:100%;
        height:110%;
        left:-100%;*/
        height: 100%;
        width: 100%;
        transform: translate3d(0,0,0);
        backface-visibility: hidden;
        margin: 0;
    }
}



.ng-hide-add, .ng-hide-remove, .ng-show-add, .ng-show-remove {
    /* ensure visibility during the transition */
    display: block !important; /* yes, important */
}

.anim-fade {
    -webkit-transition: 0.5s linear all;
    transition: 0.5s linear all;
    opacity: 1;
}

    .anim-fade.ng-hide {
        opacity: 0;
    }



.fade-in {
    -webkit-animation: fadeIn .5s;
    animation: fadeIn .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-out {
    -webkit-animation: fadeOut .5s;
    animation: fadeOut .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    99% {
        opacity: 0;
    }

    100% {
        display: none;
        opacity: 0;
    }
}


/* Notice on bottom of the screen
-------------------------------------------------------------- */

.notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #444;
    color: #fff;
    font-size: .9375em;
    line-height: 1;
    padding: .5em .5em .5em .2em;
    z-index: 300;
    -webkit-box-shadow: 0 -2px 3px rgba(0,0,0,.2);
    box-shadow: 0 -2px 3px rgba(0,0,0,.2);
    text-decoration: none;
    text-align: center;
}

@media screen and (min-width: 720px) {
    .notice.notice-inline {
        bottom: 2.15em;
    }
}

.notice:hover, .notice:active {
    text-decoration: none;
    color: #fff;
}

a.notice.ng-click-active, a.notice:active {
    opacity: .7;
}

.notice.saved {
    background-color: #09bb00;
}

.notice.error {
    background-color: #e14305;
}

.notice.message {
    color: #737373;
    border: 1px solid #ccc;
    background-color: #ddd;
    -webkit-box-shadow: 0 -2px 3px rgba(0,0,0,.1);
    box-shadow: 0 -2px 3px rgba(0,0,0,.1);
}

    .notice.message:hover, .notice.message:active {
        color: #737373;
    }

.notice strong, .notice:hover strong, .notice:active strong {
    color: #fff;
    vertical-align: middle;
}

.notice.message strong, .notice.message:hover strong, .notice.message:active strong {
    color: #737373;
}

.notice .icon {
    width: 2.2em;
    height: 2.2em;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
    margin: 0;
    fill: #fff;
}

.notice.message .icon {
    fill: #09bb00;
}

.notice a {
    color: #fff;
    text-decoration: underline;
}

    .notice a:hover, .notice a:active {
        color: #fff;
    }

.notice.message a {
    color: #737373;
}

    .notice.message a:hover, .notice.message a:active {
        color: #737373;
    }

.notice a.help {
    float: right;
    margin-top: .5em;
}

.notice .close-icon {
    width: 1.85em;
    height: 1.85em;
    float: right;
    margin-top: .6em;
}

.notice.error .close-icon {
    fill: #380b02;
}

.notice.saved .close-icon {
    fill: #124c0f;
}

.notice.message .close-icon {
    fill: #aaa;
}


/* Progress bar notice
-------------------------------------------------------------- */

.notice.progress {
    z-index: 301;
    padding: 0;
}

.meter {
    display: block;
    width: 100%;
    position: relative;
    height: 3em;
    padding: 1px;
}

    .meter label {
        position: absolute;
        z-index: 2;
        width: 100%;
        display: block;
        text-align: center;
        left: 0;
        top: 0;
        line-height: 3em;
        text-shadow: 0 1px 1px rgba(0,0,0,.5);
    }

    .meter > span {
        display: block;
        height: 100%;
        -webkit-border-radius: 3px 0 0 3px;
        -moz-border-radius: 3px 0 0 3px;
        border-radius: 3px 0 0 3px;
        background-color: #09bb00;
        position: relative;
        overflow: hidden;
        -webkit-transition: width .8s ease-in-out;
        -moz-transition: width .8s ease-in-out;
        transition: width .8s ease-in-out;
    }

        .meter > span:after, .animate > span > span {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)), color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent), to(transparent) );
            background-image: -webkit-linear-gradient( -45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent );
            background-image: -moz-linear-gradient( -45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent );
            background-image: -ms-linear-gradient( -45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent );
            background-image: -o-linear-gradient( -45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent );
            z-index: 1;
            -webkit-background-size: 50px 50px;
            -moz-background-size: 50px 50px;
            background-size: 50px 50px;
            -webkit-animation: move 2s linear infinite;
            animation: move 2s linear infinite;
            overflow: hidden;
        }

.animate > span:after {
    display: none;
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

@keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}


/* Offline mode
-------------------------------------------------------------- */

.header.offline-page {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #f7f7f7;
    border-color: #c3c3c3;
    border-bottom: 1px solid #f7f7f7;
    -webkit-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
}

.offline-msg {
    margin: 0 auto 0;
    max-width: 26em;
    padding: 0 2em;
}

    .offline-msg h2 {
        font-size: 125%; /* 18 / 16 */
        margin-top: 0;
    }

.icon-offline {
    width: 12em;
    height: 5em;
    fill: #999;
}

.page.update-popup {
    top: 0;
    z-index: 251;
}

    .page.update-popup .popup-content {
        top: 0;
    }


/* Login
-------------------------------------------------------------- */

.login {
    margin: 0 auto 0;
    padding: 0 1.2em;
    width: 100%;
    max-width: 340px;
}

ol.form.login-form {
    max-width: 340px;
}

    ol.form.login-form label {
        width: 30%;
        margin: 0;
    }

    ol.form.login-form input, ol.form.login-form input.pincode {
        width: 70%;
        max-width: 100%;
        margin: 0;
    }

        ol.form.login-form input.checkbox {
            width: 1em;
            height: 1em;
            padding: 0;
            margin-right: .4em;
            font-size: 1.5em;
            vertical-align: middle;
        }

            ol.form.login-form input.checkbox:focus {
                font-size: 1.5em;
            }

    ol.form.login-form a.action {
        min-width: 120px;
        width: 70%;
        margin-left: 30%;
    }

input.pincode.valid {
    background-image: none !important;
}

.support {
    float: left;
    width: 100%;
}

    .support a {
        line-height: 1;
    }

.login-logo {
    margin: -2em auto .75em;
    padding: 0 1.2em;
    width: 100%;
    max-width: 340px;
    text-align: center;
}

    .login-logo img.polismap-logo {
        max-width: 120px;
    }

/* Welcome flash
-------------------------------------------------------------- */

#welcome {
    z-index: 300;
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
    opacity: 1;
    text-align: center;
    left: 0;
    top: 0;
}

.agent-logo {
    text-align: center;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 300;
    background-color: #fff;
}

    .agent-logo .logo {
        width: auto;
        max-width: 430px;
        padding: 0 2em;
        margin: 0 auto;
        -webkit-animation: fadeinout 3.5s;
        animation: fadeinout 3.5s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

@-webkit-keyframes fadeinout {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeinout {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}




/* Forms
-------------------------------------------------------------- */

ol.form {
    list-style: none;
    margin: 0 0 2em;
    padding: 0;
}

    ol.form li {
        padding: 0;
        margin: 0 0 1em;
        position: relative;
        letter-spacing: -.31em;
    }

        ol.form li label, ol.form li span, ol.form li a, ol.form li p, ol.form li strong, ol.form li em {
            letter-spacing: normal;
        }

select, input.txt, input[type="text"], input[type="number"], input[type="tel"], input[type="datetime"], input[type="date"], input[type="time"], input[type="email"], input[type="url"], input[type="password"], textarea {
    letter-spacing: normal;
    vertical-align: top;
    font-size: 1em;
    font-family: Arial, sans-serif;
    padding: 0 25px 0 .75em;
    width: 60%;
    max-width: 260px;
    height: 3.5em;
    color: #505050;
    border: 1px solid #d3d3d3;
    border-bottom-color: #e1e1e1;
    background-color: #fff;
    -webkit-appearance: none; /* disables native device styles for form elements */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.08);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.08);
    position: relative;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline-color: transparent;
    outline-style: none;
}
/* hides the arrow for selects */
select {
    -webkit-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

    select::-ms-expand {
        display: none;
    }
/* hides the spin-button for firefox */
input[type=number] {
    -moz-appearance: textfield;
}
    /* hides the spin-button for chrome*/
    input[type=number]::-webkit-outer-spin-button,
    input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
/* Enable text select in inputs (is disabled everywhere else */
input {
    -webkit-user-select: text;
    user-select: text;
}
    /* Placeholder text color in IE */
    input:-ms-placeholder {
        color: #adadad;
    }

    input::-ms-input-placeholder {
        color: #adadad;
    }

    input:-ms-input-placeholder {
        color: #adadad;
    }

    input.small, select.small {
        width: 125px;
    }

    input.full, select.full {
        width: 100%;
    }

select {
    padding: 10px 25px 9px .5em;
    background-image: url(../images/layout/mob-select.png);
    background-repeat: no-repeat;
    background-size: 12px 6px;
    background-position: 97% center;
}

@-moz-document url-prefix() {
    select {
        background-image: none;
    }
}

input:focus, select:focus, textarea:focus {
    background-color: #fff;
    border-color: #84d3ff;
    color: #000;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    top: -1px;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.caps {
    text-transform: uppercase;
}

input.pincode {
    font-size: 1.6em;
    height: 2.1em;
    letter-spacing: 1em;
    padding-right: 0;
    padding-left: .4em;
    text-align: left;
    -webkit-text-security: disc;
}

    input.pincode::-webkit-input-placeholder {
        font-size: .6em;
        letter-spacing: normal;
        padding-top: .35em;
    }

    input.pincode:-moz-placeholder {
        font-size: .6em;
        letter-spacing: normal;
        padding-top: .35em;
    }

    input.pincode::-moz-placeholder {
        font-size: .6em;
        letter-spacing: normal;
        padding-top: .35em;
    }

    input.pincode:-ms-placeholder {
        font-size: 16px;
        height: 54px;
        letter-spacing: normal;
    }

    input.pincode::-ms-input-placeholder {
        font-size: 16px;
        height: 54px;
        letter-spacing: normal;
    }

    input.pincode:-ms-input-placeholder {
        font-size: 16px;
        height: 54px;
        letter-spacing: normal;
    }

ol.form input.no-lbl, ol.form select.no-lbl {
    width: 100%;
    max-width: 400px;
}

input:disabled, select:disabled {
    background: #e2e2e2;
    opacity: 1;
    box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
}

input.loading {
    background-image: url(../images/layout/ajax-loader.gif);
    background-repeat: no-repeat;
    background-position: 96% center;
    background-size: 22px 22px;
}

textarea {
    padding: 10px 10px;
    width: 100%;
    max-width: 400px;
    min-height: 110px;
    font-size: 1.1em;
    -webkit-user-select: text;
    user-select: text;
}

    textarea.bigger {
        min-height: 200px;
    }

    textarea:focus {
        font-size: 1.1em;
    }

ol.form label {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
    width: 40%;
    max-width: 140px;
    text-align: left;
    padding-top: 1.05em;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

    label.full, ol.form label.full {
        font-size: 1em;
        width: 100%;
        max-width: 100%;
        display: block;
        padding: 0;
        margin-bottom: .5em;
    }

    label.auto, ol.form label.auto {
        width: auto;
        max-width: 100%;
        padding: 0;
    }

    label.mute, ol.form label.mute {
        color: #999;
    }

.form-submit {
    padding-bottom: 1em;
}

    .form-submit a.action {
        margin-right: .6em;
        margin-bottom: 1em;
    }

ol.form input.kenteken {
    background: #ffc929 url(../images/layout/kenteken.png) no-repeat left center;
    font-size: 1.214285714285em; /* 17 / 14 */
    letter-spacing: .2em;
    height: 2.9em;
    text-transform: uppercase;
    font-weight: 700;
    border: 0;
    text-align: center;
    padding-left: 40px;
    color: #222;
}

    ol.form input.kenteken:focus {
        -webkit-box-shadow: 0 2px 3px rgba(0,0,0,.15);
        box-shadow: 0 2px 3px rgba(0,0,0,.15);
    }


/* Validation */

@-webkit-keyframes valid {
    0% {
        background-image: url(../images/layout/icon-valid.png);
    }

    75% {
        background-image: url(../images/layout/icon-valid.png);
    }

    100% {
        background-image: url(../images/layout/blank.png);
    }
}

@-moz-keyframes valid {
    0% {
        background-image: url(../images/layout/icon-valid.png);
    }

    75% {
        background-image: url(../images/layout/icon-valid.png);
    }

    100% {
        background-image: url(../images/layout/blank.png);
    }
}

@keyframes valid {
    0% {
        background-image: url(../images/layout/icon-valid.png);
    }

    75% {
        background-image: url(../images/layout/icon-valid.png);
    }

    100% {
        background-image: url(../images/layout/blank.png);
    }
}

input.valid, select.valid, textarea.valid {
    background-image: url(../images/layout/icon-valid.png);
    background-repeat: no-repeat;
    background-position: 97% center;
    background-size: 11px 11px;
    -webkit-animation: valid 2.5s ease-in-out forwards;
    -moz-animation: valid 2.5s ease-in-out forwards;
    animation: valid 2.5s ease-in-out forwards;
}

input.error, select.error, textarea.error {
    background-image: url(../images/layout/icon-invalid.png);
    background-repeat: no-repeat;
    background-position: 97% center;
    background-size: 11px 11px;
    border-color: #e14305;
}

input.small.valid, select.small.valid, input.small.error, select.small.error {
    background-position: 91% center;
}

label.error, span.error, span.valid, span.success, span.alert, span.notice, span.warning {
    display: block;
    margin-top: .5em;
    width: 100%;
    max-width: 400px;
    text-align: center;
    padding: .75em 1em;
    border-radius: 3px;
    -webkit-border-radius: 3px;
}

label.error, span.error, span.alert {
    color: #e14305;
    border: 1px solid #feddcc;
    background-color: #fee7e0;
}

span.valid, span.success, p.success {
    color: #708e57;
    border: 1px solid #e5efdb;
    background-color: #effbe5;
}

span.warning {
    color: #e14305;
    border: 1px solid #feddcc;
    background-color: #f5f00b;
}

span.success, p.success, span.alert {
    background-image: url(../images/layout/icon-yes.png);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: .6em .7em;
    text-align: left;
    margin-bottom: 1em;
    padding-left: 2.85em;
}

span.alert {
    background-image: url(../images/layout/icon-alert.png);
}

span.message {
    color: #618fa9;
    border: 1px solid #cce0ed;
    background-color: #e2f4ff;
    display: block;
    padding: .7em;
    margin: .5em 0 1.5em;
}

p.tip {
    color: #6f6a53;
    border: 1px solid #e6daa1;
    background-color: #fff4bf;
    padding: .85em .85em;
    margin: 0 0 1.5em;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.05);
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

    p.tip .icon {
        width: 2.2em;
        height: 2.2em;
        fill: #444;
        display: inline-block;
        margin: -.5em -.2em -.2em -.3em;
        vertical-align: top;
    }

.confirm {
    margin-bottom: 2em;
}

    .confirm a.action {
        margin-right: .35em;
        margin-left: .35em;
    }

.summary {
    margin: 0;
    padding: 0;
}

    .summary label, ol.form .summary label {
        vertical-align: top;
        padding-top: 0;
    }

    .summary .list {
        display: inline-block;
        width: 60%;
        vertical-align: top;
    }



/* Page submit buttons (overlay at bottom in mobile view)
-------------------------------------------------------------- */

.page-submit {
    backface-visibility: hidden; /* fix voor mac browsers op fixed elements */
    position: fixed;
    z-index: 40;
    bottom: 0;
    left: 0;
    padding: 0;
    width: 100%;
    min-height: 80px;
    table-layout: fixed;
    display: table;
    text-align: center;
    border-top: 1px solid #cacaca;
    -webkit-box-shadow: 0 -5px 7px rgba(0,0,0,.08);
    box-shadow: 0 -5px 7px rgba(0,0,0,.08);
    background-color: #efefef;
    background-image: -webkit-gradient(linear, top, bottom, from(#ffffff), to(#efefef 40%));
    background-image: -webkit-linear-gradient(top, #ffffff, #efefef 40%);
    background-image: -moz-linear-gradient(top, #ffffff, #efefef 40%);
    background-image: -ms-linear-gradient(top, #ffffff, #efefef 40%);
    background-image: -o-linear-gradient(top, #ffffff, #efefef 40%);
    background-image: linear-gradient(to bottom, #ffffff, #efefef 40%);
}

.has-footer-message .page-submit {
    bottom: 45px;
}

@media screen and (min-width: 720px) {
    .page-submit {
        max-width: 720px;
        left: 50%;
        margin-left: -360px;
        bottom: 30px;
        font-size: 1em;
        -webkit-box-shadow: 0 0 0 transparent;
        box-shadow: 0 0 0 transparent;
    }
}

.page-submit .valign {
    padding: 1rem 0;
}

.page-submit a {
    line-height: 3;
    padding-left: 1em;
    padding-right: 1em;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
}

    .page-submit a.ng-click-active {
        text-decoration: none;
        color: #008ad8;
        background: rgba(0,0,0,.07);
    }

    .page-submit a.action, label.action, span.action {
        min-width: 0;
        padding: 1px 1em;
        line-height: 3;
        margin-left: .3em;
        margin-right: .3em;
        min-width: 75px;
    }

.page-submit .action .icon {
    height: 2.3em;
    width: 2.3em;
    margin-left: -.5em;
    margin-right: .25em;
    margin-top: -.2em;
}

.page-submit h4 {
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: .7rem;
    padding-left: .7rem;
    padding-right: .7rem;
}

    .page-submit h4 strong {
        font-weight: 400;
    }

.page-submit .top-actions {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    float: left;
    width: 100%;
}

    .page-submit .top-actions h4 {
        margin-bottom: 0;
    }

    .page-submit .top-actions label {
        line-height: 2rem;
        margin-left: .3rem;
        margin-right: .3rem;
        margin-top: -.7em;
        font-size: .875rem;
    }

.page-submit .top-actions-half {
    width: 50%;
    float: left;
    vertical-align: top;
    margin-top: -1rem;
    padding-top: .5rem;
    padding-bottom: 1rem;
    padding-left: .7rem;
    padding-right: .7rem;
    margin-bottom: -1rem;
}

    .page-submit .top-actions-half:first-child {
        border-right: 1px solid #ccc;
    }

    .page-submit .top-actions-half:last-child {
        border-left: 1px solid #ccc;
        margin-left: -1px;
    }

    .page-submit .top-actions-half label {
        line-height: 1.5rem;
        margin-top: 0;
    }


/* Buttons
-------------------------------------------------------------- */

a.action, label.action, span.action, a.action.disabled:active, label.action.disabled:active, span.action.disabled:active {
    position: relative;
    display: inline-block;
    color: #545454;
    text-decoration: none;
    text-align: center;
    min-width: 85px;
    border: 1px solid #bcbcbc;
    padding: 1px 1.5em;
    line-height: 3.8;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #e3e3e3;
    background-image: -webkit-gradient(linear, top, bottom, from(#f8f8f8), to(#dadada));
    background-image: -webkit-linear-gradient(top, #f8f8f8, #dadada);
    background-image: -moz-linear-gradient(top, #f8f8f8, #dadada);
    background-image: -ms-linear-gradient(top, #f8f8f8, #dadada);
    background-image: -o-linear-gradient(top, #f8f8f8, #dadada);
    background-image: linear-gradient(to bottom, #f8f8f8, #dadada);
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;
}

.desktop a.action:hover, .desktop label.action:hover, .desktop span.action:hover,
.desktop a.action.disabled:active:hover, .desktop label.action.disabled:active:hover,
.desktop span.action.disabled:active:hover {
    background-color: #dfdfdf;
    background-image: -webkit-gradient(linear, top, bottom, from(#f3f3f3), to(#d2d2d2));
    background-image: -webkit-linear-gradient(top, #f3f3f3, #d2d2d2);
    background-image: -moz-linear-gradient(top, #f3f3f3, #d2d2d2);
    background-image: -ms-linear-gradient(top, #f3f3f3, #d2d2d2);
    background-image: -o-linear-gradient(top, #f3f3f3, #d2d2d2);
    background-image: linear-gradient(to bottom, #f3f3f3, #d2d2d2);
}

a.action.ng-click-active, a.action:active, label.action.ng-click-active,
span.action.ng-click-active, a.action.active, span.action.active {
    background: #d6d6d6;
    filter: none;
    color: #545454;
    top: 1px;
    border-top-color: #bcbcbc;
    text-decoration: none;
    -webkit-box-shadow: inset 0 2px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 2px 2px rgba(0,0,0,.1);
}

a.action:hover, label.action:hover, span.action:hover {
    color: #545454;
}

a.action {
    letter-spacing: -0.31em;
}

    a.action span {
        letter-spacing: normal;
    }

.action .icon, .action .small-img, .action .arrow-img {
    height: 2.7em;
    width: 2.7em;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: -1.2em;
    margin-right: .1em;
    margin-top: -.2em;
    letter-spacing: normal;
    fill: #505050;
}

@-moz-document url-prefix() {
    a.action {
        letter-spacing: normal;
    }

        a.action .icon {
            margin-right: -.2em;
        }
}

a.action .small-img, span.action .small-img {
    height: 2em;
    width: 2em;
    margin-right: .1em;
}

a.action .arrow-img {
    margin-right: -.4em;
    margin-left: .4em;
    height: 1.3em;
    width: 1.3em;
}

a.action .next-arrow, a.action .back-arrow {
    height: 1.4em !important;
    width: 1.4em !important;
    margin-right: -.5em;
    margin-left: .1em;
    margin-top: -.1em;
    line-height: 1em;
    fill: #999;
}

a.action .back-arrow {
    margin-left: -.5em;
    margin-right: .1em;
}

a.action .loader {
    top: .4em;
    margin-right: .5em;
}

a.action .icon.arrow {
    fill: #fff;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.4em;
    margin: -.1em 0 0;
}

a.action.disabled, .action.disabled, .green.disabled, .blue.disabled, .red.disabled {
    opacity: .4;
    cursor: default;
    top: 0;
}

.mute a.action, .mute a.contact {
    opacity: .4;
    color: #222;
}

a.action.actionL {
    padding-top: .4em;
    padding-bottom: .4em;
    line-height: 2em;
    min-width: 100px;
}

a.action.actionXL {
    text-align: left;
    padding-top: .6em;
    padding-bottom: .6em;
    line-height: 1.6em;
    min-width: 280px;
    width: auto;
    margin-bottom: 1em;
}

@media screen and (max-width: 360px) {
    a.action.actionXL {
        min-width: 100%; /* 14 / 16 */
    }
}

a.action.actionXL .icon {
    vertical-align: top;
    margin-top: -.5em;
}

a.action.actionXL .lbl {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
}

    a.action.actionXL .lbl em {
        font-style: normal;
        display: block;
        margin: 0;
        padding: 0;
        font-size: 0.875em;
        color: #888;
    }

a.action.actionS {
    font-size: .875em;
}

a.action.actionXS {
    font-size: .875em;
    min-width: 60px;
    line-height: 2.2;
}

@media screen and (max-width: 480px) {
    a.action.actionMob {
        min-width: 100%; /* 14 / 16 */
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}


/* Red buttons */

a.action.red,
a.action.red.disabled.ng-click-active, a.action.red.disabled:active,
span.action.red,
span.action.red.disabled, span.action.red.disabled.ng-click-active, span.action.red.disabled:active, a.action.ng-click-active span.red.disabled {
    border: 0 none transparent;
    color: #fff;
    background-color: #f9440c;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
    background-image: -webkit-gradient(linear, top, bottom, from(#f9440c), to(#e14305));
    background-image: -webkit-linear-gradient(top, #f9440c, #e14305);
    background-image: -moz-linear-gradient(top, #f9440c, #e14305);
    background-image: -ms-linear-gradient(top, #f9440c, #e14305);
    background-image: -o-linear-gradient(top, #f9440c, #e14305);
    background-image: linear-gradient(to bottom, #f9440c, #e14305);
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;
}

    a.action.red:hover,
    a.action.red.disabled.ng-click-active:hover, a.action.red.disabled:active:hover,
    span.action.red:hover,
    span.action.red.disabled:hover, span.action.red.disabled.ng-click-active:hover, span.action.red.disabled:active:hover, a.action.ng-click-active span.red.disabled:hover {
        background-color: #e9340c;
        background-image: -webkit-gradient(linear, top, bottom, from(#e9340c), to(#d13305));
        background-image: -webkit-linear-gradient(top, #e9340c, #d13305);
        background-image: -moz-linear-gradient(top, #e9340c, #d13305);
        background-image: -ms-linear-gradient(top, #e9340c, #d13305);
        background-image: -o-linear-gradient(top, #e9340c, #d13305);
        background-image: linear-gradient(to bottom, #e9340c, #d13305);
    }

    a.action.red.ng-click-active, a.action.red:active, a.action.red.active, a.action.ng-click-active span.red {
        background: #ce2c00;
        filter: none;
        color: #fff;
        text-decoration: none;
        -webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
        box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
    }

    a.action.red:hover, label.action.red:hover, span.action.red:hover {
        color: #fff;
    }


/* Orange buttons */

a.action.orange,
a.action.orange.disabled.ng-click-active, a.action.orange.disabled:active,
span.action.orange,
span.action.orange.disabled, span.action.orange.disabled.ng-click-active, span.action.orange.disabled:active, a.action.ng-click-active span.orange.disabled {
    border: 0 none transparent;
    color: #fff;
    background-color: #f38900;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
    background-image: -webkit-gradient(linear, top, bottom, from(#f38900), to(#d77900));
    background-image: -webkit-linear-gradient(top, #f38900, #d77900);
    background-image: -moz-linear-gradient(top, #f38900, #d77900);
    background-image: -ms-linear-gradient(top, #f38900, #d77900);
    background-image: -o-linear-gradient(top, #f38900, #d77900);
    background-image: linear-gradient(to bottom, #f38900, #d77900);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

    a.action.orange:hover,
    a.action.orange.disabled.ng-click-active:hover,
    span.action.orange:hover,
    span.action.orange.disabled:hover, span.action.orange.disabled.ng-click-active:hover, a.action.ng-click-active span.orange.disabled:hover {
        background-color: #e37900;
        background-image: -webkit-gradient(linear, top, bottom, from(#e37900), to(#c76900)); /*#f38900, #d77900*/
        background-image: -webkit-linear-gradient(top, #e37900, #c76900);
        background-image: -moz-linear-gradient(top, #e37900, #c76900);
        background-image: -ms-linear-gradient(top, #e37900, #c76900);
        background-image: -o-linear-gradient(top, #e37900, #c76900);
        background-image: linear-gradient(to bottom, #e37900, #c76900);
        -webkit-transition: all .3s ease-in;
        transition: all .3s ease-in;
    }

    a.action.orange.ng-click-active, a.action.orange:active, a.action.orange.active, a.action.ng-click-active span.orange {
        background: #d26800;
        filter: none;
        color: #fff;
        text-decoration: none;
        -webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
        box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
    }

    a.action.orange:hover, label.action.orange:hover, span.action.orange:hover {
        color: #fff;
    }


/* Green buttons */

a.action.green,
a.action.green.disabled.ng-click-active, a.action.green.disabled:active,
span.action.green,
span.action.green.disabled, span.action.green.disabled.ng-click-active, span.action.green.disabled:active, a.action.ng-click-active span.green.disabled {
    border: 0 none transparent;
    color: #fff;
    background-color: #48b500;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
    background-image: -webkit-gradient(linear, top, bottom, from(#48b500), to(#43a700));
    background-image: -webkit-linear-gradient(top, #48b500, #43a700);
    background-image: -moz-linear-gradient(top, #48b500, #43a700);
    background-image: -ms-linear-gradient(top, #48b500, #43a700);
    background-image: -o-linear-gradient(top, #48b500, #43a700);
    background-image: linear-gradient(to bottom, #48b500, #43a700);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

    a.action.green:hover,
    a.action.green.disabled.ng-click-active:hover,
    span.action.green:hover,
    span.action.green.disabled:hover, span.action.green.disabled.ng-click-active:hover, a.action.ng-click-active span.green.disabled:hover {
        background-color: #38a540;
        background-image: -webkit-gradient(linear, top, bottom, from(#38a500), to(#339700));
        background-image: -webkit-linear-gradient(top, #38a510, #339700); /*#48b500, #43a700*/
        background-image: -moz-linear-gradient(top, #38a500, #339700);
        background-image: -ms-linear-gradient(top, #38a500, #339700);
        background-image: -o-linear-gradient(top, #38a500, #339700);
        background-image: linear-gradient(to bottom, #38a500, #339700);
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
    }

    a.action.green.ng-click-active, a.action.green:active, a.action.green.active, a.action.ng-click-active span.green {
        background: #3b9400;
        filter: none;
        color: #fff;
        text-decoration: none;
        -webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
        box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
    }

    a.action.green:hover, label.action.green:hover, span.action.green:hover {
        color: #fff;
    }


/* Blue buttons */

a.action.blue,
a.action.blue.disabled.ng-click-active, a.action.blue.disabled:active,
span.action.blue,
span.action.blue.disabled, span.action.blue.disabled.ng-click-active, span.action.blue.disabled:active, a.action.ng-click-active span.blue.disabled {
    border: 0 none transparent;
    color: #fff;
    font-weight: 700;
    background-color: #00a3ff;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
    box-shadow: 0 2px 3px rgba(0, 0, 0, .15);
    background-image: -webkit-gradient(linear, top, bottom, from(#00a3ff), to(#0094e7));
    background-image: -webkit-linear-gradient(top, #00a3ff, #0094e7);
    background-image: -moz-linear-gradient(top, #00a3ff, #0094e7);
    background-image: -ms-linear-gradient(top, #00a3ff, #0094e7);
    background-image: -o-linear-gradient(top, #00a3ff, #0094e7);
    background-image: linear-gradient(to bottom, #00a3ff, #0094e7);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

    a.action.blue:hover,
    a.action.blue.disabled.ng-click-active:hover,
    span.action.blue:hover,
    span.action.blue.disabled:hover, span.action.blue.disabled.ng-click-active:hover, a.action.ng-click-active span.blue.disabled:hover {
        background-color: #0093ef;
        background-image: -webkit-gradient(linear, top, bottom, from(#0093ef), to(#1084d7)); /*#00a3ff,#0094e7*/
        background-image: -webkit-linear-gradient(top, #0093ef, #1084d7);
        background-image: -moz-linear-gradient(top, #0093ef, #1084d7);
        background-image: -ms-linear-gradient(top, #0093ef, #1084d7);
        background-image: -o-linear-gradient(top, #0093ef, #1084d7);
        background-image: linear-gradient(to bottom, #0093ef, #1084d7);
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
    }

    a.action.blue.ng-click-active, a.action.blue:active, a.action.blue.active, a.action.ng-click-active span.action.blue {
        background: #0083cd;
        filter: none;
        color: #fff;
        text-decoration: none;
        -webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
        box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
    }

    a.action.blue:hover, label.action.blue:hover, span.action.blue:hover {
        color: #fff;
    }


/* Special buttons */

a.mail-btn {
    padding-top: .25em;
    padding-bottom: .25em;
    display: block;
    width: auto;
    text-decoration: none;
}

    a.mail-btn .loader {
        margin-right: .2em;
        margin-left: .2em;
        vertical-align: middle;
    }

.process-btn .loader {
    display: none;
}

.process-btn.busy .loader {
    display: inline-block;
}

.process-btn.busy .icon {
    display: none;
}


/* Group of action buttons */

ul.btns {
    margin: 0 0 2em;
    list-style: none;
    padding: 0;
    letter-spacing: -.31em;
}

    ul.btns li {
        padding: 0;
        margin: 0;
        display: inline-block;
        letter-spacing: normal;
    }

        ul.btns li a.action {
            margin: 0 -1px 0 0;
            -webkit-border-radius: 0;
            border-radius: 0;
        }

        ul.btns li:first-child a.action {
            -webkit-border-top-left-radius: 5px;
            border-top-left-radius: 5px;
            -webkit-border-bottom-left-radius: 5px;
            border-bottom-left-radius: 5px;
        }

        ul.btns li:last-child a.action {
            margin-right: 0;
            -webkit-border-top-right-radius: 5px;
            border-top-right-radius: 5px;
            -webkit-border-bottom-right-radius: 5px;
            border-bottom-right-radius: 5px;
        }

p.btns {
    margin-bottom: 2em;
}

    p.btns a.action {
        margin: .5em .75em .5em 0;
        line-height: 3.2;
    }

        p.btns a.action:last-child {
            margin-right: 0;
        }


/* top-save is used in page headers */

span.action.top-save {
    display: inline-block;
    line-height: 34px;
    padding: 0 .5em;
    text-align: center;
    margin-top: .55em;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    min-width: 64px;
}

    span.action.top-save .lbl {
        display: block;
        position: relative;
        z-index: 1;
        font-size: .9375em; /* 15 / 16 */
        font-weight: bold;
    }

    span.action.top-save .loader {
        position: relative;
        top: .45em;
    }


/* Checkbox */

.checkbox-ui {
    position: relative;
}

    .checkbox-ui label, ol.form li .checkbox-ui label {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 0 0 2em;
        display: block;
        cursor: pointer;
        position: relative;
    }

    .checkbox-ui input {
        position: absolute;
        z-index: 2;
        top: 1px;
        left: 1px;
        margin: 0;
        padding: 0;
        width: 18px;
        height: 18px;
        letter-spacing: normal;
        opacity: 0;
        cursor: pointer;
    }

    .checkbox-ui .input {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        display: inline-block;
        background-color: #fafafa;
        border: 1px solid #bbb;
        vertical-align: top;
        margin-right: .4em;
        text-align: center;
        letter-spacing: -31em;
        cursor: pointer;
    }

        .checkbox-ui .input .icon {
            display: none;
            width: 18px;
            height: 18px;
            line-height: 18px;
            vertical-align: top;
            fill: #333;
            padding: 0;
            margin: 0;
        }

    .checkbox-ui input:checked + label .input, .checkbox-ui input:checked + .input {
        background-color: #caecff;
        border-color: #b8d3e2;
    }

        .checkbox-ui input:checked + label .input .icon, .checkbox-ui input:checked + .input .icon {
            display: inline-block;
        }


/* Radio buttons switch */

ul.radioswitch {
    margin: 0;
    padding: 0;
    text-align: left;
    list-style: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    overflow: hidden;
}

    ul.radioswitch li {
        margin: 0;
        padding: 0;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

        ul.radioswitch li:last-child {
            margin-bottom: 0;
        }

    ul.radioswitch label.btn, ol.form ul.radioswitch label.btn {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 1.3em 1em 1.3em 40px;
        display: block;
        cursor: pointer;
        font-size: 1em;
        color: #444;
        border-bottom: 1px solid #d2d2d2;
        background-color: #f6f6f6;
        background-image: -webkit-gradient(linear, top, bottom, from(#fcfcfc), to(#f6f6f6));
        background-image: -webkit-linear-gradient(top, #fcfcfc, #f6f6f6);
        background-image: -moz-linear-gradient(top, #fcfcfc, #f6f6f6);
        background-image: -ms-linear-gradient(top, #fcfcfc, #f6f6f6);
        background-image: -o-linear-gradient(top, #fcfcfc, #f6f6f6);
        background-image: linear-gradient(to bottom, #fcfcfc, #f6f6f6);
    }

    ul.radioswitch li:last-child label.btn, ol.form ul.radioswitch li:last-child label.btn {
        border-bottom: 0;
    }
    /*
ul.radioswitch li:first-child label.btn {
    -webkit-border-top-left-radius:5px;
    border-top-left-radius:5px;
    -webkit-border-top-right-radius:5px;
    border-top-right-radius:5px;
}
ul.radioswitch li:last-child label.btn {
    -webkit-border-bottom-left-radius:5px;
    border-bottom-left-radius:5px;
    -webkit-border-bottom-right-radius:5px;
    border-bottom-right-radius:5px;
}
*/
    ul.radioswitch label.btn:active, ol.form ul.radioswitch label.btn:active {
        background: #e2e2e2;
        border-color: #c8c8c8;
        -webkit-box-shadow: inset 0 2px 2px rgba(0,0,0,.1);
        box-shadow: inset 0 2px 2px rgba(0,0,0,.1);
    }

    ul.radioswitch input.radio {
        margin: 0;
        padding: 0;
        opacity: 0;
        width: 20px;
        height: 20px;
        top: 0;
        left: 0;
        position: absolute;
        z-index: 2;
        letter-spacing: normal;
    }

.radioswitch .input {
    display: inline-block;
    position: absolute;
    top: 1.5em;
    left: .8em;
    padding: 4px 0 0 4px;
    width: 18px;
    height: 18px;
    letter-spacing: normal;
    border: 1px solid #c3c3c3;
    background-color: #eee;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.25);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.25);
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

    .radioswitch .input .dot {
        height: 8px;
        width: 8px;
        display: none;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background-color: #00a3ff;
    }

.radioswitch input.radio:checked + label.btn {
    background: #d2edfc;
    border-color: #bad4e3;
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,.1);
    box-shadow: 0 2px 3px rgba(0,0,0,.1);
}

    .radioswitch input.radio:checked + label.btn .input {
        background-color: #caecff;
        border-color: #a6c2d2;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
    }

        .radioswitch input.radio:checked + label.btn .input .dot {
            display: block;
        }

.radioswitch label.sub {
    color: #737373;
    font-size: .9375em;
    display: block;
}

.radioswitch .price {
    font-size: 1.2307em;
}

ul.radioswitch.inlineswitch {
    display: inline-block;
}

    ul.radioswitch.inlineswitch li {
        /*display:inline-block;*/
        float: left;
        width: auto;
        vertical-align: top;
    }

        ul.radioswitch.inlineswitch li label.btn {
            /*-webkit-border-radius:5px;
    border-radius:5px;*/
            min-width: 80px;
            border-bottom: 0;
            border-left: 1px solid #d2d2d2;
        }

        ul.radioswitch.inlineswitch li:first-child label.btn {
            border-left: 0;
        }

/*
ul.radioswitch.inlineswitch li:first-child label.btn {
    -webkit-border-bottom-right-radius:0;
    border-bottom-right-radius:0;
    -webkit-border-top-right-radius:0;
    border-top-right-radius:0;
}
ul.radioswitch.inlineswitch li:last-child label.btn {
    -webkit-border-bottom-left-radius:0;
    border-bottom-left-radius:0;
    -webkit-border-top-left-radius:0;
    border-top-left-radius:0;
}*/

ul.radioswitch.productswitch .icon {
    height: 3em;
    width: 3em;
    margin: -.7em -.3em -.3em -.5em;
    display: inline-block;
    fill: #505050;
    vertical-align: middle;
}

ul.radioswitch.productswitch .lbl {
    display: inline-block;
    vertical-align: top;
}

ul.radioswitch.productswitch em {
    display: block;
    color: #999;
    font-size: .925em;
    font-style: normal;
}

ul.radioswitch.error {
    border-color: #e14305;
}

/* Icon buttons switch */

ul.iconswitch {
    margin: .5em 0 1.5em;
    padding: 0;
    list-style: none;
    letter-spacing: -.31em;
}

    ul.iconswitch li {
        display: inline-block;
        margin: 0 -1px 0 0;
    }

    ul.iconswitch a.action {
        text-decoration: none;
        display: block;
        padding: .6em .9em .6em .9em;
        min-width: 0;
        line-height: 2.4em;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

    ul.iconswitch li:first-child a.action {
        -webkit-border-radius: 5px 0 0 5px;
        -moz-border-radius: 5px 0 0 5px;
        border-radius: 5px 0 0 5px;
    }

    ul.iconswitch li:last-child a.action {
        -webkit-border-radius: 0 5px 5px 0;
        -moz-border-radius: 0 5px 5px 0;
        border-radius: 0 5px 5px 0;
    }

    ul.iconswitch li:only-child a.action {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

    ul.iconswitch li.active a.action, ul.iconswitch li a.action.ng-click-active {
        background: #d6d6d6;
        border-color: #bcbcbc;
        text-decoration: none;
        -webkit-box-shadow: inset 0 2px 2px rgba(0,0,0,.1);
        box-shadow: inset 0 2px 2px rgba(0,0,0,.1);
    }

    ul.iconswitch .icon {
        height: 2.4em;
        width: 2.4em;
        display: inline-block;
        margin-left: -.6em;
        letter-spacing: normal;
        fill: #444;
        vertical-align: middle;
    }

    ul.iconswitch .lbl {
        letter-spacing: normal;
        vertical-align: middle;
    }

@-moz-document url-prefix() {
    ul.iconswitch a {
        letter-spacing: normal;
    }

    ul.iconswitch .icon {
        margin-right: -.3em;
    }
}


/* Read more links */

.read-more, a.read-more {
    display: inline-block;
    padding: .5em 0;
    margin-top: -.25em;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    text-decoration: none;
}

    .read-more.active, .read-more.active:hover, .read-more.ng-click-active {
        text-decoration: none;
        color: #008ad8;
        background: rgba(0,0,0,.07);
        -webkit-box-shadow: 0 0 0 6px rgba(0,0,0,.07);
        box-shadow: 0 0 0 6px rgba(0,0,0,.07);
    }

label .read-more {
    margin-top: -.5em;
    margin-bottom: -.5em;
}

.more-info {
    display: none;
    margin-bottom: 2em;
}

.tooltip {
    margin: 0 0 2em;
    /*height:0;
	overflow: hidden;*/
    letter-spacing: normal;
}

    .tooltip p {
        margin-bottom: 0;
        letter-spacing: normal;
    }

    .tooltip ul, .tooltip ol, .tooltip li {
        letter-spacing: normal !important;
        margin-top: .25em !important;
        margin-bottom: 0 !important;
    }

    .tooltip ul {
        margin-bottom: 1.5em !important;
    }

label.more {
    cursor: help;
}

    label.more img.icon {
        max-width: 16px;
        vertical-align: middle;
        margin: 0 .4em;
    }

.mini-tooltip, p.mini-toolip {
    padding: .85em 1em;
    margin: -.5em 0 1.5em;
    position: relative;
    background-color: #555;
    color: #fff;
    max-width: 30em;
    display: inline-block;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

    .mini-tooltip .arrow-tl {
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #555;
        /*z-index:2;*/
        position: absolute;
        top: -10px;
        left: 1.25em;
    }



/* Icon buttons: radio like buttons with big icons
-------------------------------------------------------------- */

ul.icon-btns {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    letter-spacing: -0.31em;
}

    ul.icon-btns li {
        letter-spacing: normal;
        margin: 0 -1px 1em 0;
        padding: 0;
        display: inline-block;
        vertical-align: top;
    }

        ul.icon-btns li:last-child {
            margin-right: 0;
        }

        ul.icon-btns li:hover {
            z-index: 2;
        }

    ul.icon-btns a.action {
        display: block;
        padding: .2em .5em 1em;
        line-height: 1;
        min-width: 110px;
        -webkit-border-radius: 0;
        border-radius: 0;
        background: #fff;
        filter: none;
        border-color: #ccc;
        color: #737373;
        -webkit-box-shadow: 0 0 0 transparent;
        box-shadow: 0 0 0 transparent;
    }

        ul.icon-btns a.action.ng-click-active, ul.icon-btns a.action:active {
            z-index: 1;
            background: #e0e0e0;
            filter: none;
            border-color: #c3c3c3;
            -webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.07);
            box-shadow: inset 0 2px 3px rgba(0,0,0,.07);
        }

            ul.icon-btns a.action.ng-click-active .icon {
                top: 1px;
            }

        ul.icon-btns a.action .icon {
            text-align: center;
            width: 3.75em;
            height: 3.75em;
            margin: 0;
            position: relative;
            display: inline-block;
            fill: #505050;
            font-size: 1em;
        }

        ul.icon-btns a.action .lbl {
            display: block;
        }


/* Check buttons: Button with big icons and checkboxes based on icon-btns
-------------------------------------------------------------- */

ul.check-btns li {
    padding: 0 .8em .8em 0;
    margin: 0;
    width: 50%;
    max-width: 220px;
}

@media screen and (max-width: 360px) {
    ul.check-btns li:nth-child(even) {
        margin-right: 0;
    }
}

ul.check-btns a.action .icon {
    text-align: center;
    width: 6.25em;
    height: 6.25em;
    display: block;
    margin: 0 auto 0;
}

ul.check-btns a.action {
    min-width: 100% !important;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
}

ul.check-btns .checkbox {
    width: 18px;
    height: 18px;
    display: inline-block !important;
    background-color: #fafafa;
    border: 1px solid #bbb;
    vertical-align: top;
    margin-top: -.25em;
    margin-right: .5em;
    text-align: left;
    letter-spacing: -31em;
}

ul.check-btns .lbl {
    max-width: 75%;
    display: inline-block !important;
    text-align: left;
}

ul.check-btns a.action .checkbox .icon {
    display: none !important;
    width: 16px;
    height: 16px;
    line-height: 16px;
    vertical-align: top;
    fill: #333;
    padding: 0;
    margin: 0;
}

ul.check-btns li a.action.active {
    background: #d2edfc;
    border-color: #bad4e3;
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,.1);
    box-shadow: 0 2px 3px rgba(0,0,0,.1);
}

ul.check-btns a.action.active .checkbox .icon {
    display: inline-block !important;
}

ul.icon-check-btns li {
    width: auto;
    min-width: 120px;
}

ul.icon-check-btns label {
    padding-top: 0;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

ul.icon-check-btns a.action .icon {
    width: 4em;
    height: 4em;
}

/* View insurance
-------------------------------------------------------------- */

.card {
    letter-spacing: -.31em;
    border: 1px solid #ccc;
    padding: 1.25em .7em 1.5em;
    margin: -2em -.7em 1.75em;
}

    .card .cardimg {
        width: 35%;
        max-width: 185px;
        min-width: 145px;
        padding: 0 1em 0 0;
        display: inline-block;
        vertical-align: middle;
        letter-spacing: normal;
    }

    .card a.add-picture {
        vertical-align: middle;
        letter-spacing: normal;
    }

a.add-picture {
    max-width: 100px;
    padding: 0 .5em;
    margin: 0 1em 0 0;
    display: inline-block;
    background-color: #f2f2f2;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

    a.add-picture:active {
        background-color: #eaeaea;
        border-color: #ddd;
    }

.card ul.info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
}

    .card ul.info h4 {
        font-weight: bold;
        font-size: 1.1428571428em; /* 16 / 14 */
        margin-bottom: .2em;
    }

.card li.title {
    margin: 1em 0 0;
}

ol.specs {
    list-style: none;
    margin: 0 0 1em;
    padding: 0;
    line-height: 1.3;
}

    ol.specs li {
        padding: 0;
        margin: 0 0 .5rem;
        letter-spacing: -.31em;
    }

    ol.specs h4 {
        font-weight: bold;
        font-size: 1.1428571428em; /* 16 / 14 */
        margin-bottom: 1.1em;
        letter-spacing: normal;
    }

    ol.specs label {
        width: 45%;
        display: inline-block;
        vertical-align: top;
        border-bottom: 1px dotted #ccc;
        position: relative;
        top: -5px;
    }

        ol.specs label .lbl {
            background-color: #efefef;
            padding-right: 3px;
            position: relative;
            top: 5px;
            display: inline-block;
        }
        
        .zorg .sub-item {
            padding-left:20px;
            padding-top:20px;
        }
        .zorg ol.specs li label .lbl {
            padding-top:0 !important;
            padding-bottom:0 !important;
            width:auto !important;
            max-width:72% !important;
        }

    ol.specs span {
        letter-spacing: normal;
    }

    ol.specs .val {
        display: inline-block;
        vertical-align: top;
        letter-spacing: normal;
        width: 55%;
        padding-left: 4px;
        background-color: #efefef;
    }

    ol.specs strong, ol.specs em, ol.specs span, ol.specs label, ol.specs p {
        letter-spacing: normal;
    }

    ol.specs .coverage-list span {
        display: block;
        margin: 0 0 .6em;
    }

        ol.specs .coverage-list span:last-child {
            margin-bottom: 0;
        }

    ol.specs em {
        display: block;
        margin: .5em 0;
    }

    ol.specs li.msg {
        letter-spacing: normal;
        border: 1px solid #ddd;
        padding: .6em .75em;
        margin-bottom: 1.5em;
    }

        ol.specs li.msg.suspended {
            color: #e14305;
            border: 1px solid #feddcc;
            background-color: #fee7e0;
        }

        ol.specs li.msg.future {
            color: #368bbb;
            border-color: #cedce5;
            background-color: #f3fbff;
        }


/* Receipts
-------------------------------------------------------------- */

.price {
    font-size: 1.125em;
}

    .price em {
        font-size: .75em;
        font-style: normal;
        position: relative;
        top: -.2em;
        display: inline !important;
    }

    .price.pricetag {
        line-height: 24px;
        font-size: 1.125em;
        font-weight: 700;
        color: #444;
    }

    .price.strike {
        opacity: .6;
        position: relative;
        font-size: .875em;
        margin-right: .4rem;
        display: inline-block;
    }

        .price.strike:after {
            border-bottom: 1px solid #333;
            content: '';
            width: 100%;
            height: 1px;
            line-height: 1px;
            position: absolute;
            left: 0;
            top: 46%;
            display: block;
        }


ol.specs.receipt {
    width: 100%;
    padding-right: .6rem;
}

    ol.specs.receipt.has-savings {
        margin-top: .5em;
        padding-left: 3.8rem;
    }

    ol.specs.receipt.has-arrows {
        padding-right: 1.9em;
    }

    ol.specs.receipt li {
        position: relative;
        background: transparent url(../images/layout/dotted-line.png) repeat-x left 1em;
    }

ol.specs.big-receipt li {
    background: transparent url(../images/layout/dotted-line.png) repeat-x left 1.4em;
}

ol.specs.receipt label {
    width: 100%;
    letter-spacing: normal;
    max-width: 100%;
    margin-right: -.31em;
    color: #737373;
}

ol.specs.receipt .lbl {
    background-color: #efefef;
    line-height: 1.3;
    padding: 0 3px 0 0;
    display: inline-block;
    vertical-align: top;
}

ol.specs.big-receipt .lbl {
    padding-top: .4em;
    padding-bottom: .4em;
}

ol.specs.receipt .lbl a {
    text-decoration: none;
    padding: 0;
    display: block;
    width: 100%;
}

ol.specs.receipt .icon {
    width: 2.7em;
    height: 2.7em;
    display: inline-block;
    margin: -.3em -.31em 0 -.4em;
    padding-right: .4em;
    vertical-align: top;
    background-color: #efefef;
    box-sizing: content-box;
}

ol.specs.receipt .val {
    display: inline-block;
    width: auto;
    text-align: right;
    letter-spacing: normal;
    background-color: #efefef;
    position: absolute;
    right: 0px;
    top: 0;
}

ol.specs.big-receipt .val {
    top: .3em;
}

ol.specs.receipt .price {
    font-size: 1em;
}

ol.specs.receipt li.mute, ol.specs.receipt li.mute .price em {
    color: #bbb;
}

ol.specs.receipt li.bottomline {
    border-top: 1px solid #bbb;
    padding-top: .6em;
    margin-top: .6em;
    background-position: left 1.6em;
    font-weight: 700;
}

ol.specs.big-receipt li.bottomline {
    padding-top: 1em;
    margin-top: 1em;
    background-position: left 2.4em;
}

ol.specs.receipt li.bottomline .val {
    top: .5em;
}

ol.specs.big-receipt li.bottomline .val {
    top: 1.3em;
}


/* Savings-o-meter
-------------------------------------------------------------- */

.savings {
    display: inline-block;
    width: 100%;
    max-width: 160px;
    height: 1.8rem;
    line-height: 1.8rem;
    margin: 0;
    background-color: #ddd;
    border: 1px solid #c3c3c3;
    vertical-align: top;
    position: relative;
    font-size: .8125rem;
}

    .savings .bar {
        background-color: #45ba06;
        -webkit-box-shadow: 0 0 0 1px #45ba06;
        box-shadow: 0 0 0 1px #45ba06;
        display: inline-block;
        overflow: hidden;
        width: 0;
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        -webkit-transition: width 400ms ease-in-out;
        transition: width 400ms ease-in-out;
    }

        .savings .bar.no-anim {
            -webkit-transition: none;
            transition: none;
        }

    .savings .lbl {
        color: #fff;
        padding-right: .5em;
        text-align: right;
        display: block;
    }

    .savings .step {
        color: #a3a3a3;
        width: 20%;
        border-left: 1px solid #c3c3c3;
        text-align: center;
        height: 100%;
        float: left;
        position: relative;
    }

        .savings .step:first-child {
            border-left: 0 transparent;
        }

/* Footer navigation on some pages
-------------------------------------------------------------- */

.has-extra-btns .content {
    padding-top: 6em;
}

ul.extra-btns {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    max-width: 720px;
    height: 50px;
    z-index: 199;
    letter-spacing: -.31em;
    background-color: #efefef;
}

    ul.extra-btns li {
        display: inline-block;
        margin: 0;
        padding: 0;
        width: 100%; /* Aanpassen afhankelijk van aantal items in footer nav */
        letter-spacing: normal;
    }

    ul.extra-btns.two li {
        width: 50%;
    }

    ul.extra-btns.three li {
        width: 33.33334%;
    }

    ul.extra-btns li a.action {
        -webkit-border-radius: 0;
        border-radius: 0;
        position: relative;
        display: inline-block;
        text-align: center;
        border: 1px solid #bcbcbc;
        padding: 1px 1.5em;
        line-height: 50px;
        width: 100%;
    }


/* New insurance - nieuwe polis
-------------------------------------------------------------- */

.total {
    color: #444;
    background-color: #ddd;
    border-bottom: 1px solid #bdbdbd;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    margin: 0;
    text-align: center;
}

@media screen and (min-width: 720px) {
    .total {
        margin-top: 80px;
        padding-left: 1.25em;
        padding-right: .7em;
    }
}

.total .total-half {
    width: 50%;
    float: left;
    vertical-align: top;
    padding-top: .5rem;
    padding-bottom: .7rem;
    padding-left: .7rem;
    padding-right: .7rem;
}

    .total .total-half:first-child {
        border-right: 1px solid #bdbdbd;
    }

    .total .total-half:last-child {
        border-left: 1px solid #bdbdbd;
        margin-left: -1px;
    }

.total label {
    line-height: 1.5rem;
    font-size: .875rem;
}

.total .savings {
    height: 1.5rem;
    line-height: 1.5rem;
}

.total-full {
    text-align: left;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}

@media screen and (max-width: 720px) {
    .total {
        padding-left: .7em;
        padding-right: .7em;
    }
}


.content.has-total {
    padding-top: 6.5em;
}

@media screen and (min-width: 720px) {
    .content.has-total {
        padding-top: 12em;
    }
}

ul.checklist {
    margin: 0 0 2em;
    padding: 0;
    list-style: none;
}

    ul.checklist li {
        position: relative;
        padding-left: 2.2em;
        margin-bottom: 1.1em;
    }

    ul.checklist .icon {
        width: 2.4em;
        height: 2.4em;
        margin: 0;
        position: absolute;
        left: -.4em;
        top: 0;
        margin-top: -.4em;
        display: inline-block;
    }


/* Schade melden
-------------------------------------------------------------- */
.next {
    border-top: 1px dotted #ccc;
    margin-top: 2em;
    padding: 2em 0 0;
    width: 100%;
}

    .next.noborder {
        border-top: 0;
        padding-top: 0;
    }

ol.form li.next {
    border-top: 0;
    padding-top: .75em;
    margin-top: 0;
    padding-bottom: 0;
}


/* Add photos
-------------------------------------------------------------- */

ol.photos {
    list-style: none;
    margin: 0;
    letter-spacing: -.31em;
    padding: 1em 0 0 0;
}

    ol.photos li {
        letter-spacing: normal;
        display: inline-block;
        max-width: 180px;
        min-width: 135px;
        height: 110px;
        padding-right: 1.4em;
        margin-bottom: 1.25em;
        width: 33%;
        text-align: left;
        position: relative;
    }

    ol.photos .photo {
        background-color: #fff;
        display: block;
        overflow: hidden;
        width: 100%;
        height: 100%;
        border: 1px solid #f2f2f2;
        -webkit-box-shadow: 0 2px 3px rgba(0,0,0,.2);
        box-shadow: 0 2px 3px rgba(0,0,0,.2);
    }

        ol.photos .photo:active, ol.photos .photo.ng-click-active {
            opacity: .6;
        }

        ol.photos .photo span {
            position: relative;
            display: block;
            width: 150%;
            height: 150%;
            top: -20%;
            left: -20%;
        }

        ol.photos .photo img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            min-width: 50%;
            min-height: 50%;
        }

    ol.photos a.remove-btn {
        position: absolute;
        top: -18px;
        right: 0;
        display: block;
        width: 40px;
        height: 40px;
    }

        ol.photos a.remove-btn .icon {
            fill: #333;
        }

        ol.photos a.remove-btn:active, ol.photos a.remove-btn.ng-click-active {
            top: -17px;
        }

            ol.photos a.remove-btn:active .icon, ol.photos a.remove-btn.ng-click-active .icon {
                fill: #e14305;
            }

        ol.photos a.remove-btn .icon .rect {
            fill: #fff;
            opacity: 1;
        }


    /* Thumbnail enter and leave */

    ol.photos li.ng-enter {
        -webkit-animation: add .3s ease-out;
        animation: add .3s ease-out;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

@keyframes add {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }

    90% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes add {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1);
    }

    90% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

ol.photos li.ng-leave {
    -webkit-animation: remove .3s ease-in;
    animation: remove .3s ease-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@keyframes remove {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    10% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(0.1);
    }
}

@-webkit-keyframes remove {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
    }

    10% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1);
    }
}


/* List of schadeherstellers and their location
-------------------------------------------------------------- */

ol.companies {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ol.companies li {
        border-radius: 5px;
        background-color: #fff;
        border: 1px solid #ccc;
        margin: 0 0 1em;
        padding: 1em .7em;
        position: relative;
    }

    ol.companies h4 {
        margin: 0 0 .5em;
        color: #333;
    }

    ol.companies .small {
        font-size: .875em;
    }

        ol.companies .small strong {
            font-weight: 400;
            color: #333;
        }

    ol.companies a.read-more {
        margin-top: .4em;
    }

    ol.companies img.logo {
        position: absolute;
        top: .5em;
        right: .5em;
        max-width: 48px;
    }

/* schadeformulier image */
img.saf {
    max-width: 180px;
}


/* Summary (bijvoorbeeld bij inzien van een schade)
-------------------------------------------------------------- */

.summary-block {
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 0 0 2em;
}

.summary-padding {
    padding-top: 1em;
    padding-left: .7em;
    padding-right: .7em;
}

.summary-block ul {
    padding-bottom: 1em;
    margin-bottom: 0;
}

.summary-block p {
    margin-bottom: 0;
    padding-bottom: 1em;
}

    .summary-block p.desc {
        margin-top: -.5em;
        position: relative;
    }

    .summary-block p.shorten {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-bottom: 0;
    }

.summary-block strong {
    font-weight: 400;
    color: #333;
}

.summary-block .link {
    color: #00a3ff;
    display: block;
    padding: 0 0 1em;
    position: relative;
}

.summary-item {
    border-top: 1px solid #ccc;
}

    .summary-item:first-child {
        border-top: 0;
    }

.summary-block ul.specs {
    list-style: none;
    margin: 0 0 1em;
    padding: 0;
    line-height: 1.3;
}

    .summary-block ul.specs li {
        padding: 0;
        margin: 0 0 .75em;
        letter-spacing: -.31em;
    }

    .summary-block ul.specs label {
        width: 40%;
        display: inline-block;
        vertical-align: top;
        letter-spacing: normal;
        color: #333;
    }

    .summary-block ul.specs .val {
        display: inline-block;
        vertical-align: top;
        letter-spacing: normal;
        width: 60%;
    }

    .summary-block ul.specs span, .summary-block ul.specs strong {
        letter-spacing: normal;
    }

.summary-block a.more-btn, .summary-block .more-btn {
    display: block;
    position: relative;
    width: 100%;
    padding: 0 .3em 0 .7em;
    color: #737373;
    text-decoration: none;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

    .summary-block a.more-btn.show-link, .show-link {
        color: #00a3ff;
    }

    .summary-block a.more-btn .show-link {
        margin-top: .5em;
        display: block;
    }

    .summary-block a.more-btn.ng-click-active, .summary-block a.show-link:active {
        background: #e0e0e0;
        filter: none;
        -webkit-box-shadow: inset 0 2px 3px rgba(0,0,0,.07);
        box-shadow: inset 0 2px 3px rgba(0,0,0,.07);
    }

        .summary-block a.more-btn.ng-click-active strong, .summary-block a.more-btn:active strong {
            color: #333;
        }

        .summary-block a.more-btn.ng-click-active .icon, .summary-block a.more-btn.ng-click-active .lbl,
        .summary-block a.more-btn.ng-click-active p, .summary-block a.more-btn.ng-click-active .link {
            top: 1px;
        }

    .summary-block .more-btn .icon {
        height: 38px;
        width: 38px;
        overflow: hidden;
        position: relative;
        display: inline-block;
        vertical-align: top;
        margin-left: -.55em;
        margin-right: -.15em;
        margin-top: .65em;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        fill: #505050;
    }

    .summary-block .more-btn .lbl {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        padding: 1.45em 0;
        width: 81%;
        line-height: 1.2;
    }

        .summary-block .more-btn .lbl.small-lbl {
            width: auto;
            vertical-align: middle;
        }

    .summary-block .more-btn .icon.arrow,
    ul.nav .icon.arrow, ul.index .icon.arrow /*copied from line 875*/ {
        height: 24px;
        width: 24px;
        position: absolute;
        right: 6px;
        top: 50% !important;
        margin: 0;
        fill: #505050;
        opacity: .5;
        margin-top: -12px;
    }

    .summary-block a.more-btn.ng-click-active .icon.arrow {
        top: 1.3em;
    }

.summary-block img.summary-img {
    display: inline-block;
    max-width: 120px;
    margin: 1.1em .75em 1.1em .5em;
    vertical-align: middle;
}


/* Logged in as Adviseur
--------------------------------------------------------------- */
.logged-in-as {
    background-color: #333;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1500;
    height: 34px;
    text-align: left;
    color: #eee;
    line-height: 34px;
    font-size: 13px;
}

    .logged-in-as .icon {
        display: inline-block;
        width: 30px;
        height: 30px;
        vertical-align: top;
        fill: #eee;
        margin-right: -.2em;
        margin-top: .1em;
        position: relative;
        top: 0;
    }

    .logged-in-as a {
        color: #fff;
        background-color: #666;
        text-decoration: none;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        display: inline-block;
        line-height: 26px;
        padding: 0 1em;
        margin-top: 4px;
        margin-left: 1.5em;
        margin: 4px 4px 0 1em;
        float: right;
        color: #545454;
        -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
        box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
        background-color: #e3e3e3;
        background-image: -webkit-gradient(linear, top, bottom, from(#f8f8f8), to(#dadada));
        background-image: -webkit-linear-gradient(top, #f8f8f8, #dadada);
        background-image: -moz-linear-gradient(top, #f8f8f8, #dadada);
        background-image: -ms-linear-gradient(top, #f8f8f8, #dadada);
        background-image: -o-linear-gradient(top, #f8f8f8, #dadada);
        background-image: linear-gradient(to bottom, #f8f8f8, #dadada);
    }

        .logged-in-as a:hover, .logged-in-as a:active {
            background: #ccc;
            color: #333;
        }

.wrapper.logged-in-as-margin .page {
    padding-top: 34px;
}

.wrapper.logged-in-as-margin .header {
    top: 34px;
}

    .wrapper.logged-in-as-margin .header.popup {
        top: 0;
    }

.wrapper.logged-in-as-margin .page.anim-popup {
    top: 34px;
}


@media screen and (max-width: 720px) {
    .wrapper.logged-in-as-margin .content {
        top: 84px;
        height: 95%;
    }
}

@media screen and (min-width: 720px) {
    .logged-in-as {
        text-align: center;
    }

        .logged-in-as a {
            float: none;
        }

    .wrapper.logged-in-as-margin {
        margin-top: 48px;
    }

        .wrapper.logged-in-as-margin .fake-top {
            height: 64px;
        }

        .wrapper.logged-in-as-margin .header {
            top: 34px;
        }
}

.blackbox {
    background-color: #333;
    position: relative;
    width: 100%;
    display: block;
    z-index: 201;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #eee;
    padding: .5em .7em;
    -webkit-box-shadow: 0 0 12px rgba(0,0,0,.5);
    box-shadow: 0 0 12px rgba(0,0,0,.5);
}

    .blackbox p {
        margin-bottom: .5em;
    }

    .blackbox .close-btn {
        position: absolute;
        opacity: .6;
        width: 30px;
        height: 30px;
        right: 3px;
        top: 3px;
    }

        .blackbox .close-btn.ng-click-active, .blackbox .close-btn:active {
            opacity: 1;
            top: 4px;
        }

@media screen and (min-width: 720px) {
    .blackbox {
        padding: 1em 1em;
    }
}



/* App popup
--------------------------------------------------------------- */

.app-popup {
    display: block;
    position: fixed;
    z-index: 400;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: .7em 0 0 30px;
    border-bottom: 1px solid #c2c2c2;
    background-color: #f2f2f2;
}

    .app-popup .app-icon {
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
        width: 70px;
        height: 70px;
        padding: .4em;
        background-color: #fff;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,.5);
        box-shadow: inset 0 0 1px rgba(0,0,0,.5);
    }

    .app-popup .app-info {
        display: inline-block;
        vertical-align: middle;
        max-width: 160px;
        font-size: 13px;
        color: #555;
        font-weight: 400;
        margin-right: -.31em;
    }

.app-info strong {
    color: #333;
    font-weight: 400;
    display: block;
    font-size: 15px;
}

.app-popup a.btn {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 0;
    margin-right: -.31em;
    color: #007aff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 70px;
    padding: 0 1em;
    text-align: center;
}

    .app-popup a.btn:hover, .app-popup a.btn:active {
        opacity: .5;
    }

.app-popup a.close-app-popup {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 10px;
    display: block;
    width: 30px;
    line-height: 70px;
    font-weight: 400;
    text-align: center;
    font-size: 20px;
    color: #787878;
    text-decoration: none;
    padding: 0;
}

    .app-popup a.close-app-popup:hover, .app-popup a.close-app-popup:active {
        opacity: .6;
    }


/* Icons
-------------------------------------------------------------- */
.icon.icon-small, .icon.icon-medium, .icon.icon-large, .icon.icon-big {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: -.45em -.1em -.2em -.1em;
    fill: #505050;
    vertical-align: middle;
}

.icon.icon-medium {
    width: 34px;
    height: 34px;
    margin: -.35em -.3em 0 -.1em;
}

.icon.icon-large {
    width: 45px;
    height: 45px;
    margin: -.35em -.3em 0 -.1em;
}

.icon.icon-big {
    width: 10em;
    height: 10em;
    margin: 0;
}

.icon.inline-icon {
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    margin: -.25em -.3em 0 -.5em;
    vertical-align: middle;
}

.has-icon {
    position: relative;
    padding-left: 2.2em;
}

    .has-icon .icon.inline-icon {
        position: absolute;
        left: 0;
        top: -.3em;
    }

.icon.stroke {
    fill: transparent !important;
    stroke: #505050;
    stroke-width: 4;
}


/* Media Queries
-------------------------------------------------------------- */

/* 680px is the mobile breaking point and where multi columns become single column */
@media screen and (max-width: 680px) {

    /* Start: 1140 RWD framework settings */
    .row, body, .container {
        width: 100%;
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .row {
        padding-left: .7em;
        padding-right: .7em;
    }


    .wrapper.page-login .page {
        top: 0;
    }

    ul.btns {
        margin-bottom: 1em;
    }

        ul.btns li {
            margin-bottom: 1em;
        }

        ul.btns.long-btns li {
            width: 100%;
        }

            ul.btns.long-btns li:last-child {
                margin-bottom: 0;
            }

            ul.btns.long-btns li a.action {
                min-width: 280px;
                margin-right: 0;
                text-align: left;
            }

            ul.btns.long-btns li:first-child a.action {
                -webkit-border-radius: 5px;
                border-radius: 5px;
            }

            ul.btns.long-btns li:last-child a.action {
                -webkit-border-radius: 5px;
                border-radius: 5px;
            }

    .summary-block img.summary-img {
        max-width: 107px;
    }

    .offline-msg {
        margin: -50px auto 0;
    }

    .wrapper.app-popup-margin .page {
        padding-top: 90px;
    }

    .wrapper.app-popup-margin .header {
        top: 90px;
    }

        .wrapper.app-popup-margin .header.popup {
            top: 0;
        }

    .wrapper.app-popup-margin .page.anim-popup {
        top: 90px;
    }

    .wrapper.app-popup-margin .content {
        padding-top: 120px;
    }

    ul.footer-info .phone:hover {
        text-decoration: underline;
    }

    /* Overrides */
    .show-mob {
        display: inline;
    }

    .hide-mob {
        display: none !important;
    }
}


@media screen and (max-width: 410px) {

    ul.main-nav li {
        width: 50%;
    }
}

@media screen and (max-width: 500px) {

    ul.icon-btns li {
        font-size: .875em;
    }

    ul.icon-btns a.action {
        min-width: 90px;
    }
}


/* 680px is the mobile breaking point */
/* Tablet portrait */
@media screen and (min-width: 680px) {

    .row {
        padding-left: 2em;
        padding-right: 2em;
    }

    .header h1 .lbl {
        max-width: 400px;
    }

    .header-wide h1 .lbl {
        max-width: 400px;
    }

    .header a.back-btn, .header a.next-btn, .header a.save-btn, .header a.icon-btn {
        min-width: 120px;
        padding-left: 1.2em;
        padding-right: 1.2em;
    }

    .header a.config-btn {
        min-width: 50px;
        padding-left: 0;
        padding-right: 0;
    }

    .header a.save-btn {
        padding-left: 1em;
        padding-right: .6em;
    }

    .header.popup a.back-btn {
        padding-left: 2em;
        padding-right: 2em;
    }

    .desktop a.back-btn {
        background-size: 201% 100%;
        background-image: linear-gradient(to right, transparent 50%, rgba(0,0,0,.07) 50%);
        -webkit-transition: background-position .2s;
        -moz-transition: background-position .2s;
        transition: background-position .2s;
    }

        .desktop a.back-btn:hover {
            background-position: 100% 0;
            background-color: transparent;
        }

    ul.tile-nav {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

        ul.tile-nav a {
            height: 140px;
        }

    /* Forms */

    textarea {
        width: 100%;
        font-size: 1.1em;
        max-width: 540px;
        min-height: 160px;
    }

        textarea:focus {
            font-size: 1.1em;
        }

    input.small, select.small {
        width: 100px;
    }

    .form-submit {
        padding-top: .5em;
        padding-bottom: .5em;
    }

    .label-margin {
        margin-left: 30%;
    }

    ul.index .alert {
        margin-left: 3.1em;
    }

    .card {
        margin-left: -2em;
        margin-right: -2em;
        padding-left: 2em;
        padding-right: 2em;
    }


    .notice.error.alignL {
        text-align: center;
    }

    .notice.error a {
        float: none;
        margin-left: 1em;
    }


    ol.companies li {
        display: inline-block;
        width: 49%;
        margin-right: 2%;
    }

        ol.companies li:nth-child(even) {
            margin-right: 0;
        }



    .summary-block ul.specs label {
        width: 25%;
    }

    .summary-block ul.specs .val {
        width: 75%;
    }

    .show-mob {
        display: none;
    }

    .hide-desktop {
        display: none !important;
    }
}

/* Desktop big screen */
@media screen and (min-width: 720px) {

    .table {
        min-height: 400px;
    }


    .wrapper.page-login {
        top: 2.5em;
        min-height: 90%;
    }

        .wrapper.page-login .page {
            position: absolute;
            top: 0;
            min-height: 80%;
        }

        .wrapper.page-login .table {
            min-height: 100%;
        }


    .login {
        margin: 0 auto;
    }


    .wrapper.app-popup-margin .header {
        top: 80px;
    }

    .wrapper.app-popup-margin .fake-top {
        top: 90px;
    }

    .wrapper.app-popup-margin .page {
        top: 80px;
    }

    .has-extra-btns .content {
        padding-top: 170px;
    }

    ul.extra-btns {
        margin: 0 0 0 -360px;
        left: 50%;
        top: 79px;
    }


    /* Animations are different for bigger screens. No left / right slide but a fade-in / fade-out. */
    .page.ng-enter, .page.ng-leave {
        z-index: 10;
        min-height: 0;
    }

    .page.ng-enter {
        z-index: 11;
    }

    .anim-rtl.ng-leave {
        -webkit-animation: hidePage .3s ease-in-out;
        animation: hidePage .3s ease-in-out;
        opacity: 1;
        position: absolute;
    }

    .anim-rtl.ng-enter {
        -webkit-animation: showPage .3s ease-in-out;
        animation: showPage .3s ease-in-out;
    }

    .anim-ltr.ng-leave {
        -webkit-animation: hidePage .3s ease-in-out;
        animation: hidePage .3s ease-in-out;
        opacity: 1;
        position: absolute;
    }

    .anim-ltr.ng-enter {
        -webkit-animation: showPage .3s ease-in-out;
        animation: showPage .3s ease-in-out;
    }

    .popup-content {
        position: relative;
        overflow-y: visible;
    }

    .header.popup {
        margin-left: 0;
    }

    /*.page.anim-popup {
        z-index: 250;
        top: 0;
        position:relative;
        left:0;
    }*/

    .page.anim-popup.ng-leave {
        -webkit-animation: hidePage .3s ease-in-out;
        animation: hidePage .3s ease-in-out;
        opacity: 1;
        position: absolute;
        top: 0;
    }

    .page.anim-popup.ng-enter {
        -webkit-animation: showPage .3s ease-in-out;
        animation: showPage .3s ease-in-out;
        border-top: 0 !important;
    }

    .anim-popdown.ng-leave {
        -webkit-animation: hidePage .3s ease-in-out;
        animation: hidePage .3s ease-in-out;
        opacity: 1;
        position: absolute;
        top: 0;
    }

    .page.anim-popdown.ng-enter {
        -webkit-animation: showPage .3s ease-in-out;
        animation: showPage .3s ease-in-out;
        opacity: 1;
        top: 0;
    }

    .page.anim-popdown.ng-leave {
        -webkit-animation: hidePage .3s;
        animation: hidePage .3s;
        border-top: 0;
    }

    .header.popup {
        /*top:-8px;*/
    }

    .popup-content .content {
        padding-top: 2em;
    }

    /* end test */


}



/* Color overrides / colors
-------------------------------------------------------------- */

.black, .black-txt {
    color: #222 !important;
}

.green-txt {
    color: #3fa608 !important;
}

.red-txt {
    color: #ee002d !important;
}

.lightgrey-txt {
    color: #939393 !important;
}

.lightergrey-txt {
    color: #a3a3a3 !important;
}


.green-bg {
    background-color: #45ba06 !important;
}

.orange-bg {
    background-color: #ffa200 !important;
}

.red-bg {
    background-color: #ee002d !important;
}

.lightgrey-bg {
    background-color: #888 !important;
}

.lightergrey-bg {
    background-color: #aaa !important;
}

.grey-bg {
    background-color: #505050 !important;
}

.black-bg {
    background-color: #333 !important;
}


.icon.brandcolor {
    fill: #00a3ff;
}

.icon.lightblue {
    fill: #53c9e7 !important;
}

.icon.blue {
    fill: #00a3ff !important;
    background: none;
}

.icon.red {
    fill: #ee002d !important;
}

.icon.pink {
    stroke: #ff0048 !important;
}

.icon.lightpink {
    fill: #ff8fc6 !important;
}

.icon.green {
    fill: #5abd2a !important;
}

.icon.orange {
    fill: #ff7e00 !important;
}

.icon.white {
    fill: #fff !important;
}

.icon.lightgrey {
    fill: #888 !important;
}

.icon.lightergrey {
    fill: #aaa !important;
}

.icon.grey {
    fill: #505050 !important;
}

.icon.black {
    fill: #333 !important;
}




/* Helpers & overrides - in order for these classes to overwrite, keep them at the bottom of this Css file!
-------------------------------------------------------------- */
.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.hide, a.hide, ul li.hide, ol li.hide, div.hide, li.hide, ol.hide, ul.hide, p.hide, span.hide {
    display: none;
}

.show, a.show, ul li.show, ol li.show, div.show, li.show, ol.show, ul.show, p.show, span.show {
    display: block;
}

.center {
    margin: 0 auto;
    float: none;
}

.right {
    float: right;
}

.left {
    float: left;
}

.alignC {
    text-align: center;
}

.alignL {
    text-align: left;
}

.alignR {
    text-align: right;
}

.marT {
    margin-top: 2em;
}

.marB {
    margin-bottom: 2em !important;
}

.marL {
    margin-left: .8em;
}

.marR {
    margin-right: .8em;
}

.noMarT {
    margin-top: 0 !important;
}

.noMarB {
    margin-bottom: 0 !important;
}

.noPad {
    padding: 0;
}

.full {
    width: 100%;
}

.noborder {
    border: 0;
}

.nobackground {
    background: transparent none !important;
}

.overflow-auto {
    overflow: auto !important;
}

.nowrap {
    white-space: nowrap;
}

.normalSpace {
    letter-spacing: normal;
}

.not-rounded {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.vat {
    vertical-align: top;
}

.vam {
    vertical-align: middle;
}

.vab {
    vertical-align: bottom;
}

.mt0 {
    margin-top: 0 !important;
}

.mth {
    margin-top: .5em !important;
}

.mt1 {
    margin-top: 1em !important;
}

.mt2 {
    margin-top: 2em !important;
}

.mt3 {
    margin-top: 3em !important;
}

.mr0 {
    margin-right: 0 !important;
}

.mrh {
    margin-right: .5em !important;
}

.mr1 {
    margin-right: 1em !important;
}

.mr2 {
    margin-right: 2em !important;
}

.mr3 {
    margin-right: 3em !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mbh {
    margin-bottom: .5em !important;
}

.mb1 {
    margin-bottom: 1em !important;
}

.mb2 {
    margin-bottom: 2em !important;
}

.mb3 {
    margin-bottom: 3em !important;
}

.ml0 {
    margin-left: 0 !important;
}

.mlh {
    margin-left: .5em !important;
}

.ml1 {
    margin-left: 1em !important;
}

.ml2 {
    margin-left: 2em !important;
}

.ml3 {
    margin-left: 3em !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb1 {
    margin-bottom: 1em !important;
}

.mb2 {
    margin-bottom: 2em !important;
}

.mb3 {
    margin-bottom: 3em !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pt1 {
    padding-top: 1em !important;
}

.pt2 {
    padding-top: 2em !important;
}

.pt3 {
    padding-top: 3em !important;
}

.pr0 {
    padding-right: 0 !important;
}

.pr1 {
    padding-right: 1em !important;
}

.pr2 {
    padding-right: 2em !important;
}

.pr3 {
    padding-right: 3em !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.pb1 {
    padding-bottom: 1em !important;
}

.pb2 {
    padding-bottom: 2em !important;
}

.pb3 {
    padding-bottom: 3em !important;
}

.pl0 {
    padding-left: 0 !important;
}

.pl1 {
    padding-left: 1em !important;
}

.pl2 {
    padding-left: 2em !important;
}

.pl3 {
    padding-left: 3em !important;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
}


/* Foto upload button */
.btn-upload {
    position: relative;
    overflow: hidden;
}

    .btn-upload input {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translate(-300px, 0) scale(4);
        -webkit-transform: translate(-300px, 0) scale(4);
        -ms-transform: translate(-300px, 0) scale(4);
        -o-transform: translate(-300px, 0) scale(4);
        font-size: 23px;
        direction: ltr;
        cursor: pointer;
    }

* html .btn-upload {
    line-height: 24px;
    margin: 1px -3px 0 0;
}

* + html .btn-upload {
    padding: 2px 15px;
    margin: 1px 0 0 0;
}

.activatie-download-links a {
    margin-right: 2px;
}

.activatie-download-links img {
    float: left;
}

.activatie-download-links span {
    float: left;
    padding-top: 15px;
}

/* captcha */
.captcha {
    width: 320px;
}

    .captcha .captcha-image {
        /*margin-left: 2px;*/
        /*padding:0 25px 0 .75em;*/
    }

    .captcha .summary-padding {
        padding-bottom: 1em;
    }

        .captcha .summary-padding input {
            width: 250px;
        }


/*.content .row:not(:first-child) {
    border-top: 1px solid #CBCBCB;
    padding-top: 20px;
}

.content .row .object:not(:first-child) {
    border-top: 2px dashed #DFDFDF;
    padding-top: 20px;
}*/

/* styling objects in polisdetail*/
.object .icon-big {
    width: 75px;
    height: 75px;
    margin-right: 5px;

}

.object img.summary-img {
    display: inline-block;
    max-width: 160px;
    margin: 0 10px 10px 0;

}

.info-image {
    float: left;
}

.info-block {
    display: inline-block;
}

.object .info {
    color: #737373;
}

.object .specs {
    clear: both;
}

.specs .val .read-more,
.dekking .specs + .read-more {
    font-size: 12px;
    color: #999;
}

.dekking {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-bottom: 20px;
}

    .dekking h2,
    .betrokken-partij h2 {
        padding-left: 15px;
        margin-bottom: 5px;
        position: relative;
    }

        .dekking h2:before {
            position: absolute;
            content: "";
            left: 0;
            top: 7px;
            height: 6px;
            width: 6px;
            border-radius: 50%;
            background-color: #333;
        }

ul.index .item .specs label .lbl,
ul.index .item .specs .val {
    background-color: #fff;
}
