@charset "UTF-8";
@-ms-viewport { width: device-width; }

@viewport { width: device-width; }

*{
	margin: 0;
	padding: 0;
}

.close {
  display: none;
}
.close:focus, .close:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

#wrap {
	z-index: 1;
	position: relative;
}

#menu-link {
	display: block;
  position: absolute;
  top: 0;
  outline: none;
  padding: 0 2px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 2em;
  text-transform: uppercase;
  color: #fff;
  z-index: 100;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
}body[dir="ltr"] #menu-link {
  left: 0;
}body[dir="rtl"] #menu-link {
  right: 0;
}

#menu-link:hover, #menu-link:focus {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

#nav {
	z-index: 50;
	/*width: 100%;*/
	color: #fff;
}


@media screen and (min-width: 769px){
  #menu-link {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    display: none;
  }
}
@media screen and (max-width: 768px) {
	
	#nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
    overflow: hidden;
		background:var(--main-color);
    z-index: 1000;

	}
  
  #nav .close {
  display: none;
  position: fixed;
  top: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: none;
  color: #fff;
  font-size: 2em;
}body[dir="ltr"] #nav .close {
  left: 0;
}body[dir="rtl"] #nav .close {
  right: 0;
}
	
  #nav > a{
  	position: relative;
  }
  
  #nav > a{
  	display: block;
  	padding: 20px;
  	border-bottom: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
  }
  
  #nav .is-active{
  	background: rgba(0,0,0,.1);
  	color: #fff;
  }

  #nav #country {
    cursor: pointer;
    z-index: 1000;
    position: absolute;
    top: 0;
    line-height: 60px;
    font-size: 1.2em;
  }body[dir="ltr"] #nav #country {
    right: 20px;
  }body[dir="rtl"] #nav #country {
    left: 20px;
  }

  #nav dl{
    position: relative;
    text-align: center;
    padding: 20px 0;
  }
  #nav dl a {
    text-align: center;
    text-transform: none;
    color: #fff;
    font-weight: 400;
    line-height: 25px;
    font-size: 12px;
  }

  #nav .sub a {
    color: var(--main-color);
    line-height: 25px;
  }
  #nav #country .sub{
    transform: translateX(0);
  }body[dir="ltr"] #nav #country .sub{
    right: 0;
    left: auto;
  }body[dir="rtl"] #nav #country .sub{
    left: 0;
    right: auto;
  }

  body[dir="ltr"] #nav #country .sub:before{
    left: auto;
    margin-left: 0;
    right: 10px;
  }body[dir="rtl"] #nav #country .sub:before{
    right: auto;
    margin-right: 0;
    left: 10px;
  }

  .js-menu.js-advanced body{
    overflow: hidden;
  }
  .js-menu.js-advanced #nav{
    height: 100%;
    overflow-y: scroll;
    padding-top: 60px;
  }
  .js-menu.js-advanced #nav:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;   
    height: 100%;
    background: rgba(0,0,0,.2);
  }
  .js-menu.js-advanced #nav .close{
    display: block;
  }

 }