/**
* Copyright © 2021 Wyomind. All rights reserved.
* See LICENSE.txt for license details.
**/
@font-face {
  font-family: 'EE-Icons';
  src: url(EE-Icons.ttf);
}

.sidebar.sidebar-main {
    display: flex;
    flex-direction: column;
    .category-navigation-block {
        order: -1;
        background: #f1f1f2;
        padding: 10px;
        /* margin-right: 10px; */
        span.parent {
            align-items: center;
            border-bottom: 1px solid #9f9f9e;
            display: flex;
            font-size: 1.4rem;
            margin-bottom: 1.6rem;
            padding-bottom: 1.3rem;
            color: #9f9f9e;
            a {
                color: #9f9f9e;
                text-decoration:none;
                &:before {
                    content: '\e617';
                    font-family: 'EE-Icons';
                    margin-right: 5px;
                }
            }
        }
        span.current {
            color: #3f3f3e;
            margin-bottom: 15px;
            display: block;
        }
        ul {
            list-style: none;
            padding:0;
            margin:0;
            li {
                padding-top: 5px;
                font-size: 0.9em;
                margin: 0;
                &.current {
                    font-weight: 600;
                }
            }
            a {
                text-decoration: none;
                color: #3f3f3e;
            }
            &.children {
                margin-left:15px;
            }
        }
    }
}