.menu-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-mobile ul a {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #000000;
}
.menu-mobile > ul > li > a {
    font-weight: 900;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #004A8D;
}

.menu-mobile > ul > li li {
    margin-bottom: 20px;
}

.menu-mobile > ul > li {
    border-bottom: 1px solid rgba(104, 104, 104, 0.3);
    padding: 20px 0;
    position: relative;
}

.folder-plus {
    position: absolute;
    width: 26px;
    height: 26px;
    top: 17px;
    right: 0;

    background: #EA2127;
}

.folder-plus:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 2px;
    background: #fff;
    width: 12px;
    transform: translate(-50%,-50%);
}
.folder-plus:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    background: #fff;
    height: 12px;
    transform: translate(-50%,-50%);
}

.menu-mobile__submenu {
    display: none;
}

.folder.active .menu-mobile__submenu {
    display: block;
    padding-top: 25px;
}
.folder.active .folder-plus:after {
    display: none;
}
.menu-mobile > ul > li.folder.active {
    padding-bottom: 0;
}