.cmenu {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem; }
  .cmenu > * {
    min-width: 0; }
  @media (max-width: 991px) {
    .cmenu {
      grid-template-columns: 1fr; } }
  .cmenu .cmenu-right .container {
    padding-left: 15px !important;
    padding-right: 15px !important; }

@media (max-width: 991px) {
  .cmenu-head {
    display: none !important; } }

.hd-topbar, #site-header {
  position: relative;
  z-index: 90; }

.nmd {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 215px; }
  @media (max-width: 991px) {
    .nmd {
      display: none !important; } }
  .nmd:hover {
    z-index: 99; }
  .nmd .nmd-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 215px;
    background: #FFF;
    z-index: 0;
    border-right: 1px solid #DbDbDb;
    z-index: 2; }
    .nmd .nmd-wrapper:hover + .nmd-overlay {
      opacity: 1 !important;
      visibility: visible !important; }
    .nmd .nmd-wrapper .nmd-logo {
      min-height: 185px;
      padding: 1rem .5rem;
      background: #F4F4F4;
      border-bottom: 1px solid #DbDbDb;
      display: flex;
      justify-content: center;
      align-items: center; }
    .nmd .nmd-wrapper .nmd-head {
      padding: .5rem;
      background: #FFF;
      border-bottom: 1px solid #DbDbDb;
      display: grid;
      align-items: center;
      grid-template-columns: 32px 1fr;
      gap: .5rem; }
      .nmd .nmd-wrapper .nmd-head img {
        margin: 0 auto; }
      .nmd .nmd-wrapper .nmd-head p {
        margin: 0;
        font-size: 14px; }
        .nmd .nmd-wrapper .nmd-head p strong {
          display: block;
          line-height: 1; }
        .nmd .nmd-wrapper .nmd-head p span {
          color: gray;
          font-size: 12px;
          line-height: 1; }
    .nmd .nmd-wrapper .nmd-body {
      position: relative;
      z-index: 2; }
      .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar {
        overflow-y: auto;
        max-height: calc(100vh - 235px); }
        .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar::-webkit-scrollbar {
          width: 0; }
        .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul {
          padding-left: .25rem; }
          .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li:hover {
            background: #e6f1ff;
            border-radius: 8px 0 0 8px; }
            .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li:hover ul {
              opacity: 1;
              visibility: visible; }
          .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > a {
            padding: .5rem;
            cursor: pointer;
            padding-left: .25rem;
            display: flex;
            align-items: center;
            gap: .5rem; }
            .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > a img {
              max-width: 32px; }
            .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > a strong {
              font-size: 12px; }
          .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > ul {
            position: fixed;
            background: #FFF;
            top: 0;
            bottom: 0;
            left: 215px;
            width: 540px;
            display: grid;
            align-items: flex-start;
            align-content: flex-start;
            padding: 1rem;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem 1rem;
            opacity: 0;
            visibility: hidden;
            overflow: hidden auto; }
            .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > ul > li a img {
              border-radius: 999px;
              margin-bottom: 10px;
              aspect-ratio: 1;
              width: 100%;
              height: 100%;
              object-fit: cover; }
            .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > ul > li a span {
              font-weight: bold;
              margin-bottom: 15px;
              font-size: 12px; }
            .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > ul > li > ul {
              margin-top: 10px; }
              .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > ul > li > ul > li:nth-child(n+6) {
                display: none; }
              .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > ul > li > ul > li[data-type="more-menu3"] {
                display: block; }
              .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > ul > li > ul > li > a {
                text-decoration: underline;
                font-weight: 300;
                margin-bottom: 5px;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
                transition: all 0.25s;
                line-height: 1.4;
                -webkit-line-clamp: 1;
                height: calc(1em * 1.4 * 1); }
                .nmd .nmd-wrapper .nmd-body .nmd-body-sidebar > ul > li > ul > li > ul > li > a span {
                  font-weight: 400; }
  .nmd .nmd-overlay {
    position: fixed;
    inset: 0;
    left: 215px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    visibility: hidden; }

.nmm {
  position: fixed;
  inset: 0;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all .5s; }
  .nmm.active {
    opacity: 1;
    visibility: visible; }
  .nmm .nmm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; }
  .nmm .nmm-wrapper {
    position: absolute;
    inset: .5rem;
    background: #FFF;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05); }
    .nmm .nmm-wrapper ul {
      margin: 0;
      padding: 0;
      list-style-type: none; }
    .nmm .nmm-wrapper .nmm-head {
      text-align: center;
      position: relative;
      padding: .75rem 1rem;
      border-bottom: 1px solid #DbDbDb; }
      .nmm .nmm-wrapper .nmm-head button {
        all: unset;
        position: absolute;
        top: 50%;
        left: 1rem;
        transform: translateY(-50%); }
    .nmm .nmm-wrapper .nmm-body {
      padding: .5rem;
      display: grid;
      grid-template-columns: 80px 1fr;
      align-items: flex-start; }
      .nmm .nmm-wrapper .nmm-body > * {
        min-width: 0; }
      .nmm .nmm-wrapper .nmm-body .nmm-body-left {
        max-height: calc(100vh - 2rem - 50px);
        overflow: hidden auto; }
        .nmm .nmm-wrapper .nmm-body .nmm-body-left::-webkit-scrollbar {
          width: 0; }
        .nmm .nmm-wrapper .nmm-body .nmm-body-left ul li.active {
          background: #e6f1ff; }
        .nmm .nmm-wrapper .nmm-body .nmm-body-left ul li a {
          display: block;
          padding: .5rem;
          text-align: center;
          font-size: 12px; }
          .nmm .nmm-wrapper .nmm-body .nmm-body-left ul li a img {
            max-width: 35px;
            margin-bottom: .5rem;
            overflow: hidden; }
          .nmm .nmm-wrapper .nmm-body .nmm-body-left ul li a strong {
            display: block;
            font-weight: 500; }
      .nmm .nmm-wrapper .nmm-body .nmm-body-right {
        max-height: calc(100vh - 2rem - 50px);
        overflow: hidden auto; }
        .nmm .nmm-wrapper .nmm-body .nmm-body-right::-webkit-scrollbar {
          width: 0; }
        .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li {
          padding: .5rem; }
          .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li.active {
            background: #e6f1ff; }
          .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li + li {
            padding-top: 1rem;
            border-top: 1px solid #DbDbDb; }
          .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li > a {
            font-size: 12px;
            display: block;
            margin-bottom: .5rem; }
            .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li > a strong {
              font-weight: bolder; }
          .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li > ul {
            display: grid;
            grid-template-columns: repeat(3, 1fr); }
            .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li > ul li {
              padding: 0; }
              .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li > ul li a {
                display: block;
                padding: .5rem;
                text-align: center;
                font-size: 12px; }
                .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li > ul li a img {
                  max-width: 48px;
                  margin-bottom: .5rem;
                  overflow: hidden;
                  aspect-ratio: 1;
                  width: 100%;
                  height: 100%;
                  object-fit: cover; }
                .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li > ul li a span {
                  display: block;
                  display: -webkit-box;
                  -webkit-box-orient: vertical;
                  overflow: hidden;
                  transition: all 0.25s;
                  line-height: 1.4;
                  -webkit-line-clamp: 2;
                  height: calc(1em * 1.4 * 2); }
          .nmm .nmm-wrapper .nmm-body .nmm-body-right > ul > li > a.all {
            background: #e6f1ff;
            padding: .25rem .5rem;
            text-align: center;
            color: #3280f6;
            border-radius: 999px;
            font-weight: bold;
            margin-top: .5rem; }

/*.cmenu .cmenu-right .container {
	position: relative;
	z-index: 1;
}*/
.product-loop,
.product-loop .product-inner,
.product-loop .proloop-image,
.product-loop .proloop-image .product--image,
.product-loop .proloop-image .lazy-img,
.product-loop .proloop-detail {
  position: relative;
  z-index: 1; }

.product-loop .proloop-image .proloop-link {
  z-index: 2; }

.template-collection .product-loop .product-inner {
  border-radius: 8px; }

.template-collection .product-loop {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 0; }

.nmd .nmd-wrapper .nmd-logo {
  margin-bottom: 10px; }

.wrapbox-detail {
  position: relative; }

.tag-image-1 img {
  max-height: 75px !important; }

.tag-image-2 img {
  max-height: 25px !important; }
