.st-container,
.st-pusher,
.st-content {
    height: 100%;
}

.st-container {
    position: relative;
    overflow: hidden;
}

.st-pusher {
    left: 0;
    z-index: 99;
    height: 100%;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

    .st-pusher::after {
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        background: rgba(0,0,0,0.4);
        content: '';
        opacity: 0;
        -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
        transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    }

.st-menu-open .st-pusher::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.st-menu {
    position: absolute;
    top: 0;
    right: -200%;
    z-index: 100;
    visibility: hidden;
    width: 400px;
    height: 100%;
    background: #48a770;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

    .st-menu::after {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.2);
        content: '';
        opacity: 1;
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
    }

.st-menu-open .st-menu::after {
    width: 0;
    height: 0;
    opacity: 0;
    -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */

.st-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.st-menu h2 {
    margin: 0;
    padding: 1em;
    color: rgba(0,0,0,0.4);
    text-shadow: 0 0 1px rgba(0,0,0,0.1);
    font-weight: 300;
    font-size: 2em;
}

.st-menu ul li a {
    display: block;
    padding: 1em 1em 1em 2em;
    outline: none;
    color: rgba(255,255,255,0.7);
    text-shadow: 0 0 1px rgba(255,255,255,0.1);
    letter-spacing: 1px;
    font-weight: 100;
    -webkit-transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
}

.st-menu ul li:hover {
    background: rgba(0,0,0,0.2);
    box-shadow: inset 0 -1px rgba(0,0,0,0);
}

    .st-menu ul li:hover a {
        color: #fff;
    }

.st-menu ul ul li:hover {
    background: none;
}

    .st-menu ul ul li:hover a {
        color: #fff;
        text-decoration: underline;
    }

/* Individual effects */

/* Effect 1: Slide in on top */
.st-effect-1.st-menu {
    visibility: visible;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.st-effect-1.st-menu-open .st-effect-1.st-menu {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.st-effect-1.st-menu::after {
    display: none;
}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
    padding-left: 300px;
}

.primary-navigation {
    background-color: #11265A;
    position: fixed;
    top: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: scrollbar;
}

.st-menu-open #right-navigation {
    right: 0;
}

.st-effect-1.st-menu {
    visibility: visible;
}

.primary-navigation ul {
    list-style: none;
    position: relative;
    padding: 0;
}

.primary-navigation .closeNav a {
    color: #fff;
    position: absolute;
    top: 30px;
    right: 53px;
    padding: 10px;
    right: 0px;
}

[class*="icon-"] {
    line-height: 18px;
    display: inline-block;
    padding: 2px;
}

[role="button"] {
    cursor: pointer;
}

.icon-close::after {
    font-family: "rudersdal-icon-font";
    content: '\e902';
    display: inline-block;
    width: 18px;
    height: 18px;
}


.primary-navigation > ul {
    margin-top: 108px;
}

#st-trigger-effects button {
    background: transparent;
    border: none;
}

    #st-trigger-effects button:focus {
        outline: 0px;
        outline: 0px;
    }

.st-menu a i.SubNavExpand {
    float: right;
    font-size: 30px;
    margin-top: -10px;
}

.st-menu ul ul {
    display: none;
}

.st-menu ul ul {
    padding-left: 30px;
}

    .st-menu ul ul a {
        font-size: 13px;
    }

@media screen and (max-width: 767px) {
    .st-menu {
        width: 95%;
    }
}
