.navbar
{
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-bottom: 0
}

.navbar-default
{
    background-color: transparent;
    border: none
}

.navbar-collapse
{
    border: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

#dnnMenu .topLevel > li > a
{
    color: #ffffff; /* Link Text Color and Size */
  /* ASWD 09/22/23 increased padding to 50px  NOTE:  over that, minimum width b4 Hamburger is over 1200px, no good padding-right: 45px;*/
    padding-right: 50px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: Normal !important;
    /* ASWD 09/22/23 bumpted up menu link size as per cient request font-size: 14pt !important;*/
    font-size: 18pt !important;
}
    /*#dnnMenu .topLevel>li>a:focus,#dnnMenu .topLevel>li>a:hover{color:#979797}*/
    #dnnMenu .topLevel > li > a:focus, #dnnMenu .topLevel > li > a:hover
    {
        /*color: #fff;*/
        color: #000 !important;
    }

#dnnMenu .topLevel > li.active > a:focus, #dnnMenu .topLevel > li.active > a:hover
{
    color: #fff; /* Link Text Rollover Color */
    /*  font-weight: 600 !important;*/
}
/*#dnnMenu .topLevel>.open>a,#dnnMenu .topLevel>.open>a:hover,#dnnMenu .topLevel>.open>a:focus{background:none}*/
/* ASWD 03/03/23 removed background Block effect around Link with sub-menu/dropdown menu */
/*#dnnMenu .topLevel>.active.open>a,#dnnMenu .topLevel>.active.open>a:hover,#dnnMenu .topLevel>.active.open>a:focus{background-color:#e7e7e7}*/
#dnnMenu .navbar-default .topLevel > li > a
{
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

#dnnMenu .dropdown-menu
{
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #f1f1f1;
    padding: 0
}

    #dnnMenu .dropdown-menu::after
    {
        bottom: 100%;
        left: 35%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(241,241,241,0);
        border-bottom-color: #f1f1f1;
        border-width: 10px;
        margin-left: -30px
    }

    #dnnMenu .dropdown-menu li
    {
        /*background: none;
        float: none;
        clear: both;
        width: auto;
        padding: 5px 5px;*/
        /* ASWD 03/02/23 */
        /*border-bottom: 1px solid #698b4f;
        -o-transition: all .3s ease 0s;
        -webkit-transition: all .3s ease 0s;
        -moz-transition: all .3s ease 0s;
        transition: all .3s ease 0s*/
    }
        /*  9fb79e*/
        /* Begin sub-menu styling */

        #dnnMenu .dropdown-menu li:hover
        {
            /* ASWD 06/14/23 color for drop-down menu li/links background*/
            background: #9fb79e;
           /* background: #c0dcc0; OGS Original Site color on product pages - too light for drop down menus */
        }

        #dnnMenu .dropdown-menu li:last-child
        {
            border: none
        }

        #dnnMenu .dropdown-menu li > a
        {
            background: transparent;
                
        }

        #dnnMenu .dropdown-menu li.active > a, #dnnMenu .dropdown-menu li.active a:hover, #dnnMenu .dropdown-menu li.active a:focus
        {
            color: #3f3f3f;
            font-weight: 600
        }

    #dnnMenu .dropdown-menu a:hover
    {
        color: #fff
    }

#dnnMenu .subLevelRight::after
{
    border: none
}

/*@media only screen and (min-width:768px) and (max-width:995px)*/
@media only screen and (min-width:1192px) and (max-width:1052px)
{
    #dnnMenu .nav li
    {
        font-size: 15px
    }
}
/* End Drop-Down menu styling */




/* ASWD 03/01/2023 */
/*@media only screen and (min-width:768px)*/ /* and (max-width:995px)*/
@media only screen and (min-width:1192px)
{
    #dnnMenu .nav li
    {
        font-size: 15px;
    }
    /* ASWD  06/06/23 Navigation bar styling*/
    #navbar
    {
        background-image: url("/Portals/_default/Skins/OGSXcillion/Images/Header/OGS_Menu_BG._2.png");
        background-repeat: repeat-x;
        height: 62px !important;
        width: 100%;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /*#dnnMenu .topLevel > li > a:hover
    {*/
    /* ASWD 06/09/23 prevents white block from hiding header text in menu on rollover  */
    /*color: #FFFFFF;  NOPE, done in bootstrap.css*/
    /*}*/
    /* ASWD 03/03/23  Custom Styling for Non-Mobile Top Level Menu Only */
    /* Menu Items size styling */
    #dnnMenu, topLevel ul li
    {
        height: auto !important;
        width: auto !important;
        /*  display: flex !important;*/
        justify-content: center !important;
        align-items: center !important;
        margin-top: 0px !important;
    }

        #dnnMenu.caret
        {
            /* ASWD 03/03/23  don't know why, but allows for more space between menu top level links, the caret triangle icon is display:none; in bootstrap.css  */
            display: none;
        }
}

/*ASWD Redundant, specified in media query section below  @media only screen and (max-width:767px)
{
    #dnnMenu .dropdown-menu
    {
        padding: 0
    }
}*/

/* ASWD 03/03/23 Start Hamburger Menu Styling Including distinct drop down menu for mobile devices */

/*@media only screen and (max-width:767px)*/
@media only screen and (max-width:1191px)
{
    #dnnMenu .dropdown-menu
    {
        padding: 0
    }

        #dnnMenu .dropdown-menu::after
        {
            border: none;
            pointer-events: none;
            border-color: none;
            border-width: 0
        }

        #dnnMenu .dropdown-menu.subLevel
        {
            padding: 0
        }

            #dnnMenu .dropdown-menu.subLevel li.active a span
            {
                color: #fff;
            }

            #dnnMenu .dropdown-menu.subLevel li.active a
            {
                color: #3f3f3f;
                font-weight: bold
            }

            #dnnMenu .dropdown-menu.subLevel li
            {
                background: #205a2d;
                /*  border-bottom: 1px solid #4a4b4c;*/
                border-bottom: 1px solid #b4c7b1;
                padding: 0;
            }

        #dnnMenu .dropdown-menu.subLevelRight li
        {
            background: #5d6062;
            padding: 0
        }

    #dnnMenu .topLevel li
    {
        /* ASWD 03/03/23 MOBILE Top Level Menu Styling */
        position: relative;
        /*background: #eabb23;*/
        background: #bb650e;
        float: none;
        width: 100%;
        margin-bottom: 0;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 700 !important;
        border-bottom: 1px solid #4a4b4c;
    }
        /* ASWD 03/03/23 Current selected link color, light black */
        #dnnMenu .topLevel li.active a
        {
            color: #3f3f3f;
            /* color: #ffffff;*/
            font-weight: bold;
        }

        #dnnMenu .topLevel li a
        {
            display: block;
            color: #ddd;
            -webkit-transition: all .2s ease 0s;
            -moz-transition: all .2s ease 0s;
            -o-transition: all .2s ease 0s;
            transition: all .2s ease 0s;
            padding-top: 5px;
            padding-bottom: 5px
            /* ASWD Adding net 10px above and below navbar links   */
        }

            #dnnMenu .topLevel li a:hover
            {
                background: #a7bfa6;
                /* do not use, dark green, do differentiation in sub-menu rollo-over i.e. "Candidates" sub-menu,  background:#205a2d;*/
            }

                #dnnMenu .topLevel li a:hover span
                {
                    color: #fff
                }

            #dnnMenu .topLevel li a span
            {
                line-height: 52px;
                margin: 0;
                padding: 0 15px;
                font-size: 15px
            }
    /*#dnnMenu .topLevel .dropdown.open a span{color:#7ca0c0}#dnnMenu .topLevel .dropdown-menu.subLevel a span{color:#fff}*/

    /* ASWD 03/03/23 Plus/Minus Icon far right of mobile sub-menu color, sub-menu top link color,  sub-menu sub links color */
    #dnnMenu .sub-arrow
    {
        color: #fff;
    }

        #dnnMenu .sub-arrow:before
        {
            color: #fff;
        }
    /* Font fore-color for dropdown header link in sub-menu */
    #dnnMenu .topLevel .dropdown.open a span
    {
        color: #fff;
    }

    #dnnMenu .topLevel .dropdown-menu.subLevel a span
    {
        color: #fff;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 600 !important;
    }


    /* background-color: #205a2d !important;*/

    /****************************************************************************************************************************************************/
    #dnnMenu .topLevel > li > a
    {
        color: #fff
    }
        /* ASWD 03/03/23 Link fore-color on hover */
        #dnnMenu .topLevel > li > a:hover span
        {
            color: #fff
        }

    #dnnMenu .dropdown.open .subLevel > li a:hover span
    {
        color: #fff
    }
    /*.navbar-nav.sm-collapsible .caret,.navbar-nav.sm-collapsible ul .caret{position:absolute;right:0;padding:0;width:65px;height:62px;line-height:60px;text-align:center;border-width:1px;border-style:solid;top:0;border:none;background-color:#2c2f33;display:block;margin:0;border-radius:0;font-size:1.3em}*/
    .navbar-nav.sm-collapsible .caret, .navbar-nav.sm-collapsible ul .caret
    {
        position: absolute;
        right: 0;
        padding: 0;
        width: 65px;
        height: 62px;
        line-height: 60px;
        text-align: center;
        border-width: 1px;
        border-style: solid;
        top: 0;
        border: none;
        background-color: #205a2d;
        display: block;
        margin: 0;
        border-radius: 0;
        font-size: 1.3em;
    }
}
/* End Hamburger Menu Styling */


