@charset "utf-8";

/*
CSS Theme-Style for gleichgewicht (Mobile)
Produced with love in the christmas-place Himmelpforten
Copyright by ihrwebentwickler.de, Gunnmar von Spreckelsen

CONTENT
---------------------------------------
1.) Main-Switches
2.) Fullscreen Widths and fonts
3.) Design
---------------------------------------
*/

/* 1.) Main-Switches */
/* ================================================================================================================= */
@media (min-width: 1400px) {
    .container {
        display: grid;
        grid-template-columns: var(--width-sidebar) 1fr;
        grid-template-rows: var(--header-height) 1fr;
        grid-template-areas:
            "header header"
            "sidebar main";
        min-height: 100vh;
    }

    .container main {
        display: flex;
    }

    .standard-width {
        width: calc(100% - (2 * var(--margin-content-horizontal)));
        margin: var(--margin-content-vertical) var(--margin-content-horizontal);
    }

    .container main > div:first-child {
        padding: 0;
    }

    .container header, .container .sidebar {
        display: flex;
    }

    #mobileMenu {
        display: none;
    }
}

@media (min-width: 1px) and (max-width: 1399px) {
    .container {
        display: block;
    }

    .container header, .container .sidebar {
        display: none;
    }

    #mobileMenu {
        display: block;
    }

    #mobileMenu .device-menu {
        display: none;
    }

    .container main {
        display: block;
        width: 100%;
    }

    .standard-width {
        width: auto;
        margin: 0;
    }

    .container main > div:first-child {
        padding: 14px;
    }

    .IE-Firefox-hide-scrollbar {
        -ms-overflow-style: none; /* IE 11 */
        scrollbar-width: none; /* Firefox 64 */
    }
}

/* ================================================================================================================= */


/* 2.) Fullscreen Widths and fonts */
/* ================================================================================================================= */
@media (min-width: 1400px) {
    img.fullsize, .fullsize-box, .fullsize-box img.fullwidth {
        height: calc(100vh - var(--header-height));
    }

    .fullsize-box h1 {
        position: absolute;
        top: 36%;
        left: 26%;
        transform: translate(-12%, 1%);
        width: 30%;
        padding: 20px;
        color: var(--linkcolor-navigation);
        background-color: rgba(255, 255, 255, 0.8);
        font-size: 1.4em;
    }

    h1 {
        font-size: 1.26em;
    }

    h2 {
        margin: 0;
        font-size: 1.14em;
    }
}

@media (min-width: 1px) and (max-width: 1399px) {
    img.fullsize, .fullsize-box, .fullsize-box img.fullwidth {
        height: auto;
    }

    .fullsize-box h1 {
        position: relative;
        margin-top: 20px;
        width: 100%;
        background: none;
    }

    h1 {
        font-size: 1.12em;
    }

    h2 {
        margin: 0;
        font-size: 1.02em;
    }
}

/* ================================================================================================================= */

/* 3.) Design */
/* ================================================================================================================= */
.device-menu {
    background: var(--linkcolor-navigation);
    min-height: calc(100vh - var(--device-header-height));
}

.device-menu > .device-menu-container {
    margin-bottom: 12px;
}

.device-menu > .device-menu-container:last-child {
    margin-bottom: 0;
}

.device-menu-container p {
    padding: 8px 0 2px 38px;
    color: white;
}

.device-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: #abb428;
}

.device-menu li {
    display: grid;
    height: 30px;
    padding-left: 50px;
    grid-template-columns: 16px auto;
    justify-content: start;
    align-items: center;
    border-top: 1px solid #888;
    border-bottom: 1px solid #888;
}

.device-menu li::before {
    content: ">";
    font-size: 20px;
    color: white;
}

.device-menu li.active::before {
    color: var(--linkcolor-navigation);
}

.device-header {
    display: flex;
    width: 100%;
    height: var(--device-header-height);
    align-items: center;
    justify-content: center;
    background: var(--background-navigation);
}

.device-header .menuicon {
    margin-left: 14px;
}

.logo-mobile {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.logo-mobile p {
    display: inline-block;
    line-height: 1.1;
    vertical-align: middle;
}

.logo-mobile p {
    font-size: 0.74em;
    color: var(--linkcolor-navigation);
}

.logo-mobile p img {
    padding: 0 10px;
}

#mobileMenu a, #mobileMenu a:focus, #mobileMenu a:active {
    text-decoration: none;
    color: white;
}

#mobileMenu li.active a, #mobileMenu li.active a:focus, #mobileMenu li.active a:active {
    color: var(--linkcolor-navigation);
}

/* ================================================================================================================= */