ul.h-menu, ul.h-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.h-menu {
    display: flex;
    margin-left: 10px;
}

ul.h-menu li> a[href='/aktsii/'] {
    color: #ffcc00;
    
}
ul.h-menu li {
    position: relative
}

ul.h-menu>li>a,ul.h-menu>li>span {
    display: inline-flex;
    align-items: center;
    height: 65px;
    margin-right: 55px;
    font-size: 16px;
    color: #0f508c;
    font-weight: 600;
    text-decoration: none;
    background-color: transparent;

}
html:not(.bx-touch) ul.h-menu>li:hover>a,
html:not(.bx-no-touch) ul.h-menu>li:active>a,
ul.h-menu>li.selected>a {
    color: #ffcc00;
}

ul.h-sub-menu {
    position: absolute;
    top: calc(100% - 5px);
    background-color: #fff;
    width: 300px;
    padding: 10px 0;
    visibility: hidden;
    border-top: 5px solid #ffcc00;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
}
    li:hover > ul.h-sub-menu {
        visibility: visible;
    }
    li:hover > ul.h-sub-menu.depth-2 {
		left: 100%;
		top: -0;
        z-index: 5;
	}

ul.h-sub-menu li {

}

ul.h-sub-menu a {
    padding: 16px;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .15s ease;
    position: relative;
}
ul.h-sub-menu div {
    padding: 16px;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .15s ease;
    position: relative;
}
ul.h-sub-menu a:hover {
    background: rgba(51, 51, 51, 0.07);
}
ul.h-sub-menu a:hover:before, ul.h-sub-menu>li.selected>a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .1);
}


.h-menu__submenu-item-text {

}
.h-menu__submenu-item-icon {
    width: 1em;
    margin-left: 5px;
    font-size: 16px;
    color: #929292;
}
ul.h-sub-menu a:hover .h-menu__submenu-item-icon,
ul.h-sub-menu>li.selected>a>.h-menu__submenu-item-icon{
    color: currentColor;
}



ul.h-menu>li>a.menu_open_dropdown {
    display: none;
}
