/*
 * mobile-navbar.css - CSS rieng cho mobile navbar
 * Tach tu: assets/css/landing-page-v2.css (cac rule ben trong media queries)
 * KHONG chay pipeline - file nay duoc link truc tiep trong landing-header-meta.php
 * Khi sua file nay, dong thoi xoa rule tuong ung trong landing-page-v2.css.
 */

/* Region 1: tu @media only screen and (max-width: 1000px) trong landing-page-v2.css */
@media only screen and (max-width: 1000px) {
	.top-menu-padding-top{
	  padding-top: 9px;
	}
	
	.top-menu-padding-bot{
	  padding-bottom: 9px;
	}
	
	.group-logo-margin-left{
	  margin-left: 25px !important;
	}
	
	
	.logo-name-font-size{
	  font-size: 17px;
	}
	
	
	
	.top-menu a {
	  font-size: 14px;
	  
	}
}

/* Region 2: tu @media only screen and (max-width: 767px) trong landing-page-v2.css */
@media only screen and (max-width: 767px) {
  .group-menu-header{
    margin-left: 25px;
    width: 100%;
  }
}

/* Region 3: tu @media only screen and (max-width: 350px) trong landing-page-v2.css */
@media only screen and (max-width: 350px) {


.group-menu-header{
  margin-left: 15px;
}
}

/* Region 4: tu @-moz-document url-prefix() #1 trong landing-page-v2.css */
@-moz-document url-prefix() {
@media screen and (max-width: 768px) {

    .group-menu-header{
      margin-left: 0px;
    }

    .top-menu-padding-bot {
      white-space: nowrap !important;
    }
}
}

/* Region 5: tu @media screen and (max-width: 768px) trong landing-page-v2.css */
@media screen and (max-width: 768px) {
    .header-menu-margin-left {
        margin-left: 15px;
    }


    .top-menu-padding-bot {
        white-space: nowrap;
    }
}

/* Region 6: tu @-moz-document url-prefix() #2 trong landing-page-v2.css */
@-moz-document url-prefix() {
@media screen and (max-width: 768px) {

        .group-menu-header {
            margin-left: 0px;
        }


        .top-menu-padding-bot {
            white-space: nowrap !important;
        }


        .header-menu-margin-left {
            margin-left: 15px;
        }


        .top-menu-padding-bot {
            white-space: nowrap;
        }
}
}


/* Region 7: Tach navbar mobile / PC tai breakpoint 1000px
   - .ne-navbar (PC) chi hien thi tren desktop (>1000px)
   - .ne-navbar-mobile chi hien thi tren mobile (<=1000px)
   Khong dung id selector -> dung class .ne-navbar-mobile */
.ne-navbar-mobile {
  width: 100%;
  position: fixed;
  z-index: 9;
  display: none;
}
@media only screen and (max-width: 1000px) {
  .ne-navbar {
    display: none;
  }
  .ne-navbar-mobile {
    display: block;
  }
}
