.jquerycssmenu {
    font: 12px AvenirNext-Medium;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: none;
    padding: 0px;
    /*offset of tabs relative to browser left edge*/
    /*margin:0 0 0 120px;*/
    height: 30px;
    z-index: 99999;
}

.jquerycssmenu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*Top level list items*/
.jquerycssmenu ul li {
    position: relative;
    display: inline;
    float: left;
    padding-bottom: 0;
    padding-top: 0;
    z-index: 99999;

}

/*Top level menu link items style*/
.jquerycssmenu ul li a {
    display: block;
    /* background: white url(../images/meniu/tintblue.gif) top center repeat-x;; */
    /*background of tabs (default state)*/
    background-color: white;
    padding: 7px 20px 6px 20px;
    /* margin-right: 1px; spacing between tabs*/
    border: 1px solid #F99B1C;
    /* border-bottom-width: 0; */
    color: black;
    text-decoration: none;
    vertical-align: middle;
    /* height: 30px; */
    z-index: 99999;

}

.jquerycssmenu ul li a.wizard {
    background-color: #0CC;
}

.jquerycssmenu ul li a:hover {
    /* background-image: url(../images/meniu/tintbluedark.gif) */
    /*tab link background during hover state*/
    /* background-color: white;
     background: #fdf2e3; */
    color: #F99B1C;
}

/*1st sub level menu*/
.jquerycssmenu ul li ul {
    position: absolute;
    left: 0;
    display: block;
    visibility: hidden;
    border-top: 1px solid #F99B1C;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li {
    display: list-item;
    float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul {
    top: 0;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a {
    transition: 0s background-color;
    font: 10px AvenirNext-Regular;
    width: 160px;
    /*width of sub menus*/
    background: white;
    color: black;
    padding: 4px 3px;
    text-align: left;
    margin: 0;
    border-top-width: 0;
    border-bottom: 1px solid #F99B1C;
    height: 30px;
}

.jquerycssmenu ul li ul li a:hover {
    /*sub menus hover style*/
    /* background: #eff9ff;
    color: black; */
    background: #fdf2e3;
    color: #F99B1C;
    transition-delay: 0s;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass {
    position: absolute;
    top: 11px;
    right: 5px;
}

.rightarrowclass {
    position: absolute;
    top: 11px;
    right: 5px;
}

a {
    cursor: pointer;
}

#mobileMenuToggle {
    display: none;
    position: fixed;
    top: 4px;
    left: 4px;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #F99B1C;
    border-radius: 5px;
    padding: 8px;
    cursor: pointer;
}

#mobileMenuToggle i.icon {
    font-size: 20px;
    line-height: 1;
    color: #F99B1C;
}

#mobileOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1001;
    overflow: hidden;
}

#mobileOverlay .pane {
    position: fixed;
    top: 44px;
    height: auto;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 44px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

#mobileOverlay .pane.left {
    left: 5px;
    width: calc(40vw - 7px);
    border-right: 1px solid #F99B1C;
    z-index: 1002;
}

#mobileOverlay .pane.right {
    left: 40vw;
    width: calc(60vw - 6px);
    display: none;
    border-left: 1px solid #F99B1C;
    z-index: 1003;
}

#mobileOverlay #mobileClose {
    position: fixed;
    top: 8px;
    right: 8px;
    border: 0;
    background: transparent;
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    z-index: 1004;
    color: #F99B1C;
}

#mobileOverlay .list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobileOverlay .list li a {
    display: block;
    padding: 10px 20px 10px 12px;
    color: #333;
    text-decoration: none;
}

#mobileOverlay .pane.left .list li a {
    padding-top: 12px;
    padding-bottom: 12px;
}

#mobileOverlay .pane.right .list li a {
    padding-top: 10px;
    padding-bottom: 10px;
}

#mobileOverlay .list li a:hover {
    background: #fdf2e3;
    color: #F99B1C;
}

#mobileOverlay .list li {
    border-bottom: 1px solid #F99B1C;
}

#mobileOverlay .pane.left .list li a {
    font-size: 12px;
}

#mobileOverlay .pane.right .list li a {
    font-size: 11px;
}

#mobileOverlay .pane.left .list li a.active {
    color: #F99B1C;
}

/* Previne body scroll cand meniul este deschis */
body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100vh !important;
}

#mobileSubList {
    max-height: 89vh;
}

/* Responsive mobile menu styles */
@media (max-width: 768px) {
    #myjquerymenu {
        display: none !important;
    }

    #mobileMenuToggle {
        display: inline-flex !important;
        position: absolute;
    }
}