﻿body {
}

#thirdNavigationBarOverlay {
    padding-top: 2px;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

#thirdNavigationBarOverlayLeft {
    width: 2em;
    margin-top: 6px;
    position: relative;
    display: inline-block;
    background: -moz-linear-gradient(left, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 1) 50%, rgba(242, 242, 242, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 1) 50%, rgba(242, 242, 242, 0) 100%);
    background: linear-gradient(to right, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 1) 50%, rgba(242, 242, 242, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#00f2f2f2', GradientType=1);
}

#thirdNavigationBarOverlayCenter {
    flex: 1 1 auto;
}

#thirdNavigationBarOverlayRight {
    width: 2em;
    margin-top: 6px;
    position: relative;
    display: inline-block;
    text-align: right;
    background: -moz-linear-gradient(left, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 1) 50%, rgba(242, 242, 242, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 1) 50%, rgba(242, 242, 242, 1) 100%);
    background: linear-gradient(to right, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 1) 50%, rgba(242, 242, 242, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f2f2f2', endColorstr='#f2f2f2', GradientType=1);
}

#thirdNavigationBar {
    width: 100%;
    height: 40px;
    top: 100px;
    display: block;
    border-bottom: 1px solid rgb(235, 235, 235);
    background-color: #f2f2f2;
    position: fixed;
    z-index: 2;
}

.thirdNavigationBarShow.errorState {
    background-color: #ffe8e4 !important;
}



#thirdNavigationBar ul {

    margin: 2px;
    position: relative;
    display: block;
    float: left;
    list-style-type: none;
    overflow: auto;
    white-space: nowrap;
    width: 100%;
    height: 46px; /* wenn Scrollbalken sichtbar, dann diesen nach unten schieben */
}


#thirdNavigationBar ul li {

    
    margin-top: 6px;
    position: relative;
    display: inline-block;
}

#thirdNavigationBar ul li div {

    padding-top: 0px;
    float: left;
    position: relative;
    display: inline-block;
}

#thirdNavigationBar ul li div.btn {

    padding-top: 0px;
    float: left;
    position: relative;
    display: inline-block;
}

#thirdNavigationBar ul li div span {
    font-weight: bold;
}


#thirdNavigationBar ul li:after {
    
    margin-left: 10px;
    margin-right: 10px;
    content: "";
    border-left-color: darkgray;
    border-left-style: solid;
    border-left-width: 1px;
}

/*Auf dem Smartphone*/

@media (pointer: none) and (max-width: 1320px) {
    #thirdNavigationBarOverlay {
        visibility: visible;
    }
}

@media (max-width: 767px) {
    #thirdNavigationBar {
        width: 100%;
        height: 40px;
        top: 50px;
        display: block;
        border-bottom: 1px solid rgb(235, 235, 235);
        background-color: #f2f2f2;
        position: fixed;
        z-index: 2;
        visibility: visible;
    }
}

@media (min-width: 1320px) {
    #thirdNavigationBarOverlay {
        visibility: hidden;
    }
}