
.menu-item-akcii:after {
    content: "%";
    text-align: center;
    font-size: 10px;
    line-height: 17px;
    position: absolute;
    top: 7px;
    left: 50%;
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: red;
    color: #fff;
    margin-left: 24px;
     animation: radial-pulse2 1s infinite;
     z-index: 11;   
}
@keyframes radial-pulse2 {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.8);
  }
 
  100% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
}

.submenu.submenu-castom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;

    visibility: hidden;
    opacity: 0;

    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}


.submenu.submenu-castom.display {
    display: flex;
    /*display: block;*/
    width: 100%;

    visibility: visible;
    opacity: 1;
    top: 100%;
    z-index: 101;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

.submenu-castom ul {
    width: auto;
    min-width: 160px;
    padding-right: 10px;
}

.catalog-ul-wrapper {
    background-color: #ffffff;
    padding: 0px 30px 15px 30px;
}

.submenu-castom .submenu-title {
    padding: 10px 0;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}


.submenu.submenu-castom li {
    display: block;
    position: relative;
}

.submenu li a {
    color: #000000;
    padding: 5px 5px 0px 5px;
    white-space: nowrap;
    display: block;
}


.submenu-title a {
    font-weight: bold;
    border-bottom: 1px solid #e6e6e6;
    padding: 5px 5px 5px 5px !important;
}

.submenu.submenu-castom ul li.current > a {
    background-color: #27778e;
    color: #ffffff;
}