/************************
*************************
    Mobile Menu v1.0
    (c) 2015 George Lieu
    licensed under MIT
************************
************************/
html {
    overflow-x: hidden;
}

#page {
    position: relative;
    left: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    min-height: 100%;
    width: 100%;
    z-index: 20;
    background: black;
    opacity: 0.4;
    filter: alpha(opacity=40);
}

.mmPushBody {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#mobile-menu {
    position: absolute;
    top: 0;
    background: #1a1a1a;
    z-index: 99999;
    /*-webkit-box-shadow: 0 1px 8px #555555;
  -moz-box-shadow: 0 1px 8px #555555;
  -o-box-shadow: 0 1px 8px #555555;
  box-shadow: 0 1px 8px #555555;*/
    display: none;
    font-family: Helvetica, sans-serif;
    font-size: 15px;
    /*border-right: 1px solid #cccccc;*/
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box;
    line-height: 1.42857;
    color: #fff;
}

.mobile-menu {
    list-style-type: none;
    margin: 0;
    width: 100%;
    /*float: left;*/
    margin-left: 0;
    padding-left: 0;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

    .mobile-menu ul {
        margin-left: 0;
        padding-left: 0;
    }

        .mobile-menu ul .expand {
            /*background: #eeeeee;*/
        }

    .mobile-menu .expand {
        right: 0;
        position: absolute;
        /*border-right:1px solid #404040;*/
        padding: 0 10px;
        color: #01c7c5;
        width: 30px;
    }

        .mobile-menu .expand:hover {
            cursor: pointer;
        }

    .mobile-menu li {
        display: block;
        border-top: 1px solid #666666;
        width: 100%;
        float: left;
        margin-left: 0;
        padding-left: 0;
        position: relative;
        background: #212121;
    }

        .mobile-menu li a {
            display: block;
            overflow: hidden;
            white-space: normal;
            color: #fff;
            text-decoration: none;
            padding: 10px;
            font-family: 'ggx88light', Arial, sans-serif;
            font-size: 13px;
        }

            .mobile-menu li a.active {
                color: #fca001;
            }

        .mobile-menu li li {
            background: #000;
            border-color: #333;
        }

            .mobile-menu li li li {
                background: #000;
                border-color: #000;
            }

                .mobile-menu li li li > a {
                    color: #ccc;
                }

                    .mobile-menu li li li > a:hover {
                        color: #fff;
                    }

    .mobile-menu .social a {
        float: left;
        padding: 0;
        margin: 10px 0 10px 15px;
    }

    .mobile-menu .social i {
        font-size: 22px;
        color: #01c7c5;
    }

    .mobile-menu input.simple:focus {
        border: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    .mobile-menu [class^="icon-"]:before {
        margin-right: 0;
        margin-left: 0;
    }

    .mobile-menu [class*=" icon-"]:before {
        margin-right: 0;
        margin-left: 0;
    }

.mm-toggle-wrap {
    color: white;
    width: 100%;
    height: 45px;
    background: #555555;
    line-height: 1;
    overflow: hidden;
}

.mm-toggle {
    cursor: pointer;
    font-size: 22px;
    /*display: none;*/
    padding: 12px 13px;
    width: auto;
    float: left;
    /*background: #01c7c5;
  border-right: 1px solid white;*/
    height: 45px;
    background: transparent;
    border: 0;
    display: none;
    margin-top: 15px;
}

.mm-toggle {
    position: relative;
    margin-left: 5px;
    z-index: 999;
}

    .mm-toggle .hamb-top,
    .mm-toggle .hamb-middle,
    .mm-toggle .hamb-bottom {
        background-color: #470a68;
        height: 4px;
        width: 32px;
        display: block;
        margin-bottom: 6px;
    }

.icon-plus {
    background: url(../images/icon-plus.png) no-repeat 0 11px;
}

.icon-minus {
    background: url(../images/icon-minus.png) no-repeat 0 11px;
}

@media (max-width: 767px) {
    .mm-toggle {
        display: block;
    }

        .mm-toggle .mm-label {
            margin-left: 3px;
        }
}

@media (max-width: 480px) {
    .mm-toggle .mm-label {
        display: none;
    }
}
