/* :: PRELOADER :: */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--darkBlue);
  z-index: 999;
}

.preloader::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(to right,
      #fd004c,
      #fe9000,
      #fff020,
      #3edf4b,
      #3363ff,
      #b102b7,
      #fd004c);
  animation: rainbow-move 12s infinite linear alternate;
}

@keyframes rainbow-move {
  100% {
    background-position-x: 4000px;
  }
}

body {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding-top: 10px;
  cursor: none;
  /* Cache le curseur natif */
}

@media only screen and (max-width: 1199.98px) {
  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Bloque le scroll gauche/droite */
    width: 100%;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    /* Évite les débordements dus au padding */
  }
}

.muffuq-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

@media only screen and (max-width: 1199.98px) {
  .muffuq-cursor {
    display: none;
  }
}

/* ----------------------------------- */

/* :: THEME-NAVBAR :: */

/* Style de base de la barre de navigation */
#theme-navbar {
  transition: transform 0.25s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .headroom--unpinned {
    transform: translateY(-100%) !important;
  }
}

/* Lorsque la barre de navigation est masquée */
.headroom--unpinned {
  transform: translateY(-100%);
}

/* Lorsque la barre de navigation est visible */
.headroom--pinned {
  transform: translateY(0);
}

.rgb-text {
  background: linear-gradient(to right,
      #fd004c,
      #fe9000,
      #fff020,
      #3edf4b,
      #3363ff,
      #b102b7,
      #fd004c);
  background-size: 500% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-move 20s infinite linear alternate;
}

nav .menu-text {
  position: relative;
  color: #fff;
  text-decoration: none;
}

nav .menu-text::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: var(--primary);
  transition: width 0.3s;
}

nav .menu-text:hover::after {
  width: 100%;
}

nav .color a{
  color: #fff;
  text-decoration: none;
}

nav .color a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: var(--primary);
  transition: width 0.3s;
}

nav .color a:hover::after {
  width: 100%;
}

@media only screen and (min-width: 1199px) {
  .theme-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(50px);
    padding-bottom: 10px;
    z-index: 999;
  }
}

@media only screen and (max-width: 1199px) {
  .theme-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    transform: none;
    backdrop-filter: blur(50px);
    padding: 0 20px 10px 20px;
    z-index: 999;
  }
}

/* notices-bar */
.theme-navbar .notices-bar {
  background-color: #0060fe;
}

.theme-navbar .notices-bar .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 60px;
}

.theme-navbar .notices-bar .text {
  font-size: 14px;
  font-weight: bold;
  color: white;
}

@media only screen and (max-width: 767.98px) {
  .theme-navbar .notices-bar {
    display: none;
  }
}

/* action-btn */
.theme-navbar .notices-bar .action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 15px;
  backdrop-filter: #0b0c1b;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 5px;
  white-space: nowrap;
  transition: all .15s ease;
}

.theme-navbar .notices-bar .action-btn:hover {
  background-color: #212231;
}

/* close-btn */
.theme-navbar .notices-bar .close-btn {
  position: absolute;
  right: 20px;
  cursor: pointer;
}

.theme-navbar .notices-bar .close-btn img {
  width: 12px;
}

.theme-navbar .notices-bar .close-btn:hover {
  opacity: .7;
}

/* nav-top */
.theme-navbar .nav-top {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

@media only screen and (max-width: 767.98px) {
  .theme-navbar .nav-top {
    padding: 15px 0 15px;
  }
}

/* menu-icon */
.theme-navbar .nav-top .menu-icon {
  display: none;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-top .menu-icon {
    display: block;
    min-width: 24px;
    width: 24px;
    margin-right: 20px;
    cursor: pointer;
  }
}

/* brand */
.theme-navbar .nav-top .brand img {
  height: 34px;
}

@media only screen and (max-width: 991.98px) {
  .theme-navbar .nav-top .brand img {
    height: 30px;
  }
}

/* :: OPTIONS (Espace Client, Gestion) :: */
.theme-navbar .options .c-link {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(0, 96, 254, 0.08);
  border: 1px solid rgba(0, 96, 254, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.theme-navbar .options .c-link:not(:last-of-type) {
  margin-right: 30px;
}

.theme-navbar .options .c-link:hover {
  background: rgba(0, 96, 254, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 96, 254, 0.3);
}

.theme-navbar .options .c-link .icon {
  width: 24px;
  margin-right: 10px;
}

.theme-navbar .options .c-link .text {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

@media only screen and (max-width: 991.98px) {
  .theme-navbar .options .c-link .text {
    display: none;
  }
}

/* :: BOUTONS CONNEXION/INSCRIPTION :: */
.theme-navbar .buttons {
  margin-left: 20px;
}

.theme-navbar .buttons .btn {
  padding: 12px 20px;
  font-size: 14px;
  height: auto;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.theme-navbar .buttons .btn-fill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 96, 254, 0.4);
}

.theme-navbar .buttons .btn-outline-dark {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.theme-navbar .buttons .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media only screen and (max-width: 991.98px) {
  .theme-navbar .buttons .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* :: SÉLECTEUR DE LANGUE :: */
.theme-navbar .lang {
  position: relative;
  margin-left: 20px;
  z-index: 97;
  user-select: none;
}

.theme-navbar .lang .current {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(0, 96, 254, 0.08);
  border: 1px solid rgba(0, 96, 254, 0.2);
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-navbar .lang .current:hover {
  background: rgba(0, 96, 254, 0.15);
  border-color: var(--primary);
}

.theme-navbar .lang .current img {
  min-width: 10px;
  width: 10px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.theme-navbar .lang:hover .current img,
.theme-navbar .lang.open .current img {
  transform: rotate(180deg);
}

/* Menu langue */
.theme-navbar .lang .lang-menu {
  display: flex;
  flex-wrap: wrap;
  min-width: 280px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 50px;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}


.theme-navbar .lang .lang-menu::before {
  position: absolute;
  content: '';
  right: 14px;
  top: -7px;
  width: 14px;
  height: 14px;
  border-top-right-radius: 2px;
  transform: rotate(-45deg);
  background: rgba(10, 14, 39, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1) rgba(255, 255, 255, 0.1) transparent transparent;
}

.theme-navbar .lang.open .lang-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Lang Item */
.theme-navbar .lang .lang-item {
  display: inline-flex;
  align-items: center;
  margin: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.theme-navbar .lang .lang-item:hover {
  background: rgba(0, 96, 254, 0.1);
}

.theme-navbar .lang .lang-item.active {
  background: rgba(0, 96, 254, 0.15);
  border-left: 3px solid var(--primary);
}

.theme-navbar .lang .lang-item .icon {
  width: 18px;
  margin-right: 6px;
  border-radius: 50%;
}

.theme-navbar .lang .lang-item a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  text-decoration: none;
}

.theme-navbar .lang .lang-item:hover a,
.theme-navbar .lang .lang-item.active a {
  color: #ffffff;
}


/* second-options */
.theme-navbar .second-options .o-link {
  position: relative;
  margin-left: 16px;
}

.theme-navbar .second-options .icon {
  width: 24px;
  cursor: pointer;
}

/* user-dropdown-menu */
.theme-navbar .second-options .user-dropdown-menu {
  position: absolute;
  display: none;
  top: 40px;
  right: -16px;
  background-color: var(--semi-dark);
  width: 300px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  padding: 20px 16px 24px;
  z-index: 99;
}

.theme-navbar .second-options .user-dropdown-menu::before {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background-color: var(--semi-dark);
  border-width: 1px 1px 0 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-width: 1px 1px 0 0;
  top: -7px;
  right: 20px;
  transform: rotate(-45deg);
}

.theme-navbar .second-options .open .user-dropdown-menu {
  display: block;
}

/* user-dropdown-menu */
.theme-navbar .second-options .user-dropdown-menu {
  position: absolute;
  display: none;
  top: 40px;
  right: -16px;
  background-color: var(--semi-dark);
  width: 300px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  padding: 20px 16px 24px;
  z-index: 99;
}

.theme-navbar .second-options .user-dropdown-menu::before {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background-color: var(--semi-dark);
  border-width: 1px 1px 0 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-width: 1px 1px 0 0;
  top: -7px;
  right: 20px;
  transform: rotate(-45deg);
}

.theme-navbar .second-options .open .user-dropdown-menu {
  display: block;
}

/* uddm-link-parent */
.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent:not(:first-of-type) {
  padding-top: 16px;
}

.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 16px;
}

.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .title-2 {
  font-family: var(--primary-font);
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 20px;
}

.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .para-2 {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkGray);
  margin-bottom: 10px;
}

.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .uddm-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .uddm-link:hover {
  text-decoration: underline;
}
/* nav-bottom */
.theme-navbar .nav-bottom {
  padding: 15px 0;
}

.theme-navbar .nav-bottom .info .item {
  display: flex;
  align-items: center;
}

.theme-navbar .nav-bottom .info .item:not(:last-of-type) {
  margin-right: 20px;
}

.theme-navbar .nav-bottom .info .item img {
  min-width: 14px;
  width: 14px;
  margin-right: 8px;
}

.theme-navbar .nav-bottom .info .item .text {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

/* links */
.theme-navbar .nav-bottom .links .link>a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
}

.theme-navbar .nav-bottom .links .link:not(:last-of-type) {
  margin-right: 20px;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links {
    position: fixed;
    top: 0;
    left: -390px;
    bottom: 0;
    padding: 60px 0 50px;
    background-color: var(--semi-dark);
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 98;
  }

  .theme-navbar .nav-bottom .links.open-links {
    left: 0;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2) !important;
  }

  .theme-navbar .nav-bottom .links::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }

  .theme-navbar .nav-bottom .links::-webkit-scrollbar-thumb {
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
  }

  .theme-navbar .nav-bottom .links .link>a {
    padding: 10px 20px;
    min-width: 380px;
  }

  .theme-navbar .nav-bottom .links .link:hover>a,
  .theme-navbar .nav-bottom .links .link.active>a,
  .theme-navbar .nav-bottom .links .link.open-dropdown-menu>a {
    background-color: rgba(255, 255, 255, .1);
    opacity: 1;
  }

  .theme-navbar .nav-bottom .links .link:not(:last-of-type) {
    margin-right: unset;
  }
}

/* close-links-btn */
.theme-navbar .nav-bottom .links .close-links-btn {
  display: none;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links .close-links-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
  }

  .theme-navbar .nav-bottom .links .close-links-btn img {
    width: 18px;
  }

  .theme-navbar .nav-bottom .links .close-links-btn:hover {
    opacity: .7;
  }
}

/* lines */
.theme-navbar .nav-bottom .links .link .lines {
  position: relative;
  top: -1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 22px;
  height: 12px;
  margin-right: 6px;
}

.theme-navbar .nav-bottom .links .link .lines span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #ffffff;
}

/* has-dropdown-menu */
.theme-navbar .nav-bottom .links .link.has-dropdown-menu>a::after,
.theme-navbar .nav-bottom .links .link.has-mega-menu>a::after {
  position: relative;
  content: '';
  width: 10px;
  height: 10px;
  background-image: url(../images/icons/navbar/down-chevron-dark.webp);
  background-size: contain;
  background-position: center 2px;
  background-repeat: no-repeat;
  margin-left: 4px;
  padding-bottom: 12px;
}

@media only screen and (max-width: 1199.98px) {

  .theme-navbar .nav-bottom .links .link.has-dropdown-menu>a::after,
  .theme-navbar .nav-bottom .links .link.has-mega-menu>a::after {
    margin-left: auto;
    transform: rotate(-90deg);
  }
}

/* dropdown-menu */
.theme-navbar .nav-bottom .links .link .dropdown-menu {
  position: absolute;
  top: 175px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
  min-width: 280px;
  padding: 26px 0 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  /*max-height: 550px;*/
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 98;
}

.dark-theme .theme-navbar .nav-bottom .links .link .dropdown-menu {
  background-color: var(--semi-dark);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.theme-navbar .nav-bottom .links .link.open-dropdown-menu .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.theme-navbar .nav-bottom .links .link .dropdown-menu::-webkit-scrollbar {
  width: 2px;
}

.theme-navbar .nav-bottom .links .link .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--semi-dark-2);
  border-radius: 20px;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links .link .dropdown-menu {
    display: none;
    position: relative;
    top: 0 !important;
    box-shadow: none !important;
    opacity: 1;
    background: rgba(0, 0, 0, .3);
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0;
  }

  .theme-navbar .nav-bottom .links .link.open-dropdown-menu .dropdown-menu {
    display: block;
  }
}

/* group-title */
.theme-navbar .nav-bottom .links .link .dropdown-menu .group-title {
  font-size: 12px;
  font-weight: 600;
  padding: 0 19px;
  color: var(--gray);
  margin-bottom: 4px;
}

.theme-navbar .nav-bottom .links .link .dropdown-menu .group-title:not(:first-of-type) {
  margin-top: 20px;
}

/* dm-link */
.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}

.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link:hover {
  background-color: var(--semi-dark-2);
}

.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-soon::after {
  position: relative;
  content: 'Soon';
  font-size: 10px;
  color: var(--gold);
  background-color: rgba(255, 183, 48, 0.1);
  padding: 4px 8px;
  border-radius: 2px;
  margin-left: auto;
  width: 43px;
  text-align: center;
  text-transform: uppercase;
}

.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-new::after {
  position: relative;
  content: 'New';
  font-size: 10px;
  color: #15CD72;
  background-color: rgba(21, 205, 113, 0.1);
  padding: 4px 8px;
  border-radius: 2px;
  margin-left: auto;
  width: 43px;
  text-align: center;
  text-transform: uppercase;
}

/* mega-menu */
.theme-navbar .nav-bottom .links .has-mega-menu .mega-menu {
  position: absolute;
  left: 0;
  top: 175px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 98;
}

.theme-navbar .nav-bottom .links .has-mega-menu .content {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
  padding: 30px 30px;
  overflow-y: auto;
  justify-content: space-evenly;
  max-height: calc(100vh - 200px);
}

.dark-theme .theme-navbar .nav-bottom .links .has-mega-menu .content {
    background-color: #0f172a;
    border: 1px solid #0060fe;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 96, 254, 0.2) !important;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links .has-mega-menu .mega-menu {
    display: none;
    position: relative;
    top: 0 !important;
    box-shadow: none;
    opacity: 1;
    background: rgba(0, 0, 0, .3);
    max-width: 380px;
  }

  .theme-navbar .nav-bottom .links .has-mega-menu.open-mega-menu .mega-menu {
    display: block;
  }

  .theme-navbar .nav-bottom .links .has-mega-menu .mega-menu .container-fluid {
    padding: 0;
  }

  .theme-navbar .nav-bottom .links .has-mega-menu .content {
    border-radius: 0;
    padding: 15px;
    box-shadow: none !important;
    border-bottom: 1px solid var(--border);
  }
}

/* mm-col */
.theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col {
  flex: 0 0 25%;
  padding: 0 10px;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col {
    flex: 0 0 100%;
  }

  .theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col:not(:last-child) {
    margin-bottom: 20px;
  }
}


/* open-mega-menu */
.theme-navbar .nav-bottom .links .link.open-mega-menu .mega-menu {
  visibility: visible;
  opacity: 1;
}

/* scrollbar for mega menu */
.theme-navbar .nav-bottom .links .has-mega-menu .content::-webkit-scrollbar {
  width: 2px;
}

.theme-navbar .nav-bottom .links .has-mega-menu .content::-webkit-scrollbar-thumb {
  background-color: var(--semi-dark-2);
  border-radius: 20px;
}

/* mm-title */
.theme-navbar .nav-bottom .mm-title {
  font-size: 14px;
  font-family: var(--secondary-font);
  color: var(--darkGray);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* mm-list-item */
.theme-navbar .nav-bottom .mm-list-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: .75rem;
  transition: all .15s ease-in-out;
}

.theme-navbar .nav-bottom .mm-list-item:not(:last-child) {
  margin-bottom: 10px;
}

.dark-theme .theme-navbar .nav-bottom .mm-list-item:hover {
  background-color: var(--semi-dark-2);
}

/* mm-item-link */
.theme-navbar .nav-bottom .mm-list-item .mm-item-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/* icon */
.theme-navbar .nav-bottom .mm-list-item .icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  background-color: rgba(0, 96, 254, .1);
}

.theme-navbar .nav-bottom .mm-list-item .icon img {
  width: 28px;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .mm-list-item .icon {
    width: 36px;
    height: 36px;
  }

  .theme-navbar .nav-bottom .mm-list-item .icon img {
    width: 22px;
  }
}

/* info */
.theme-navbar .nav-bottom .mm-list-item .name {
  font-size: 16px;
  font-weight: bold;
  color: var(--darkBlue);
  line-height: 1.3;
  padding-top: 4px;
}

.dark-theme .theme-navbar .nav-bottom .mm-list-item .name {
  color: #fff;
}

.theme-navbar .nav-bottom .mm-list-item .text {
  color: var(--darkGray);
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .mm-list-item .name {
    font-size: 14px;
  }

  .theme-navbar .nav-bottom .mm-list-item .text {
    display: none;
  }
}

/* side-box */
.theme-navbar .side-box {
  position: fixed;
  top: 20px;
  left: -590px;
  bottom: 20px;
  width: 570px;
  padding: 65px 30px 40px;
  background-color: var(--semi-dark);
  border-radius: 12px;
  transition: all .6s cubic-bezier(.77, 0, .175, 1);
  z-index: 1000;
}

.theme-navbar .side-box.open-side-box {
  left: 20px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.theme-navbar .side-box .mega-menu {
  height: 100%;
  border-radius: 8px;
  overflow-x: hidden;
  overflow-y: auto;
}

.theme-navbar .side-box .mega-menu::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.theme-navbar .side-box .mega-menu::-webkit-scrollbar-thumb {
  width: 2px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 20px;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .side-box.open-side-box {
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 767.98px) {
  .theme-navbar .side-box {
    position: fixed;
    top: 20px;
    left: -100%;
    width: calc(100% - 40px);
    padding: 65px 20px 40px;
  }
}

/* f-nav */
.theme-navbar .side-box .f-nav {
  position: relative;
  margin-bottom: 30px;
}

.theme-navbar .side-box .f-nav .f-nav-tab {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  opacity: .7;
  transition: all .20s ease;
}

.theme-navbar .side-box .f-nav .f-nav-tab:not(:last-child) {
  margin-right: 15px;
}

.theme-navbar .side-box .f-nav .f-nav-tab.active {
  opacity: 1;
}

.theme-navbar .side-box .f-nav .f-nav-tab:not(.active):hover {
  opacity: 1;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .side-box .f-nav {
    margin: -3px -3px 27px;
  }

  .theme-navbar .side-box .f-nav .f-nav-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 4px;
    margin: 3px;
  }

  .theme-navbar .side-box .f-nav .f-nav-tab:not(:last-child) {
    margin-right: unset;
  }

  .theme-navbar .side-box .f-nav .f-nav-tab.active {
    background-color: rgba(255, 255, 255, 0.4);
  }
}

/* indicator */
.theme-navbar .side-box .f-nav .indicator {
  position: absolute;
  height: 3px;
  background-color: var(--primary);
  top: calc(100% + 4px);
  border-radius: 20px;
  left: 0;
  transition: all .3s ease;
  z-index: 2;
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .side-box .f-nav .indicator {
    display: none;
  }
}

/* content */
.theme-navbar .side-box .content .cate-title {
  font-size: 12px;
  color: var(--gray);
  font-weight: bold;
  margin-bottom: 15px;
}

.theme-navbar .side-box .f-area:not(:first-child) {
  display: none;
}

.theme-navbar .side-box .f-area .apps {
  position: relative;
  transition: all .15s ease;
}

/* boxes */
.theme-navbar .side-box .apps .boxes {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -5px;
  overflow-y: auto;
}

/* app-box */
.theme-navbar .side-box .app-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 calc(25% - 10px);
  height: 100px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all .20s ease;
  margin: 5px;
}

.theme-navbar .side-box .app-box:hover {
  background-color: rgba(255, 255, 255, .05);
}

.theme-navbar .side-box .app-box .frame {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
}

.theme-navbar .side-box .app-box .title {
  display: block;
  font-size: 12px;
  color: #ffffff;
}

@media only screen and (max-width: 767.98px) {
  .theme-navbar .side-box .app-box {
    flex: 0 0 calc(33.33% - 10px);
    height: 80px;
  }

  .theme-navbar .side-box .app-box .frame {
    width: 30px;
    height: 30px;
  }
}

/* small-app-box */
.theme-navbar .side-box .small-app-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 calc(20% - 10px);
  height: 95.50px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0);
  transition: all .15s ease;
  margin: 5px;
}

.theme-navbar .side-box .small-app-box:hover {
  background-color: rgba(255, 255, 255, .05);
}

.theme-navbar .side-box .small-app-box .frame {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
}

.theme-navbar .side-box .small-app-box .title {
  display: block;
  font-size: 12px;
  color: #ffffff;
}

@media only screen and (max-width: 767.98px) {
  .theme-navbar .side-box .small-app-box {
    flex: 0 0 calc(33.33% - 10px);
  }
}

/* items */
.theme-navbar .side-box .items {
  display: flex;
  flex-wrap: wrap;
}

.theme-navbar .side-box .items .item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 0 0 50%;
  padding: 15px 15px;
  border-radius: 6px;
  transition: all .15s ease;
}

.theme-navbar .side-box .items .item:hover {
  background-color: rgba(255, 255, 255, .05);
}

.theme-navbar .side-box .items .item .icon {
  min-width: 34px;
  width: 34px;
  margin-right: 15px;
  transition: all .20s cubic-bezier(.19, 1, .22, 1) 0s
}

@media only screen and (max-width: 767.98px) {
  .theme-navbar .side-box .items .item {
    flex: 0 0 100%;
  }
}

/* item-con */
.theme-navbar .side-box .item-con {
  display: block;
  width: 100%;
}

.theme-navbar .side-box .item-con .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
}

.theme-navbar .side-box .item-con .des {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* close-side-box-btn */
.theme-navbar .side-box .close-side-box-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.theme-navbar .side-box .close-side-box-btn img {
  width: 18px;
}

.theme-navbar .side-box .close-side-box-btn:hover {
  background-color: rgba(255, 255, 255, .2);
}

/* side-box-btn */
.theme-navbar .nav-bottom .side-box-btn {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  margin-left: 20px;
  cursor: pointer;
  transition: all .15s ease;
}

.theme-navbar .nav-bottom .side-box-btn .lines {
  position: relative;
  top: -1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 22px;
  height: 12px;
  margin-right: 6px;
}

.theme-navbar .nav-bottom .side-box-btn .lines span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #ffffff;
}

/* ----------------------------------- */

/* SECTION HEAD */
.se-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 75px;
}

.se-head .se-title-1 {
  font-size: 16px;
  color: var(--primary);
  font-family: var(--third-font);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.se-head .se-title-2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--darkBlue);
  line-height: 1.2;
  margin-bottom: 25px;
}

.dark-theme .se-head .se-title-2 {
  color: #fff;
}

@media only screen and (max-width: 1199.98px) {
  .se-head .se-title-2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767.98px) {
  .se-head .se-title-2 {
    font-size: 26px;
  }
}

/* game-se-head */
.se-head.game-se-head .se-title-1 {
  font-family: var(--g1-font);
  color: var(--gold);
}

.se-head.game-se-head .se-title-2 {
  font-family: var(--g1-font);
  text-transform: uppercase;
}

.se-head.game-se-head .se-para {
  font-size: 24px;
  font-family: var(--g2-font);
  font-weight: 500;
  color: var(--darkGray);
  line-height: 1.4;
}

@media only screen and (max-width: 767.98px) {
  .se-head.game-se-head .se-para {
    font-size: 20px;
  }
}

/* ----------------------------------- */

/* :: FAQs :: */

/* category */
@media only screen and (max-width: 1199px) {
  .faqs .category {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -8px;
  }
}

/* item */
.faqs .category .item {
  display: flex;
  align-items: flex-start;
  background-color: var(--semi-dark);
  padding: 25px 25px 25px 25px;
  border: 1px solid var(--semi-dark);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  transition: all .20s ease;
}

.faqs .category .item:not(:last-child) {
  margin-bottom: 15px;
}

.faqs .category .item:hover:not(.active) {
  background-color: var(--semi-dark-2);
  border-color: var(--semi-dark-2);
}

.faqs .category .item.active {
  background-color: var(--semi-dark-2);
  border: 1px solid rgba(255, 255, 255, .1);
}

.faqs .category .item .icon {
  min-width: 36px;
  width: 36px;
  margin-right: 20px;
}

.faqs .category .item .item-title {
  color: #FFFFFF;
  font-size: 16px;
  font-family: var(--secondary-font);
}

.faqs .category .item .item-des {
  font-size: 14px;
  color: var(--darkGray);
}

@media only screen and (max-width: 1199px) {
  .faqs .category .item {
    align-items: center;
    width: calc(33.333% - 16px);
    margin: 7px;
  }

  .faqs .category .item:not(:last-child) {
    margin-bottom: 8px;
  }

  .faqs .category .item .icon {
    min-width: 24px;
    width: 24px;
    margin-right: 20px;
  }

  .faqs .category .item .item-title {
    margin-bottom: 0;
  }

  .faqs .category .item .item-des {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .faqs .category .item {
    width: calc(50% - 16px);
  }
}

@media only screen and (max-width: 767.98px) {
  .faqs .category .item {
    width: 100%;
  }
}

/* box */
.faqs .box {
  background-color: var(--semi-dark);
  padding: 60px 50px 50px;
  border-radius: 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
}

.faqs .box:not(:first-child) {
  display: none;
}

@media only screen and (max-width: 767.98px) {
  .faqs .box {
    padding: 40px 30px 30px;
  }
}

/* box-head */
.faqs .box .box-head {
  display: flex;
  align-items: flex-start;
}

.faqs .box .box-head .icon {
  min-width: 36px;
  width: 36px;
  margin-right: 20px;
}

.faqs .box .box-head .box-title {
  color: #FFFFFF;
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: bold;
}

.faqs .box .box-head .box-des {
  font-size: 16px;
  color: var(--darkGray);
}

@media only screen and (max-width: 767.98px) {
  .faqs .box .box-head {
    flex-direction: column;
  }

  .faqs .box .box-head .icon {
    margin-right: unset;
    margin-bottom: 20px;
  }
}

/* box-body */
.faqs .box .box-body {
  padding: 40px 56px 0;
}

@media only screen and (max-width: 767.98px) {
  .faqs .box .box-body {
    padding: 40px 0 0;
  }
}

/* q */
.faqs .box .q:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* q-h */
.faqs .box .q .q-h {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
}

/* text */
.faqs .box .q .q-h .text {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: bold;
  color: #FFFFFF;
}

@media only screen and (max-width: 767.98px) {
  .faqs .box .q .q-h .text {
    font-size: 14px;
  }
}

/* plus */
.faqs .box .q .q-h .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  width: 22px;
  min-height: 22px;
  height: 22px;
  border: 2px solid var(--darkGray);
  border-radius: 50%;
  margin-left: 30px;
}

.faqs .box .q .q-h .plus span {
  position: absolute;
  display: block;
  width: 10px;
  height: 2px;
  background-color: var(--darkGray);
  transition: all .15s ease-in-out;
}

.faqs .box .q .q-h .plus span:nth-child(1) {
  transform: rotate(90deg);
}

.faqs .box .q.open .q-h .plus span:nth-child(1) {
  transform: rotate(0deg);
}

/* q-b */
.faqs .box .q .q-b {
  padding: 10px 0 30px 0;
  display: none;
}

.faqs .box .q .q-b p {
  font-size: 16px;
  color: var(--darkGray);
}

.faqs .box .q .q-b p:not(:last-child) {
  margin-bottom: 10px;
}

.faqs .box .q .q-b a {
  color: var(--primary);
}

.faqs .box .q .q-b a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767.98px) {
  .faqs .box .q .q-b p {
    font-size: 14px;
  }
}

/* wrapper */
.faqs .wrapper {
  padding: 100px 60px 60px;
  background-color: var(--semi-dark);
  border-radius: 8px;
}

.faqs .wrapper .title-3 {
  font-size: 36px;
  color: #FFFFFF;
  font-weight: 600;
}

.faqs .wrapper .para-3 {
  font-size: 17px;
  color: var(--darkGray);
  max-width: 730px;
}

/* ----------------------------------- */

/* :: FOOTER :: */
.theme-footer {
  position: relative;
  background: linear-gradient(180deg,
  #0a0e27 0%,
  #0e1123 25%,
  #0f1427 50%,
  #0b0e20 100%
);
}

.theme-footer::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right,
      #fd004c,
      #fe9000,
      #fff020,
      #3edf4b,
      #3363ff,
      #b102b7,
      #fd004c);
  animation: rainbow-move 20s infinite linear alternate;
}

@keyframes rainbow-move {
  100% {
    background-position-x: 4000px;
  }
}

/* footer-top */
.theme-footer .footer-top {
  padding: 60px 0 20px;
}

/* list-group */
.theme-footer .list-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* footer-list */
.theme-footer .footer-list {
  padding-bottom: 4vh;
}

.theme-footer .footer-list .list-title {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.theme-footer .footer-list .list-link:nth-child(2) {
  margin-top: 20px;
}

.theme-footer .footer-list .list-link:not(:last-of-type) {
  margin-bottom: 12px;
}

.theme-footer .footer-list .list-link>a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}

.theme-footer .footer-list .list-link>a:hover {
  text-decoration: underline;
  color: #fff;
}

@media only screen and (max-width: 1199.98px) {
  .theme-footer .list-group {
    justify-content: flex-start;
  }

  .theme-footer .footer-list {
    min-width: 25%;
  }
}

@media only screen and (max-width: 991.98px) {
  .theme-footer .footer-list {
    min-width: 33.33%;
  }
}

@media only screen and (max-width: 767.98px) {
  .theme-footer .footer-list {
    min-width: 100%;
  }

  .theme-footer .footer-list .list-title::before,
  .theme-footer .footer-list .list-title::after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
  }

  .theme-footer .footer-list .list-title::before {
    width: 10px;
    height: 2px;
  }

  .theme-footer .footer-list .list-title::after {
    height: 10px;
    width: 2px;
    right: 4px;
  }

  .theme-footer .footer-list.open-list .list-title::after {
    display: none;
  }

  .theme-footer .footer-list .list-link {
    display: none;
  }

  .theme-footer .footer-list.open-list .list-link {
    display: block;
  }
}

/* reg-bar */
.theme-footer .reg-bar {
  padding: 30px 40px;
  background-color: #2C2891;
  background-image: url(../images/temps/footer/shape.webp);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 12px;
}

.theme-footer .reg-bar .title-4 {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.theme-footer .reg-bar .para-2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
}

@media only screen and (max-width: 767.98px) {
  .theme-footer .reg-bar .title-4 {
    font-size: 22px;
  }

  .theme-footer .reg-bar .para-2 {
    font-size: 14px;
  }
}

/* footer-bottom */
.theme-footer .footer-bottom {
  padding: 60px 0;
}

/* content */
@media only screen and (max-width: 991.98px) {
  .theme-footer .footer-bottom .content {
    flex-wrap: wrap;
  }
}

/* logo */
.theme-footer .footer-bottom .logo {
  margin-right: 40px;
}

.theme-footer .footer-bottom .logo img {
  min-width: 120px;
  width: 120px;
}

/* links */
.theme-footer .footer-bottom .links {
  margin-bottom: 4px;
}

.theme-footer .footer-bottom .links li {
  position: relative;
}

.theme-footer .footer-bottom .links li:not(:last-of-type) {
  margin-right: 20px;
}

.theme-footer .footer-bottom .links li:not(:last-of-type)::after {
  position: absolute;
  content: '';
  right: -11px;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background-color: rgba(255, 255, 255, .3);
}

.theme-footer .footer-bottom .links li a {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

.theme-footer .footer-bottom .links li a:hover {
  text-decoration: underline;
}

/* para-3 */
.theme-footer .footer-bottom .para-3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
}

.theme-footer .footer-bottom .para-3 a {
  color: #ffffff;
  font-weight: 500;
}

.theme-footer .footer-bottom .para-3 a:hover {
  text-decoration: underline;
}

/* social-list */
.theme-footer .footer-bottom .social-list li:not(:last-of-type) {
  margin-right: 10px;
}

.theme-footer .footer-bottom .social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-footer .footer-bottom .social-list a:hover {
  opacity: .7;
}

.theme-footer .footer-bottom .social-list a img {
  filter: invert(1);
  min-width: 28px;
  width: 28px;
}

/* Ajout*/

/*Theme Settings Button*/
#discord-icon {
  padding-right: 2px;
  width: 48px;
}

#facebook-icon {
  padding-right: 2px;
  width: 48px;
}

#twitter-icon {
  padding-right: 2px;
  width: 48px;
}

#tiktok-icon {
  padding-right: 2px;
  width: 48px;
}

#steam-icon {
  padding-right: 2px;
  width: 48px;
}

#francais-icon {
  padding-right: 2px;
  width: 48px;
}

#english-icon {
  padding-right: 2px;
  width: 48px;
}

.fade-in {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.fade-out {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-slide {
  opacity: 0;
  transform: translateY(40px);
}

.fade-slide.in-view {
  animation: fadeSlideIn 1.5s ease forwards;
  animation-delay: 0.1s;
}

.fade-slide.out-of-view {
  animation: fadeSlideOut 0.8s ease forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(30px);
    /* petit effet vers le bas */
  }
}


/* === FADE SLIDE DE DROITE === */
.fade-slide-right {
  opacity: 0;
  transform: translateX(40px);
}

.fade-slide-right.in-view {
  animation: fadeSlideRightIn 1.5s ease forwards;
  animation-delay: 0.1s;
}

.fade-slide-right.out-of-view {
  animation: fadeSlideRightOut 0.8s ease forwards;
}

@keyframes fadeSlideRightIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideRightOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(30px);
    /* petit recul à droite */
  }
}


/* === FADE SLIDE DE GAUCHE === */
.fade-slide-left {
  opacity: 0;
  transform: translateX(-40px);
}

.fade-slide-left.in-view {
  animation: fadeSlideLeftIn 1.5s ease forwards;
  animation-delay: 0.1s;
}

.fade-slide-left.out-of-view {
  animation: fadeSlideLeftOut 0.8s ease forwards;
}

@keyframes fadeSlideLeftIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideLeftOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-30px);
    /* petit retour à gauche */
  }
}

.fade {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade.show {
  opacity: 1;
}

.snake{
  display:none;
}
.snake:hover{
  display:block;
  z-index: 999;
}

/* ----------------------------------- */
/* ============================================
   MENU MOBILE - PLEINE HAUTEUR (PAS PLEINE LARGEUR)
   ============================================ */

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links {
    position: fixed;
    top: 0;
    left: -390px;
    bottom: 0;
    height: 100vh; /* Pleine hauteur */
    width: 380px; /* Largeur fixe */
    padding: 60px 0 50px;
    background-color: var(--semi-dark);
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 98;
  }

  .theme-navbar .nav-bottom .links.open-links {
    left: 0;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2) !important;
  }

  .theme-navbar .nav-bottom .links::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }

  .theme-navbar .nav-bottom .links::-webkit-scrollbar-thumb {
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
  }

  .theme-navbar .nav-bottom .links .link > a {
    padding: 10px 20px;
    min-width: 380px;
  }

  .theme-navbar .nav-bottom .links .link:hover > a,
  .theme-navbar .nav-bottom .links .link.active > a,
  .theme-navbar .nav-bottom .links .link.open-dropdown-menu > a {
    background-color: rgba(255, 255, 255, .1);
    opacity: 1;
  }

  .theme-navbar .nav-bottom .links .link:not(:last-of-type) {
    margin-right: unset;
  }
}

/* Sur mobile phone, un peu moins large */
@media only screen and (max-width: 767.98px) {
  .theme-navbar .nav-bottom .links {
    width: 320px;
    left: -320px;
  }

  .theme-navbar .nav-bottom .links .link > a {
    min-width: 320px;
  }
}

/* Sur très petits écrans */
@media only screen and (max-width: 480px) {
  .theme-navbar .nav-bottom .links {
    width: 280px;
    left: -280px;
  }

  .theme-navbar .nav-bottom .links .link > a {
    min-width: 280px;
  }
}