#header {
    box-shadow: 0px 3px 3px #888;
}

/* ================================================================
        This copyright notice must be untouched at all times.

        The original version of this stylesheet and the associated (x)html
        is available at http://www.cssplay.co.uk/menus/cssplay-focus-within-tree-menu.html
        Copyright (c) Stu Nicholls. All rights reserved.
        This stylesheet and the associated (x)html may be modified in any
        way to fit your requirements.
        =================================================================== */
#menu {
    background: #0000;
    position: absolute;
    top: 35px;
    left: 0;
    width: 70px;
}

    #menu ul {
        position: relative;
        list-style: none;
        z-index: 10;
        padding: 0;
        margin: 0;
    }

    #menu > ul > li > p {
        font-size: 40px;
        padding: 0;
        margin: 0 0 0 10px;
        line-height: 50px;
    }




        #menu > ul > li > p::before {
            display: inline-block;
            content: "\2630";
            font-size: 40px;
            line-height: 50px;
            width: 50px;
            color: #fff;
            text-align: center;
        }


@media only screen and (min-width: 800px)
{
    #menu > ul > li > p::before {
        display: inline-block;
        content: "\2630MENU";
        font-size: 40px;
        line-height: 50px;
        width: 50px;
        color: #fff;
        text-align: center;
    }
}




#menu #start-menu {
    position: absolute;
    top: 87px;
    width: 280px;
    background: #000;
}

    #menu ul ul {
        position: relative;
        z-index: 10;
        max-width: 300px;
        margin: 0;
        padding-left: 15px;
    }

        #menu ul ul ul {
            border-left: 1px solid #B39A64; /*#6fc*/
            margin-left: 6px;
            padding-left: 15px;
            border-radius: 0 0 0 10px;
        }

    #menu ul a {
        font: 16px/22px 'Roboto Condensed', arial, sans-serif;
        text-decoration: none;
        color: #fff;
        transition: 0.5s;
        outline: none;
    }

        #menu ul a:hover {
            color: #fff;
            text-decoration: underline;
        }

    #menu ul p {
        font: 600 16px/22px 'Roboto Condensed', arial, sans-serif;
        padding: 0;
        margin: 0;
        color: #fff;
        justify-self: start;
        cursor: default;
    }

        #menu ul p::before {
            display: inline-block;
            content: "\25B6";
            width: 15px;
            font-size: 12px;
        }

    #menu ul a {
        font: 16px/22px 'Roboto Condensed', arial, sans-serif;
        text-decoration: none;
        color: #fff;
        transition: 0.5s;
        outline: none;
    }

        #menu ul a:hover {
            color: #B39A64;
            text-decoration: underline;
        }

    #menu li ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 1s;
    }

    #menu li:focus-within > ul {
        max-height: 600px;
    }

    #menu li:focus-within > #start-menu {
        box-shadow: 3px 3px 3px #888;
        border-radius: 0 0 10px;
    }

    #menu li:focus-within > p {
        color: #fff;
        position: relative;
        z-index: -1;
    }

    #menu ul li:focus-within > p::before {
        content: "\25BC";
        color: #B39A64;
    }

    #menu > ul > li:focus-within > p::before {
        content: "\2715";
        font-size: 40px;
        color: #fff;
    }

    #menu ul li:focus ul {
        max-height: 0;
        transition: max-height 0.5s;
    }

    #menu ul li:focus > p {
        color: #fff;
        z-index: 1;
    }

        #menu ul li:focus > p::before {
            color: #fff;
            content: "\25B6";
            z-index: 1;
        }

    #menu > ul > li:focus > p::before {
        content: "\2630";
        font-size: 40px;
        color: #fff;
    }

@media only screen and (min-width: 800px) {
    #menu > ul > li:focus > p::before {
        content: "\2630MENU";
        font-size: 40px;
        color: #fff;
    }
}
