html.openmenu{
    overflow: hidden !important;
}
/*fixed IOS*/
html.openmenu body{
    overflow: hidden !important;
}
/*======================================================================*/
/*================================ICON==================================*/
/*======================================================================*/
.menu_mobile{
    position: relative;
    overflow: hidden;
}
.vhbothead .menu_mobile{
    width: 55px;
    height: 60px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.menu_mobile.showmenu{
    position: static;
}
.menu_mobile .icon {
    width: 24px;
    height: 40px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    border-radius: 5px;
}
.menu_mobile .icon:before,
.menu_mobile .icon:after {
    content: "";
    width: 24px;
    height: 2px;
    background: #fff;
    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%);
    -webkit-transition: transform 0.2s linear, top 0.2s linear 0.3s;
    -o-transition: transform 0.2s linear, top 0.2s linear 0.3s;
    transition: transform 0.2s linear, top 0.2s linear 0.3s;
}
.menu_mobile.showmenu .icon:before,
.menu_mobile.showmenu .icon:after{
    -webkit-transition: transform 0.2s linear 0.3s, top 0.2s linear;
    -o-transition: transform 0.2s linear 0.3s, top 0.2s linear;
    transition: transform 0.2s linear 0.3s, top 0.2s linear;
}
.menu_mobile .icon:before{
    top: 11px;
}
.menu_mobile .icon:after {
    top: 29px;
}
.menu_mobile .icon .style_icon{
    content: "";
    width: 24px;
    height: 2px;
    background: #fff;
    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%);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
/*======================================================================*/
/*=============================CONTENT==================================*/
/*======================================================================*/
.menu_mobile .divmm {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    visibility: hidden;
    text-align: left;
    z-index: 112;
}
.menu_mobile .divmm .mmContent {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    top: 0;
    right: 0;
    z-index: 60;
    -webkit-transform: translate(-100%, 0%);
    -moz-transform: translate(-100%, 0%);
    -o-transform: translate(-100%, 0%);
    -ms-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    max-width: 420px;
    pointer-events: none;
}
.menu_mobile .divmm .mmContent.no-over{
    overflow-y:hidden;
}
.menu_mobile .divmm .divmmbg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 51;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    pointer-events: auto;
}
.menu_mobile .divmm.show .divmmbg {
    opacity: 1;
    visibility: visible;
}
/*======================================================================*/
/*======================MENU LOAI 1=====================================*/
/*======================================================================*/
.mmMenu {
    padding-right: 50px;
    height: 100%;
}
.mmbgmenu{
    max-height: 100%;
    background: #000000;
    pointer-events: auto;
    position: relative;
}
.mmMenu .mmsubmenu{
    max-height: 100%;
}
.mmMenu .mmsubmenu .sbscroll{
    overflow: hidden;
    overflow-y: auto;
    max-height: 100%;
}
.mmMenu .mmMain{
    /* position: relative; */
}
.mmMenu .mmtitle{
    background-color: #0e862f;
    padding: 12px 40px 12px 15px;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: bold;
}
.mmMenu .mmtitle h2{
    line-height: 24px;
}
.mmMenu .mmlangmn{
    padding: 15px 20px;
    box-shadow: 0 2px 2px 0 rgba(4, 85, 167, 0.05);
}
.mmMenu .mmlangmn ul{
    display: flex;
    align-items: center;
    align-content: center;
}
.mmMenu .mmlangmn li ~ li{
    margin-left: 25px;
}
.mmMenu .mmlangmn li a{
    display: flex;
    align-items: center;
    align-content: center;
}
.mmMenu .mmlangmn li a .img{
    width: 26px;
    height: 18px;
    display: block;
    margin-right: 10px;
}
.mmMenu .mmlangmn li a .img img{
    width: 100%;
    height: 100%;
}
.mmMain .submenuMb{
    position: absolute;
    top: 0;
    left: 0;
    right: 0%;
    bottom: 0;
    transform: translateX(-100%);
    z-index: 11;
    background-color: #000;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.mmMain .submenuMb .titleSub{
    line-height: 26px;
    font-size: 18px;
    position: relative;
    padding: 13px 10px 13px 50px;
    background-color: #ec1b23;
    color: #fff;
}
.mmMain .submenuMb .titleSub::after{
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 25px;
    -webkit-transform: translate(0%,-50%) ;
    -ms-transform: translate(0%,-50%) ;
    -o-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
    font-size: 23px;
}
.mmMain .submenuMb .lstSub{
    height: 100%;
}
.mmMain .submenuMb .lscsroll{
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}
.mmMain .submenuMb .stitle{
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 20px;
}
.mmMain .submenuMb .stitle, .mmMain .submenuMb .stitle a{
    color: #0e862f;
}
.mmMain .submenuMb .slkall{
    padding: 0 20px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 23px;
    font-weight: bold;
}
.mmMain > li.active > .submenuMb{
    transform: initial;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.mmMain > li ul li.active > .submenuMb{
    transform: initial;
    z-index: 12;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.mmMenu .submenuPro{
    background-color: #1d1d1d;
}
.mmMain li{
    overflow: hidden;
    border-bottom: 1px solid #292929;
}
.mmMain li a, .mmMain li .m-sub a {
    display: flex;
    align-items: center;
    align-content: center;
    width: 100%;
    padding: 11px 60px 11px 20px;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
}
.mmMain li.current > a, .mmMain li.current > .m-sub > a{
    background-color: #ec1b23;
    color: #fff;
}
.mmMain li a .icon{
    width: 40px;
    height: 40px;
    min-height: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    border-radius: 100%;
    margin-right: 12px;
    background-color: #0e862f;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.mmMain li a .icon::before, .mmMain li a .icon::after{
    display: none;
}
.mmMain li a .icon img{
    max-width: 60%;
    max-height: 60%;
}
.mmMain li a .txts{
    width: calc(100% - 52px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.mmMain li .m-sub a{
    padding-right: 60px;
}
.mmMain li ul li:last-child{
    border-bottom: none;
}
.mmMain li ul li , .mmMain li ul li .m-sub a{
    font-size: 15px;
}
.mmMain li a .icon_img,
.mmMain li .m-sub a .icon_img{
    margin-right: 10px;
    width: 20px;
}
.mmMain li.v3{
    position: relative;
    padding-right: 20px;
}
.mmMain li.v3::before{
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
font-weight: 900;
    position: absolute;
   right: 15px;
    top: 50%;
    transform: translate(0, -50%);
}
.mmMain li .m-sub{
    position: relative;
}
.mmMain li .m-sub .button-submenu{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    cursor: pointer;
    font-size: 20px;
    line-height: 30px;
    color:#fff;
    border-left: 1px solid #292929;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.mmMain li .m-sub .button-submenu:before{
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    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%);
    font-size: 23px;
}
/*=====LEVEL 2=====*/
.mmMain li ul li a, .mmMain li ul li .m-sub a{
    text-transform: initial;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    padding-left: 20px;
    position: relative;
}
.mmMenu>ul>li>ul{
    position: relative;
    z-index: 1;
    background: #dddddd;
}
.mmMenu> ul>li>ul>li>a,
.mmMenu>ul>li>ul>li>.m-sub>a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 14px 15px;
    padding-left: 30px;
    font-size: 15px;
}
.mmMenu>ul>li>ul>li>a>.img,
.mmMenu>ul>li>ul>li>.m-sub>a>.img{
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.mmMenu>ul>li>ul>li>a>.img>img,
.mmMenu>ul>li>ul>li>.m-sub>a>.img>img{
    max-height: 15px;
    max-width: 15px;
}
.mmMenu>ul>li>ul>li:hover>a,
.mmMenu>ul>li>ul>li:hover>.m-sub>a {
    color:#1475bc;
}
.mmMenu>ul>li>ul>li{
    /* border-top:solid 1px #e5e5e5; */
}
.mmMenu>ul>li>ul>li>.m-sub{
    position: relative;
}
.mmMenu>ul>li>ul>li>.m-sub>.button-submenu{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-left: solid 1px #e5e5e5;
    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>ul>li>.m-sub>.button-submenu:before{
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    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>ul>li>.m-sub>.button-submenu.show:before{
    content: "\f107";
}
/*====LEVEL 3====*/
.mmMenu>ul>li>ul>li>ul{
    position: relative;
    z-index: 1;
    background: #e5e5e5;
}
.mmMenu>ul>li>ul>li>ul>li>a,
.mmMenu>ul>li>ul>li>ul>li>.m-sub>a {
    display: block;
    padding: 14px 15px;
    padding-left: 35px;
}
.mmMenu>ul>li>ul>li>ul>li:hover>a,
.mmMenu>ul>li>ul>li>ul>li:hover>.m-sub>a {
    color:#da251c;
}
.mmMain li .sview{
    margin-top: 10px;
}
.mmMain li .sview a{
    display: inline-block;
    color: #f4496b;
    font-size: 15px;
    line-height: 23px;
    border-bottom: 1px solid #f4496b;
    width: auto;
    padding: 0;
}
/*======================================================================*/
/*======================MENU LOAI 2=====================================*/
/*======================================================================*/
.menu_mobile.menu_2 .mmMain.mmMain li ul{
    display: none;
}
.mmMenu .m-ab {
    position: fixed;
    top: 0;
    left: 50px;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 61;
    overflow-y: auto;
    -webkit-transition: opacity 0.5s ease , visibility 0.5s ease , transform 0.5s ease;
    -moz-transition: opacity 0.5s ease , visibility 0.5s ease , transform 0.5s ease;
    -o-transition: opacity 0.5s ease , visibility 0.5s ease , transform 0.5s ease;
    transition: opacity 0.5s ease , visibility 0.5s ease , transform 0.5s ease;
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
    border-left: 1px solid rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
}
.mmMenu .m-ab.active{
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}
.mmMenu .m-ab .m-ab-title a{
    display: block;
    padding: 14px 20px;
    text-transform: uppercase;
    font-weight: bold;
}
.mmMenu .m-ab .m-ab-title {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.mmMenu .m-ab .m-ab-arrow a{
    display: block;
    padding: 14px 20px;
    text-transform: none;
    background: #000000;
    color:#ffffff;
    text-transform: uppercase;
}
.mmMenu .m-ab li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.mmMenu .m-ab li a {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    padding: 13px 20px;
    padding-left: 40px;
    position: relative;
    font-weight: normal;
}
.mmMenu .m-ab li a:before{
    position: absolute;
    font-family: 'Font Awesome 5 Free';
font-weight: 900;
    content: '\f0da';
    left:20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mmMenu .m-ab li:hover a{
    color:#ff0000;
}
.mmMenu .m-ab li .m-sub{
    position: relative;
}
.mmMenu .m-ab li .button-submenu{
    position: absolute;
    right:0;
    top: 0;
    width: 50px;
    height: 50px;
    border-left: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
}
.mmMenu .m-ab li .button-submenu:before{
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
font-weight: 900;
    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 .m-ab ul ul{
    display: none;
}
/*======================================================================*/
/*===========================MENU SHOW LEFT=============================*/
/*======================================================================*/
.menu_mobile.show_left .divmm .mmContent {
    padding-left: 0;
    padding-right: 50px;
    margin: 0 auto 0 0;
    direction: rtl;
    -webkit-transform: translate(-100%, 0%);
    -moz-transform: translate(-100%, 0%);
    -o-transform: translate(-100%, 0%);
    -ms-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
}
.menu_mobile.show_left .divmm .mmContent .mmMenu .m-ab {
    -webkit-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    border-right: 1px solid rgba(0,0,0,0.1);
    left: 0;
    right: 50px;
}
.menu_mobile.show_left .divmm.show .mmContent .close-mmenu,
.menu_mobile.show_left .divmm .mmContent .close-mmenu{
    left: auto;
    right: 0;
}
.menu_mobile.show_left .divmm .mmContent .mmMenu .m-ab.active{
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.menu_mobile .divmm.show {
    visibility: visible;
}
.menu_mobile .divmm.show .mmContent {
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}
.menu_mobile .divmm.show .mmContent .close-mmenu {
    right: 0px;
    top: 0px;
    opacity: 1;
}
/*======================================================================*/
/*===========================CLOSE MENU=================================*/
/*======================================================================*/
.menu_mobile .divmm .mmContent .close-mmenu {
    position: absolute;
    width: 50px;
    height: 60px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    opacity: 0;
    pointer-events: auto;
    text-align: center;
}
.menu_mobile .divmm .mmContent .close-mmenu .xclose{
    position: absolute;
    top: 12px;
    left: 5px;
    width: 15px;
    height: 2px;
    background-color: #000;
    transform: rotate(45deg);
}
.menu_mobile .divmm .mmContent .close-mmenu .xclose::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 15px;
    height: 2px;
    background-color: #000;
    transform: rotate(90deg);
}
.menu_mobile .divmm .mmContent .close-mmenu span{
    width: 25px;
    display: block;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 29px;
    left: 12px;
}
.menu_mobile .divmm .mmContent .close-mmenu span::before{
    content: '';
    width: 25px;
    display: block;
    height: 2px;
    background-color: #fff;
    transform: rotate(90deg);
    position: absolute;
    top: 0px;
    left: 0px;
}
/*======================================================================*/
/*===========================ADDON======================================*/
/*======================================================================*/
.mmMember {
    background: #3db8e4;
    pointer-events: auto;
}
.mmMember .icon_m {
    padding: 10px 15px;
    position: relative;
    cursor: pointer;
    background: #f47721;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    line-height: 21px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}
.mmMember .icon_m .txt .t2{
    font-weight: 600;
}
.mmMember .icon_m .img{
    width: 20px;
    height: 3px;
    background-color: #fff;
    position: relative;
    margin-right: 20px;
}
.mmMember .icon_m .img:before{
    position: absolute;
    top: 5px;
    width: 20px;
    height: 3px;
    background-color: #fff;
    content: '';
}
.mmMember .icon_m .img::after{
    position: absolute;
    top: -5px;
    width: 20px;
    height: 3px;
    background-color: #fff;
    content: '';
}
.mmMember .icon_m.ok .img img{
    max-height: 100%;
}
.mmMember.active .popup{
    display: block;
}
.mmMember .popup{
    background: #ffffff;
    position: relative;
    display: none;
    border-bottom: solid 1px rgba(0,0,0,0.1);
}
.mmMember .listNot{
    padding: 15px;
    border-bottom: solid 1px rgba(0,0,0,0.1);
}
.mmMember .listNot ul li{
    margin-bottom: 10px;
}
.mmMember .listNot ul li:last-child{
    margin-bottom: 0;
}
.mmMember .listNot ul li a {
    display: block;
    text-align: center;
    background: #e5af50;
    text-transform: uppercase;
    padding: 9px 10px;
    color: #ffffff;
    border-radius: 5px;
}
.mmMember .listNot ul li a:hover{
    background: #333333;
    color:#ffffff;
}
.mmMember .listNot ul li a.v2{
    background: #eeeeee;
    color: #333333;
}
.mmMember .listNot ul li a.v2:hover{
    background: #333333;
    color: #ffffff;
}
.mmMember .listSocial{
    padding: 15px;
}
.mmMember .listSocial .soc,
.mmMember .listSocial .txt{
    margin-bottom: 10px;
}
.mmMember .listSocial a{
    display: block;
    padding:9px 10px;
    padding-left: 50px;
    position: relative;
    color:#ffffff;
    background: #666666;
}
.mmMember .listSocial a:before{
    font-family: 'Font Awesome 5 Free';
font-weight: 900;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background: #4b64a5;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color:#ffffff;
    z-index: 2;
}
.mmMember .listSocial a:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    z-index: 1;
    background: #333333;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.mmMember .listSocial a span{
    position: relative;
    z-index: 3;
}
.mmMember .listSocial a:hover{
    color:#ffffff;
}
.mmMember .listSocial a:hover:after{
    right:0;
}
.mmMember .listSocial a.fa-facebook{
    background: #6b86cd;
}
.mmMember .listSocial a.fa-facebook:before,
.mmMember .listSocial a.fa-facebook:after{
    background: #4b64a5;
}

.mmMember .listSocial a.fa-google{
    background: #f4664e;
}
.mmMember .listSocial a.fa-google:before,
.mmMember .listSocial a.fa-google:after{
    background: #df4930;
}
.mmMember .user {
    padding: 15px 20px;
    border-bottom: solid 1px #e5e5e5;
}
.mmMember .user .name{
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}
.mmMember .user .stt{
    font-size: 13px;
    line-height: 21px;
    font-style: italic;
    color:#999999;
}
.mmMember .list{
    padding: 20px;
}
.mmMember .list ul li{
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}
.mmMember .list ul li:last-child{
    margin-bottom: 0;
}
.mmMember .list ul li:before{
    content: "\f0da";
    font-family: 'Font Awesome 5 Free';
font-weight: 900;
    position: absolute;
    left:0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mmMember .list ul li a span{
    font-weight: bold;
    color:#e40000;
}
.mmMember .logout a {
    display: block;
    text-align: center;
    background: #f2f2f2;
    text-transform: uppercase;
    padding: 9px 10px;
}
.mmMember .logout a:hover{
    background: #2d2d2d;
    color: #ffffff;
}

/*  */
.mmBook{
    padding: 15px;
}
.mmBook a{
    width: 100%;
    padding: 8px 15px;
}

.mmMenu .phoneHead{
    padding: 10px 15px;
}

.fancybox-active .mmMain,.fancybox-active .mmContent, .fancybox-active .mmMenu, .fancybox-active .menu_mobile .divmm .divmmbg{
    pointer-events: none;
    z-index: -11;
}

.mmMenu .mmShare{
    padding: 20px 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.mmMenu .mmShare ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.mmMenu .mmShare ul li{
    border-bottom: none;
    margin-right: 20px;
}
.mmMenu .mmShare ul li:last-child{
    margin-right: 0;
}
.mmMenu .mmShare ul li a{
    color: #0169b9;
    padding: 0;
}
.mmMenu .mmmenusm {
    background-color: #f6f6f6;
    padding: 20px 15px;
}
.mmMenu .mmmenusm li{
    border-bottom: none;
    margin-bottom: 10px;
}
.mmMenu .mmmenusm li:last-child{
    margin-bottom: 0;
}
.mmMenu .mmmenusm li a{
    padding: 0;
    text-transform: initial;
    font-weight: 400;
}
.mmMenu .mmmenusm li.current a{
    color: #da251c;
}
/* <=== mmphoness ===>*/
.mmphoness{
    padding: 12px 20px;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    align-content: center;
}
.mmphoness i{
    color: #c1ae90;
    font-size: 15px;
    margin-right: 15px;
}
.mmphoness, .mmphoness a{
    color: #eeeeee;
}
/* <=== mmphoness ===>*/

