.top-menu-sub ul {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-menu-sub ul a {
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6F6F6F;
    text-decoration: none;
    transition: 0.3s;
}

.top-menu-sub ul a.selected {
    border-bottom: 1px solid #EA2127;

}

.top-menu-sub ul a:hover {
    color: #000000;
}
.top-menu-sub ul li {
    position: relative;
    padding: 0 10px;
}

.top-menu-sub ul li:before {
    content: '';
    position: absolute;
    right: 0;
    background: rgba(111, 111, 111, 0.5);
    height: 9px;
    top: 50%;
    width: 1px;
    transform: translateY(-50%);
}

.top-menu-sub ul li:last-child:before {
    display: none;
}

.top-menu-sub {
    padding-left: 13px;
}