.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-light-grey-3);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 1.875rem;
  }
}
.header_left {
  align-items: center;
  display: flex;
}
.header_left .icon-button {
  padding: 0;
}
.header_left .icon-button .icon {
  margin-block-end: 2px;
}
.header_logo {
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .header_logo {
    width: 127px;
    height: 40px;
  }
}
.header_nav {
  display: flex;
  justify-content: flex-start;
  flex: 1;
  margin: 0 1.25rem;
}
.header_nav .menu-main {
  display: flex;
  gap: 2.1875rem;
  margin: 0;
  padding-inline-start: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  list-style-type: none;
}
@media (max-width: 1268px) {
  .header_nav {
    display: none;
  }
}
.header_right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header_right .header_recherche {
  padding: 0;
}
.header_right .dropdown-wrapper button {
  padding: 11px 14px 10px 20px;
  line-height: 1.25rem;
  gap: 10px;
  font-size: 1rem;
}
.header_right .dropdown-wrapper button span {
  font-size: 1.125rem;
}
.header_right_cta-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .header_right_cta-icons {
    display: none;
  }
}
.header_right_cta-icons .header_recherche {
  font-family: var(--font-family-circular);
  line-height: 1.4;
}
.header_right .user-box {
  position: relative;
  height: 100%;
}
.header_right .user-box_toggle {
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  border: 0;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-transform: none;
  background: none;
  font-size: 16px;
}
.header_right .user-box_toggle .icon + *,
.header_right .user-box_toggle * + .icon {
  margin-left: 0.5em;
}
.header_right .user-box_toggle .icon-ic_profil {
  font-size: 20px;
}
.header_right .user-box_toggle .icon-ic_chevron_right {
  font-size: 1.125rem;
  transform: rotate(90deg);
}
.header_right .user-box_user-initials-mobile {
  display: none;
}
@media (max-width: 768px) {
  .header_right .user-box_user-initials-mobile {
    display: inline;
  }
}
.header_right .user-box_user-fullname-desktop {
  display: inline;
}
@media (max-width: 768px) {
  .header_right .user-box_user-fullname-desktop {
    display: none;
  }
}
.header_right .user-box_dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  min-width: 250px;
  box-shadow: -1px 2px 4px 0 rgba(0, 0, 0, 0.07);
  background-color: #fff;
}
.header_right .user-box_dropdown[aria-hidden=false] {
  display: block;
}
.header_right .user-box_dropdown ul {
  padding: 20px;
}
.header_right .user-box_dropdown ul li:not(:last-child) {
  margin-bottom: 20px;
}
.header_right .user-box_dropdown ul li a {
  position: relative;
  padding-left: 20px;
}
.header_right .user-box_dropdown ul li a .icon {
  position: absolute;
  top: 2px;
  left: 0;
  color: #EF5327;
}
.header_right .user-box_logout {
  display: block;
}
.header .dropdown-wrapper {
  position: relative;
}