/**
 * Main CSS file
 *
 * Fonts
 *     - Ubuntu Condensed
 *     - Helvetica
 *
 * Colors
 *     - Green: #4cafe1, rgba(14, 143, 108, 1.0)
 *     - Grey: #e9e9e9, rgba(233, 233, 233, 1.0)
 *     - Dark: #222222, rgba(34, 34, 34, 1.0)
 *
 */

/**
 * Font styles
 */
.content ul {
    margin-top: 0;
}

body {
    font-family: 'helvetica', Arial, sans-serif;
}
@media only screen and (max-width: 767px) {
    body {
        background: none repeat scroll 0 0 #000000;
    }
    #wrap {
        background: none repeat scroll 0 0 #FFFFFF;
    }
}

h1, h2, h3, h4 {
    color: #000;
    font-family: 'Ubuntu Condensed', Arial, sans-serif;
    font-weight: normal;
}
h1 a,
h2 a,
h3 a,
h4 a {
    font-family: 'helvetica', Arial, sans-serif;
}
h1.incognito {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
}
h1.strike {
    background: url('../images/strike.jpg') repeat-x 0 60%;
    font-size: 40px;
    font-weight: normal;
    margin: 0 0 25px 0;
    position: relative;
    text-align: center;
    text-shadow: -4px 4px 0 rgba(0, 0, 0, .07);
    text-transform: uppercase;
}
    h1.strike span {
        background: #fff;
        padding: 0 10px;
        position: relative;
        word-wrap: break-word;
    }
h1, .alpha {
    font-size: 32px;
}
h2, .beta {
    font-size: 23px;
}
h3, .gamma {
    font-size: 20px;
    font-weight: normal;
}
h4, .delta {
    font-size: 16px;
}
h5, .epsilon {
    font-family: 'helvetica', Arial, sans-serif;
    font-size: 14px;
}
p {
    color: #222;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 14px;
    line-height: 160%;
    word-wrap: break-word;
    word-break:hyphenate;
}
p:first-child {
    margin-top: 0;
}
a {
    color: #4cafe1;
    text-decoration: none;
}
.no-touch .phone-link {
    color: #222;
    text-decoration: none;
}

ul {
    font-size: 1.4rem;
    font-size: 14px;
}

.bold {
    font-weight: bold;
}

/**
 * Form styles
 */
input[type='submit'], button, .button {
    background: #000;
    border: none;
    color: #fff;
    font-family: 'Ubuntu Condensed', Arial, sans-serif;
    padding: 5px 30px;
}

.button.cta {
    max-width: 300px;
    height: 67px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

input[type='submit']:active, button:active, .button:active {
    background: #4cafe1;
    text-shadow: 1px 1px 1px #000;
}
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea {
    padding: 8px;
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.5);
       -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.5);
            box-shadow: inset 1px 1px 1px rgba(0,0,0,0.5);
}
input[type="search"] {
    -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus {
    -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2), 0px 0px 5px rgba(123, 173, 218, 0.8);
       -moz-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2), 0px 0px 5px rgba(123, 173, 218, 0.8);
            box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2), 0px 0px 5px rgba(123, 173, 218, 0.8);
    border-color: #9fc0dd;
}
input[type="text"].error,
input[type="password"].error,
input[type="date"].error,
input[type="datetime"].error,
input[type="email"].error,
input[type="number"].error,
input[type="search"].error,
input[type="tel"].error,
input[type="time"].error,
input[type="url"].error,
textarea.error {
    -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2), 0px 0px 5px rgba(240, 173, 173, 0.8);
       -moz-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2), 0px 0px 5px rgba(240, 173, 173, 0.8);
            box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2), 0px 0px 5px rgba(240, 173, 173, 0.8);
    border-color: #e44;
}
input {
    max-width: 100%;
}
.embed-login {
    display: inline-block;
    max-width: 250px;
}
    .embed-login form > * {
        margin: 5px 0;
    }

.consignor-tracking {
    max-width: 300px;
    display: inline;
}
    .consignor-tracking input[type=text] {
        display: inline-block;
        max-width: 200px;
    }

/**
 * Generic styles
 */
table {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    display: inline-block;
    padding: 1px;
}
    table tr:nth-of-type(2n) {
        background: #f9f9f9;
    }
        table tr th, table tr td {
            padding: 10px 20px;
        }
        table tr th {
            background: #f5f5f5;
            border: 2px solid #fff;
            color: #323232;
        }
        table tr td {
            border: 2px solid #fff;
            color: #3a3a3a;
        }

table.no-border {
    border: 0 none;
}
    table.no-border tr th,
    table.no-border tr td {
        padding: 5px;
    }

ul, ol, dl {
    line-height: 160%;
}
.arrow-link, .collapsible-area a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: url('../images/arrow_right.png') no-repeat 0 5px;
    font-size: 14px;
    font-weight: normal;
    line-height: 160%;
    display: inline-block;
    padding-left: 20px;
}
    .svg .arrow-link,
    .svg .collapsible-area a {
        background-image: url('../images/arrow_right.svg');
    }
.published {
    color: #7e7e7e;
    font-size: 14px;
    margin-bottom: 20px;
}

.no-image,
img[src$="noimage.png"] {
    border: 1px solid #333333;
}

.image.right {
    margin: 0 0 1em 1em;
}
.image.left {
    margin: 0 1em 1em 0;
}

/**
 * Round black icons, refactored.
 * Note: We're using font-awesome now. Some of the round icons are still png's.
 */
.fa-round {
    display: block;
    margin-bottom: 10px;
}
    .fa-round i,
    .fa-round svg {
        color: #fff;
        background: #4c5053;
        border-radius: 32px;
        height: 32px;
        width: 32px;
        padding-top: 7px;
        font-size: 17px;
        margin-right: 15px;
        text-align: center;
        display: inline-block;
        -moz-osx-font-smoothing: grayscale;
    }
        .lt-ie9 .fa-round i {
            background: url('../images/black_circle.png') top left no-repeat;
        }
    .fa-round i.mail {
        font-family: arial;
        line-height: 1;
    }
.fa-round svg {
    width: 32px !important;
}
/**
 * Black button
 */
.black-button {
    background: #000;
    color: #fff;
    display: block;
    font-family: 'Ubuntu Condensed', Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    margin: 20px 0;
    padding: 8px 0 8px;
    text-align: center;
    width: 100%;
}

/**
 * Drop-down
 */
#drop-down {
    color: #3b3b3b;
}
    /* Normal state */
    #drop-down > div {
        border: 1px solid #bfbfbf;
        cursor: pointer;
        display: block;
        float: none;
        margin-bottom: 20px;
        width: 100%;
        overflow: hidden;
    }
        #drop-down > div > .title {
            color: #3b3b3b;
            font-size: 18px;
            font-weight: 200;
            margin: 0;
            padding: 10px;
            position: relative;
        }
        #drop-down > div > .title:after {
            background: url('../images/blackarrow_down.png') no-repeat 99% 50%;
            content: '';
            height: 11px;
            position: absolute;
            right: 10px;
            top: 15px;
            transition: 0.25s ease 0s;
            width: 18px;
        }
        #drop-down > div > ul {
            max-height: 0;
            overflow: hidden;
            padding: 0 10px;
        }
            #drop-down > div > ul li {
                margin: 5px 0;
            }
    /* Dropped state */
    #drop-down > div.dropped {}
        #drop-down > div.dropped > .title:after {
            transition: 0.25s ease 0s;
            transform: rotate(-180deg);
            -ms-transform:rotate(-180deg);
            -moz-transform:rotate(-180deg);
            -webkit-transform:rotate(-180deg);
            -o-transform:rotate(-180deg);
        }
        #drop-down > div.dropped > ul {
            box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
            max-height: 500px;
            padding: 10px;
            overflow: visible;
        }
    @media only screen and (max-width: 940px) and (min-width: 768px) {
        #drop-down > div > ul {
            position: absolute;
        }
        #drop-down > div.dropped {
            position: relative;
            overflow: visible;
        }
        #drop-down > div.dropped > ul {
            background: #fff;
            left: -1px;
            right: -1px;
            z-index: 100;
            border: 1px solid #bfbfbf;
            border-top: 0;
        }
    }


/**
 * Toggle css
 */
.js .collapsible-area {
    display: none;
}
.collapsible-area.ready {
    display: block;
}
.frontpage .collapsible-area .text {
    padding-top: 20px;
    text-align: center;
}
.collapsible-area .toggle {
    height: 25px;
    width: 25px;
    margin: auto;
    top: 16px;
    position: relative;
    background: no-repeat center -25px url(../images/toggle_icons.png);
    cursor: pointer;
}
    .svg .collapsible-area .toggle {
        background-image: url('../images/toggle_icons.svg');
    }
    .collapsible-area.open .toggle {
        background-position: center top;
    }
.collapsible-area .toggle .closetext,
.collapsible-area.open .toggle .opentext {
    display: none;
}
.collapsible-area .toggle .opentext,
.collapsible-area.open .toggle .closetext {
    display: block;
}

/**
 * Orbit slider
 */
.slider-one-at-a-time {
    margin: 0;
    padding: 0;
}
    .slider-one-at-a-time li {
        list-style-type: none;
        display: none;
    }
        .orbit-container .slider-one-at-a-time li {
            display: block;
        }
    .slider-one-at-a-time .first-slide {
        display: block;
    }
    .slider-one-at-a-time .orbit-caption {
        display: none;
    }

.orbit-container {}
    .orbit-container .orbit-slide-number {
        display: none;
    }
    /* Next / Prev */
    .orbit-container .orbit-next,
    .orbit-container .orbit-prev {
        background: url('../images/slider_arrows.png') no-repeat;
        opacity: .7;
        transition: .5s;
        width: 30px;
    }
    .orbit-container .orbit-next {
        background-position: 0 0;
        margin-right: 10px;
    }
    .orbit-container .orbit-prev {
        background-position: 100% 0;
        margin-left: 10px;
    }
    .orbit-container:hover .orbit-next,
    .orbit-container:hover .orbit-prev {
        opacity: 1;
    }
    .orbit-container .orbit-next > span,
    .orbit-container .orbit-prev > span {
        border: none;
    }
    .orbit-bullets {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .orbit-bullets li {
        background-color: transparent;
        border-color: #fff;
        border-width: 1px;
        height: 14px;
        width: 14px;
    }
    .orbit-bullets li.active {
        background-color: #fff;
    }
    /* Caption */
    .orbit-container .orbit-slides-container .orbit-caption {
        background: #eee; /* Fallback */
        background: rgba(255, 255, 255, .9);
        display: block;
    }
        .orbit-container .orbit-slides-container .orbit-caption p {
            color: #000;
            font-family: 'Ubuntu Condensed', Arial, sans-serif;
            font-size: 16px;
            margin: 0;
        }

/**
 * Tabs - generic
 */
.tabs {}
    /* Navigation */
    .tabs nav {}
        .tabs nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
            .tabs nav ul li {}
                .tabs nav ul li.active a {
                    color: #000;
                }
    /* Content */
    .tabs .tabs {}
        .tabs .tabs .tab {
            display: none;
            position: relative;
            z-index: 1;
        }
        .tabs .tabs .tab.active {
            display: block;
        }
    /* Tables */
    .tabs table {
        border-collapse: separate;
        display: table;
        word-wrap: break-all; /* IE6 */
        word-break: break-word;
    }

/**
 * Tab group - contact tab & document archive
 */
.tab-group {
    margin-top: 20px;
}
    /* Navigation */
    .tab-group nav {
        display: block;
        margin-bottom: 30px;
        position: relative;
        width: 100%;
    }
        .tab-group nav ul {
            border-bottom: 1px solid #bbb;
            width: 100%;
        }
            .tab-group nav ul li {
                bottom: -1px;
                display: inline-block;
                position: relative;
            }
                .tab-group nav ul li a {
                    color: #6f6f6f;
                    display: block;
                    font-size: 14px;
                    padding: 15px 25px 10px;
                }
                .tab-group .horizontal-tabs > nav ul li a {
                    background: url('../images/bg-gradient-pattern-light.png') repeat-x #efefef;
                    border: 1px solid #bbb;
                }
            .tab-group nav ul li.active {
                margin: 0 -1px;
            }
                .tab-group nav ul li.active a {
                    color: #3e3e3f;
                    font-weight: bold;
                }
                .tab-group .horizontal-tabs > nav ul li.active a {
                    background: url('../images/bg-gradient-pattern.png') repeat-x #fff;
                    border-bottom: 1px solid #fff;
                    padding-top: 18px;
                }

        /* Content */
        .tab-group .tabs .tab {
            clear: both;
        }

    /* Full width tab selectors */
    @media only screen and (min-width: 768px) {
        .tab-group nav.full-width {
        }
            .tab-group nav.full-width ul {
                display: table;
                table-layout: fixed;
            }
                .tab-group nav.full-width li {
                    display: table-cell;
                    padding-right: 5px;
                    text-align: center;
                }
                    .tab-group nav.full-width li:last-child {
                        padding-right: 0;
                    }
    }
    /* Mobile */
    @media only screen and (max-width: 767px) {
        .tab-group nav {
            margin-bottom: 30px;
        }
        .tab-group nav ul li {
            border-bottom: none;
            display: block;
            width: 100%;
        }
        .tab-group nav ul li:last-child {
            border-bottom: 1px solid #bbb;
        }
        .tab-group nav ul li.active {
            margin: 0;
        }
        .tab-group nav ul li.active a {
            padding-top: 15px;
        }
        .tab-group nav.full-width ul {
            display: initial;
        }
    }

/**
 * Vertical tabs
 */
.vertical-tabs {
    border: none;
}
    .vertical-tabs .tab {
        background: none;
    }
        .vertical-tabs nav {
            width: auto;
        }
        .vertical-tabs nav ul {
            border: none;
        }
        .vertical-tabs nav ul li {
            background: none;
            border: none;
            display: block;
        }
            .vertical-tabs nav ul li a {
                color: #4cafe1;
                background-position: 0 50%;
                font-family: 'Helvetica', Arial, sans-serif;
                padding: 6px 0 3px 0;
            }
            .vertical-tabs nav ul li.active,
            .vertical-tabs nav ul li.active a {
                background: none;
                color: #000;
            }
        .vertical-tabs .tab .content {
            border: none;
            left: 0;
            max-width: 100% !important;
            padding-top: 0;
        }
            .vertical-tabs .tab .content h1 {
                margin: 10px 0 20px;
            }

/**
 * Department
 */
.department {}
    .department h1 {
        margin-bottom: 15px;
    }
    .department .contact {
        margin-bottom: 20px;
        overflow: hidden;
    }
        .department .contact .image {
            float: right;
        }
        .department .contact > div {
            font-size: 14px;
            line-height: 160%;
        }
            .department .contact > div p {
                margin: 0;
            }
            .department .contact .arrow-link {
                display: block;
                margin-top: 10px;
            }
@media only screen and (max-width: 767px) {
    .department .contact .image {
        display: none;
    }
}

/**
 * Department embed
 */
.embed.department {}
    .embed.department .contact {
        margin: 0;
    }

/**
 * Employee embed
 */
.employee.embed {
    margin: 0;
    padding: 0;
}
.employee.embed:nth-of-type(odd) {
    clear: left;
}
    .employee.embed {
       /* height: 80px;*/
    }
    .employee.embed .image {
        /*float: left;
        height: 130px;*/
        margin-bottom: 10px;
        margin-right: 15px;
        width: 200px;
        max-height: 200px;
    }
    .employee.embed img {
        width: auto !important;
        max-width: 100%;
        max-height: 100%;
    }
    .employee.embed .contact {
        float: left;
    }
        .employee.embed .contact .name {
            font-weight: bold;
        }
        .employee.embed .contact .title {
            cursor: inherit;
            position: relative !important;
        }

@media only screen and (max-width: 767px) {
    .employee.embed {
        min-height: inherit;
    }
}

/**
 * Header
 */
header.main {
    background: #4c5053;
    padding: 0;
    position: relative;
    margin-bottom: 15px;
}
.frontpage header.main {
    margin-bottom: 0;
}
    /* Logo */
    header.main .logo {
        border: none;
        text-shadow: none;
        margin: 17px 0;
        text-align: left;
        display: inline-block;
        height: auto;
    }
    /* Values */
    header.main .values {
        color: #fff;
        font-family: 'Ubuntu Condensed', Arial, sans-serif;
        left: 0;
        font-size: 1.4em;
        margin-left: -70px;
        padding-top: 50px;
        position: absolute;
        text-align: center;
        width: 100%;
    }
    /* Right column */
    header.main .row > .right {
        max-width: 318px;
        padding-top: 5px;
    }
    /* Extra menu */
    header.main .extra-menu {
        margin: 0;
        font-size: 14px;
        margin-bottom: 3px;
    }
        header.main .extra-menu li:first-child {
            margin-left: 0;
        }
        header.main .extra-menu a {
            color: #fff;
            text-decoration: none;
        }
        header.main .extra-menu li {
            margin-left: 1em;
        }
    /* Language switcher */
    .language-switcher {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
        .language-switcher li {
            display: inline;
        }
    header.main .language-switcher {
        text-align: right;
    }
        header.main .language-switcher .english,
        header.main .language-switcher .norwegian {
            display: inline-block;
            height: 24px;
            width: 24px;
        }
        header.main .language-switcher .text {
            display: none;
        }
        header.main .language-switcher .norwegian {
            background: url('../images/locale/norwegian.png') no-repeat center center;
        }
        header.main .language-switcher .english {
            background: url('../images/locale/english.png') no-repeat center center;
        }
    /* Search */
    header.main .search.mobile {
        display: none;
    }
    header.main .search {}
        header.main .search input[type=submit] {
            background: url('../images/search.png') center center no-repeat;
            height: 26px;
            width: 25px;
            padding: 0;
            text-indent: 999px;
            overflow: hidden;
        }
        header.main .search input[type=search] {
            width: 254px;
            padding: 3px 3px 2px;
            border: 1px solid #c3c3c3;
            border-radius: 2px;
            -webkit-box-shadow: none;
               -moz-box-shadow: none;
                    box-shadow: none;
        }
        header.main .search input[type=search]:focus {
            outline: 0;
        }
    /* Header on mobiles */
    @media only screen and (max-width: 850px) {
        header.main {
            height: auto;
        }
        header.main .row > .right {
            max-width: none;
            padding-top: 0;
        }
        header.main .logo {
            margin: 10px 0;
            display: block;
            text-align: center;
        }
        header.main .logo img {
            margin: 0 auto;
        }
        header.main .search {
            padding-bottom: 10px;
            position: relative;
        }
        header.main .search input[type=search] {
            width: 100%;
        }
        header.main .search input[type=submit] {
            background-image: url('../images/search_black.png');
            background-size: 20px;
            opacity: .7;
            position: absolute;
            top: 0;
            right: 5px;
        }
        header.main .search input[type=submit]:hover,
        header.main .search input[type=submit]:active {
            opacity: 1;
        }
        header.main .extra-menu {
            display: none;
        }
    }
    /* Navigation, main menu */
    header.main nav {
        background: #4cafe1;
        bottom: 0;
        color: #FFFFFF;
        line-height: 45px;
        position: relative;
        width: 100%;
    }
        header.main nav .columns {
            padding: 0;
        }
    .sticky-nav header.main nav {
        position: fixed;
        bottom: auto;
        top: 0;
        z-index: 100;
    }
    .sticky-nav.floating-wt header.main nav {
        top: 35px;
    }
    .sticky-nav header.main {
        padding-bottom: 44px;
    }
    @media only screen and (max-width: 820px) {
        header.main .values {
            font-size: 1.2em;
        }
    }
    @media only screen and (max-width: 850px) {
        header.main {
            padding-top: 40px;
        }
        header.main .logo-column {
            width: 100%;
        }
        header.main .values {
            padding: 0;
            top: 15px;
            width: 100%;
            margin: 0 0 10px 0;
        }
        .sticky-nav header.main nav {
            position: relative;
        }
        .sticky-nav.floating-wt header.main nav {
            top: auto;
        }
        .sticky-nav header.main {
            padding-bottom: 0;
        }
    }
    @media only screen and (max-width: 850px) {
        header.main {
            padding-top: 0;
        }
        header.main .values {
            display: none;
        }
        header.main .logo img {
            width: 100px;
        }
    }

.main-menu {
    margin: 0;
    padding: 0;
    overflow: visible;
}
    .main-menu > li {
        font-family: 'Ubuntu Condensed', Arial, sans-serif;
    }
    .main-menu li {
        margin: 0;
        padding: 0;
        float:left;
        display:block;

    }
        .main-menu > li:hover,
        .main-menu > li.active {
            background-color: #4cafe1;
        }
        .main-menu li a, .main-menu li .menu-item {
            color: #FFFFFF;
            font-size: 17px;
            font-weight: normal;
            padding: 0.5em 0.7em;
            text-decoration: none;
            display:block;
            cursor: hand;
            cursor: pointer;
        }

        @media only screen and (max-width: 980px) {
            .main-menu li a, .main-menu li .menu-item {
                padding: .5em;
            }
        }

        .main-menu li .dropdown {
            background-color: #FFFFFF;
            border-color: #4cafe1;
            border-style: solid;
            border-width: 5px 1px 2px 2px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, .5);
            color: #000000;
            display: none;
            margin: 0 auto;
            position: absolute;
            z-index: 999;
            width: 100%;
             overflow: hidden;
        }
        .main-menu li:hover .dropdown {
            display: block;
            left:0;
            top:auto;
        }
    .main-menu .dropdown h2, .main-menu .dropdown h2 a,
    .main-menu .dropdown h3, .main-menu .dropdown h3 a {
        color: #4cafe1;
        font-size: 1em;
        text-shadow: none;
        margin: 0;
        padding: 0;
    }
    .main-menu .dropdown h2,
    .main-menu .dropdown h2 a {
        color: #000000;
    }

    .main-menu .dropdown h4,
    .main-menu .dropdown h4 a {
        color: #4cafe1;
        font-size: 1em;
        text-shadow: none;
        margin: 0;
        padding: 0;
    }
    .main-menu .dropdown .columns {
        padding: 1em;
        vertical-align: top;
        width: 25%;
    }
        .main-menu .dropdown .columns:after {
            content: "";
            height: 1000px;
            position: absolute;
            right: 0;
            top: 0;
            width: 1px;
            border-right: 1px solid #4cafe1;
        }
        .main-menu .dropdown .columns h2 {
            margin: 0;
        }
            .main-menu .dropdown .columns h2 a {
                color: #4cafe1;
                font-family: 'Ubuntu Condensed', Arial, sans-serif;
                font-size: 18px;
            }
        .main-menu .dropdown .columns ul {
            display: block;
            margin: 1em 0;
            overflow: auto;
            padding: 0;
            width: 100%;
        }
        .main-menu .dropdown .columns li {
            width: 100%;
        }
        .main-menu .dropdown .columns > ul > li {
            margin: 0.5em 0;
        }
        .main-menu .dropdown .columns ul li ul {
            margin: 0.5em 0;
            padding-left: 0.5em;
        }
        .main-menu .dropdown .columns ul li ul li {
            background: url("../images/arrow_right.png") no-repeat scroll left 4px transparent;
            padding-left: 1.5em;
            font-size: 14px;
        }
            .svg .main-menu .dropdown .columns ul li ul li {
                background-image: url("../images/arrow_right.svg");
            }
        .main-menu .dropdown .columns.drop-image img {
            margin-bottom: 10px;
        }
        .main-menu .dropdown .columns.drop-image h2 {
            font-family: 'Helvetica', Arial, sans-serif;
            margin: 15px 0 10px;
        }
        .main-menu .dropdown .columns.drop-image p {
            margin-top: 0;
        }
        .main-menu .dropdown .columns.drop-image a {
            color: #4cafe1;
            font-size: 1em;
            text-shadow: none;
            padding: 0;
        }
    .main-menu .dropdown .column-split-first:after {
        border-right: none;
    }
    .main-menu .dropdown .column-split-second {
        padding-top: 2.6em;
    }

/* Responsive navigation */

#topwrap {
    /* Prevent horizontal scroll on page when mobile menu is enabled */
    max-width: 100%;
    overflow: hidden;
}

.mobile-sidebar,
nav .offcanvas-menu-trigger {
    display: none;
}

@media only screen and (max-width: 850px) {
    header.main nav {
        line-height: 1em;
    }
    nav .main-menu {
        display: none;
    }
    nav.main {
        padding: 10px 1em;
    }
    .mobile-sidebar {
        display: block;
    }
    header.main .search.desktop {
        display: none;
    }
    header.main .search.mobile {
        display: inline-block;
        padding: 0 0 0 60px;
        width: 100%;
    }
    nav .offcanvas-menu-trigger {
        position: absolute;
        display: inline-block;
        width: 46px;
        height: 26px;
        overflow: hidden;
        text-indent: 999px;
        background: url('../images/arrow_burger.png') left center no-repeat;
        z-index: 10;
    }
        .svg nav .offcanvas-menu-trigger {
            background-image: url('../images/arrow_burger.svg');
        }
    header.main .language-switcher {
        display: none;
    }
}

.mobile-sidebar {}
    .mobile-sidebar ul {
        margin: 0;
        padding: 0;
        list-style: none outside none;
    }
        .mobile-sidebar ul li {
            overflow: hidden;
            position: relative;
        }
            .mobile-sidebar ul li a,
            .mobile-sidebar ul li span {
                border-style: solid;
                border-width: 0 1px 1px;
                color: #FFFFFF;
                display: block;
                padding: 15px 0 15px 25px;
                background: #000000;
            }
            .mobile-sidebar ul li span.text {
                border: none;
                padding: 0;
                display: inline;
            }
                .mobile-sidebar li li a,
                .mobile-sidebar li li span {
                    background-color: #2E2E2E;
                }
                    .mobile-sidebar li li li a,
                    .mobile-sidebar li li li span {
                        background-color: #4C4C4C;
                    }
                        .mobile-sidebar li li li li a,
                        .mobile-sidebar li li li li span {
                            background-color: #6D6D6D;
                        }
        .mobile-sidebar li.expandable > a {
            padding-right: 50px;
        }
    .mobile-sidebar li ul {
        display: none;
    }
    .mobile-sidebar li.expanded > ul {
        display: block;
    }
    .mobile-sidebar .nav-item.expandable {

    }
    .mobile-sidebar li.expandable .nav-expand {
        background: #4cafe1;
        margin: 0;
        padding: 15px 0 15px 25px;
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
    }
        .mobile-sidebar li.expandable .nav-expand:before {
            background: url("../images/whitearrow_down.png") no-repeat scroll center center transparent;
            content: " ";
            height: 50px;
            left: 0;
            position: absolute;
            top: 5px;
            width: 50px;
            transition: all 0.25s ease 0s;
        }
            .svg .mobile-sidebar li.expandable .nav-expand:before {
                background-image: url("../images/whitearrow_down.svg");
            }
        .mobile-sidebar li.expandable .nav-expand.expanded:before {
            transition: all 0.25s ease 0s;
            transform: rotate(-180deg);
            -ms-transform:rotate(-180deg);
            -moz-transform:rotate(-180deg);
            -webkit-transform:rotate(-180deg);
            -o-transform:rotate(-180deg);
        }
    .mobile-sidebar .norwegian .text:before,
    .mobile-sidebar .english .text:before {
        display: inline-block;
        width: 24px;
        height: 24px;
        content: '';
        margin-right: 1em;
        vertical-align: middle;
        position: relative;
        bottom: 2px;
    }
    .mobile-sidebar .norwegian .text:before {
        background: url('../images/locale/norwegian.png') no-repeat center center;
    }
    .mobile-sidebar .english .text:before {
        background: url('../images/locale/english.png') no-repeat center center;
    }

/**
 * Path
 */
.path.hide-for-small {
    display: block !important;
    margin: 25px auto 25px !important;
}
    .path ul {
        margin: 0;
        padding: 0;
    }
        .path ul li {
            background: url('../images/arrow_right.png') no-repeat 100% 5px;
            font-size: 14px;
            margin-left: .7em;
            padding-right: 1.7em;
        }
            .svg .path ul li {
                background-image: url('../images/arrow_right.svg');
            }
        .path ul li:first-child {
            margin-left: 0;
        }
        .path ul li:last-child {
            background: none;
        }
            .path ul li a {}
                .path ul li a:hover {
                    text-decoration: underline;
                }
                    .path ul li a .home {
                        position: relative;
                        top: -2px;
                    }
            .path span {
                color: #595959;
            }

/**
 * Product & reference full
 */
.product {}
    .product .top_box .product-image,
    .reference .top_box .product-image {
        float: left;
        margin: 0 30px 20px 0;
        max-width: 620px;
    }
    .product .top_box .product-image .orbit-container .orbit-slides-container > * {
        height: auto;
    }
    .product .top_box p,
    .reference .top_box p {
        margin-top: 0;
    }
    .product .top_box .calculator {
        float: left;
    }
    .product .top_box ul:not(.slider),
    .product .top_box ol:not(.slider) {
        display: inline-block;
        padding-left: 20px;
    }
    /* Large breakpoint */
    @media only screen and (max-width: 61.25em) {
        .product .top_box .product-image {
            width: 60%;
        }
    }
    /* Mobile */
    @media only screen and (max-width: 767px) {
        .product .top_box .product-image,
        .reference .top_box .product-image {
            float: none;
            margin: 0 30px 20px 0;
            width: 100%;
        }
        .product .top_box .calculator {
            margin-top: 20px;
            width: 100%;
        }
    }

/**
 * Article, full
 */
.article.full {}
    .article.full section:first-child {
        border-right: 1px solid #eeeeee;
        margin-bottom: 20px;
    }
    .article.full .intro {
        font-size: 1em;
        font-weight: bold;
    }
        .article.full .intro li {
            font-size: 14px;
        }
        @media only screen and (max-width: 767px) {
            .article.full .body .image,
            .article.full .body .image img {
                width: 100%;
            }
        }

/**
 * Page, full
 */
.page.full {}
    .page.full section:first-child {
        border-right: 1px solid #eeeeee;
        margin-bottom: 20px;
    }
    @media only screen and (max-width: 767px) {
        .page.full .body .image,
        .page.full .body .image img {
            width: 100%;
        }
    }

/**
 * Event, full
 */
.event.full {}
    .event.full section:first-child {
        border-right: 1px solid #eeeeee;
        margin-bottom: 20px;
    }

/**
 * Calendar, full
 */
.event_calendar.full {}
    .event_calendar.full .previous {
        margin-bottom: 30px;
    }
        .event_calendar.full .previous a {
            border-bottom: 1px solid #EFEFEF;
            display: block;
            padding-bottom: 15px;
        }

/**
 * Embed view
 */
.embed {
    float: left;
    margin: 0 0 3em 0;
    padding: 0 1em 0 1em;
}
.embed.large-4 {
    min-height: 380px;
    max-height: 380px;
}
.embed.large-3 {
    max-height: 325px;
    height: auto;
}
@media only screen and (max-width: 767px) {
    .embed.large-3 {
        min-height: 0;
        max-height: none;
    }
}
.embed:last-child {
    float: left !important;
}
    .embed .published,
    .embed h1 {
        margin-bottom: 5px;
    }

    .embed h1 a {
        color: #000;
        font-family: 'Ubuntu Condensed', Arial, sans-serif;
    }
    .embed figure {}
        .embed figure img {
            width: 100%;
        }
    .embed .read-more:hover {
        text-decoration: underline;
    }
    .related-objects .embed .intro {
        font-weight: normal;
    }

.tab-group + .related-objects {
    margin-top: 0;
}

/**
 * File embed
 */
.embed.file {
    display: block;
    margin: 0 0 15px;
    padding: 0;
    width: 100%;
}
    .embed.file .title {
        background: url('../images/document.png') no-repeat 0 50%;
        padding-left: 25px;
    }
        .embed.file .title a {
            color: #4cafe1;
        }

/**
 * News full
 */
.news.full {}
    .news.full section:first-child {
        border-right: 1px solid #eeeeee;
        margin-bottom: 20px;
    }
    .news.full .embed {
        margin: 0 0 50px 0;
    }
    .news.full .embed.article.left-col {
        clear: left;
    }
    .news.full section > .row > .embed:first-child {
        width: 100%;
    }
        .news.full .embed h1 {
            margin: 20px 0;
        }

/**
 * News sidebar
 */
.sidebar {}
    .sidebar .embed {
        float: none !important;
    }
    .sidebar .embed.link {
        margin: 25px 0;
    }

/**
 * Calendar embed
 */
.sidebar .sidebox,
.event_calendar.embed {
    margin: 0 0 50px 0;
    padding: 0;
}
    .sidebar .sidebox h1,
    .event_calendar.embed > h1 {
        border-bottom: 2px solid #000;
        margin: 0 !important;
        padding: 0 0 10px 5px;
    }

.sidebar .sidebox .content {
    padding-left: 5px;
    padding-top: 10px;
}

/**
 * Event embed, sidebar
 */
.sidebar .event.embed {
    margin: 15px 5px 10px;
}
    .sidebar .event.embed h1 {
        line-height: 160%;
        margin: 0;
    }
        .sidebar .event.embed h1 a {
            color: #4cafe1;
        }
        .sidebar .event.embed h1 span {
            display: block;
            float: left;
        }
        .sidebar .event.embed h1 .date {
            color: #000;
            font-size: 16px;
            width: 40%;
        }
        .sidebar .event.embed h1 .title {
            line-height: 160%;
            width: 60%;
        }

/**
 * Footer
 */
footer.main {
    line-height: 1.5em;
    /*background: url('../images/bg-gradient-pattern.png') repeat-x;*/
    padding: 20px 0 0;
}
    footer.main .left-col {
        font-size: 16px;
    }
    footer.main .biggerlink {
        font-size: 16px;
    }
    footer.main .left-col .desc {
        font-weight: bold;
        padding-right: 3px;
    }
    footer.main .address {
        margin-top: 25px;
    }
    footer.main input {
        font-size: 14px;
        margin: 0 0 10px;
    }
    footer.main .shopping-cart {
        padding: 66px 0 0 0;
    }
footer.sub {
    padding:  15px 0 10px;
    background: #4c5053;
    color: #fff;
    font-weight: normal;
}

footer.sub p {
  color: #fff;
  margin: 0;
  font-size: .7em;
}
footer.sub p.copyright {
    font-size: 1em;
}
footer.sub p a {
    color: #fff;
    text-decoration: underline;
}
footer.sub .links {
    text-align: right;
}
    footer.sub .links a {
        color: #fff;
        font-size: 14px;
        margin-right: 15px;
        text-decoration: none;
    }
@media only screen and (max-width: 767px) {
    footer.main section {
        width: 100%;
    }
}

/**
 * Frontpage full
 */
.frontpage.full {
    background: url( '../images/bg-gradient-pattern-reverse.png') bottom center repeat-x;
}
    .frontpage.full h1 {
        margin-top: 35px;
        text-align: center;
    }
    .frontpage.full .collapsible-area .toggle {
        width: 200px;
        white-space: nowrap;
    }
    .frontpage.full .collapsible-area .toggle span {
        font-family: 'Ubuntu Condensed', Arial, sans-serif;
        font-size: 1em;
        position: relative;
        text-align: center;
        top: 40px;
        white-space: nowrap;
    }
    .frontpage .calculator {
        display: none;
    }
@media only screen and (max-width: 767px) {
    .frontpage .calculator {
        margin-top: 1em;
        display: block;
    }
}

/**
 * Atom
 */
.atom {
    background: #fff;
    box-shadow: 1px 2px 2px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
}
    .atom img {
        width: 100%;
    }
    .atom .text {
        padding: 15px;
    }
        .atom .text h2 {
            margin-top: 0;
        }
    .expanded .atom .text {
        max-height: 68%;
        overflow: auto;
    }
    .atom .links {
        padding: 8px 15px;
    }
        .atom .arrow-link {
            display: block;
            margin-bottom: 14px;
        }
        .atom .arrow-link:last-child {
            margin-bottom: 0;
        }

    .atom .bottom {
        display: block;
        background: #4c5053;
        color: #fdfdfd;
        font-family: 'Ubuntu Condensed', Arial, sans-serif;
        font-size: 17px;
        padding: 8px 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .expanded .atom .bottom {
        display: none;
    }
    /* CSS Triangle */
    .atom .bottom:after {
        content: "";
        position: absolute;
        right: 11px;
        border-style: solid;
        width: 0;
        height: 0;
        /* Hack to prevent jagged edges on FF */
        -moz-transform: scale(1.0001);
        border-width: 6px 0 6px 10px;
        border-color: transparent transparent transparent #fff;
        top: 12px;
    }
    .atom .bottom.no-arrow:after {
        display: none;
    }
    .atom .bottom .read-more {
        display: none;
    }
    .expanded .atom .bottom .read-more {
        display: inline;
    }
        .atom .bottom a {
            color: #fdfdfd;
        }

    .expandable.box .atom .bottom:after {
        border-color: #fff transparent transparent transparent;
        border-width: 8px 8px 0 8px;
        top: 13px;
    }

    /** Link elements */
    .atom.link a,
    .atom.green a {
        display: block;
        height: 100%;
    }

    /** Green elements */
    .atom.green {
        background: #4cafe1;
        background-repeat: no-repeat;
        background-position: center 33%;
    }
        .atom.green .name {
            display: none;
        }
        .atom.green .read-more {
            display: block;
        }
        .isotope-element.tools .atom {
            background-image: url('../images/green_values.png');
        }
        .isotope-element.contact .atom {
            background-image: url('../images/green_contact.png');
        }
        .isotope-element.catalogues .atom {
            background-image: url('../images/green_catalogue.png');
        }
        .isotope-element.news .atom,
        .isotope-element.info .atom {
            background-image: url('../images/green_news.png');
        }
        .isotope-element.astrup_quality .atom,
        .isotope-element.training .atom {
            background-image: url('../images/green_quality.png');
        }
        .isotope-element.travel .atom {
            background-image: url('../images/green_plane.png');
        }
        .isotope-element.handbook .atom {
            background-image: url('../images/green_handbook.png');
        }

    /** Image slider elements */
    .atom.slider .orbit-slides-container {
        height: auto !important;
    }
        .atom.slider .orbit-caption {
            background: #4c5053;
            color: #fdfdfd;
            padding: 8px;
        }
            .atom.slider .orbit-caption p {
                color: #fdfdfd;
                font-family: 'Helvetica', Arial, sans-serif;
                font-size: 12px;
            }
        .atom.slider h2 {
            color: #fff;
            font-size: 18px;
            font-weight: normal;
            margin: 0;
        }
        .atom.slider .orbit-timer,
        .atom.slider .orbit-prev,
        .atom.slider .orbit-next {
            display: none;
        }

    /** Latest news atom */
    .atom.latest-news {}
        .atom.latest-news .articles .embed {
            margin-bottom: 0;
            padding: 0;
        }
            .atom.latest-news .articles .embed h1 {
                margin-top: 0;
            }
            .atom.latest-news .articles .embed .published {
                margin-bottom: .6em;
                font-size: .7em;
            }

/**
 * Grid
 */
.isotope-wrap {
    background: #eee;
    min-height: 400px;
    border: 1px solid #dedede;
    border-width: 1px 0;
    padding: 60px 0;
}

.homegrid {
    position: relative;
}
    .homegrid:after {
        content: '';
        display: table;
        clear: both;
    }
    .homegrid .box.in-animation {
        position: absolute;
        z-index: 5;
        -webkit-transition-duration: 1s;
           -moz-transition-duration: 1s;
            -ms-transition-duration: 1s;
             -o-transition-duration: 1s;
                transition-duration: 1s;

        -webkit-transition-property: top, left, height, width;
           -moz-transition-property: top, left, height, width;
            -ms-transition-property: top, left, height, width;
             -o-transition-property: top, left, height, width;
                transition-property: top, left, height, width;
    }
    .homegrid .box {
        float: left;
        width: auto;
        overflow: hidden;
    }
    .homegrid .size-large {
        width: 33%;
        height: 300px;
    }
    .homegrid .size-medium {
        width: 33%;
        height: 150px;
    }
    .homegrid .size-small {
        width: 16.5%;
        height: 150px;
    }

    .homegrid .size-small img {
        position: absolute;
        width: 300px;
        height: 146px;
        max-width: none;
        left: -75px;

    }
    .homegrid .expanded {
        height: 600px;
    }

    .homegrid .ghost {
        z-index: -1;
        visibility: hidden;
    }

        .homegrid .isotope-element {
            padding: 5px;
            height: 100%;
        }
            .homegrid .isotope-content {
                height: 100%;
            }

@media only screen and (max-width: 767px) {
    .homegrid .expanded {
        height: auto;
    }
    .expanded .atom .text {
        max-height: none;
    }
    .homegrid .size-large,
    .homegrid .size-medium {
        width: 100%;
    }
    .homegrid .size-small {
        width: 50%;
    }
    .isotope-wrap {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 850px) and (min-width: 768px) {
    .homegrid .size-large,
    .homegrid .size-medium {
        width: 50%;
    }
    .homegrid .size-small {
        width: 25%;
    }
}

/**
 * Category full
 */
.category.full {}
    .category.full > header {
        margin-bottom: 16px;
    }
    .category.full .collapsible-area {
        margin-bottom: 20px;
    }
    .category.full .collapsible-area .text {
        text-align: center;
    }
    .category.full .collapsible-area.open .container {
        background: url('../images/shadow_line.png') no-repeat 0 100%;
        background-size: 100%;
        padding-bottom: 20px;
    }
        .category.full .collapsible-area .toggle {
            font-family: 'Ubuntu Condensed', Arial, sans-serif;
            font-size: 1;
            top: 0;
            cursor: pointer;
            position: relative;
        }
        .category.full .collapsible-area .toggle:before,
        .category.full .collapsible-area .toggle:after {
            position: absolute;
            top: 5px;
        }
        .category.full .collapsible-area .toggle:before {
            content: 'Les';
            right: 37px;
        }
            .lang-en-GB .category.full .collapsible-area .toggle:before {
                content: 'Read';
            }
        .category.full .collapsible-area .toggle:after {
            content: 'mer';
            left: 37px;
        }
            .lang-en-GB .category.full .collapsible-area .toggle:after {
                content: 'more';
            }
        .category.full .collapsible-area.open .toggle:before {
            content: 'Skjul';
        }
            .lang-en-GB .category.full .collapsible-area.open .toggle:before {
                content: 'Hide';
            }
        .category.full .collapsible-area.open .toggle:after {
            content: 'tekst';
        }
            .lang-en-GB .category.full .collapsible-area.open .toggle:after {
                content: 'text';
            }

@media only screen and (max-width: 900px) and (min-width: 767px) {
    .product .top_box .columns {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .category.full .children article {
        width: 100%;
    }
    .category.full .children article:last-child {
        margin: 1.5em auto 2.5em auto;
    }
}

/**
 * Related products
 */
.related-objects {
    background: url('../images/bg-gradient-pattern.png') repeat-x;
    margin: 20px 0;
    padding-top: 30px;
    overflow: hidden;
}
.tabs .related-objects {
    background: none;
    padding-top: 0;
}
.row .tab .row,
.tab .row .row {
    margin: 0 auto;
}
    .related-objects header {
        margin-bottom: 1em;
    }
    .related-objects h1 {
        margin-bottom: 10px;
    }
    .related-objects ul {
        list-style: none inside;
        padding: 0;
    }
    .related-objects .orbit-container {
        background: #fff;
        z-index: 1;
    }
        .related-objects .embed {
            margin: 0;
        }
            .related-objects .embed h1 {
                font-size: 16px;
                font-weight: normal;
                margin: 20px 0 10px;
            }
    .related-objects .orbit-prev,
    .related-objects .orbit-next {
        background: #138e6b;
        opacity: 1;
        width: 34px;
        height: 34px;
        top: 24%;
        transition: none;
    }
        .related-objects .orbit-prev:active,
        .related-objects .orbit-next:active {
            top: 24.5%;
        }
        .related-objects .orbit-container .orbit-prev {
            left: -5px;
        }
            .lt-ie9 .related-objects .orbit-container .orbit-prev {
                left: -12px;
            }
        .related-objects .orbit-container .orbit-next {
            right: -5px;
        }
            .lt-ie9 .related-objects .orbit-container .orbit-next {
                right: -12px;
            }
        .related-objects .orbit-prev:before,
        .related-objects .orbit-next:before {
            content: '';
            width: 0px;
            height: 0px;
            border-style: solid;
            border-width: 5px 10px 5px 0;
            border-color: transparent #fff transparent transparent;
            position: absolute;
            display: block;
            left: 12px;
            top: 12px;
            -moz-transform: scale(1.0001337);
        }
        .related-objects .orbit-prev:after,
        .related-objects .orbit-next:after {
            content: '';
            width: 0px;
            height: 0px;
            border-style: solid;
            border-width: 0 9px 8px 0;
            border-color: transparent #333 transparent transparent;
            display: block;
            position: absolute;
            left: 0;
            bottom: -8px;
            -moz-transform: scale(1.0001337);
            z-index: -1;
            transition-property: opacity, bottom;
            transition-duration: .5s;
            opacity: 1;
        }
        .related-objects .orbit-container .orbit-next:before {
            border-width: 5px 0 5px 10px;
            border-color: transparent transparent transparent #fff;
            left: 12px;
        }
        .related-objects .orbit-container .orbit-next:after {
            left: auto;
            right: 0;
            border-width: 8px 9px 0 0;
            border-color: #333 transparent transparent transparent;
        }
        .related-objects .orbit-container .orbit-prev:active:after,
        .related-objects .orbit-container .orbit-next:active:after,
        .related-objects .orbit-container.orbit-transitioning .orbit-prev:after,
        .related-objects .orbit-container.orbit-transitioning .orbit-next:after {
            bottom: 0;
            opacity: 0;
        }
            .lt-ie9 .related-objects .orbit-container .orbit-prev:active:after,
            .lt-ie9 .related-objects .orbit-container .orbit-next:active:after,
            .lt-ie9 .related-objects .orbit-container.orbit-transitioning .orbit-prev:after,
            .lt-ie9 .related-objects .orbit-container.orbit-transitioning .orbit-next:after {
                bottom: -8px;
            }
@media only screen and (min-width: 767px) {
    .related-objects .orbit-desktop-disabled .orbit-prev,
    .related-objects .orbit-desktop-disabled .orbit-next {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .related-objects .orbit-container .orbit-prev,
    .related-objects .orbit-container .orbit-next {
        display: block;
        top: 100px;
    }
    .related-objects .orbit-prev:active,
    .related-objects .orbit-next:active {
        top: 102px;
    }
    .related-objects .orbit-mobile-disabled .orbit-prev,
    .related-objects .orbit-mobile-disabled .orbit-next {
        display: none;
    }
}

/**
 * Search
 */
.search {}
    .search .search-title {
        margin-top: 60px;
        margin-bottom: 0;
    }
    .search .result-info {
        font-size: 15px;
        margin-top: 0;
    }

    .search .filters > .title {
        font-size: 22px;
        font-weight: 600;
        margin-top: 0;
    }
        .search .filter {
            padding: 0;
        }
        .search .filter > .title {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 15px;
            margin-top: 0;
        }
        .search .filter ul {
            list-style: none;
            padding: 0;
            margin-top: 0;
        }
            .search .filter li {
                background: url(../images/arrow_right.png) no-repeat left center;
                padding-left: 25px;
                margin-bottom: 8px;
            }
                .search .filter a {
                    color: #585858;
                }
                .search .filter .selected a {
                    color: #4cafe1;
                    text-decoration: underline;
                }

/** Search results */
.search-results {
    /* Prevent horizontal scroll */
    overflow: hidden;
}
    .search-results .search-result {
        margin-bottom: 2.5em;
    }

.search-result {
    width: 100% !important;
}
    .search-result .image {
        margin: 0 0 1em;
    }
    .search-result h1 {
        margin: 0;
    }
    .search-result .image {
        float: right;
    }
    .search-result .intro {
        margin-top: 1em;
    }
        .search-result .intro p {
            margin: 0;
        }

/** Search mobile */
@media only screen and (max-width: 767px) {
    .search .filters {
        border-bottom: 1px solid #ddd;
        margin-bottom: 1em;
    }
    .search .search-results {
        padding: 0;
    }
        .search-results .search-result {
            margin-bottom: 1em;
        }
            .search .search-result .image {
                float: none;
            }
            .search .search-result + .search-result {
                padding-top: 1em;
                border-top: 1px solid #ddd;
            }
}

/**
 * Children
 */
.children .large-3 {
    max-height: none;
}
.children .large-3:nth-child(4n+1) {
    clear: left;
}
@media only screen and (max-width: 767px) {
    .children .large-3:nth-child(4n+1) {
        clear: inherit;
    }
    .children .small-6:nth-of-type(odd) {
        clear: left;
    }
}

/**
 * Contact page full
 */
.contact-page {}
    .contact-page #tabs {
        padding-bottom: 20px;
        position: relative;
    }
        .contact-page #tabs .right {
            padding-left: 0;
            min-height: inherit;
            position: relative;
        }
            .contact-page .tabs .tab {
                margin: 0;
                padding: 0;
                padding-left: 60px;
            }
                .contact-page .tabs .tab img {
                    width: 260px;
                }
                .contact-page .tabs .tab h1 {
                    margin-bottom: 1.3em;
                }
                .contact-page .tabs .tab .contact-people {
                    margin-top: 2em;
                }
        .contact-page #tabs .mobile-navigation {
            display: none;
        }
    .contact-page .departments .navigation li + li {
        margin-top: 5px;
    }
    .contact-page .department {
        min-height: 200px;
    }
    .contact-page .disclaimer {
        font-size: .8em;
        color: #888;
        margin-bottom: 1em;
        display: block;
    }
.contact-page-bottom,
.contact-page-middle {
    line-height: 1.5em;
    background: url('../images/bg-gradient-pattern.png') repeat-x;
    padding: 20px 0 40px;
}
    /* Department embeds */
    .contact-page .department h1 {
        white-space: nowrap;
        margin-top: 0;
    }
@media only screen and (max-width: 940px) {
    .contact-page #tabs .navigation {
        width: 100%;
    }
        .contact-page #tabs .navigation > div {
            float: left;
            width: 50%;
        }
        .contact-page #tabs .navigation > div:nth-child(2n+1) {
            margin-right: 1%;
            width: 49%;
        }
    .contact-page #tabs .right {
        width: 100%;
        padding: 0 1em;
    }
    .contact-page .tabs .tab {
        padding-left: 0;
    }
}
@media only screen and (max-width: 767px) {
    .contact-page-bottom,
    .contact-page-middle {
        padding: 2em 0;
    }
    .contact-page #tabs .navigation {}
        .contact-page #tabs .navigation > div {
            float: none;
            width: 100%;
        }
        .contact-page #tabs .navigation > div:nth-child(2n+1) {
            margin-right: 0;
            width: 100%;
        }
    .contact-page #tabs .right {
        height: auto;
        min-height: 0;
        padding: 0 1em;
    }
    .contact-page #tabs .tabs {
        position: static;
        width: auto;
    }
    .contact-page .department {
        min-height: auto;
    }
    .contact-page-bottom {
        min-height: 0;
    }
    .contact-page-bottom .row > div {
        float: none;
        width: 100%;
    }
    .contact-page-bottom .row .contact-form {
        width: auto;
    }
    /* Department embed */
    .contact-page .department h1 {
        white-space: normal;
    }

    table.responsive tr {
        height: 40px;
    }

    table.responsive {
        border-radius: 0;
        display: table;
        border-bottom-width: 0;
    }

    .pinned table {
        display: table;
        margin-bottom: 2px;
        border-bottom-width: 0;
    }

        .pinned td:last-child {
            border-bottom-width: 0;
        }

    .table-wrapper {
        border-bottom: 1px solid #ccc;
    }

    .table-wrapper .scrollable,
    .table-wrapper .pinned {
        border-top: 1px solid #E0E0E0;
    }

    .table-wrapper .pinned tbody tr {
        height: 40px!important;
    }

    .table-wrapper .pinned tbody tr:first-child {
        height: 52px!important;
    }
}

/**
 * Respnsive table
 * Should not always fill 100% of the page's width on desktops.
 * It will have to become a 100% wide on smaller screens, however, as we're using Foundation's responsive table plugin.
 */
table.responsive {
    width: auto !important;
}
@media only screen and (max-width: 767px) {
    table.responsive {
        width: 100%;
    }
    table.responsive tr th,
    table.responsive tr td,
    .pinned tr th,
    .pinned tr td {
        padding-left: 5px;
        padding-right: 5px;
    }
    .tab .table-wrapper .pinned tbody tr:first-child {
        height: auto !important;
    }
}

/* Contact form */

.contact-form {
    background: url("../images/bg-gradient-pattern-light.png") repeat-x scroll 0 0 #EFEFEF;
    border: 1px solid #bfbfbf;
    min-height: 200px;
    margin-bottom: 20px;
}

.contact-form form {
    padding: 40px 0 1em 0;
}
    .contact-form form:after {
        content: '';
        display: table;
        clear: both;
    }

.contact-form label {
    margin-bottom: 1em;
    display: block;
}

.contact-form label .title {
    font-size: .8em;
    display: block;
    margin-bottom: 5px;
}

.contact-form label.required span.title:after {
    content: ' *';
}

.contact-form textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 120px;
    height: 120px;
}

/* Employee search */

.employee-search-box {
    margin-bottom: 2em;
    position: relative;
}
.employee-search-input {
    display: inline-block;
    margin: 0;
    outline: none;
    width: 40% !important;
}
    .employee-search-input::-webkit-input-placeholder {
        font-size: .8em;
        font-style: italic;
        opacity: .3;
    }
    .employee-search-input::-moz-placeholder {
        font-size: .8em;
        font-style: italic;
        opacity: .3;
    }
    .employee-search-input:-ms-input-placeholder {
        font-size: .8em;
        font-style: italic;
       opacity: .3;
    }
.employee-search-box .search-btn {
    background: url('../images/search.png') no-repeat center center #000;
    display: inline-block;
    height: 35px;
    margin-left: -65px;
    vertical-align: bottom;
}
.employee-search-input.loading {
    background: url('../images/loading.gif') 98% center no-repeat;
}
.employee-search .result {
    margin-bottom: 1.5em;
}
.employee-search .result:nth-child(3n+1) {
    clear: left;
}
.employee-search .result:last-child {
    float: left;
}
    .employee-search h2 {
        margin-top: 0;
    }
    .employee-search .result h3 {
        font-weight: bold;
        margin: 0;
    }
    .employee-search .result p {
        margin: 0;
    }
    .employee-search .no-results {
        padding-bottom: 2em;
    }
@media only screen and (max-width: 940px) {
    .employee-search-input {
        width: 100% !important;
    }
}
@media only screen and (max-width: 768px) {
    .employee-search .result {
        width: 33.33%;
    }
}
@media only screen and (max-width: 660px) {
    .employee-search .search-btn {
        position: absolute;
        right: 0;
        top: 1px;
    }
    .employee-search .result {
        width: 50%;
    }
    .employee-search .result:nth-child(3n+1) {
        clear: none;
    }
    .employee-search .result:nth-child(odd) {
        clear: left;
    }
}
@media only screen and (max-width: 440px) {
    .employee-search .result {
        width: 100%;
    }
}

/**
 * Sitemap
 */

.sitemap.full h1 {
    margin-top: 0;
}

.sitemap.full ul {
    padding-left: 20px;
    list-style-type: none;
    overflow: hidden;
}

.sitemap.full ul ul {
    display: none;
}

.sitemap.full li {
    position: relative;
}

.sitemap .expand:before {
    content: '+';
    position: absolute;
    left: -15px;
    cursor: pointer;
}

.sitemap .expanded > .expand:before {
    content: '–';
}

/*
  * Debug
  */
 #debug {
    display: none;
 }

.calculator {
  margin: 0;
}

/**
 * Ez toolbar
 */
#ezwt select {
    width: auto;
}
#ezwt a {
    vertical-align: top;
}
#ezwt,
#ezwt *,
#ezwt *:before,
#ezwt *:after {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}

/**
 * Frontend editing
 */
body.module.edit .content,
body.module.browse .content,
body.module.user .content {
    max-width: 61.25em;
    padding: 0 1em;
    margin: 0 auto;
}

.module.user.login .block {
    margin-bottom: 1em;
}

.content.edit #ezwt, .right.translation {
    display: none;
}

#ezEdit div.block {
    overflow: visible !important;
    margin-bottom: 1em !important;
}

#ezEdit div.block:after {
    content: "";
    display: table;
    clear: both;
}

#ezEdit .ezobject-relation-search-text {
    width: auto !important;
}

#ezEdit .datepicker-icon {
    margin-top: 23px !important;
}

#ezEdit .buttonblock {
    margin: 2em 0;
}

#ezEdit table {
    display: table;
}

#ezEdit input.tagssuggestfield {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#ezEdit input[type=submit][name=PublishButton] {
    background: #4cafe1;
}

/**
 * Folder
 */

.folder.full {
    padding-bottom: 60px;
}

.folder.full .top_box {
    margin-top: 1em;
}

.folder.full .embed {
    width: 100%;
    padding: 0;
    margin-top: 0;
    margin-bottom: 1em;
}

.folder.full h1 {
    margin-top: 0;
}

.archive-path .folder.full .children h1 {
    font-size: 20px;
}

.folder .pager {
    text-align: center;
}

.folder .pager .previous {
    float: left;
    width: auto;
}

.folder .pager .next {
    float: right;
    width: auto;
}

.block {
    margin-bottom: 30px;
}

.block .link a {
    display: block;
    width: 100%;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    background: #000;
}

.block h2 {
    padding-bottom: 5px;
    border-bottom: 2px solid #000;
}

/**
 * Bli medlem-skjema
 */

.full.become_member_form .body {
    margin-bottom: 2em;
}

/**
 * General forms
 */

.general-form {
    margin-bottom: 2em;
}

.general-form input[type=text],
.general-form input[type=date],
.general-form input[type=email] {
    border-radius: 0;
    border: 1px solid #ccc;
    box-shadow: none;
    padding: 5px;
}

.general-form input.error {
    border-color: #EE4444;
}

.general-form.general-form fieldset {
    border: none;
    padding: 0;
    margin-bottom: 1em;
}

.general-form fieldset legend {
    padding: 0 16px;
    margin: 0 0 16px 0;
    font-weight: bold;
    font-size: 1.1em;
}

.ie8 .general-form fieldset legend {
    padding-left: 4px;
}

.general-form label,
.general-form .label {
    display: block;
    margin-bottom: 1em;
    min-height: 3em;
}

.general-form label.inline,
.general-form .label.inline {
    min-height: none;
    margin-bottom: 0;
    display: inline;
}

.general-form label.required span:first-of-type:after,
.general-form .label.required span:first-of-type:after {
    content: " *";
    color: #4cafe1;
}

.general-form label span,
.full.become_member_form label .description {
    line-height: 1.5em;
    font-size: .8em;
}

.full.become_member_form label .description {
    color: #999;
    margin-top: 5px;
}

.full.become_member_form .column,
.general-form .column {
    float: left;
    width: 50%;
}

.general-form .three-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    -ms-column-count: 3;
    column-count: 3;
}

.general-form .four-columns {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    -ms-column-count: 4;
    column-count: 4;
}

.general-form .three-columns label,
.general-form .four-columns label {
    margin: 0 0 .5em 0;
    min-height: 0;
}

.general-form input[type=date] {
    display: block;
    width: 100%;
}

.general-form .use-alt-address {
    margin-top: -1em;
    margin-bottom: 2em;
}

/**
 * Document archive
 */
.embed.document-archive {
    margin: 0 0 1em;
    padding: 0;
    float: none;
}
    .embed.document-archive select {
        margin-bottom: .5em;
    }

.full.document-archive {
    overflow: hidden;
}
    .full.document-archive h1.strike {
        margin-bottom: 1.2em;
    }
    .full.document-archive nav {
        margin-bottom: 3em;
    }
    .full.document-archive .tab {
        display: none;
    }
        .full.document-archive .tab.active {
            display: block;
        }
    .full.document-archive .pdf {
        margin-bottom: 2.8em;
        text-align: center;
    }
    .full.document-archive .pdf:last-child {
        float: left;
    }
    .full.document-archive .pdf:nth-of-type(4n+1) {
        clear: left;
    }
    .full.document-archive .pdf img {
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .lt-ie9 .full.document-archive .pdf img {
        border: 1px solid #ddd;
    }
@media only screen and (max-width: 750px) {
    .full.document-archive h1.strike {
        font-size: 16px;
        padding: 0;
        background: none;
    }
        .full.document-archive h1.strike span {
            background: none;
            padding: 0;
        }
    .full.document-archive h2 {
        font-size: 16px;
    }
}

/**
 * Pikaday datepickers
 */
.pika-table {
    display: table;
    margin: 0;
}
.pika-table td,
.pika-table th {
    padding: 0 !important;
    border: none !important;
}
.pika-table th {
    background: #fff !important;
}
.pika-table abbr {
    border-bottom: none;
}
.pika-table button {
    font-family: Arial,sans-serif;
}

/**
 * Embed video
 */
.embed-video {
    height: 315px;
    margin-bottom: 1em;
    max-width: 100%;
    width: 100%;
}

@media only screen and (max-width: 850px) and (min-width: 768px) {
    .embed-video {
        height: 250px;
    }
}

/**
 * Become member form - transporters
 */

.transporter-2.hidden,
.transporter-3.hidden {
    display: none;
}

.toggle-add-extra-transporter {
    margin-top: -20px;
    margin-bottom: 20px;
    display: block;
}

ul, ul li, ol, ol li {
font-size: 14px;
}

/**
 * Days since accident
 */

.custom-medical .title {
    font-size: 16px;
}

.custom-medical .isotope-content {
    /*padding-top: 10px;*/
    text-align: center;
    background: #fff;
}

.date-box {
    margin-top: 35px;
    display: flex;
}

    .date-box .date-box__part {
        width: 33%;
        margin: 0;
    }

        .date-box .date-box__part .date {
            margin-bottom: -5px;
            position: relative;
            font-size: 20px;
        }

            .date-box .date-box__part .date span {
                position: relative;
                z-index: 10;
            }

            .date-box .date-box__part .date span.d {
                margin-left: 2px;
                margin-right: 2px;
                padding: 3px;
                border-radius: 3px;
                position: relative;
                z-index: 1;
                background: #eaeaea;
                color: #333;
            }

            .date-box .date-box__part .date span.d:before {
                content: "";
                width: 100%;
                height: 1px;
                background: #ccc;
                position: absolute;
                top: 50%;
                left: 0;
            }

        .date-box .date-box__part .label {
            font-size: 9px;
            text-transform: uppercase;
            color: #fff; /*rgb(75, 172, 212);*/
        }

        .flex-wrap {
            height: 100%;
        }



.over-100-days .date-box .date-box__part {
    width: 33%;
}

.over-100-days .date-box .date-box__part .date {
    font-size: 16px;
}

.over-100-days .date-box .date-box__part .date span.d {
    margin-left: 1px;
    margin-right: 1px;
}

/**
 * New front page
 */

.frontpage-flex br {
    height: 0;
    display: none;
}

.frontpage-flex .columns {
    padding-left: 8px;
    padding-right: 8px;
}

.frontpage-flex__box {
    margin-top: 8px;
    margin-bottom: 8px;
    background: #fff;
}

    .frontpage-flex__box__link {
        padding: 6px;
        font-weight: bold;
        background: #4cafe1;
    }

        .frontpage-flex__box__link a {
            color: #fff;
        }