/* Desktop Nav */
#wd_desktop_menu{
    padding: 17px 0;
}
.wd_nav_sec{
    background: #333;
    position: relative;
    z-index: 100;
}


.wd_nav_sec.__sticky{
    top: 85px;
    width: 100%;
    border-top: 1px solid white;
    position: fixed;
}

.wd_nav_wrap{
    width: 100%;
}
.wd_nav{
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    max-width: none;
    float: right;
    display: flex;
    justify-content: space-between;
}

.wd_nav li {
    font-size: 13px;
    display: inline-block;
}

.wd_nav li a{
    color: white;
    text-decoration: none;
    font-weight: normal;
    text-transform: none;
     border-bottom: 1px solid transparent;
     transition: all 300ms ease-in-out;
}

.wd_nav > li{
    position: relative;
    text-align: left;
    padding: 1em 0;
}


.wd_nav li a:hover,
.wd_nav li.active a{
    
}

.wd_nav li .wd_subnav{

    display: none;
    padding: .5em 1em;
    position: absolute;
    top: 100%;
    min-width: 140px;
    border-radius: 5px;
    background-color: white;
    border-top: 1px solid white;
    margin: 0;

}

.wd_nav > li:hover .wd_subnav{
    display: block;
    min-width: 230px;
    padding: 2em;
}

.wd_nav li .wd_subnav li{
    display: inline-block;
}

.wd_nav li .wd_subnav li a{
    color: gray;
    font-weight: normal;
}

/* MOBILE NAV */

.wd_mob_menu_wrapper {
    padding: 1em 0 0.1em;
    display: block;
    background: #333;

}


.wd_mob_menu_wrapper.wd_open #mob_menuCloseBtn{
    display: block;
}

.wd_mob_menu_wrapper.wd_open #mob_menuOpenBtn{
    display: none;
}

.wd_mob_menu_wrapper.wd_open .wd_mob_menu{
    display: block;
}

.wd_mob_menu_wrapper #mob_menuOpenBtn{
    position: relative;
}


.wd_mob_toggle{
    float: right;
    height: 40px;
    position: relative;
}

.wd_mob_toggle .inner_arrow{
    width: 2px;
    height: 2px;
    position: absolute;
    top: 14px;
    right: .5em;
    line-height: 0;
    border: solid #fff;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}


.wd_mob_toggle_wrap h4{
    color: #fff;
    font-size: 17px;
    vertical-align: top;
    text-transform: uppercase;
    padding: 8px 0 0;

}

.wd_mob_toggle{
    vertical-align: top;
    width: 40px;
    background: transparent;
    border: none;
}
.wd_mob_toggle #mob_menuCloseBtn{
    display: none;
}

.wd_mob_menu ul{
   list-style: none;    
}

.wd_mob_menu .dl-menu{
    padding: 0;
    margin: 0;
    font-size: 14px;
    list-style: none;
}

.wd_mob_menu .dl-menu li{
    list-style: none;
}
.wd_mob_menu .dl-submenu{
    padding-left: 1em; 
    background: rgba(181, 181, 181, 0.1);
    margin: 0;

}
.wd_mob_menu{
    display:  none;
}

.wd_mob_menu .inner_menu{
    position: relative;
}

.wd_mob_menu a{
    font-weight: normal;
    display: block;
    padding: 1em 0;
    color: #fff;

}

.wd_mob_menu a:hover,
.wd_mob_menu a:focus{
    background-color: transparent;
    text-decoration: none;
}

.wd_mob_menu .inner_menu::after{
   width: 2px;
    height: 2px;
    position: absolute;
    top: 15px;
    right: .5em;
    line-height: 0;
    content: '';
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}

.wd_mob_menu .inner_menu{
    border-bottom: 1px solid #dedede;
}

.wd_mob_menu .inner_menu:last-child{
    border-bottom: none;
}

.wd_mob_menu  .inner_menu.open::after{
    transform: rotate(-135deg);
}

.wd_mob_menu .dl-submenu{
    display: none;
}

.wd_mob_menu .dl-submenu .inner_menu{
    position: relative;
}

.wd_mob_menu .exp_hit_area{
    position: absolute;
    top: 8px;
    right: 0;
    background: transparent;
    width: 25px;
    height: 25px;
    z-index: 10;
    /* background-color: red; */

}

div.wd_toolbar ul.wd_tools li.wd_tool{
    margin: 0 5px 0 0;
}
/* Site specific */

.wd_desk_menu .wd_nav {
    flex-wrap: nowrap;
    overflow: hidden;
}

.wd_desk_menu .wd_nav > li{
    
    flex: 0 0 auto;
    margin-right: 1em;
    margin-bottom: 0;

    flex-wrap: nowrap;

}

.wd_nav > li > a{
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding-bottom: 5px;
}

.wd_nav li .wd_subnav{
    border-radius: 0;
    background-color: #333;
}

.wd_nav li .wd_subnav li a {    
    color: white;

}


@media (max-width: 1100px){

}


@media (max-width: 1000px){
    #wd_desktop_menu{
        display: none;
    }
}
@media (min-width: 1000px ){
   
    .wd_mob_menu_wrapper{
        display: none;
    }
}

