/* / ------------------NAVIGATION-css------------------- / */
body{
    left: 0;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}
.menu{
    left: -400px;
    height: 100%;
    position: fixed;
    width: 360px;
    top: 50px;
    z-index: 100;
    background: #fff;
    /* / background: linear-gradient(0deg, rgba(0, 174, 91, 1) 12%, rgba(163, 190, 52, 1) 53%); / */
}
.menu ul.nav{
    height: calc(100% - 80px);
    overflow-y: auto;
    padding-right: 5px;
}
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav_list_each{
    border-bottom: 0 !important;
}
.nav_list_each:not(:last-child){
    margin-bottom: 20px !important;
    border-bottom: 0 !important;
}
.menu li:not(:last-child){
    margin-bottom: 0;
}
.menu li {
    border-bottom: 2px solid #9fc86d;
    font-family: 'Open Sans', sans-serif;
    line-height: 45px;
    padding-bottom: 3px;
    padding-left: 0;
    padding-top: 3px;
    width: 100%;
}
.nav_block_title{
    font-size: 24px;
    font-weight: 600;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #00ae5b;
    text-align: center;
}
.menu a {
    color: #fff;
    display: block;
    position: relative;
    padding: 10px 10px 10px 20px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    transition: 0.6s;
    text-decoration: none;
    text-transform: uppercase;
    color: #009749;
}
.menu a:before{
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    content: '';
    height: 100%;
    transition: 0.6s;
    position: absolute;
    border-radius: 0 40px 40px 0;
    background: linear-gradient(-90deg, rgba(163, 190, 52, 1) 15%, rgba(0, 174, 91, 1) 100%);
}
.menu li a:hover{
    color: #fff;
}
.menu li a:hover:before{
    width: 100%;
}
.menu a span{
    position: relative;
}
.icon-close {
    display: flex;
    width: 35px;
    height: 35px;
    cursor: pointer;
    /* padding-left: 10px; */
    /* padding-top: 10px; */
    position: absolute;
    right: 10px;
    top: -45px;
    justify-content: center;
    align-items: center;
    background-color: #0d8f5b;
}
.icon-close i{
    color: #fff;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #edfff6; 
}
::-webkit-scrollbar-thumb {
    background: #006b34; 
}
::-webkit-scrollbar-thumb:hover {
    background: #002e16; 
}

.nav_list_pen img{
    width:16px;
    transition: 0.6s;
    margin-left: 15px;
}
.menu li a:hover img{
    filter: brightness(0) invert(1);
}


















