/* =========================================================
   AMT001 MOBILE MENU
   Module độc lập 100%
========================================================= */
.logo-menumobile{width: 70%;margin: 0 auto;display: block;padding: 20px;max-width: 140px;}
.amt001-mobile-menu[hidden]{
  display: none !important;
}

.amt001-mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.amt001-mobile-menu__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.34);
  opacity: 0;
  transition: opacity .25s ease;
}

.amt001-mobile-menu__panel{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #096e4f;
    background: linear-gradient(40deg, #096e4f 0%, #096e4f 35%, #0c936a 100%);
  box-shadow: 0 0 24px rgba(0,0,0,.18);
  transform: translateX(-105%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  outline: none;padding-bottom: 70px;
}

.amt001-mobile-menu.is-open .amt001-mobile-menu__backdrop{
  opacity: 1;
}

.amt001-mobile-menu.is-open .amt001-mobile-menu__panel{
  transform: translateX(0);
}

.amt001-mobile-menu__head{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid transparent ;
  background: transparent ;
}

.amt001-mobile-menu__head > :nth-child(2){
  margin-left: 10px;
  min-width: 0;
}

.amt001-mobile-menu__head > :last-child{
  justify-self: end;margin-right: 5px;
}

.amt001-mobile-menu__title{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #fff;
  min-width: 0;text-transform: uppercase;
}

.amt001-mobile-menu__back,
.amt001-mobile-menu__close,
.amt001-mobile-menu__toggle{
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.amt001-mobile-menu__back{
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  line-height: 1; width: 40px;overflow: hidden;
  -webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;height: 40px;
}
.amt001-mobile-menu__close{
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1; width: 40px;overflow: hidden;
  -webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;height: 40px;
}

.amt001-mobile-menu__back:hover,
.amt001-mobile-menu__close:hover{
  background: rgba(0,0,0,.05);
}

.amt001-mobile-menu__body{
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: transparent;
}
/*------*/
.amt001-mobile-menu__body::-webkit-scrollbar {
    width: 6px;
}

.amt001-mobile-menu__body::-webkit-scrollbar-track {
    background: #1313135e;
}

.amt001-mobile-menu__body::-webkit-scrollbar-thumb {
    background: #0c936a;
}
/*------*/

.amt001-mobile-menu__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.amt001-mobile-menu__item{
  border-bottom: 1px solid transparent;
}

.amt001-mobile-menu__row{
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: stretch;
  min-height: 48px;
}

.amt001-mobile-menu__row--single{
  grid-template-columns: 1fr;
}

.amt001-mobile-menu__link,
.amt001-mobile-menu__text{
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.45;
  min-width: 0;
  word-break: break-word; text-transform: uppercase;
}

.amt001-mobile-menu__text{
  cursor: default;
}

.amt001-mobile-menu__link:hover{
  background: #b98313; color: #fff;
}

.amt001-mobile-menu__toggle{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-left: 1px solid transparent;
  font-size: 18px;
  color: #fff;
}

.amt001-mobile-menu__toggle:hover{
  background: #b98313; color: #fff;
}

html.amt001-mobile-menu-lock,
body.amt001-mobile-menu-lock{
  overflow: hidden;
}

body.amt001-mobile-menu-lock{
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

@media (min-width: 981px){
  .amt001-mobile-menu{
    display: none !important;
  }
}
.amt001-mobile-menu__item.is-active > .amt001-mobile-menu__row,
.amt001-mobile-menu__item.is-trail > .amt001-mobile-menu__row{
  background: #b98313;
}
.amt001-mobile-menu__item.is-active > .amt001-mobile-menu__row  > .amt001-mobile-menu__link,
.amt001-mobile-menu__item.is-trail > .amt001-mobile-menu__row > .amt001-mobile-menu__link{color: #fff;}

.amt001-mobile-menu__item.is-active > .amt001-mobile-menu__row  > .amt001-mobile-menu__toggle,
.amt001-mobile-menu__item.is-trail > .amt001-mobile-menu__row > .amt001-mobile-menu__toggle {color: #fff;}

.amt001-mobile-menu__link.is-active,
.amt001-mobile-menu__text.is-active{
  color:#fff;
  font-weight:700;
}
.amt001-mobile-menu__back span:last-child{
  display: none;
}