/**** HEADER *****/
/**** Barre de navigation */
#header-navigation{
  background: #fff;
  color: #333;
  height: 50px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
#header-navigation a:hover{
  text-decoration: none;
  color: inherit;
  outline: none;
}


#header-navigation .menu a{
  color: #333;
  border-bottom: 3px solid;
  border-color: transparent;
  text-decoration: none;
  transition: border-color 0.2s ease;
}
#header-navigation .menu a:hover {   
  text-decoration: none;
  border-color: #F02831;
}
#header-navigation .logo{
  float: left;
  padding: 0 0.5em;
  text-align: center;
}
#header-navigation .logo:hover{ background: inherit;}

#header-navigation .logo img {
	height: 40px;
	margin-top: 6px;
}


.menu li{ 
  float:left;
  min-width: 30px;
}
#header-navigation a{ 
  height: 50px;
  display: inline-block;
  line-height: 50px;
}
.menu a{  padding: 0 1.7em;}

#header-navigation .premium:hover {
  background: #f4bc26;
}

#header-navigation .btn1{
  border-radius: 2px;
  background: #006ee6;
  background: rgba(0, 0, 0, 0.3);
  line-height: 35px;
  height: 35px;
  margin: 8px 0.75em;
  padding: 0 20px 0 40px;
  text-align: center;
  vertical-align: middle;
  position: relative;
}

/* Adaptation mobile*/
.bt-resp{
  cursor: pointer;
  height: 50px;
  position: absolute;
  width: 50px;
  line-height: 50px;
  display: none;
}
.respdroite{
  float: right;
  position: absolute;
  top:0; 
  right: 0;
  width: 50px;
  text-align: center;
  display: none;
}



/***Icone responsive ***/
.trigger {
  position: relative;
  width: 50px;
  height: 50px;
  border: 0;
  cursor: pointer;
  outline: 0;
  /*icon replacement */
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  background: transparent;
}
.trigger:hover{  background: rgba(255, 255, 255, 0.1);}
.trigger span,
.trigger span::before,
.trigger span::after {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #f02831;
  border-radius: 0px;
}
.trigger span {
  top: calc(50% - 2px);
  left: calc(50% - 11px);
  transition: transform 0.3s;
}
.trigger span::before,
.trigger span::after {
  content: "";
  left: 0;
  transition: transform 0.4s, width 0.4s, opacity 0.1s;;
}
.trigger span::before {
  bottom: 8px;
}
.trigger span::after {
  top: 8px;
}
/* flèche */
.fleche .trigger:hover span {
  transform: rotate(-90deg);
}
.fleche .trigger:hover span::before {
  transform: translate(-2px, 5px) rotate(-45deg);
  width: 50%;
}
.fleche .trigger:hover span::after {
  transform: rotate(45deg);
  transform: translate(-2px, -5px) rotate(45deg);
  width: 50%;
}
/**  CROIX ***/
.croix .trigger span, .croix .trigger:hover span {
  transform: rotate(135deg);
  width: 50%; 
}
.croix .trigger span::before, .croix .trigger:hover span::before {
  opacity:0;
}
.croix .trigger span::after,.croix .trigger:hover span::after  {
  transform: translate(0px, -8px) rotate(90deg);
  width: 100%;
  opacity: 1;
}
.croix{  background: rgba(255, 255, 255, 0.1);}

/*** Problème CROIX et Hover flèche*/
/*.croix .trigger:hover span {  transform: none;}
.croix .trigger:hover span::before {  transform: none;  width: 100%;}
.croix .trigger:hover span::after {  transform: none;  width: 100%;}
*/
/* icone login*/

#header-navigation .btn1 .icon{
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  margin: 8px;
}


/* Responsive */
@media(max-width: 800px){
  .bt-resp, .respdroite{  display: block;}
  .menu, .navigation-right { display: none;}
  .logo { width: 100%;}
  .menu {
	background: #efefef;
	position: absolute;
    top: 50px;
    z-index: 100;
	box-shadow: 0 3px 5px rgba(51, 51, 51, 0.3);
	}
  .menu li{   float:none;  width: 100%;}
  .menu a{	width: 100%; }
  #header-navigation a:hover{  background: rgba(0, 0, 0, 0.01);}
  
}