﻿
html {
    /*font-size: 100.01%;*/
    font-family: "Helvetica Neue", Arial, Helvetica, "Open Sans" !important;
}

body {
    font-size: 14px;
    color: #222;
    background: #fff;
    font-family: "Helvetica Neue", Arial, Helvetica, "Open Sans";
    margin: 0;
}

.body-content {
    margin: 0 auto;
    max-width: 100%;
}



/*Misc stuff*/

.first {margin-left:0;padding-left:0;}
.last {margin-right:0;padding-right:0;}
.top {margin-top:0;padding-top:0;}
.bottom {margin-bottom:0;padding-bottom:0;}

ul.submenu {
    height: 2em;
    padding: 0;
    margin: 0;
}

    ul.submenu li {
        float: left;
        list-style: none;
        margin-right: 1em;
    }

        ul.submenu li a {
            float: left;
            display: block;
        }

.underlineLink {
    text-decoration: underline;
}

a[href$=".pdf"]:after {
    content: url(/Content/icons/pdf.png);
    margin: 1px 0 0 1px;
}

.quiet {
    color: #666;
}

.loud {
    color: #000;
}

/*Navbar left*/
.navbar-left {
    position: relative;
    left: 0;
    clear: both;
}

    .navbar-left > li > a {
        font-size: 1em;
    }

/*Navbar-right*/
.navbar-right > li > a {
    font-weight: bold;
}

/*Customer login link*/
.nav > li > a.customerLoginLink:after {
    content: url(/Content/icons/external.png);
    margin: 0 0 0 1px;
}

/*Frontpage content*/

.frontpage-container {
}

.clearfix, .container {
    display: block;
}


.frontpage-container {
    width: 99%;
    margin: 0 auto;
    padding: 0;
    background: #00a2e3 url(/Content/gfx/frontpage-big-back.gif) repeat-x scroll bottom center;
    color: #fff;
}



    .frontpage-container ul {
        font-size: 1.3em;
        color: #fff !important;
    }

    .frontpage-container h1 {
        font-size: 3em;
        line-height: 1;
        margin-bottom: 0.5em;
    }

a.button.white, button.white {
    background-color: #fff;
    color: #00a1e2 !important;
}

    a.button.white:hover, button.white:hover {
        background-color: #ccc !important;
    }

/*Buttons*/

a.button.negative {
    color: #fff !important;
}

a.button, button, button.ui-state-default {
    border: none;
    background-color: #222;
    display: inline-block;
    padding: 5px 10px 6px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    position: relative;
    cursor: pointer;
}

    a.button:hover, button:hover {
        background-color: #444;
    }

    html > body button:active {
        background-color: #000000;
        -webkit-box-shadow: none;
        margin-top: 0px;
        border: none;
    }

    a.button:active {
        background-color: #000000;
        -webkit-box-shadow: none;
        border: none;
        margin-top: 0px;
        outline: none;
    }

    a.button.disabled, button.disabled, button[disabled="disabled"] {
        background-color: #eee;
        color: #ccc;
        cursor: default;
    }

    a.button.extrasmall, button.extrasmall {
        font-size: 11px;
        margin: 0;
        padding: 2px;
    }

    a.button.small, button.small {
        font-size: 11px;
        margin: 0;
    }

    a.button.medium, button.medium {
        font-size: 13px;
    }

    a.button.large, button.large {
        font-size: 14px;
        padding: 8px 14px 9px 14px;
        margin: 0;
    }

    a.button.extra-large, button.extra-large {
        font-size: 18px;
        padding: 8px 14px 9px 14px;
        margin: 0;
    }

    button.lightgray, a.button.lightgray {
        background-color: #eee;
        color: #333;
    }

        button.lightgray:hover, a.button.lightgray:hover {
            background-color: #ccc;
        }


    a.button.large, button.large {
        font-size: 14px;
        padding: 8px 14px 9px 14px;
        margin: 0;
    }

    a.button.extra-large, button.extra-large {
        font-size: 18px;
        padding: 8px 14px 9px 14px;
        margin: 0;
    }

.colborder {
    padding-right: 24px;
    margin-right: 25px;
    border-right: 1px solid #ddd;
}

    .colborder > ul > li > a {
        text-decoration: underline;
    }

div.prepend-top, .prepend-top {
    margin-top: 1.5em;
}

div.append-bottom, .append-bottom {
    margin-bottom: 1.5em;
}


/*H*/

h3 {
    font-size: 1.5em;
    line-height: 1;
    margin-bottom: 1em;
}

/*Footer*/
#footer {
    width: 100%;
    min-height: 100px;
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid #ccc;
}

    #footer h3, #footer address, #footer dt {
        color: #666;
    }

    #footer li {
        color: #ccc;
        list-style-type: square;
    }

    #footer a {
        color: #666;
        text-decoration: none;
    }

        #footer a:hover {
            color: #000;
        }

@keyframes blink {
    0% {
        color: red;
    }

    100% {
        color: black;
    }
}

@-webkit-keyframes blink {
    0% {
        color: red;
    }

    100% {
        color: black;
    }
}

.blink {
    -webkit-animation: blink 0.5s linear infinite;
    -moz-animation: blink 0.5s linear infinite;
    -o-animation: blink 0.5s linear infinite;
    animation: blink 0.5s linear infinite;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

span.field-validation-error {
    color: red;
}



.current_page_item {
    /*background-color: #82b9ea;*/
    /*background-position: 0 -15px;*/
}

.current_page_item_dropdownItem {
    /*background-color: #82b9ea;*/
    /*background-position: 0 -15px;*/
}

.indent {
    margin-left: 5px;
}


/* Bootstrap overrides */

.nav, .pagination, .carousel, .panel-title a {
    cursor: pointer;
}

/* Added to fix Bootstrap 3 issue with Angular UI Bootstrap modal dialog*/
.modal {
    display: block;
    overflow: hidden;
    overflow-y: hidden;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #027FF4;
    border-color: #027FF4;
}

/*Customized bootstrap elements */

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #000;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #000;
}

@media (max-width: 767px) {

    .container > .navbar-collapse {
        margin-left: -5px !important;
    }

    .navbar .dropdown-header {
        color: #000;
    }

    .navbar .dropdown-menu a {
        color: #000;
    }
}

.navbar .navbar-toggle > .icon-bar {
    background-color: black;
}

.navbar-nav > li > a {
    color: #000;
}

.navbar-default > li > a {
    color: #000;
}

.navbar {
    /*background-color: #e5f5fd !important;*/
    /*background-image: url(/Content/img/background-top.png);*/
    /*border-bottom: none;*/
}

.navbar-inverse {
    /*background-color: #e5f5fd !important;*/
    /*background-image: url(/Content/img/background-top.png);*/
    /*background-repeat: repeat-x;*/
}

    .navbar-inverse .navbar-nav > .open > a,
    .navbar-inverse .navbar-nav > .active > a {
        /*background-color: #e5f5fd !important;*/
    }

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

.visible-desktop {
    display: inherit !important;
}

.modal-backdrop, .modal-backdrop.fade.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

/* ng-cloak */
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng.ng-cloak {
    display: none;
}

.novalidate {
    border-left: none !important;
}

input.ng-invalid, select.ng-invalid, input.ng-invalid-required, select.ng-invalid-required {
    border-left: 5px solid #E03930;
}

input.ng-valid, select.ng-valid, input.ng-valid-required, select.ng-valid-required {
    border-left: 5px solid #57A83F;
}

@media(min-width:768px) and (max-width:979px) {
    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }

    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }
}

@media(max-width:767px) {
    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }

    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: inherit !important;
    }

    den-print {
        display: none !important;
    }
}

@media(min-width:1200px) {
    .row {
        margin-left: -30px;
        *zoom: 1;
    }

        .row:before, .row:after {
            display: table;
            line-height: 0;
            content: "";
        }

        .row:after {
            clear: both;
        }

    /*Custom added by Ronny*/
    .container, .navbar-static-top .container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
        width: 1170px;
    }
}

@media screen and (max-width: 640px) {

    navbar-toggle {
        display: none;
    }

    #ng-view {
        padding-top: 90px;
    }

    .navbar-brand {
        font-size: 12pt;
    }

    .nav.navBarPadding {
        margin-left: -10px;
    }

    .nav > li > a {
        padding-right: 5px;
        padding-left: 5px;
    }
}

[class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 30px;
}

