/*! responsive-nav.js v1.0.14 by @viljamis */
#mobile-nav ul
{
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    list-style: none;
    background: #E42325;
}

#mobile-nav li
{
    position: relative;
    width: 100%;
}
#mobile-nav li a
{
    text-decoration: none;
    font-weight: bold;
    color: #FFF;
    display: block;
    width: 90.5%;
    padding: 10px 5%;
    transition-duration: .15s;
}
#mobile-nav li a span
{
    position: absolute;
    right: 12%;
    top: 5px;
    display: block;
}
#mobile-nav li a:hover
{
    text-decoration: none;
    color: #FFF;
    background: #67AF23;
    transition-duration: .15s;
}
#mobile-nav li a.actief2
{
    text-decoration: none;
    color: #FFF;
    background: #87B22B;
}
.js #mobile-nav
{
    clip: rect(0 0 0 0);
    max-height: 0;
    position: absolute;
    display: block;
    overflow: hidden;
    zoom: 1;
}

#mobile-nav.opened
{
    max-height: 9999px;
}
.menuButton
{
    padding: 10px 5%;
    display: block;
    color: #FFF;
    text-align:center;
    font-size: 20px;
    font-weight:bold;
    text-transform:uppercase;
    background: #38398C url('/images/btn_mobile.png') no-repeat 10px 7px;
}/*
.menuButton span
{
    position: absolute;
    margin-top: -25px;
    height: 40px;
    width: 40px;
    right: 7px;
    display: block;
    background: url(/images/menu_arrow_down.png) no-repeat top right;
}
.menuButton img
{
    width: 50%;
    line-height:40px;
    max-width: 240px;
}*/
#nav-toggle
{
    text-decoration: none;
    color: #000;
}
@media screen and (min-width: 40em)
{
    .js #mobile-nav
    {
        position: relative;
    }
    .js #mobile-nav.closed
    {
        max-height: none;
    }
    #mobile-nav-toggle
    {
        display: none;
    }
}
@media screen and (min-width: 767px)
{
    #mobile-nav, #nav-toggle
    {
        display: none !important;
    }
}
