html.openmenu {
    overflow: hidden !important;
    height: 100% !important;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

/*fixed IOS*/

html.openmenu body {
    height: 100% !important;
    position: relative;
    overflow: hidden !important;
    margin-top: 0 !important;
}

/*======================================================================*/

/*================================ICON==================================*/

/*======================================================================*/

.menu_mobile {
    pointer-events: auto;
}

.menu_mobile.showmenu {
    position: static;
}

.menu_mobile .icon_menu {
    position: relative;
    width: 20px;
    height: 15px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0px;
    text-transform: uppercase;
}

.menu_mobile .icon_menu:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #00467d;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.menu_mobile.active .icon_menu:before {
    opacity: 0;
}

.menu_mobile .icon_menu .style_icon:before,
.menu_mobile .icon_menu .style_icon:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #00467d;
}

.menu_mobile .icon_menu .style_icon:before {
    top: 0px;
    -webkit-transition: transform 0.2s linear, top 0.2s linear 0.4s;
    -o-transition: transform 0.2s linear, top 0.2s linear 0.4s;
    transition: transform 0.2s linear, top 0.2s linear 0.4s;
}

.menu_mobile .icon_menu .style_icon:after {
    bottom: 0px;
    -webkit-transition: transform 0.2s linear, bottom 0.2s linear 0.4s;
    -o-transition: transform 0.2s linear, bottom 0.2s linear 0.4s;
    transition: transform 0.2s linear, bottom 0.2s linear 0.4s;
}

.menu_mobile.active .icon_menu .style_icon:before {
    top: 7px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 0.2s linear, transform 0.2s linear 0.4s;
    -o-transition: top 0.2s linear, transform 0.2s linear 0.4s;
    transition: top 0.2s linear, transform 0.2s linear 0.4s;
}

.menu_mobile.active .icon_menu .style_icon:after {
    bottom: 6px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: bottom 0.2s linear, transform 0.2s linear 0.4s;
    -o-transition: bottom 0.2s linear, transform 0.2s linear 0.4s;
    transition: bottom 0.2s linear, transform 0.2s linear 0.4s;
}

/*======================================================================*/

/*=============================CONTENT==================================*/

/*======================================================================*/

.menu_mobile .popup_menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 10;
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    display: none;
}

.menu_mobile .bgBlack {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
}

.menu_mobile.active .bgBlack {
    opacity: 1;
    visibility: initial;
}

/*======================================================================*/

/*======================MENU LOAI 1=====================================*/

/*======================================================================*/

.mmMenu>ul>li {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.mmMenu>ul>li>a {
    display: block;
    padding: 14px 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.mmMenu>ul>li:hover>a {
    color: #00467d;
}

.mmMenu>ul>li>.button-submenu {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-left: solid 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 26px;
    line-height: 34px;
    color: #666666;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.mmMenu>ul>li>.button-submenu:before {
    content: "\f105";
    font-family: fontAwesome;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.mmMenu>ul>li.active>.button-submenu:before {
    content: "\f107";
}

.mmMenu>ul>li:hover>.button-submenu {
    color: #00467d;
}

/*=====LEVEL 2=====*/

.mmMenu>ul>li>ul {
    position: relative;
    z-index: 1;
    background: #f5f5f5;
    display: none;
}

.mmMenu>ul>li>ul>li>a,
.mmMenu>ul>li>ul>li>.m-sub>a {
    display: block;
    padding: 9px 15px;
    padding-left: 35px;
}

.mmMenu>ul>li>ul>li:hover>a,
.mmMenu>ul>li>ul>li:hover>.m-sub>a {
    color: #00467d;
}

.mmMenu>ul>li>ul>li {
    border-top: solid 1px #e5e5e5;
}

/*======================================================================*/

/*===========================ADDON======================================*/

/*======================================================================*/

.mmSearch {
    position: relative;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    pointer-events: auto;
}

.mmSearch input {
    height: 40px;
    width: 100%;
    border: solid 1px #cecece;
    padding-left: 15px;
    color: #666666;
    font-style: italic;
    background: #f6f6f6;
}

.mmSearch button {
    position: absolute;
    right: 30px;
    background: none;
    border: none;
    padding: 0;
    top: 50%;
    font-size: 21px;
    line-height: 29px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #00467d;
}