/* SmartMenus
-------------------------------------------------------------------------------------------*/
.smart-menus{box-sizing:border-box;position:relative;z-index:9999;-webkit-tap-highlight-color:rgba(0,0,0,0);}
.smart-menus,.smart-menus ul,.smart-menus li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;}
.smart-menus-rtl,.smart-menus-rtl ul,.smart-menus-rtl li{direction:rtl;text-align:right;}
.smart-menus>li>h1,.smart-menus>li>h2,.smart-menus>li>h3,.smart-menus>li>h4,.smart-menus>li>h5,.smart-menus>li>h6{margin:0;padding:0;}
.smart-menus ul{display:none;}
.smart-menus li,.smart-menus a{position:relative;}
.smart-menus a{display:block;}
.smart-menus a.disabled{cursor:default;}
.smart-menus::after{content:"";display:block;height:0;font:0px/0 serif;clear:both;overflow:hidden;}
.smart-menus *,.smart-menus *::before,.smart-menus *::after{box-sizing:inherit;}

#global_nav:after,
#main-menu {
  clear: both;
}
@media (max-width : 767px) {
	.nav_container {
		position: absolute;
		top:0;
	}
	.nav_container .container {
		padding-left: 0;
		padding-right: 0;
	}
}

/* Mobile menu toggle button
-------------------------------------------------------------------------------------------*/
.main-menu-btn {
  float: right;
  margin: 15px;
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-indent: 30px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* hamburger icon */
.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 30px;
  background: #555;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.main-menu-btn-icon:before {
  content: '';
  top: -10px;
  left: 0;
}
.main-menu-btn-icon:after {
  content: '';
  top: 10px;
  left: 0;
}
/* x icon */
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: transparent;
}
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* hide menu state checkbox (keep it visible to screen readers) */
#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/* hide the menu in mobile view */
#main-menu-state:not(:checked) ~ #main-menu {
  display: none;
}
#main-menu-state:checked ~ #main-menu {
  display: block;
}
@media (min-width: 768px) {
  /* hide the button in desktop view */
  .main-menu-btn {
    position: absolute;
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu {
    display: block;
  }
}

/* themes
-------------------------------------------------------------------------------------------*/
.smart-menus {
  background: #FFF;
  -webkit-tap-highlight-color: rgba(0,0,0,0.2);
}
.smart-menus a, .smart-menus a:hover, .smart-menus a:focus, .smart-menus a:active {
  padding: 15px;
  /* make room for the toggle button (sub indicator) */
  padding-right: 58px;
  font-weight: bold;
  line-height: 17px;
  text-decoration: none;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.smart-menus a.current {
  background: #555555;
  color: #FFF;
}
.smart-menus a.disabled {
  color: #CCC;
}
.smart-menus a span.sub-arrow {
  font-family: 'icomoon';
  content: "\e908";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  left: auto;
  right: 10px;
  width: 34px;
  height: 34px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  margin-top: -17px;
  background: rgba(0, 0, 0, 0.08);  
}
.smart-menus a .sub-arrow::before {
  content: '\e91a';
}
.smart-menus a.highlighted .sub-arrow::before {
  content: '\e915';
}
.smart-menus li {
  border-top: 1px solid #DDD;
}
.smart-menus > li:last-child {
  border-bottom: 1px solid #DDD;
}
.smart-menus ul {
  background: rgba(179, 179, 179, 0.15);
}
.smart-menus ul a, .smart-menus ul a:hover, .smart-menus ul a:focus, .smart-menus ul a:active {
  border-left: 16px solid transparent;
}
.smart-menus ul ul a,
.smart-menus ul ul a:hover,
.smart-menus ul ul a:focus,
.smart-menus ul ul a:active {
  border-left: 24px solid transparent;
}
.smart-menus ul ul ul a,
.smart-menus ul ul ul a:hover,
.smart-menus ul ul ul a:focus,
.smart-menus ul ul ul a:active {
  border-left: 32px solid transparent;
}
.smart-menus ul ul ul ul a,
.smart-menus ul ul ul ul a:hover,
.smart-menus ul ul ul ul a:focus,
.smart-menus ul ul ul ul a:active {
  border-left: 40px solid transparent;
}
.smart-menus ul ul ul ul ul a,
.smart-menus ul ul ul ul ul a:hover,
.smart-menus ul ul ul ul ul a:focus,
.smart-menus ul ul ul ul ul a:active {
  border-left: 48px solid transparent;
}

@media (min-width: 768px) {
  .smart-menus ul {
    position: absolute;
    width: 12em;
  }
  .smart-menus li {
    float: left;
  }
  .smart-menus.sm-rtl li {
    float: right;
  }
  .smart-menus ul li, .smart-menus.sm-rtl ul li, .smart-menus.sm-vertical li {
    float: none;
  }
  .smart-menus a {
    white-space: nowrap;
  }
  .smart-menus ul a, .smart-menus.sm-vertical a {
    white-space: normal;
  }
  .smart-menus .sm-nowrap > li > a, .smart-menus .sm-nowrap > li > :not(ul) a {
    white-space: nowrap;
  }
  .smart-menus a, .smart-menus a:hover, .smart-menus a:focus, .smart-menus a:active, .smart-menus a.highlighted {
    padding: 11px 20px;
    color: #333;
  }
  .smart-menus a:hover, .smart-menus a:focus, .smart-menus a:active, .smart-menus a.highlighted {
    background: #EEE;
  }
  .smart-menus a.current {
    color: #FFF;
  }
  .smart-menus a.disabled {
    background: #FFF;
    color: #CCC;
  }
  .smart-menus a.has-submenu {
    padding-right: 32px;
  }
  .smart-menus a span.sub-arrow {
    top: 50%;
    margin-top: -8px;
    right: 20px;
    width: 8px;
    height: 16px;
    font: 14px/16px monospace !important;
    background: transparent;
  }
  .smart-menus a.highlighted span.sub-arrow:before {
    display: none;
  }
  .smart-menus > li {
    border-top: none;
    border-left: 1px solid #EEE;
  }
  .smart-menus > li:last-child {
	border-bottom: none;
  }
  .smart-menus > li:first-child {
    border-left: none;
  }
  .smart-menus ul {
    border: 1px solid #BBB;
    background: #FFF;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  }
  .smart-menus ul a {
    border: none !important;
  }
  .smart-menus ul a.has-submenu {
    padding-right: 20px;
  }
  .smart-menus ul a span.sub-arrow {
    right: auto;
    margin-left: -12px;
  }
  .smart-menus ul > li {
    border-left: none;
    border-top: 1px solid #EEE;
  }
  .smart-menus ul > li:first-child {
    border-top: none;
  }
  .smart-menus span.scroll-up,
  .smart-menus span.scroll-down {
    position: absolute;
    display: none;
    visibility: hidden;
    overflow: hidden;
    background: #FFF;
    height: 20px;
  }
  .smart-menus span.scroll-up-arrow, .smart-menus span.scroll-down-arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 8px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #555555 transparent;
  }
  .smart-menus span.scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #555555 transparent transparent transparent;
  }
  .smart-menus.sm-rtl a.has-submenu {
    padding-right: 20px;
    padding-left: 32px;
  }
  .smart-menus.sm-rtl a span.sub-arrow {
    right: auto;
    left: 20px;
  }
  .smart-menus.sm-rtl.sm-vertical a.has-submenu {
    padding: 11px 20px;
  }
  .smart-menus.sm-rtl.sm-vertical a span.sub-arrow {
    right: 20px;
    margin-right: -12px;
  }
  .smart-menus.sm-rtl > li:first-child {
    border-left: 1px solid #EEE;
  }
  .smart-menus.sm-rtl > li:last-child {
    border-left: none;
  }
  .smart-menus.sm-rtl ul a.has-submenu {
    padding: 11px 20px;
  }
  .smart-menus.sm-rtl ul a span.sub-arrow {
    right: 20px;
    margin-right: -12px;
  }
  .smart-menus.sm-vertical a span.sub-arrow {
    right: auto;
    margin-left: -12px;
  }
  .smart-menus.sm-vertical li {
    border-left: none;
    border-top: 1px solid #EEE;
  }
  .smart-menus.sm-vertical > li:first-child {
    border-top: none;
  }
}