.header-nav-inner-container {
  .desktop-menu {
    display        : flex;
    position: relative;
    flex           : 1;
    text-transform : uppercase;
    min-height     : inherit;
    font-size: 13px;
    font-weight: 400;
    .menu-category{ 
      padding: 15px;
      background: rgb(222,9,133);
      width: 100%;
      margin-right: 3px;
      a {
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        padding-left: 20px;
        span{
          padding-left: 20px;
        }
      }
      .sub-category-menu {
        width: 91%;
        position: absolute;
        display: none;
        background-color: #f5f5f5;
        z-index: 1000;
        margin-top: 15px;
        left: 0;
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.3);
        opacity: 0;
        animation: fadeIn 0.3s ease-in both;
        transition: all 300ms cubic-bezier(0.335, 0.010, 0.030, 1.360);
        margin-left: 17px;
        .nav-item {
          .nav-link {
              position: relative;
              display: block;
              overflow: hidden;
              white-space: nowrap;
              -o-text-overflow: ellipsis;
              text-overflow: ellipsis;
              padding: 10px 0 10px 40px;
              padding-left: 35px;
              margin-right: 30px;
              border: none;
              color: #000;
              font-weight: 200;
              text-decoration: none !important;
              transition: color 0s;
          }
          &:hover {
              background-color: rgb(222, 9, 133);
              &>.nav-link{
                  color: #fff;
              }
          }
      }
        .card-category{
          background-color: #fff;
          float: left;
          margin-right: 5px;
          .title{
            text-align: left;
            font-weight: 700;
            padding: 10px;
            a{
              color: black;
            }
            // border-bottom: 1px #f5f5f5 solid ;
          }
          .card-body {
            padding:0px;
            width: 100%;
            .menu-danhmuc-title {
              font-size: 12px;
              overflow: hidden;
              line-height: 22px;
              color: black !important;
              height: 22px;
            }
            a{
              color: black !important;
            }
            .img-right {
              border-right: none;
            }
          }
        }

      }
    }
    .sub-hover {
      &:hover{
        .sub-category-menu {
          display: block;
        }
      }
    }
    ul.main-menu {
      padding-left: 10px;
      min-height     : inherit;
      width          : 78%;
      display        : flex;
      flex-wrap      : wrap;
      justify-content: flex-start;
      align-items    : center;
      li {
        padding-left: 20px;
        &:hover {
          &>a {
            color: rgb(222,9,133);
            &:after{
              transform: scale(1);
            }
          }
          &>div.submenu {
            display: block;
          }
        }
        a {
          padding: 10px;
          padding-top: 15px;
          position:relative;
          &:after {
            content: "";
            position: absolute;
            width: 70%;
            left: 0;
            right: 0;
            bottom: 0;
            height: 4px;
            background: rgb(222,9,133);
            margin: auto;
            transform: scale(0);
            transition: all ease 0.5s;
        }
        }
        &.change-direction {
          &>div.submenu {
            left : unset !important;
            right: 100% !important;
          }
        }
        div.submenu {
          position        : absolute;
          width           : 100%;
          z-index         : 2;
          background-color: #fff;
          display         : none;
          box-shadow      : 0px 0px 3px 1px rgba(#000, 0.3);
          padding: 4px 0;
        }
      }
      &>li {
        padding-right: 15px;
        min-height   : inherit;
        display      : flex;
        align-items  : center;
        &:last-child {
          padding-right: 0;
        }
        &>a {
          .dropdown-button {
            margin-left: 3px;
          }
        }
        &>div.submenu {
          left: 0;
          top: 100%;
          height: 400px;
          padding-top: 20px;
          padding-left: 40px;
          cursor: pointer;
          li {
            a {
              display: block;
              padding: 8px 22px 8px 12px;
              .dropdown-button {
                position       : absolute;
                top            : 50%;
                right          : 0;
                transform      : translateY(-50%);
                width          : 20px;
                height         : 100%;
                display        : flex;
                justify-content: center;
                align-items    : center;
              }
            }
            div.submenu {
              left: 100%;
              top: 0%;
            }
          }
          .row-1 {
            padding: 10px;
            text-align: center;
            img{
              width: 100%;
            }
            h2{
              margin-top: 10px;
              text-transform: uppercase;
              font-size: 16px;
              color: #1F7F5C;
            }
            i{
              font-size: 14px;
            }
            span{
              color: #1f7f5c;
            }
          }
          .title-menu {
            text-transform: none;
            font-weight: 700;
            font-size: 16px;
            color: #1f7f5c;
            width: 80%;
            margin-bottom: 10px;
            border-bottom: 1px solid rgb(209, 206, 206);
          }
          .link-menu {
            text-transform: none;
            line-height: 2;
            margin-bottom: 5px;
            &:hover{
              color: #1f7f5c;
            }
          }
        }
      }
    }
  }

}


// MOBILE MENU
.header-mobile {
  display: none;
}
.mobile-menu-container {
  width: 320px;
  height: 100vh;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 4;
  padding: 25px;
  transition: all 0.3s;
  transform: translateX(-200%);
  &.active {
    transform: translateX(0);
  }
  .header {
    position: relative;
    margin-bottom: 40px;
    .title {
      font-size: 18px;
      text-transform: uppercase;
    }
    .toggle-mobile-menu {
      position: absolute;
      top: 0;
      right: 0;
      cursor: pointer;
    }
  }

  .body {
    padding-bottom: 50px;
    .mobile-menu-list {
      &>li {
        &>a {
          font-size: 20px;
        }
        a {
          display: block;
          width: 100%;
          font-weight: bold;
          padding: 4px 0;
          position: relative;
          padding-right: 25px;
          color: $title-color;
          .dropdown-button {
            width: 20px;
            height: 100%;
            position: absolute;
            top: 50%;
            right: 5px;
            transform: translateY(-50%);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s;
            // &.active {
            //   transform: rotate(-90deg);
            // }
          }
        }
      }

      ul.submenu {
        padding-left: 10px;
        display: none;
        li {
          a {
            color: #0081bf;
          }
        }
      }
    }
  }

  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 320px;
    background-color: #fff;
    .auth-actions {
      display: flex;
      justify-content: space-between;
      .auth-action {
        display: flex;
        align-items: center;
        justify-content: center;
        i {
          margin-right: 5px;
          // vertical-align: middle;
        }
        padding: 8px;
        flex: 1;
        text-align: center;
      }
    }
  }

}
// END MOBILE MENU
.menu-category {
  background-color: #fff;
  border-radius: 18px;
  padding: 10px 0px;
  .title-category {
      padding-left: 30px;
      padding-top: 20px;
      font-size: 20px;
      font-weight: 500;
      line-height: 32px;
  }
  a {
      display: block;
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 5px;
      padding-bottom: 5px;
      line-height: 32px;
      i {
          float: right;
          margin-top: 2px;
          font-size: 26px;
      }
  }
  .active {
      background-color: #0081bf;
      color: #fff;
  }
  .item-nav {
      padding-left: 10px;
      padding-right: 10px;
      a {
          &:hover {
              background-color: #0081bf;
              color: #fff;
              -webkit-transition: color 0s;
              transition: color 0s;
          }
      }
      .submenu-category {
          background: #F4F5F6;
          display: none;
          li {
              padding-left: 20px;
              color: #23262F;
              list-style: inside;
              a {
                  display: inline;
                  padding: 0px;
                  line-height: 40px;
                  &:hover {
                      background-color: transparent;
                      color: #0081bf;
                      -webkit-transition: color 0s;
                      transition: color 0s;
                  }
              }
          }
      }
      .show {
          display: block;
      }
  }
}
