/* Mobile Menu */
.main-menu {
    position: fixed;
    left: -400px;
    overflow: auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
    height: 100%;
    max-width: 300px;
    z-index: 999;
    bottom: 0;
    padding-top: 5px;
    top: 0;
    background-color: #232369;
}
.main-menu ul ul {
    width: 100%;
    position: relative;
    box-shadow: none;
    background: #232369;
    float: left;
    display: none;
}
.main-menu.active {
    left: 0%;
}
.main-menu ul li a {
    font-size: 1rem;
    text-decoration: none;
    color: #FFF;
    opacity: .9;
    font-weight: 500;
    display: block;
    padding: .7rem 1rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(255 255 255 / 7%);;
}
.main-menu .close-button
{
    height: 3rem;
    display: flex;
    padding: 0 1rem;
    align-items: center;
}
.main-menu .close-button img
{
    cursor: pointer;
    height: 1.25rem;
    margin-left: auto;
}
.sub-menu li a
{
    color:#FFF !important;
}
.sub-menu
{
    margin-bottom: 10px;
}

.top-close-menu {
    text-align: center;
    line-height: 38px;
    position: absolute;
    top: 0;
    z-index: 3;
    right: 0;
    width: 35px;
    height: 35px;
    background-color: #111;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
}
.main-menu.active {
    left: 0%;
}
.main-menu ul li {
    width: 100%;
    border: none;
    position: relative;
}
.main-menu .sub {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background-color: #232369;
      color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 27px;
}
.openbox-overlay, .navigation-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.6);
    display: none;
    z-index: 99;
    width: 100%;
    height: 100%;
    cursor: pointer;
}