@charset "UTF-8";
/* Colors */
/* Background */
/* Typography */
/* Transition */
/* Header */
/* Borders */
/* Shadow */
/* Links */
.menu-container {
  overflow: hidden;
}

/* Container du menu */
.menu-wrapper {
  position: relative;
  margin: 0 auto;
  background: rgb(239, 239, 239);
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 0;
  overflow: hidden;
  padding: 0;
}
.menu-wrapper.ready {
  height: auto;
  overflow: auto;
  padding: 10px;
}
.menu-wrapper.wrap .mobile-menu-scrollable {
  flex-wrap: wrap;
}
.menu-wrapper.wrap .mobile-menu-scrollable li {
  flex-basis: calc(50% - 5px);
}
.menu-wrapper.wrap .scroll-hint {
  display: none;
}
.menu-wrapper.no-wrap:not(.no-overflow) .scroll-hint {
  display: flex;
}

.menu-wrapper .module_content {
  position: relative;
  overflow: hidden;
}

/* Menu horizontal scrollable */
.mobile-menu-scrollable {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  margin: 0;
  list-style: none;
  /* Masquer la scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-menu-scrollable::-webkit-scrollbar {
  display: none;
}

/* Items du menu */
.mobile-menu-scrollable li {
  flex: 0 0 auto;
}

.mobile-menu-scrollable.no-overflow {
  justify-content: center;
}
.mobile-menu-scrollable.no-overflow:not(.no-wrap) {
  justify-content: start;
}

.mobile-menu-scrollable a {
  display: block;
  padding: 12px;
  background: #ffffff;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu-scrollable a .fa {
  margin-left: 8px;
  transform: translateY(1px);
}

.mobile-menu-scrollable a:hover {
  background: #e9ecef;
  border: 2px solid #F05222;
}

/* Item sélectionné */
.mobile-menu-scrollable .selected a {
  background: #e9ecef;
  border-bottom: 2px solid #F05222;
}

/* Indication visuelle de scroll */
.scroll-hint {
  text-align: center;
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  display: none;
}

.scroll-hint::before {
  content: "←";
  animation: slideLeft 2.5s ease-in-out infinite;
  left: 0px;
  position: absolute;
  font-size: 14px;
  background: #f05222;
  color: white;
  border-radius: 50%;
  padding: 4px 4px 7px 4px;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-hint::after {
  content: "→";
  animation: slideRight 2.5s ease-in-out infinite;
  right: 0px;
  position: absolute;
  font-size: 14px;
  background: #f05222;
  color: white;
  border-radius: 50%;
  padding: 4px 4px 7px 4px;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slideLeft {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.85;
  }
  50% {
    transform: translateX(-3px);
    opacity: 1;
  }
}
@keyframes slideRight {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.85;
  }
  50% {
    transform: translateX(3px);
    opacity: 1;
  }
}
/* Masquer le hint après scroll */
.scroll-hint.hidden {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 767px) {
  .menu-wrapper.wrap .mobile-menu-scrollable li {
    flex-basis: calc(50% - 10px);
  }
}

/*# sourceMappingURL=mobile-scrollable-menu.css.map */
