@charset"UTF-8";

/*------------------------------------------------------------------
[Basic]

@license Copyright 2012-15 (c) RISE Ges.m.b.H.
 ____   ___  ____   _____
|  _ \  | | / ___| | ____|
| |_) | | | \___ \ |  _|
|  _ <  | |  ___) || |___
|_| \_\ |_| |____/ |_____|

RSL VNr.:       0.5.2.

Primary use:	Layout and Styling of Elements outside the content
				(Ground and Background Layout, Header,
				Primary- and Secondary Navigation, Footer)

Note:           FOR UPDATE AND FUTURE COMPATIBILITY:
				DO NOT EXCESSIVELY EDIT THIS FILE IN PROJECTS.
				FOR BRANDING AND LAYOUT CHANGES THERE EXIST SEPARATE
				FILES: "branding.css" and "customlayout.css"
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

1.	     Basic Styles
2.	     Branding / .branding
3.	     Navigation
3.1.     Navigation layouts
3.1.1.   Navigation left/right split / .nav-left-split/.nav-right-split
3.1.2.   Navigation fixed / .nav-fixed
3.1.3.   Navigation full height / .nav-full-height
3.2.     No-Style Navigation / .nav-no-style
3.3.     Navigation-bar / .nav
3.4.     Navigation-bar side / .nav.side
3.4.1.   Left side navigation / .nav-left-split .nav.side
3.4.2.   Right side navigation / .nav-right-split .nav.side
3.4.3    Compact side navigation / .nav-side-compact
3.4.3.2  Compact side search / .nav-side-compact .search
3.5.     Drop down navigation / .nav-item.drop-down
3.5.1.   Drop down Label style / .nav-label
3.5.2.   Drop down content
3.5.3.   Drop down pointer / .drop-down.drop-down-pointer
3.6.     Accordion navigation / .nav-item.accordion
3.7.     Tab navigation / .nav-item.tab
3.8.     Rounded Corner / .rounded-corner.nav
4.       Search
4.1.     Search Results Header / .search-results-header
4.2.     Search Results / .search-results
4.3.     Search Paginate / .search-paginate
4.4.     Search Footer / .search-footer
4.5.     Grouped-Search
5.       Breadcrumbs / #breadcrumbs
6.       Special Pages
7.       Footer / #footer
8.       Overlay / .overlay-wrapper
-------------------------------------------------------------------*/

/* [1. Basic Styles]
-------------------------------------------------------------------*/
html {
    height: 100%; /* =Note: Ensure that even with minimal content
                            the tag covers 100% of the viewport */
}

body {
    height: 100%; /* =Note: Ensure that even with minimal content
                            the tag covers 100% of the viewport */
    width: 100%;
}

a,
a:visited,
a:active,
a:hover {
    display: inline-block;
    cursor: pointer;
}

#container {
    position: relative;
    padding: 0px 14px;
}

#header {
    height: 74px;
}

/* [2. Branding / .branding]
-------------------------------------------------------------------*/
.branding .logo {
    text-indent: -999999px;
    outline: none;
    border: none;
    display: block;
}

#container .branding .logo {
    margin-left: 0px;
}

.nav .branding {
    width: 200px;
    height: 45px;
    float: left;
}

.nav .branding .logo {
    top: auto;
    left: auto;
    float: left;
    position: relative;
    height: 45px;
}

.nav.side .branding .logo {
    float: none;
    position: relative;
}

.nav .branding .toggle-nav-primary {
    float: right;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 13px;
}

/* [3. Navigation]
-------------------------------------------------------------------*/
.nav .nav-label {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    display: block;
    cursor: default;
}

.nav a.nav-label {
    cursor: pointer;
}

.nav a {
    outline: none;
}

.mobile-nav-control {
    display: none;
}

.tools-nav-padded {
    z-index: 5 !important;
    margin: 14px 5px 0 0;
}

/* [3.1. Navigation layouts]
-------------------------------------------------------------------*/
/* [3.1.1. Navigation left/right split
           .nav-left-split/.nav-right-split]
--------------------------------------------------------------------
=Note: .nav-left-split moves the content to the right and the
       navigation to the left.
       .nav-right-split moves the content to the left, the
       navigation is positioned on the right side of the page.     */

.nav-left-split:before,
.nav-right-split:before,
.nav-left-split:after,
.nav-right-split:after{
    content: " ";
    display: table;
}

.nav-left-split:after,
.nav-right-split:after{
    clear: both;
}

/* =Note: New width for the divs */
.nav-left-split > div:not(.nav),
.nav-right-split > div:not(.nav) {
    width: -webkit-calc(100% - 200px) !important;
    width: -moz-calc(100% - 200px) !important;
    width: calc(100% - 200px) !important;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#container .nav-right-split > div:not(.nav) {
    padding-right: 14px;
}

#container .nav-left-split > div:not(.nav) {
    padding-left: 14px;
}

.nav-left-split > div:not(.nav) {
    float: right;
}

.nav-right-split > div:not(.nav) {
    float: left;
}

.nav-left-split > .nav.side {
    float: left;
    padding: 0px !important;
}

.nav-right-split > .nav.side {
    float: right;
    padding: 0px!important;
}

/* [3.1.2. Navigation fixed / .nav-fixed]
--------------------------------------------------------------------
=Note: .nav-fixed positions the navigation sticky to the viewport */
.nav-fixed .nav.side {
    position: fixed;
    top: 0px;
}

.nav-fixed.nav-left-split .nav.side {
    left: 0px;
}

.nav-fixed.nav-right-split .nav.side {
    right: 0px;
}

/* =Note: Fixed horizontal navigation */
.nav-fixed .nav:not(.side) {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
}

/* =Note: Create space above the #container to avoid clipping
          the content by the overlapping fixed horizontal navigation   */
.nav-fixed .nav:not(.side) ~ #container {
    padding-top: 45px;
}
.nav-fixed .nav:not(.side).tabs ~ #container {
    padding-top: 86px;
}

/* =Note: Fixed horizontal navigation in combination with side navigation */
.nav-fixed.nav-left-split .nav.side {
    top: 45px;
}

.nav-fixed.nav-right-split .nav.side {
    top: 46px;
}

/* [3.1.3. Navigation full height / .nav-full-height]
--------------------------------------------------------------------
=Note: .nav-full-height renders the vertical navigation
       from top to bottom, spanning the whole page                */
.nav-full-height {
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

/* =Note: This element covers the complete page height
          and is the new navigation background  */
.nav-full-height:before {
    content: "";
    position: absolute;
    top: 0px;
    width: 199px;
    height: 100%;
    display: block;
}

.nav-full-height.nav-left-split:before {
    left: 0px;
    border-right: 1px solid rgba(0,0,0,0.2);
}

.nav-full-height.nav-right-split:before {
    right: 0px;
    border-left: 1px solid rgba(0,0,0,0.2);
}

.nav-full-height .nav.side {
    background: transparent;
}

.nav-full-height #container {
    margin-bottom: 35px;
}

.nav-full-height #footer {
    position: absolute;
    display: block;
    bottom: 0px;
    left: 0px;
    height: 35px;
    float: none;
    z-index: -1;
    width: 100% !important;
}

.nav-full-height #footer ul {
    padding-bottom: 0px;
}

.nav-full-height.nav-left-split #footer ul {
    padding-left: 200px;
}

.nav-full-height.nav-right-split #footer ul {
    padding-right: 200px;
}

/* [3.2. No-Style Navigation / .nav-no-style]
-------------------------------------------------------------------*/
.nav.nav-no-style {
    background: none;
    border-color: transparent;
    color: #222222;
}

.nav.nav-no-style .nav-label {
    color: #222222 !important;
    border-right-color: transparent !important;
}

/* [3.3. Navigation-bar / .nav]
-------------------------------------------------------------------*/
.nav {
    height: 45px;
    position: relative;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
    z-index: 3;
}

.nav:not(.side) {
    z-index: 4;
}

.nav > .nav-list > .nav-item {
    float: left;
    position: relative;
}

.nav > .nav-list > .nav-item.right {
    float: right;
}

.nav > .nav-list > .nav-item.current > .nav-label {
    background: rgba(0,0,0,0.3);
}

/* =Note: First level navigation label */
.nav  > .nav-list > .nav-item > .nav-label {
    cursor: default;
    display: block;
    color: rgb(255,255,255);
    font-size: 13px;
    padding: 7px 15px 6px 15px;
    text-decoration: none;
    outline: none;
    border-right: 1px solid rgba(255,255,255,0.3);
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    min-height: 30px;
    float: left;
    line-height: 27px;
    white-space: nowrap;
}

.nav > .nav-list > .nav-item:first-child > .nav-label{
    border-left: 1px solid transparent;
}

.nav  > .nav-list > .nav-item > a.nav-label {
    cursor: pointer;
}

/* =Note: First level navigation label - hover*/
.nav > .nav-list > .nav-item.hover > .nav-label {
    color: rgb(80,80,80);
    background: rgb(255,255,255);
    position: relative;
    z-index: 3;
    border-top-color: rgb(180,180,180);
    border-right-color: transparent;
    border-bottom-color: rgb(180,180,180);
    box-shadow: none;
}

.nav > .nav-list > .nav-item.hover:first-child > .nav-label{
    border-left: 1px solid rgb(180,180,180);
}

/* =Note: For nav items placed on the right side */
.nav > .nav-list > .nav-item.right > .nav-label {
    border-left: 1px solid rgba(0,0,0,0.15);
    border-right: none;
}

.nav .nav-list > .nav-item > .nav-label > .fa,
.nav .nav-list > .nav-item > .nav-label > .fu,
.nav .nav-list > .nav-item > .nav-label > img {
    margin-right: 6px;
    font-size: 14px;
}

.nav > .nav-list > .nav-item .nav-label .fa {
    opacity: 0.5;
}

/* [3.4. Navigation-bar side / .nav.side]
-------------------------------------------------------------------*/
.nav.side {
    margin: 0;
    width: 200px !important;
    height: auto;
    border: none;
    z-index: 3;
}

.nav.side.margin-top {
    margin-top: 15px;
}

.nav.side > .nav-list > .nav-item {
    float: none;
}

.nav.side > .nav-list > .nav-item > .nav-label {
    float: none;
    border-bottom-color:  rgba(0,0,0,0.15) !important;
    border-left-color: transparent;
    border-right-color: transparent;
    line-height: 29px;
}

.nav.side > .nav-list > .nav-item:first-child > .nav-label {
    margin-left: 0px;
    border-top-color:  rgba(0,0,0,0.15) !important;
}

.nav.side > .nav-list > .nav-item.hover > .nav-label {
    border-right: 1px solid rgb(180,180,180);
    border-left: 1px solid rgb(180,180,180);
    box-shadow: none;
}

/* [3.4.1. Left side navigation / .nav-left-split .nav.side]
-------------------------------------------------------------------*/
.nav.side > .nav-list > .nav-item > .nav-label {
    padding-right: 26px;
    padding-left: 12px;
}

.nav.side > .nav-list > .nav-item.drop-down > .nav-label:before {
    right: 8px;
    top: 18px;
    border-color: transparent transparent transparent rgb(180,180,180);
    /* =Note: Arrow pointing to the right */
}

.nav.side > .nav-list > .nav-item.drop-down.hover > .nav-label {
    border-right: 1px solid rgb(230,230,230);
}

.nav.side > .nav-list > .nav-item.drop-down.hover:first-child > .nav-label {
    margin-left: 0px;
}

/* =Note: Drop-down Content */
.nav.side .nav-item.drop-down > .nav-list {
    left: 100% !important;
    right: auto !important;
    top: 0px !important;
    border-top: 1px solid rgb(180,180,180);
    margin-left: -1px;
}

/* [3.4.2. Right side navigation / .nav-right-split .nav.side]
-------------------------------------------------------------------*/
.nav-right-split .nav.side > .nav-list > .nav-item > .nav-label {
    padding-left: 26px;
    padding-right: 15px;
}

.nav-right-split .nav.side > .nav-list > .nav-item.drop-down > .nav-label:before {
    left: 8px;
    top: 18px;
    border-color: transparent rgb(180,180,180) transparent transparent;
    /* =Note: Arrow pointing to the left */
}

.nav-right-split .nav.side > .nav-list > .nav-item.drop-down.hover > .nav-label {
    border-left: 1px solid rgb(230,230,230);
}

.nav-right-split .nav.side > .nav-list > .nav-item.drop-down.hover:first-child > .nav-label{
    margin-left: 0px;
}

/* =Note: Drop-down content */
.nav-right-split .nav.side .nav-item.drop-down > .nav-list {
    right: 100% !important;
    left: auto !important;
    top: -1px !important;
    border-top: 1px solid rgb(180,180,180);
    margin-right: -1px;
}

.nav-right-split .nav .user .drop-down ul {
    right: 90px;
}

/* [3.4.3  Compact side navigation / .nav-side-compact]
---------------------------------------------------------------------
=Note:  Enable compact side navigation only for browser windows
        larger than 700px                                           */

@media all and (min-width: 700px) {
    .nav-side-compact .nav.side {
        width: 40px !important;
    }

    .nav-side-compact.nav-left-split:before,
    .nav-side-compact.nav-right-split:before {
        width: 39px;
    }

    /* =Note: New width for the divs */
    .nav-side-compact.nav-left-split > div:not(.nav),
    .nav-side-compact.nav-right-split > div:not(.nav) {
        width: -webkit-calc(100% - 40px) !important;
        width: -moz-calc(100% - 40px) !important;
        width: calc(100% - 40px) !important;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .nav-side-compact .nav.side > .nav-list > .nav-item > .nav-label {
        text-indent: -1000px;
        overflow: hidden;
    }

    .nav-side-compact.nav-right-split .nav.side > .nav-list > .nav-item > .nav-label {
        overflow: hidden;
        padding-left: 12px;
    }

    .nav-side-compact .nav.side > .nav-list > .nav-item > .nav-label:before {
        display: none;
    }

    .nav-side-compact .nav.side > .nav-list > .nav-item > .nav-label i {
        text-indent: 1000px;
        margin-right: 15px;
    }

    .nav-side-compact .nav.side > .nav-list > .nav-item > .nav-label .badge {
        position: absolute;
        text-indent: 0;
        top: 4px !important;
        left: 19px;
    }

    .nav-side-compact .nav.side > .nav-list > .nav-item.hover > .nav-label {
        width: 163px;
        border-color: #B4B4B4 !important;
        box-shadow: 0 2px 6px 0 rgba(1, 0, 0, 0.2);
    }

    .nav-side-compact.nav-right-split .nav.side > .nav-list > .nav-item.hover > .nav-label {
        margin-left: -151px;
    }

    .nav-side-compact .nav.side > .nav-list > .nav-item.drop-down.hover > .nav-label {
        border-color: transparent !important;
        width: 162px;
        box-shadow: none;
    }

    .nav-side-compact .nav.side > .nav-list > .nav-item.hover > .nav-list {
        padding-top: 44px !important;
        margin-top: -1px;
    }

/* [3.4.3.2  Compact side search / .nav-side-compact .search]
-------------------------------------------------------------------*/
    .nav-side-compact .nav.side > .search:not(:hover) {
        margin-left: -160px;
        background: transparent;
        border-color: transparent;
    }

    .nav-side-compact.nav-right-split .nav.side > .search:hover {
        margin-left: -160px;
    }

    .nav-side-compact .nav.side > .search:not(:hover) input {
        visibility: hidden;
    }

    .nav-side-compact .nav.side > .search:not(:hover) input{
        background: transparent;
    }

    .nav-side-compact .nav.side > .search:not(:hover) i {
        -moz-osx-font-smoothing: grayscale;
    }

    .nav-side-compact .nav.side > .search input {
        border-color: #B4B4B4 !important;
    }
}

/* [3.5. Drop down navigation / .nav-item.drop-down]
-------------------------------------------------------------------*/
.nav .nav-item.drop-down {
    position: relative;
}

.nav.side .nav-item.drop-down:first-child > .nav-list {
    top: 0px !important;
}

/* [3.5.1. Drop down Label style / .nav-label]
-------------------------------------------------------------------*/
/* =Note: Light grey line separating the label from the drop-down content */
.nav:not(.side) .nav-item.drop-down.hover > .nav-label:after {
    content: " ";
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 0px;
    height: 1px;
    background: rgb(230,230,230);
    z-index: 1;
}

.nav:not(.side) .nav-item.drop-down.hover > .nav-label {
    height: 30px;
}

/* =Note: add small white line to cover lower edge of nav-label */
.nav:not(.side) .nav-item.drop-down.hover > .nav-label:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    left: 0;
    bottom: -1px;
    background: #fff;
}

.nav .nav-item.drop-down > .nav-label {
    padding-right: 26px; /* =Note: Space for the arrow */
}

/* =Note: The arrow pointing to the dropdown content*/
.nav .nav-item.drop-down > .nav-label:before {
    content: "";
    position: absolute;
    display: block;
    top: 20px;
    right: 11px;
    width: 0px;
    height: 0px;
    border-width: 5px;
    border-color: rgba(255,255,255,0.5) transparent transparent;
    border-style: solid;
}

.nav .nav-item.drop-down.hover > .nav-label:before {
    border-color: rgb(180,180,180) transparent transparent;
}

/* [3.5.2. Drop down content]
---------------------------------------------------------------------
=Note: The element that is being dropped down, Nav-label,
       secondary- and tertiary navigation etc.                     */
.nav .nav-item.drop-down > .nav-list {
    display: none;
    visibility: hidden;
    position: absolute;
    opacity: 0;
    background: rgb(255,255,255);
    color: rgb(0,0,0);
    border: 1px solid rgb(180,180,180);
    padding: 5px;
    top: 45px;
    z-index: 2;
    margin-left: -1px;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(1, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 6px 0px rgba(1, 0, 0, 0.2);
    box-shadow: 0px 2px 6px 0px rgba(1, 0, 0, 0.2);
    /* =Note: Fade-in animation */
    -webkit-transition: opacity 0.3s;
    -moz-transition-: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

/* =Note: Define minimum with corresponding to the buttons width */
.nav:not(.side) .nav-item.drop-down > .nav-list {
    min-width: -webkit-calc(100% + 2px);
    min-width: -moz-calc(100% + 2px);
    min-width: calc(100% + 2px);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.nav:not(.side) .nav-item.drop-down:first-child > .nav-list {
    margin-left: 0px;
}

.nav .nav-item.drop-down.hover > .nav-list {
    opacity: 1;
    visibility: visible;
    display: block;
}

.nav .nav-item.drop-down.horizontal.hover > .nav-list {
    display: table;
}

.nav .nav-item.drop-down > .nav-list > .nav-item {
    min-width: 160px;
}

/* =Note: Place the secondary nav items beside each other*/
.nav .nav-item.drop-down.horizontal > .nav-list > .nav-item {
    display: table-cell;
    padding-right: 1px;
}

/* =Note: Labels in secondary navigation */
.nav .nav-item.drop-down > .nav-list > .nav-item .nav-label{
    color: rgb(34,34,34);
    padding: 4px 10px;
    display: block;
    border-bottom: none;
    margin: 1px 0;
}

.nav .nav-item.drop-down > .nav-list > .nav-item a.nav-label:hover {
    background: rgba(170,170,170,0.1);
}

.nav .nav-item.drop-down > .nav-list .current > .nav-label {
    background: rgba(170,170,170,0.1);
}

/* =Note: Secondary navigation label */
.nav .nav-item.drop-down > .nav-list > .nav-item > .nav-label {
    font-weight: bold;
}

/* =Note: Tertiary navigation label */
.nav .nav-item.drop-down > .nav-list > .nav-item > .nav-list > .nav-item > .nav-label {
    padding-left: 20px;
}

/* [3.5.3. Drop down pointer / .drop-down.drop-down-pointer ]
---------------------------------------------------------------------
=Note: This is an alternative drop-down design, where the dropped
       item has a tooltip style                                    */

.nav .nav-item.drop-down.drop-down-pointer .nav-label {
    display: block;
    border-bottom: none !important;
}

.nav .nav-item.drop-down.drop-down-pointer > .nav-label {
    border: none !important;
    background: none;
    padding-right: 15px;
    box-shadow: none;
}

.nav .nav-item.drop-down.drop-down-pointer > .nav-label > .fa  {
    font-size: 16px;
    line-height: 31px;
}

.nav .nav-item.drop-down.drop-down-pointer.hover > .nav-label {
    color: #ffffff;
}

.nav .nav-item.drop-down.drop-down-pointer > .nav-list {
    margin-top: 2px;
    border: 1px solid rgb(200,200,200);
}

.nav .nav-item.drop-down.drop-down-pointer > .nav-label:before  {
    content: "";
    position: absolute;
    display: none;
    top: 32px;
    left: -8px;
    right: auto;
    margin-left: 50%;
    width: 0px;
    height: 0px;
    border-width: 8px;
    border-color: transparent transparent rgb(200,200,200);
    border-style: solid;
}

.nav .nav-item.drop-down.drop-down-pointer.hover > .nav-label:before  {
    display: block;
}

.nav .nav-item.drop-down.drop-down-pointer > .nav-label:after,
.nav .nav-item.drop-down.drop-down-pointer.hover > .nav-label:after {
    display: none;
}

.nav .nav-item.drop-down.drop-down-pointer .timestamp {
    color: rgb(150,150,150);
    font-size: 10px;
}

/* [3.6. Accordion navigation / .nav-item.accordion]
---------------------------------------------------------------------
=Note: The accordion nav requires the navigation to be vertical
       .nav.side. Furthermore the firstlevel item has to ba a link */

.nav .nav-item.accordion {
    position: relative;
}

/* =Note: Arrow pointing at the label */
.nav .nav-item.accordion > .nav-label:before {
    content: "";
    position: absolute;
    display: block;
    top: 18px;
    right: 13px;
    width: 0px;
    height: 0px;
    border-width: 5px;
    border-color: transparent rgb(180,180,180) transparent transparent;
    border-style: solid;
}

.nav .nav-item.accordion.current > .nav-label {
    position: relative;
    z-index: 3;
    border-bottom-color: transparent !important;
}

/* =Note: arrow pointing down at the content */
.nav .nav-item.accordion.current > .nav-label:before {
    content: "";
    position: absolute;
    display: block;
    top: 20px;
    right: 11px;
    width: 0px;
    height: 0px;
    border-width: 5px;
    border-color: rgb(180,180,180) transparent transparent;
    border-style: solid;
}

.nav .nav-item.accordion > .nav-list {
    background: rgba(0,0,0,0.3);
}

/* =Note: 2nd level nav */
.nav .nav-item.accordion > .nav-list {
    display: block;
    overflow: hidden;
    /* =Note: Accordion animation */
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    -o-transition: height 0.3s;
    transition: height 0.3s;
}

.nav .nav-item.accordion:not(.current) > .nav-list {
    height: 0px !important;
}

.nav .nav-item.accordion.current > .nav-list {
    visibility: visible;
}

.nav .nav-item.accordion > .nav-list > .nav-item:first-child {
    padding-top: 10px;
}
.nav .nav-item.accordion > .nav-list > .nav-item:last-child {
    padding-bottom: 10px;
}

.nav .nav-item.accordion > .nav-list > .nav-item .nav-label {
    border-bottom: none;
    color: rgba(255,255,255,0.7);
    padding: 5px 24px;
    margin: 1px 0;
}

.nav .nav-item.accordion > .nav-list > .nav-item > .nav-label {
    color: rgba(255,255,255,1);
    text-shadow: 1px 1px rgba(0,0,0,0.5);
    padding: 6px 14px;
}

.nav .nav-item.accordion > .nav-list .current > .nav-label ,
.nav .nav-item.accordion > .nav-list .nav-label:hover {
    background: rgba(0,0,0,0.2);
}

/* =Note: 3rd level nav */
.nav .nav-item.accordion > .nav-list > .nav-item > .nav-list {
    letter-spacing: 0.1px;
    text-shadow: 1px 1px rgba(0,0,0,0.5);
}

.nav .nav-item.accordion > .nav-list > .nav-item > .nav-list > .nav-item > .nav-label {
    padding: 6px 24px;
}

/* [3.7. Tab navigation / .nav.tabs]
---------------------------------------------------------------------
=Note: The tab nav requires the navigation to be horizontal
       Furthermore the firstlevel item has to ba a link */

.nav.tabs {
    /* =Note: TODO: Calculate dynamic height via JS */
    margin-bottom: 82px !important;
}

.nav.tabs .nav-item.tab {
    position: static;
}

.nav.tabs .nav-item.tab.current:first-child > .nav-label {
    margin-left: 0px;
}

.nav.tabs .nav-item.tab.hover > .nav-label {
    border-right-color: rgb(180,180,180);
}

.nav.tabs .nav-item.tab.current > .nav-label {
    border-color: rgb(180,180,180);
    border-bottom-color: rgb(230,230,230);
    color: rgb(80,80,80);
    z-index: 2;
    box-shadow: none;
    background: #ffffff;
}

.nav.tabs .nav-item.tab > .nav-list {
    display: none;
}

.nav.tabs .nav-item.tab.current .nav-list {
    display: block;
    position: absolute;
    left: 0px !important;
    right: 0px !important;
    top: 45px;
    background: #ffffff;
    height: 38px;
    background: rgb(255,255,255);
    color: rgb(0,0,0);
    border: 1px solid rgb(180,180,180);
    border-top: none;
}

.nav-fixed .nav.tabs .nav-item.tab.current > .nav-list {
    border-left: none;
    border-right: none;
}

.nav.tabs .nav-item.tab.current > .nav-list > .nav-item .nav-label {
    float: left;
    height: 100%;
    padding: 5px 10px;;
    margin: 7px 10px;
    border-bottom: none;
    color: rgb(120,120,120);
}

.nav.tabs .nav-item.tab.current > .nav-list > .nav-item .nav-label:hover,
.nav.tabs .nav-item.tab.current > .nav-list .nav-item.current > .nav-label {
    color: rgb(34,34,34);
    background: rgba(170,170,170,0.1);
}

.nav.tabs .nav-item.tab.current > .nav-list > .nav-item.current > .nav-list {
    display: block !important;
    top: 38px;
    border-top: 1px solid rgb(230,230,230);
    left: -1px !important;
    right: -1px !important;
    background: rgb(252,252,252);
}

/* [3.8. Rounded Corner]
---------------------------------------------------------------------
=Note: Apply border-radius to navigation elements,
       if they have the class '.rounded-corner'                    */

.rounded-corner.nav{
    border-radius: 4px;
}

/* =Note: Remove border radius at the bottom for tabbed navigation */
.rounded-corner.nav.tabs {
    border-radius: 4px 4px 0 0;
}

.rounded-corner.nav > .nav-list > .nav-item:first-child {
    border-radius: 0 0 4px 4px;
}

.rounded-corner.nav > .nav-list > .nav-item:first-child.hover {
    border-radius: 0 0 4px 4px;
}

.rounded-corner.nav > .nav-list > li.nav-item:first-child > .nav-label {
    border-radius: 4px 0 0 4px;
}

/* =Note: Remove border radius at the bottom for tabbed navigation */
.rounded-corner.nav.tabs > .nav-list > .nav-item:first-child > .nav-label {
    border-radius: 4px 0 0 0;
}

/* =Note: Round the top left border for the first nav-item, if drop-down is visible */
.rounded-corner.nav > .nav-list > li.hover.nav-item.drop-down:first-child > .nav-label {
    border-radius: 4px 0 0 0;
}

.rounded-corner.nav.side > .nav-list > .nav-item {
    border-radius: 0;
}

/* =Note: Border radius for the first nav-item */
.rounded-corner.nav.side > .nav-list > .nav-item:first-child,
.rounded-corner.nav.side > .nav-list > .nav-item:first-child > .nav-label{
    border-radius: 4px 4px 0 0;
}

/* =Note: Border radius for the last nav-item */
.rounded-corner.nav.side > .nav-list > .nav-item:last-child,
.rounded-corner.nav.side > .nav-list > .nav-item:last-child > .nav-label{
    border-radius: 0 0 4px 4px;
}

/* =Note: Round only the left top border for the first nav-item in the left side navigation, if drop-down is visible */
.rounded-corner.nav-left-split .nav.side > .nav-list > .nav-item.drop-down.hover:first-child > .nav-label {
    border-radius: 4px 0px 0 0;
}

/* =Note: Round only the bottom left border for the last nav-item in the left side navigation, if drop-down is visible */
.rounded-corner.nav-left-split .nav.side > .nav-list > .nav-item.drop-down.hover:last-child > .nav-label {
    border-radius: 0 0 0px 4px;
}

/* =Note: Round only the top right border for the first nav-item in the right side navigation, if drop-down is visible */
.rounded-corner.nav-right-split .nav.side > .nav-list > .nav-item.drop-down.hover:first-child > .nav-label {
    border-radius: 0px 4px 0 0;
}

/* =Note: Round only the bottom right border for the last nav-item in the right side navigation, if drop-down is visible */
.rounded-corner.nav-right-split .nav.side > .nav-list > .nav-item.drop-down.hover:last-child > .nav-label {
    border-radius: 0 0 4px 0;
}

/* =Note: Remove border radius of last accordion .nav-item if content is open */
.rounded-corner.nav.side > .nav-list > .nav-item.accordion:last-child.current,
.rounded-corner.nav.side > .nav-list > .nav-item.accordion:last-child.current > .nav-label {
    border-radius: 0px;
}

/* =Note: Border radius for the content of the last accordion item */
.rounded-corner.nav.side > .nav-list > .nav-item.accordion:last-child.current > .nav-list {
    border-radius: 0 0 4px 4px;
}

/* [4. Search]
-------------------------------------------------------------------*/
.search {
    padding: 10px;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 44px;
    width: 200px;
}

.search .search-input-wrapper .search-input {
    width: 100%;
    height: 24px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid transparent;
    padding-right: 25px;
}

.search .search-input-wrapper a {
    color: rgb(200,200,200);
    width: 14px;
    height: 14px;
    padding: 3px 3px;
    display: inline-block;
    border: none;
    position: absolute;
    top: 11px;
    right: 11px;
}

.search .search-results-wrapper {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    background: rgb(255,255,255);
    border: 1px solid #d6d6d6;
    border-left-width: 0;
    border-top-width: 0;
    top: 0;
    left: 100%;
    z-index: 2;

    -webkit-box-shadow: 6px 0 7px -4px rgba(0, 0, 0, 0.2), 1px 6px 7px -4px rgba(0, 0, 0, 0.2);
    box-shadow: 6px 0 7px -4px rgba(0, 0, 0, 0.2), 1px 6px 7px -4px rgba(0, 0, 0, 0.2);

    /* =Note: Fade-in animation */
    -webkit-transition: opacity 0.3s;
    -moz-transition-: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    min-width: 260px;
}

.search.right .search-results-wrapper {
    right: 0px;
    left: auto;
    top: 48px;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(1, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 6px 0px rgba(1, 0, 0, 0.2);
    box-shadow: 0px 2px 6px 0px rgba(1, 0, 0, 0.2);
    border-left-width: 1px;
    border-top-width: 1px;
}

.search-results-title{
    padding: 15px 10px;
    font-size: 11px;
    position: relative;
}

.search-results-header {
    position: relative;
    font-weight: bold;
}

.search-results,
.search-results-item {
    width: 100%;
}

.search-results-title .close {
    position: absolute;
    right: 5px;
    top: 14px;
    border-bottom: none !important;
}

.search-results-title .close .fa {
    font-size: 16px;
    line-height: 14px;
    margin-right: 0px;
}

/* [4.1. Search Results Header / .search-results-header ]
-------------------------------------------------------------------*/
.search-results-header ul{
    text-transform: uppercase;
    font-size: 10px;
    display: table;
    letter-spacing: 0.2px;
}

.search-results-wrapper .cell {
    padding: 2px 10px;
    line-height: 20px;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-results-header h2 {
    display: inline-block;
    margin: 5px 0 5px 10px;
    font-size: 16px;
}

.search-results-header .badge {
    float: right;
    margin: 6px 2px 0 0;
}

/* [4.2. Search Results Item / .search-results-item ]
-------------------------------------------------------------------*/
.search-results-item {
    display: table;
}

.search-results-item .cell {
    padding: 2px 10px;
    line-height: 20px;
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-results-item .cell ul > .cell {
    border-left-color: rgba(0, 0, 0, 0);
    display: block;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
   
}

.search-results .highlight-search-string {
    font-weight: bold;
}

.search-results .search-results-item:last-child {
    border-bottom: none;
}

.search-results .search-results-item.active {
    position: relative;
}

/* =Note: Arrow pointing to the right */
.search-results .search-results-item.active:before {
    border-style: solid;
    border-width: 4px;
    content: "";
    height: 0;
    position: absolute;
    right: 1px;
    top: 50%;
    width: 0;
    margin-top: -4px;
}

/* =Note: Border-Top for active item */
.search-results .search-results-item.active:after {
    content: " ";
    position: absolute;
    left: 0px;
    top: -1px;
    width: 100%;
    height: 1px;
    background-color: rgb(245, 234, 166);
    background-color: rgba(0,0,0,0.2);
}

/* =Note: extra spacing for last table item (optional) */
.search-results-header .cell:last-child,
.search-results-item .cell:last-child {
    padding-right: 25px;
}

/* [4.3. Search Paginate / .search-paginate ]
-------------------------------------------------------------------*/
.search-results-paginate {
    display: table;
    width: 100%;
}

.search-results-paginate .button{
    margin: 0 2px;
    padding: 0px 7px;
    line-height: 20px;
}

.search-results-wrapper .button .fa {
    font-size: 14px;
    line-height: 16px;
    margin-right: 0px;
}

.search-results-paginate .paginate-control-back,
.search-results-paginate .paginate-control-pages,
.search-results-paginate .paginate-control-front {
    display: table-cell;
    padding: 5px 5px;
}

.search-results-paginate .paginate-control-back {
    text-align: left;
}

.search-results-paginate .paginate-control-pages {
    text-align: center;
}

.search-results-paginate .paginate-control-pages li {
    display: inline-block;
    text-align: center;
}

.search-results-paginate .paginate-control-front {
    text-align: right;
}

/* [4.4. Search Footer / .search-footer ]
-------------------------------------------------------------------*/
.search-results-footer {

}

/* [4.5. Grouped-Search ]
-------------------------------------------------------------------*/
section .search-results-header {
    background: rgba(0,0,0,0.1);
}

section .search-results ul {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px 0;
}

section:last-of-type .search-results ul {
    border-bottom-color: rgba(0,0,0,0);
}

section .search-results .search-results-item {
    background: rgb(255,255,255) !important;
    border-bottom: 0 !important;
    padding: 5px 10px;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* [5. Breadcrumbs / #breadcrumbs]
-------------------------------------------------------------------*/
#breadcrumbs {
    padding-top: 5px;
    font-size: 11px;
}

#breadcrumbs ol {
    margin-top: 7px;
    padding-left: 0px;
}

#breadcrumbs li {
    display: inline;
    position: relative;
    display: inline-block;
}

#breadcrumbs li:after {
    content: "\f105";
    color: rgb(150,150,150);
    font-family: FontAwesome;
    font-size: 12px;
    padding-left: 8px;
    padding-right: 4px;
}

#breadcrumbs li:last-child:after {
    display: none;
}

/* [6. Special Pages ]
-------------------------------------------------------------------*/
.page-404,
.page-500,
.page-login,
.page-error {
    width: 500px;
    padding: 150px 0;
    margin: 0px auto;
}

.page-500 {
    width: 550px;
}

.page-error {
    padding-top: 100px;
    padding-bottom: 100px;
    width: 600px;
}

.page-error .column:first-child {
    width: 33%;
}

.page-error .column:last-child {
    width: 65%;
}

.page-login {
    text-align: center;
    width: 240px;
    padding-top: 80px;
}

.page-login .app-logo {
    height: 60px;
    width: 162px;
}

.page-login .whiteboard{
    padding: 18px 10px;
    margin-top: 30px;
}

.page-login .whiteboard .medium-input {
    width: 170px;
    margin: 8px 0;
}

.page-login .whiteboard .button {
    margin: 10px 0;
}

.page-404 .number,
.page-500 .number {
    font-size: 120px;
    font-weight: 300;
    line-height: 120px;
    letter-spacing: -5px;
    text-align: right;
    padding-right: 30px;
    color: rgba(0,0,0,0.15);
}

.page-error .x-large,
.page-error .large {
    font-size: 220px;
    color: rgb(230,230,230);
    text-align: center;
}

.page-error .large {
    font-size: 170px;
}

.page-error .large i {
    vertical-align: top;
}

/* [7. Footer / #footer]
-------------------------------------------------------------------*/
#footer ul{
    padding-bottom: 15px;
    width: 210px;
    margin: 0 auto;
    height: 29px;
}

#footer .brand {
    display: block;
    text-indent: -9999px;
    overflow: hidden;
    outline: none;
    float: left;
    margin-left: 25px;
    border: none;
}

#footer li:first-child .brand{
    margin-left: 0px;
}

/* [8. Overlay / .overlay-wrapper ]
-------------------------------------------------------------------*/
.overlay-wrapper {
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    height: 100%;
}

.overlay-wrapper iframe,
.overlay-wrapper embed,
.overlay-wrapper .cannot-display-content,
.overlay-wrapper pre,
.overlay-wrapper video,
.overlay-wrapper audio,
.overlay-wrapper img {
    max-width: 80%;
    max-height: 75%;
    position: absolute;
    /* =Note: fallback positions*/
    top: 10%;
    left: 10%;
}

.overlay-wrapper iframe,
.overlay-wrapper embed,
.overlay-wrapper .cannot-display-content,
.overlay-wrapper pre,
.overlay-wrapper video,
.overlay-wrapper audio,
.overlay-wrapper img:empty {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.overlay-wrapper pre {
    background-color: #FFFFFF;
    color: #000000;
    overflow: auto;
}

.overlay-control {
    position: absolute;
    top: 50%;
}

.overlay-control.back {
    left: 15px;
}

.overlay-control.forward {
    right: 15px;
}

.overlay-control.close {
    right: 1em;
    top: 1em;
}

.overlay-footer {
    bottom: 20px;
    padding: 0 0 10px;
    position: absolute;
    width: 100%;
}

.overlay-footer > ul li {
    display: inline-block;
}

.overlay-title {
    position: absolute;
    text-align: center;
    top: 1em;
    width: 100%;
}

.overlay-actions {
    position: absolute;
    left: 50%;
    left: calc(50% + 10px); /* =Note: 10px = margin from buttons, pure eye candy */
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);

    padding-bottom: 10px;
    bottom: -100%;
}

.overlay-actions li:last-child button,
.overlay-actions li:last-child .button {
    margin: 0 !important;
}