@CHARSET "UTF-8";

nav {
    width: 60%;
    height: 80%;

    top: 40px;
    z-index: 2000;
    position: relative;
}

nav .title {
    height: 50px;
    padding: 5px;
    background-color: #EEEEEE;
}

nav .title button {
    float: right;
}

nav .category {
    height: 100%;
    background-color: #FFFFFF;
    overflow: auto;
}

nav .category .item {
    height: 70px;
    padding: 10px;
    display: flex;
    align-items: center;
    background: -webkit-linear-gradient(#FFF6F9, white);
    background: -o-linear-gradient(#FFF6F9, white);
    background: -moz-linear-gradient(#FFF6F9, white);
    background: linear-gradient(#FFF6F9, white);
}

nav .category hr {
    height: 2px;
    margin: 0px;
    padding: 0px;
}


