﻿/*####___________________ BODY ___________________####*/
body {
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    border-collapse: collapse;
}

/*####___________________ HEADER ___________________####*/
div.StaticHeader {
    top: 0px;
    position: fixed;
    width: 100%;
    height: 120px;
    color: black;
    z-index: 10;
    background: white;
}

div.StaticMainHeader {
    height: 80px;
    position: relative;
}

div.StaticSubHeader {
    height: 40px;
    position: relative;
    color: white;
    background: #1c58b7;
}

td.StaticNavigation {
}

td.StaticLogo {
    height: 60px;
    width: 60px;
    background-image: url('Images/logo.png');
    background-size: 54px;
    background-repeat: no-repeat;
    background-position: center;
}

td.StaticHeader {
    width: 120px;
}


/*####___________________ MAIN ___________________####*/
div.PageMain {
    top: 120px;
    position: absolute;
    width: 100%;
}

/*CONTENT*/
div.PageContent {
    margin: 10px;
}


.Text_Header {
    font-weight: bold;
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 4px;
    padding: 0px;
}

.Text_SubHeader {
    font-weight: bold;
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 2px;
    padding: 0px;
}

/*####___________________ BUTTON ___________________####*/
.ASP_Button {
    background-color: #1c58b7;
    cursor: pointer;
    border: 2px solid #1c58b7;
    color: white;
    height: 30px;
    font-size: 14px;
    margin-top: 2px;
    margin-right: 2px;
}

    .ASP_Button:hover {
        background-color: #1c58b7;
        /*border: 2px solid orange;*/
        color: orange;
    }

    .ASP_Button[disabled] {
        cursor: default;
        background-color: lightgray;
        border: 2px solid lightgray;
    }

        .ASP_Button[disabled]:hover {
            color: white;
        }


/*####___________________ NaviButton ___________________####*/
span.NaviButton {
    border: 2px solid #1c58b7;
    border-radius: 6px;
    background: white;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    color: black;
    cursor: pointer;
}

    span.NaviButton:hover {
        background: #1c58b7;
        color: white;
    }

/*####___________________ TABLE ___________________####*/
table.RelativeTable {
    width: 100%;
    border-collapse: collapse;
}


/*####___________________ OVERVIEW ___________________####*/
* [OverviewRow='HEADER'] {
    background: white;
    font-weight: bold;
    border-bottom: 2px solid #1c58b7;
    border-top: 2px solid #1c58b7;
}


* [OverviewRow] > th {
    text-align: left;
    padding: 6px;
    font-size: 16px;
}

    * [OverviewRow] > th[onclick] {
        cursor: pointer;
    }

        * [OverviewRow] > th[onclick]:hover {
            background: #1c58b7;
            color: white;
        }

* [OverviewRow] > td {
    padding: 6px;
}

* [OverviewRow='ROW'], * [OverviewRow='ALTERNATINGROW'] {
    border-bottom: 1px solid #1c58b7;
}

tr[OverviewRow][onclick] {
    cursor: pointer;
}

* [OverviewRow='ROW'] {
    background: white;
}

* [OverviewRow='ALTERNATINGROW'] {
    background: white;
}

    * [OverviewRow='ROW']:hover, * [OverviewRow='ALTERNATINGROW']:hover {
        background-color: lightgray;
    }

.HighlightedText {
    color: blue;
}

*[sorted] {
    background-color: #1c58b7;
    color: white;
}

*[sorted='ASC']::before {
    content: '\25BC\00a0';
}

*[sorted='DESC']::before {
    content: '\25B2\00a0';
}


/**/
@media (max-width: 600px) {
    td.StaticLogo {
        /*display: none;*/
    }

    div.StaticSubHeader span {
        display: none;
    }
}









/*####___________________ TOOLSTRIP ___________________####*/

.ToolStrip {
    display: flex;
    align-items: center;
}



/*####___________________ HAMBURGER MENUE ___________________####*/
.HamburgerMenue {
    position:fixed;
    top:120px;
    width: auto;
    display: none;
    background-color: #f1f3f4;
    border-right: 2px solid #1c58b7;
    border-bottom: 2px solid #1c58b7;
}

/**/
@media (max-width: 600px) {
    .HamburgerMenue {
        width: 100%;
        border: 0px;
        border-bottom: 2px solid #1c58b7
    }
}

.HamburgerMenueButton {
    display: inline-block;
    color: white;
    cursor: pointer;
    background-color: #1c58b7;
    font-size: 20px;
    width: 30px;
    text-align: center;
}

    .HamburgerMenueButton::before {
        content: '\2261';
    }

    .HamburgerMenueButton:hover {
        color: #1c58b7;
        background-color: white;
    }


/*####___________________ DEFAULT.ASPX ___________________####*/

.NavigationContainer {
    vertical-align: top;
}

.ModuleContainer {
    vertical-align: top;
    margin-bottom: 10px;
}

@media (max-width: 520px) {
    .NavigationContainer {
        display: block;
    }

    .ModuleContainer {
        display: block;
    }
}
