<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

.toggle span img {
    width: 35px;
    height: auto;
    position: absolute;
    right: 10px;
}

ul li label.toggle {
    background-color: #e70085;
    color: #fff;
}

    ul li label.toggle:after {
        content: ' ';
    }

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 20px auto 0;
    padding: 0;
    background-color: transparent;
    width: 100%;
    max-width: 1300px;
    height: 50px;
    position: relative;
    z-index: 500;
}

#logo {
    display: block;
    padding: 0 30px;
    float: left;
    font-size: 20px;
    line-height: 60px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    text-transform: uppercase;
    position: relative;
    top: 0;
    right: 350px;
    background-color: transparent;
    /* z-index: 100;*/
}

    /* Positioning the navigation items inline */
    nav ul li {
        margin: 0px;
        display: inline-block;
        float: left;
        background-color: transparent;
        color: inherit;
        text-align: left;
        width: auto;
        white-space: nowrap;
        position: relative;
    }

/* Styling the links */
nav a {
    display: block;
    padding: 14px 20px;
    color: #FFF;
    font-size: 17px;
    text-decoration: none;
}

nav ul li ul a {
    display: block;
    padding: 10px 20px;
    color: #FFF;
    font-size: 17px;
    text-decoration: none;
}


nav ul li ul li:hover {
    background: #fff;
}

/* Background color change on Hover */
nav a:hover {
    background-color: none;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    text-transform: none;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 50px;
    left: 15px;
    right: inherit;
    z-index: 700;
}

/* Display Dropdowns on Hover */
nav ul li:hover &gt; ul {
    display: block !important;
    webkit-box-shadow: 0px 1px 4px #ececec;
    -html-box-shadow: 0px 1px 4px #ececec;
    box-shadow: 0px 1px 4px #ececec;
}

nav ul li.inaktiv {
    color: #bbb;
}
/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 230px;
    float: none;
    display: list-item;
    position: relative;
}

    nav ul ul li a:hover {
        background-color: rgba(231, 0, 133, 0.8);
        color: #fff;
    }

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */
li &gt; a:after {
    content: '';
}

li &gt; a:only-child:after {
    content: '';
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

    ul li label.toggle:after {
        content: ' +';
    }

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    nav {
        margin: 0;
        height: auto;
    }

    .menuspez {
        background-color: #e70085;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    nav &gt; label.toggle {
        background-color: transparent !important;
    }


    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        background-color: transparent;
        padding: 14px 20px;
        color: #bbb;
        font-size: 17px;
        text-decoration: none;
        border: none;
    }

        .toggle:hover {
            background-color: #e70085;
            color: #fff;
        }

    nav ul {
        top: 55px;
        right: 0;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        color: #fff;
        border-bottom: 1px solid #fff;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: #fff;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }


    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #fff;
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #e70085;
        /* has to be the same number as the "line-height" of "nav a" */
    }

        /* Hide menus on hover */
        nav ul ul li:hover &gt; ul,
        nav ul li:hover &gt; ul {
            display: none;
        }

        /* Fisrt Tier Dropdown */
        nav ul ul li {
            display: block;
            width: 100%;
            color: #bbb;
            border-bottom: 1px solid #bbb;
        }

        nav ul ul ul li {
            position: static;
            /* has to be the same number as the "width" of "nav ul ul li" */
        }
}

@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }
}

body {
}
</pre></body></html>