
/*VARIABLES*/
/*Colors*/
/*Fonts*/
/*MIXINS*/
#noMargin {
  margin: 0px;
  padding: 0px;
}
#lineStyle {
  background-color: #fff;
  width: 18px;
  height: 2px;
	
}
/*----- GENERAL -*/
* {
  margin: 0px;
  padding: 0px;
}

ul_2,li_2 {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
/*-----------------------------------------------
MOBILE
Content of mobile menu
-----------------------------------------------*/
.mobile {
  padding: 5px;
	z-index: 99;
	position: fixed;
	top: 50%;
	font-family: Montserrat, sans-serif;
	
}
/*-----------------------------------------------
LABEL
-----------------------------------------------*/
.mobile__label {
  border: solid 2px #357BBA;
  display: inline-block;
  overflow: hidden;
  padding: 10px 7px;
  width: 25px;
  white-space: nowrap;
	background-color: #357BBA;
	z-index: 99;
}
.mobile__label:hover {
  cursor: pointer;
  /*ANIMAION POSITION ON HOVER*/
  /*ANIMATION DELAY*/
}
.mobile__label:hover .label__line {
  margin-left: 0px;
}
.mobile__label:hover :nth-child(2) .label__line {
  transition-delay: 0.1s;
}
.mobile__label:hover :nth-child(3) .label__line {
  transition-delay: 0.2s;
}
/*LINES CONTENT*/
.mobile__label__content {
  font-size: 0;
  line-height: 0;
  height: 2px;
  margin-bottom: 5px;
	
}
.mobile__label__content:last-child {
  margin-bottom: 0px;
}
/*WHITE LINES*/
.label__line {
  background-color: #FFF;
  width: 24px;
  height: 2px;
  display: inline-block;
  margin-left: -33px;
  margin-right: 43px;
  /*LINES ANIMATION*/
  transition: margin-left 0.2s linear;
}
/*-----------------------------------------------
INPUT
-----------------------------------------------*/
.mobile__input {
  display: none;
	
}
/*-----------------------------------------------
NAV
-----------------------------------------------*/
.mobile__nav {
  margin-top: 10px;
  max-height: 0;
  max-width: 0;
  overflow: hidden;
  transition: max-height 0.4s linear, max-width 0.4s linear;
	background-color: #357BBA;
	
}
.nav__item {
  white-space: nowrap;
}
.nav__item a {
  text-decoration: none;
  display: block;
  padding: 4px 10px;
  color: #fff;
}
.nav__item a:after {
  display: block;
  width: 15px;
  height: 2px;
  background-color: #fff;
  content: '';
}
.mobile__input:checked + .mobile__nav {
  max-width: 100%;
  max-height: 220px;
}
