﻿:root {
   
}


body {
    padding: 0;
    margin: 0;
}



ul.menu {
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 300px;
    margin: 0px auto;
    
    box-shadow: 0px 0px 5px #00000070;
    clear: both;
    display: table;
    margin-bottom: 5px;
}

    ul.menu .listempty a img {
        padding-right: 10px;
        height: 15px
    }

    ul.menu .list, ul.menu .listempty {
        font-size: 14px;
        border-bottom: 1px solid #ccd4db;
        position: relative;
        width: 100%;
        box-sizing: border-box;
        height: 50px;
        vertical-align: sub;
        background: var(--colorCA);
        clear: both;
    }

        ul.menu .list:after {
            content: "";
            font-family: FontAwesome;
            position: absolute;
            right: 17px;
            top: 17px;
            padding: 0px 5px;
            color: #110101;
        }

        /* ul.menu .list:before {
content: "";
font-family: FontAwesome;
position: absolute;
left: 17px;
top: 17px;
padding: 0px 5px;
color: #fff;
} */

ul.menu .list a, ul.menu .listempty a {
    text-decoration: none;
    color: var(--colorFont3);
    padding: 17px 0px 17px 25px;
    display: block;
    height: 100%;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 0.95rem;
}

    ul.menu .list a:hover, ul.menu .listempty a:hover {
        background-color: var(--backhover);
        transition: 300ms all;
        color: white;
    }

        ul.menu .list .items {
            height: 0px;
            overflow: hidden;
        }

            ul.menu .list .items a {
                padding: 17px;
                padding-left: 25px;
                font-weight: normal;
            }

                ul.menu .list .items a:hover {
                    background-color: var(--backhover);
                    color: white;
                    transition: 300ms all;
                }

        ul.menu .list:last-child {
            border-bottom: none;
        }

    ul.menu .active:after {
        content: "";
         
        position: absolute;
        right: 17px;
        top: 17px;
        padding: 0px 5px;
        color: black;
    }

    /* ul.menu .active:before {
content: "";
font-family: FontAwesome;
position: absolute;
left: 17px;
top: 17px;
padding: 0px 5px;
color: #fff;
} */

    ul.menu .active > .items {
        display: block;
        background: var(--colorCA);
        padding: 0px;
        height: auto;
        color: var(--colorFont3);
        clear: both;
        float: left;
        width: 100%;
    }

        ul.menu .active > .items li {
            padding: 0px;
            padding-left: 2px;
            border-bottom: 1px solid rgb(230, 230, 230);
            list-style: none;
        }

            ul.menu .active > .items li:last-child {
                border-color: transparent;
                padding-bottom: 0px;
            }

        ul.menu .active > .items .active > .items {
            background-color: black;
        }

    ul.menu .active > a {
        color: #000503;
        text-transform: uppercase;
        font-weight: bold;
    }

    ul.menu .active .list {
        background: black;
    }

        ul.menu .active .list a {
            padding: 17px 0px 17px 25px;
        }
