.active {
  background-color: rgb(0,56,136);
  color: white !important;
}

.langue {
	font-size: 0px !important;
}
.imgmenu {
	height: 23.4px;
}
.topnav {
	overflow: hidden;
	background-color: #333;
	z-index: 1000;
}
.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	font-family: source-sans-pro, sans-serif !important;
	font-weight: 400 !important;
	font-style: normal !important;
}
.home {
	display: block !important;
	font-size: 0px !important;
}
.topnav .icon {
	display: none;
}
.dropdown {
	float: left;
	overflow: hidden;
}
.dropdown .dropbtn {
	font-size: 17px;
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}
.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #555;
	color: white;
}
.dropdown-content a:hover {
	background-color: #ddd;
	color: black;
}
.dropdown:hover .dropdown-content {
	display: block;
}

@media screen and (max-width: 900px) {
.topnav a, .dropdown .dropbtn {
	display: none;
}
.topnav a.icon {
	float: right;
	display: block;
}
}

@media screen and (max-width: 900px) {
.topnav.responsive {
	position: relative;
}
.topnav.responsive .icon {
	position: absolute;
	right: 0;
	top: 0;
}
.topnav.responsive a {
	float: none;
	display: block;
	text-align: left;
}
.topnav.responsive .dropdown {
	float: none;
}
.topnav.responsive .dropdown-content {
	position: relative;
}
.topnav.responsive .dropdown .dropbtn {
	display: block;
	width: 100%;
	text-align: left;
}
}
.sticky {
	position: fixed;
	top: 0;
	margin-left: 18%;
}

@media (max-width: 1450px) {
.sticky {
	width: 100%;
	margin-left: 0px;
}
}

@media (max-width: 900px) {
.sticky {
	position: inherit;
	top: inherit;
}
}
.topnav-right {
	float: right;
}

@media (max-width: 900px) {
.topnav-right {
	float: inherit;
}
}
.menushop {
	color: rgb(255,102,0) !important;
}
#panier01 {
    font-size: 0px !important;
}

/* Nouveau menu 2025 */

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Menu image */
.menuImg {
  height: 140px;
  padding-top: 5px;
  padding-bottom: 5px;
  float: left;
}

@media screen and (max-width: 690px) {
  .menuImg {
	height: 100px;
  }

  .imgmenu {
	height: 18.4px;
  }
}

@media screen and (max-width: 500px) {
  .imgmenu {
	height: 15px;
  }
}

/* Menu image END*/

/* Menu Topnav */
.topnavB a {
  float: left;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 16px;
  font-family: sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: uppercase;
}

.topnavB {
  gap: 12px;
  height: 150px;
  color: black;
  background-color: white;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.topnavB a:hover {
  background-color: rgb(0, 176, 80);
  color: white;
}

@media screen and (max-width: 1335px) {
  .topnavB a {
	font-size: 14px;
  }
}

@media screen and (max-width: 1235px) {
  .topnavB a {
	font-size: 13px;
  }
}

@media screen and (max-width: 1200px) {
  #myTopnavB {
	display: none;
  }
}

#burger {
  display: none;
}

@media screen and (max-width: 1200px) {
  #burger {
	display: block;
  }
}

/* Menu Topnav END */

/* Menu  */
/* Pour fixer le menu en haut */
.bodyAbidex {
  padding-top: 150px;
  /* ajuste selon la hauteur du bandeau */
}

@media screen and (max-width: 690px) {
	.bodyAbidex {
	padding-top: 110px;
  }
}

.headerAbidex {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  /* même fond que ton bandeau */
  border-bottom: 1px solid rgb(0,56,136);
  /* optionnel */
}

.abidexHeaderDiv {
  width: 95%;
  margin: 0 auto;
}

/* Menu END  */


/* menu Téléphone */
:root {
  --drawer-w: 320px;
}

.burger {
  background: transparent;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: rgb(0, 56, 136);
  position: absolute;
  top: 100px;
  right: 2.5%;
}

@media screen and (max-width: 690px) {
  .burger {
	top: 50px;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: saturate(120%) blur(1px);
}

.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  /* gauche */
  width: var(--drawer-w);
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 18px rgba(0, 0, 0, .2);
  transform: translateX(-100%);
  transition: transform .22s ease;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1rem 2rem;
}

.drawer.open {
  transform: translateX(0);
}

.drawer .close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0
}

.menu a {
  display: block;
  padding: .85rem 0;
  border-bottom: 1px solid rgb(0, 56, 136);
  color: #0a1b2b;
  text-decoration: none;
  font-weight: 600;
}

.menu a:hover {
  color: rgb(0, 56, 136)
}
/* menu Téléphone END */