
/* HEADER */

header{
  position: absolute;
  top: 0;left: 0;
/*   width: 100vw; */
  width: 100%;
  z-index: 10;
  padding: 5vw 10vw;

  /*display: flex;*/
  /*justify-content: space-between;*/
  align-items: baseline;
}

  nav li:hover{
	  opacity: 0.7;
	  cursor: pointer;
  }

  header.active{
  	color: black;
  }

  .menu{
  
    /*display: flex;*/
    align-items: center;
  }

    @media (min-width: 700px){
      
      .menu{
/*       	padding: 3px; */
        /* Logo shift fix*/
        width: 63px;
      }
      
    }

  .menu .icon{
    height: 7px;
    width: 14px;
    margin-top: 3px;
    margin-right: 10px;
  }

  @media (min-width: 1800px){
  
  
    .menu {
	    width: 85px;
    }

    .menu .icon{
      margin-right: 25px;
      margin-top: 4px;
    }
    
    input[type="text"]{
	    width: 56px;
    }

  }

    .menu .icon .line{
      position: absolute;
      height: 1px;
      width: 15px;
      background: black;
      transition: 150ms;
    }

    	.white .menu .icon .line{
    		background: white;
    	}
	
    	.active .menu .icon .line{
    		background: black;
    	}

    .menu .icon .line:nth-child(2){
      bottom: 0;
    }

@media (min-width: 700px){

  .logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
}
@media (max-width: 700px){

  header{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo{
    position: relative;
    float: left;
  }

}


.search{
  position: relative;
  float: right;
}

  .search form{
	  height: 10px;
	  margin-top: -5px;
  }
  
  input[type="search"]{
	  width: 0px;
	  transition: 75ms;
  }
  
  input[type="search"].a{
	  width: 175px;
	  border-radius: 0!important;
	  -webkit-appearance: none;
	  -webkit-border-radius:0px;
  }
  
  .search.mobile{
	  float: left;
	  clear: both;
	  margin-top:15px;
	  
  }
  

@media (max-width: 700px){

	header{
		flex-direction: row-reverse;
		padding: 10vw 5vw;
	}

	.menu{
		float: right;
	}

		.menu h4{
			display: none;
		}


}


.user-banner{
	position: absolute;
	top:0;left:0;
	width: 100%;
	background: #eee;
	padding: 7px;
}

	.user-banner h5{
		text-align: center;
	}

  .logout h5{
  	  position: absolute;
  	  top:0;right:14px;
  	  margin: 7px;
  }

