/*Custom search bar*/
.barre-recherche .reflow-product-search input{
    border:1px solid #082c5d;
    border-right-style: none;
    border-radius:0px;
    box-shadow:none;
    font-family: 'RobotoCondensed-Regular';
    font-size:18px;
}
.barre-recherche .ref-button{
    margin-left:0px!important;
    border:1px solid #082c5d;
    border-radius:0px;
    box-shadow:none;
    font-family: 'RobotoCondensed-Bold';
    font-size:18px;
    text-transform: uppercase;
    background-color:#082c5d!important;
    color:#fff;
    padding:8px 20px 8px 20px;
}
.barre-recherche .ref-button:hover{
    background-color:#e42321!important;
    border:1px solid #e42321;
    color:#fff;
    opacity:1;
}
.barre-recherche .ref-button:active{
    bottom: 0px;
}
.barre-recherche [type=button], [type=reset], [type=submit], button{
     -webkit-appearance: none;;
}
.ref-button{
    background-color:#082c5d!important;
}
.ref-page-link{
    border-radius:50px!important;
    font-family:'RobotoCondensed-Bold';
}
.ref-page-item.active .ref-page-link{
    background:#082c5d!important;
}



/*Strip the ul of padding and list styling*/
#menukits-general ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	z-index:999;
}

/*Create a horizontal list with spacing*/
#menukits-general li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
#menukits-general li a {
	display:block;
	width:220px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "RobotoCondensed-Bold";
	color: #fff;
	background: #082c5d;
	text-decoration: none;

}

/*Hover state for top level links*/
#menukits-general li:hover a {
	background: #e42321;

}

/*Style for dropdown links*/
#menukits-general li:hover ul a {
	background: #f3f3f3;
	color: #082c5d;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
#menukits-general li:hover ul a:hover {
	background: #e42321;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
#menukits-general li ul {
	display: none;
}

/*Make dropdown links vertical*/
#menukits-general li ul li {
	display: block;
	float: none;
  width:220px;
}

/*Prevent text wrapping*/
#menukits-general li ul li a {
	width: 100%;
}

/*Display the dropdown on hover*/
#menukits-general ul li a:hover + .hidden, #menukits-general .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "RobotoCondensed-Bold";
	text-decoration: none;
	color: #fff;
	background: #082c5d;
	text-align: center;
	padding: 10px 0;
	display: none;
	z-index:999;
}

/*Hide checkbox*/
#menukits-general input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
#menukits-general input[type=checkbox]:checked ~ #menukits{
    display: block;
	position:absolute;
}


/*Responsive Styles*/

@media screen and (max-width : 991px){
	/*Make dropdown links appear inline*/
    #menukits-general ul {
            position: static;
            display: none;
			width:100%;

        }
        /*Create vertical spacing*/
    #menukits-general li {
            border-bottom: solid 1px #fff;
			width:100%
        }
        /*Make all menu links full width*/
    #menukits-general ul li, #menukits-general li a {
            width: 100%;
        }
        /*Display 'show menu' link*/
        .show-menu {
            display:block;
        }
    #menukits-general li ul li {
    width:100%;
    }
}