/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 *
 * Copyright (c) 2024 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: initial;
  animation-fill-mode:initial
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat)*2);
  animation-iteration-count: calc(var(--animate-repeat)*2)
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat)*3);
  animation-iteration-count: calc(var(--animate-repeat)*3)
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay)*2);
  animation-delay: calc(var(--animate-delay)*2)
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay)*3);
  animation-delay: calc(var(--animate-delay)*3)
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay)*4);
  animation-delay: calc(var(--animate-delay)*4)
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay)*5);
  animation-delay: calc(var(--animate-delay)*5)
}

.animate__animated.animate__faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-duration: calc(var(--animate-duration)/2);
  animation-duration: calc(var(--animate-duration)/2)
}

.animate__animated.animate__fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-duration: calc(var(--animate-duration)*.8);
  animation-duration: calc(var(--animate-duration)*.8)
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration)*2);
  animation-duration: calc(var(--animate-duration)*2)
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration)*3);
  animation-duration: calc(var(--animate-duration)*3)
}

@media (prefers-reduced-motion:reduce),
print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important
  }

  .animate__animated[class*=Out] {
    opacity: 0
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}
.noscroll {
    overflow: hidden !important;
}

body,
html {
    overflow-y: scroll;
}

.test {
    text-decoration: none !important;
    color: black !important;
}

.invalid {
    color: black;
    background-color: #ffa1a1;
}

html[data-debug-layouts] [data-section] {
    outline: 2px dotted red;
}

html[data-debug-layouts] [data-container] {
    outline: 2px dotted blue;
}
/**
 * Card - Styles CSS pour les effets hover
 * @designSystem Getfluence Library
 */

/* Styles de base pour les cartes interactives */
.card-interactive {
  transition: all 0.2s ease-in-out;
}

/* Effets hover pour le variant elevated */
.card-interactive.card-elevated:hover {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* Effets hover pour les variants default et outlined */
.card-interactive.card-default:hover,
.card-interactive.card-outlined:hover {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
}

/* Effets hover pour le variant filled */
.card-interactive.card-filled:hover {
  background-color: #f5f5f5; /* bgTertiary */
}

/* État désactivé */
.card-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Focus pour l'accessibilité */
.card-interactive:focus {
  outline: none;
}

/**
 * Styles CSS pour le composant DropdownSelect
 * Utilise les design tokens pour la cohérence visuelle
 */

.dropdown-select-container {
  position: relative;
  display: inline-block;
}

.dropdown-select-container.full-width {
  display: block;
  width: 100%;
}

.dropdown-select-button {
  transition: all 0.2s ease-in-out;
}

.dropdown-select-chevron {
  transition: transform 0.2s ease-in-out;
}

.dropdown-select-chevron-open {
  transform: rotate(180deg);
}

.dropdown-select-dropdown {
  position: absolute;
  z-index: 50;
  margin-top: 4px;
  width: 100%;
  min-width: max-content;
  background-color: #ffffff;
  outline: 1px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  padding: 4px 0;
}

.dropdown-select-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-select-option:last-child {
  border-bottom: none;
}

.dropdown-select-option:hover {
  background-color: #fafafa;
}

.dropdown-select-option:first-child {
  position: relative;
}

.dropdown-select-option:first-child:hover {
  background-color: #fafafa;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.dropdown-select-option:first-child:hover::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #fafafa;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.dropdown-select-option:last-child {
  position: relative;
}

.dropdown-select-option:last-child:hover {
  background-color: #fafafa;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.dropdown-select-option:last-child:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #fafafa;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.dropdown-select-option:focus {
  background-color: #fafafa;
  outline: none;
}

.dropdown-select-option-selected {
  background-color: #fffcef;
}

.dropdown-select-option-selected:hover {
  background-color: #fffada;
}

.dropdown-select-option-selected:focus {
  background-color: #fffada;
}

.dropdown-select-option-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.dropdown-select-option-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.dropdown-select-option-label {
  font-size: 14px;
  font-weight: 500;
  color: #171717;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-select-option-price {
  font-size: 14px;
  font-weight: 600;
  color: #404040;
  margin-left: 16px;
  white-space: nowrap;
}

.dropdown-select-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  font-size: 10px;
  font-weight: 500;
  background-color: #f3e8ff;
  color: #7c3aed;
  border-radius: 50%;
  outline: 1px solid #e9d5ff;
  width: 14px;
  height: 14px;
}

.dropdown-select-empty-state {
  padding: 12px 16px;
  font-size: 14px;
  color: #737373;
  text-align: center;
  font-style: italic;
}

/* Style pour le texte du bouton pour s'assurer qu'il reste sur une ligne */
.dropdown-select-button-text {
  white-space: nowrap;
}

/* Conteneur pour le texte et le chevron */
.dropdown-select-icons-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Style pour l'icône supplémentaire à gauche */
.dropdown-select-right-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Option de suppression avec couleur rouge */
.dropdown-select-option-delete .dropdown-select-option-label {
  color: #dc2626 !important;
}

.dropdown-select-option-delete:hover .dropdown-select-option-label {
  color: #b91c1c !important;
}

body.driver-active {
    overflow: hidden !important;
}

.tour-popover > .driver-popover-title {
    color: #262626 !important;
    font-family: 'SharpGrotesk' !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: normal !important;
    margin-top: 12px !important;
}

.driver-popover-close-btn {
    font-size: 20px !important;
}

.driver-popover {
    min-width: 370px !important;
    max-width: 370px !important;
    text-align: center !important;
}

.driver-popover-description {
    font-family: 'Inter' !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    color: #737373 !important;
    margin-top: 12px !important;
}

body.driver-active .driver-popover-next-btn {
    /* Primary button styles */
    background-color: #171717;
    border: 1px solid #171717;
    color: #ffffff;
    text-shadow: none !important;

    line-height: 16px;
    font-size: 12px;
    min-height: 20px;
    height: 30px;
    gap: 5px;
    font-weight: 600;
    
    /* Base styles */
    border-radius: 4px;
    font-family: Inter;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    text-decoration: none;
    white-space: pre;
}

body.driver-active .driver-popover-next-btn:hover:not(:disabled) {
    background-color: #404040;
    border-color: #404040;
    color: #ffffff;
}

body.driver-active .driver-popover-next-btn:focus:not(:disabled) {
    background-color: #404040;
    border-color: #404040;
    color: #ffffff;
}

body.driver-active .driver-popover-next-btn:active:not(:disabled) {
    background-color: #171717;
    border-color: #171717;
    color: #ffffff;
}

body.driver-active .driver-popover-next-btn:disabled {
    background-color: #D4D4D4;
    border-color: #D4D4D4;
    color: #ffffff;
    cursor: default;
}

body.driver-active .driver-popover-prev-btn {
    /* Secondary button styles */
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    color: #262626;
    text-shadow: none !important;

    line-height: 16px;
    font-size: 12px;
    min-height: 20px;
    height: 30px;
    gap: 5px;
    font-weight: 600;
    
    /* Base styles */
    border-radius: 4px;
    font-family: Inter;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    text-decoration: none;
    white-space: pre;
}

body.driver-active .driver-popover-prev-btn:hover:not(:disabled) {
    background-color: #f5f5f5;
    border-color: #e5e5e5;
    color: #262626;
}

body.driver-active .driver-popover-prev-btn:focus:not(:disabled) {
    background-color: #f5f5f5;
    border-color: #e5e5e5;
    color: #262626;
}

body.driver-active .driver-popover-prev-btn:active:not(:disabled) {
    background-color: #ffffff;
    border-color: #e5e5e5;
    color: #262626;
}

body.driver-active .driver-popover-prev-btn:disabled {
    background-color: #ffffff;
    border-color: #f7f7f7;
    color: #a7a7a7;
    cursor: default;
}
@property --myColor1 {
  syntax: '<color>';
  initial-value: white;
  inherits: false;
}

@property --myColor2 {
  syntax: '<color>';
  initial-value: white;
  inherits: false;
}

@property --myColor3 {
  syntax: '<color>';
  initial-value: white;
  inherits: false;
}

@property --deg {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --percent1 {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

@property --percent2 {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

@property --percent3 {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

:root {
  --duration: 3s;
}

#lala {
  /* Optional: change initial value of the variables */
  /* --myColor1: #f64; --myColor2: brown; */

  background: linear-gradient(var(--deg), var(--myColor1) var(--percent1), var(--myColor2) var(--percent2), var(--myColor3) var(--percent3));
  transition: --myColor1 var(--duration), --myColor2 var(--duration), --myColor3 var(--duration), --deg var(--duration), --percent1 var(--duration), --percent2 var(--duration), --percent3 var(--duration);
}
.rti--container * {
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.rti--container {
  --rti-bg: #fff;
  --rti-border: #e5e5e5;
  --rti-main: #e5e5e5;
  --rti-radius: 5px;
  --rti-s: 6px;
  --rti-tag: #edf2f7;
  --rti-tag-remove: #262626;
  --rti-tag-padding: 0.15rem 0.25rem;

  /* Container Styles */
  align-items: center;
  background: var(--rti-bg);
  border: 1px solid var(--rti-border);
  border-radius: var(--rti-radius);
  display: flex;
  flex-wrap: wrap;
  gap: var(--rti-s);
  line-height: 1.4;
  padding: var(--rti-s);
}

.rti--container:focus-within {
  border-color: var(--rti-main);
  box-shadow: var(--rti-main) 0px 0px 0px 1px;
}

.rti--input {
  border: 0;
  outline: 0;
  font-size: inherit;
  line-height: inherit;
  width: 50%;
}

.rti--tag {
  align-items: center;
  font-size: 12px;
  background-color: #fce99f;
  border-radius: var(--rti-radius);
  display: inline-flex;
  justify-content: center;
  padding: 1px 1px 1px 6px;
}

.rti--tag button {
  background: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  line-height: inherit;
  padding: 0 2px;
  margin-top: 2px;
}

.rti--tag button:hover {
  color: var(--rti-tag-remove);
}




.itemBtn:hover {
  background-color: #f3f3f3;
}

.itemBtnExpanded {

}

.itemContent {
  transition: height 0.25s cubic-bezier(0, 0, 0, 1);
}


.chevron {
  margin-left: auto;
  transition: transform 0.25s cubic-bezier(0, 0, 0, 1);
}

.itemBtnExpanded .chevron {
  transform: rotate(180deg);
}

.szh-accordion__item-content--hidden {
  opacity: 0;
  transform: translateY(-10px);
}

.szh-accordion__item-content--entered {
  opacity: 1;
  transform: translateY(0);
}


body {
  font-family: sans-serif;
}

.list li {
  margin: 0.75rem 0;
}

.info {
  color: rgb(0, 49, 0);
  background-color: rgb(230, 246, 230);
  padding: 1rem;
  border-radius: 4px;
}

.accordion {
  border-top: 1px solid #ccc;
  margin-top: 1rem;
}

.item {

}

.itemBtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 1rem;
  font-size: 1rem;
  text-align: left;
  color: #007bff;
  background-color: transparent;
  border: none;
}

.itemBtn:hover {
  background-color: #f3f3f3;
}

.itemBtnExpanded {
  background-color: #e7e7e7;
}

.itemContent {
  transition: height 0.25s cubic-bezier(0, 0, 0, 1);
}

.itemPanel {

}

.chevron {
  margin-left: auto;
  transition: transform 0.25s cubic-bezier(0, 0, 0, 1);
}

.itemBtnExpanded .chevron {
  transform: rotate(180deg);
}


/*# sourceMappingURL=main.38be8b908e9f0a78.css.map?v=1776948234373*/