/* ---Gerneral appearance--- */
.awBtnMenuDiv {
    display: none;
}

@media (max-width: 768px) {
    .awBtnMenuDiv {
        display: block;
    }

    /* origin NkNavList */
    .NkNavList:not(.clone) {
        display: none;
    }

    /* origin NkCategoryList */
    .NkCategoryList {
        display: none;
    }
}

.awBtnMenu {
    z-index: 3001;
    position: fixed;
    height: 100%;
    width: 80%;
    top: 0;
    left: 0;
    background-color: white;
    transform: translate(-100%);
    transition: all 0.3s ease-in-out;
}

.awBtnMenu.show {
    transform: translate(0%);
}

.meus_NkMiniSiteAndPrdNav .meMsg_MsgBlkZ,
.meus_NkMiniSiteAndPrdNav .hamburger-content,
.meus_NkMiniSiteAndPrdNav .tab-content  {
    height: 100%;
}

#iAJAX_MaskDiv {
    background-color: rgba(204, 204, 204, 0.404) !important;
}

.meus_NkMiniSiteAndPrdNav .close-btn {
    display: none;
    position: fixed;
    right: -40px;
    padding: 10px;
    background-color: unset;
    border: unset;
    cursor: pointer;
}
.meus_NkMiniSiteAndPrdNav .close-btn.show {
    display: block;
}

.meus_NkMiniSiteAndPrdNav .close-icon {
    display: inline-block;
    cursor: pointer;
    background-image: url("https://athena.noon360.com/noon360/slash/MsgInfo/cross.png");
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}

/* ---Tab Menu--- */
.meus_NkMiniSiteAndPrdNav .tab {
    /* overflow: hidden; */
    display: flex;
    justify-content: space-evenly;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Buttons that open the tab content */
.meus_NkMiniSiteAndPrdNav .tab .tablinks {
    width: 100%;
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.meus_NkMiniSiteAndPrdNav .tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.meus_NkMiniSiteAndPrdNav .tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.meus_NkMiniSiteAndPrdNav .tab-content {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

/* Fist tab content will display block */
.meus_NkMiniSiteAndPrdNav .tab-content {
    display: none;
}

.meus_NkMiniSiteAndPrdNav .tab-content.active {
    display: block;
}

/* --------------All nav list--------------- */
/* hide the root node */
.NkNavList .SiteNode_0 {
    display: none;
}

/* --------------PC Nav List---------------- */
.NkNavList:not(.clone) .SiteMenu_0 {
    display: flex;
}


/* ----------All NkCategoryList------------- */
/* img width in category list */
.meus_NkMiniSiteAndPrdNav .category-content .TreeNode img,
.NkCategoryList .TreeNode img {
    width: 46px;
}

/* get rid of the red point */
.meus_NkMiniSiteAndPrdNav .category-content .TreeNode a,
.NkCategoryList .TreeNode a {
    background: none;
}

/* hide category number */
.meus_NkMiniSiteAndPrdNav .category-content .TreeNode .ClassNum,
.NkCategoryList .TreeNode .ClassNum {
    display: none;
}

/* hide all submenu in default */
.meus_NkMiniSiteAndPrdNav .tab-content .TreeGroup_2.hasSubMenu .TreeMenu,
.NkCategoryList .TreeGroup_2.hasSubMenu .TreeMenu {
    display: none;
}

/* -------------------------Mobile Category List------------------- */
.meus_NkMiniSiteAndPrdNav .prd-list {
    display: flex;
    justify-content: space-around;
}

.meus_NkMiniSiteAndPrdNav .prd-list .category-content {
    width: 100%;
}

.meus_NkMiniSiteAndPrdNav .prd-list .category-content .TreeMenu.active {
    display: block;
}

/* .meus_NkMiniSiteAndPrdNav .prd-list .category-content .TreeNode a { 
    padding-left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: end;
} */

/* ---------------------------PC Category List----------------------- */
.NkCategoryList .TreeMenu_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.NkCategoryList .TreeGroup_2 {
    width: 161px;
}

/* when menu is not hover */
.NkCategoryList .TreeGroup_2 .TreeMenu_1 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* hover nav display menu */
.NkCategoryList .TreeGroup_2.hasSubMenu .TreeMenu_1.show {
    display: block;
}

/* expand arrow */
.arrow-icon {
    background-image: url("https://athena.noon360.com/noon360/lab/MsgInfo/arrow.png");
    background-size: 10px 10px;
    display: inline-block;
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease-in;
}

/* active arrow */
.collapse {
    transform: rotate(90deg) !important;
    -webkit-transform: rotate(90deg) !important;
}