/**
 * Tunnel de réservation ABC/XFT — design maquette (stepper, carte, sidebar).
 */

:root {
	--ewd-tunnel-teal: #00A1B9;
	--ewd-tunnel-teal-dark: #00A1B9;
	--ewd-tunnel-orange: #F2930E;
	--ewd-tunnel-text: #373737;
	--ewd-tunnel-muted: #717171;
	--ewd-tunnel-border: #E7E7E7;
	--ewd-tunnel-gray: #767676;
	--ewd-tunnel-gray-light: #f5f7f6;
	--ewd-tunnel-shadow: 0px 2px 24px 0px #0000000F;
	--ewd-tunnel-radius: 16px;
	--ewd-tunnel-success: #009C22;
	--ewd-tunnel-recap-bg: #e8f6fa;
	--ewd-tunnel-recap-border: #b8dde8;
	--ewd-tunnel-stepper-line: #717171;
	--ewd-tunnel-stepper-marker: 28px;
}

body.ewd-reservation-tunnel {
	background: #fff;
}

.ewd-tunnel-elementor-placeholder {
	margin: 24px;
	padding: 28px 24px;
	text-align: center;
	background: var(--ewd-tunnel-gray-light);
	border: 2px dashed var(--ewd-tunnel-border);
	border-radius: var(--ewd-tunnel-radius);
}

.ewd-tunnel-elementor-placeholder__title {
	margin: 0 0 8px;
	color: var(--ewd-tunnel-teal);
	font-size: 1.1rem;
	font-weight: 700;
}

.ewd-tunnel-elementor-placeholder__text {
	margin: 0;
	color: var(--ewd-tunnel-muted);
	font-size: 14px;
	line-height: 1.5;
}

body.ewd-reservation-tunnel .ewd-reservation-tunnel-page,
body.ewd-reservation-tunnel .site-main.ewd-reservation-tunnel-page {
	padding: 0;
	max-width: none;
}

body.ewd-reservation-tunnel #primary {
	padding: 0;
}

/* ---------------------------------------------------------------- Stepper */
.ewd-tunnel-stepper-wrap {
    padding: 0;
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.ewd-tunnel-stepper {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

.ewd-tunnel-stepper__list {
	display: flex;
	align-items: center;
	justify-content: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: min(100%, 720px);
}

.ewd-tunnel-stepper__item {
	display: flex;
	/* flex: 1 1 0; */
	align-items: center;
	min-width: 0;
}

.ewd-tunnel-stepper__item:last-child {
	flex: 0 1 auto;
}

.ewd-tunnel-stepper__step {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.ewd-tunnel-stepper__marker {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: var(--ewd-tunnel-stepper-marker);
    height: var(--ewd-tunnel-stepper-marker);
    border: 1.5px solid var(--ewd-tunnel-stepper-line);
    border-radius: 50%;
    background: #fff;
    color: var(--ewd-tunnel-stepper-line);
    font-weight: 500;
    font-size: 15px;
    line-height: 12px;
    letter-spacing: 0%;
}

.ewd-tunnel-stepper__number {
	display: block;
	line-height: 1;
}

.ewd-tunnel-stepper__label {
    color: var(--ewd-tunnel-stepper-line);
    font-weight: 500;
    font-size: 15px;
    line-height: 12px;
    letter-spacing: 0%;
}

.ewd-tunnel-stepper__connector {
    flex: 1 1 auto;
    align-self: center;
    min-width: 24px;
    max-width: 24px;
    height: 1px;
    margin: 0 6px;
    background: var(--ewd-tunnel-stepper-line);
}

/* Étape terminée — cercle teal plein, chiffre blanc, libellé teal, trait teal */
.ewd-tunnel-stepper__item.is-complete .ewd-tunnel-stepper__marker {
	border-color: var(--ewd-tunnel-teal);
	background: var(--ewd-tunnel-teal);
	color: #fff;
}

.ewd-tunnel-stepper__item.is-complete .ewd-tunnel-stepper__label {
	color: var(--ewd-tunnel-teal);
}

.ewd-tunnel-stepper__item.is-complete .ewd-tunnel-stepper__connector {
	background: var(--ewd-tunnel-teal);
}

/* Étape courante — cercle orange plein, chiffre blanc, libellé orange */
.ewd-tunnel-stepper__item.is-current .ewd-tunnel-stepper__marker {
	border-color: var(--ewd-tunnel-orange);
	background: var(--ewd-tunnel-orange);
	color: #fff;
}

.ewd-tunnel-stepper__item.is-current .ewd-tunnel-stepper__label {
	color: var(--ewd-tunnel-orange);
	font-weight: 600;
}

/* Étape à venir — cercle blanc bordure grise, libellé gris */
.ewd-tunnel-stepper__item.is-upcoming .ewd-tunnel-stepper__marker {
	border-color: var(--ewd-tunnel-stepper-line);
	background: #fff;
	color: var(--ewd-tunnel-stepper-line);
}

.ewd-tunnel-stepper__item.is-upcoming .ewd-tunnel-stepper__label {
	color: var(--ewd-tunnel-stepper-line);
	font-weight: 500;
}

/* --------------------------------------------------------- Content layout */
#reservationvoyage .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

#reservationvoyage.ewd-tunnel-commande {
	background: #fff;
}

#reservationvoyagecontent.container, #reservationvoyagecontent.ewd-tunnel-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 47px 0 0 0;
    box-sizing: border-box;
}

#reservationvoyagecontent .ewd-tunnel-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 32px;
	max-width: none;
	margin: 0;
	overflow: visible;
}

#reservationvoyagecontent .column.middle, #reservationvoyagecontent .ewd-tunnel-main-card {
    flex: 1 1 0;
    min-width: 0;
    float: none;
    width: auto;
    margin: 0;
    padding: 20px 20px 40px 20px;
    background: #fff;
    border: 1px solid var(--ewd-tunnel-border);
    border-radius: var(--ewd-tunnel-radius);
    box-shadow: var(--ewd-tunnel-shadow);
    overflow: hidden;
}

#reservationvoyagecontent .ewd-tunnel-row:not(:has(.ewd-tunnel-sidebar-col)) .ewd-tunnel-main-card {
	flex: 1 1 100%;
}

#reservationvoyagecontent .column.right,
#reservationvoyagecontent .ewd-tunnel-sidebar-col {
	flex: 0 0 300px;
	float: none;
	width: auto;
	margin: 0;
	position: sticky;
	top: 24px;
	align-self: flex-start;
}

.text-right {
	text-align: right;
}

.w100 {
	width: 100%;
}

.hide_bloc {
	display: none !important;
}

.hide {
	display: none !important;
}

/* Masquer l’ancien bandeau d’étape */
#reservationvoyagecontent h2.title_step {
	display: none !important;
}

/* ------------------------------------------------------------- Step headers */
#reservationvoyagecontent h3.subtitle_step {
    display: block;
    margin: 0 !important;
    padding: 0 0 24px 0 !important;
    text-transform: none !important;
    cursor: default;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

#reservationvoyagecontent h3.subtitle_step.inactive {
    padding: 28px 0 28px 0 !important;
}
#reservationvoyagecontent .bloc_step:last-child h3.subtitle_step.inactive {
    padding: 28px 0 0 0 !important;
}

#reservationvoyagecontent h3.subtitle_step.done {
    padding: 28px 0 28px 0 !important;
}
#reservationvoyagecontent .bloc_step:last-child h3.subtitle_step.done {
    padding: 28px 0 0 0 !important;
}

#reservationvoyagecontent h3.subtitle_step.active {
	color: var(--ewd-tunnel-teal);
	background: #fff;
}

#reservationvoyagecontent h3.subtitle_step.done {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--ewd-tunnel-success);
    background: #fff;
}

#reservationvoyagecontent h3.subtitle_step.done > span:not(.tick_ok) {
	display: none;
}

#reservationvoyagecontent h3.subtitle_step.done .form_modif {
	margin-left: auto;
	order: 2;
}

#reservationvoyagecontent h3.subtitle_step.done .link_modif {
    color: var(--ewd-tunnel-teal) !important;
}

#reservationvoyagecontent h3.subtitle_step .tick_ok {
    order: -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNyAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNyAxMi4wMjVMMCA2LjMyNUwxLjQyNSA0LjlMNS43IDkuMTc1TDE0Ljg3NSAwTDE2LjMgMS40MjVMNS43IDEyLjAyNVoiIGZpbGw9IiMwMDlDMjIiLz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 12px;
}

#reservationvoyagecontent h3.subtitle_step.inactive {
	color: #767676 !important;
}



/* ----------------------------------------------------------- Step content */
#reservationvoyagecontent .bloc_step {
	margin: 0;
	background: #fff;
	border: 0;
	border-bottom: 1px solid var(--ewd-tunnel-border);
}

#reservationvoyagecontent .bloc_step:last-child {
	border-bottom: 0;
}

#reservationvoyagecontent .bloc_step > h4,
#reservationvoyagecontent .bloc_step .col-12 > h4,
#reservationvoyagecontent .tab_devis > h4,
#reservationvoyagecontent .col-md-6 > h4,
#reservationvoyagecontent .recap_comm > h4 {
	display: block;
	padding: 20px 24px !important;
	font-size: 1rem;
	font-weight: 700;
}

#reservationvoyagecontent .bloc_step p {
    padding: 0;
    margin: 0;
    color: var(--ewd-tunnel-text) !important;
    font-weight: 600 !important;
    font-size: 15px;
    line-height: 12px;
    letter-spacing: 0%;
}

#reservationvoyagecontent .bloc_step > h3.subtitle_step.active + p, #reservationvoyagecontent .bloc_step > h3.subtitle_step.active + form > p:first-child {
    padding-top: 0;
    color: var(--ewd-tunnel-muted);
    font-weight: 400;
}
#reservationvoyagecontent .bloc_step > h3.subtitle_step.active + p strong, #reservationvoyagecontent .bloc_step > h3.subtitle_step.active + form > p:first-child strong {
    color: #373737;
    font-weight: 600 !important;
    font-size: 15px;
    line-height: 12px;
    letter-spacing: 0%;
}

#reservationvoyagecontent .bloc_step ul {
	padding: 0 24px 16px 44px;
}

#reservationvoyagecontent .bloc_step table {
    border-collapse: collapse;
    margin-top: 16px !important;
    table-layout: auto;
    width: 100%;
}
#reservationvoyagecontent .bloc_step table td:not(:last-child) {
	padding: 0 24px 0 0 !important;

}
#reservationvoyagecontent .bloc_step table tr {
	border-bottom: 1px solid var(--ewd-tunnel-border);
}

#reservationvoyagecontent .bloc_step table tr:last-child {
	border-bottom: 0;
}
#reservationvoyagecontent .bloc_step table td, #reservationvoyagecontent .bloc_step table td small {
    padding: 0;
    color: var(--ewd-tunnel-muted);
    text-transform: none;
    vertical-align: middle;
    font-weight: 500;
    font-size: 15px;
    line-height: 12px;
    letter-spacing: 0%;
    width: 100% !important;
}
#reservationvoyagecontent .bloc_step table td .price, #reservationvoyagecontent .bloc_step table td + td {
    color: var(--ewd-tunnel-orange);
}
div#reservationvoyagecontent strong {
    font-weight: 600 !important;
}
#reservationvoyagecontent .bloc_step table td:last-child {
	width: 96px;
	text-align: right;
}

#reservationvoyagecontent .bloc_step table select {
	min-width: 72px;
	padding: 8px 12px;
	border: 1px solid var(--ewd-tunnel-border);
	border-radius: 8px;
	background: #fff;
}

#reservationvoyagecontent .bloc_step .bullet li {
	position: relative;
	margin: 16px 0;
	padding: 0 0 0 25px;
	color: var(--ewd-tunnel-muted);
	list-style: none;
}

#reservationvoyagecontent .bloc_step .bullet li::before {
	content: "▪";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--ewd-tunnel-teal);
	font-size: 40px;
	line-height: 15px;
}

#reservationvoyagecontent .bloc_step hr {
	width: calc(100% - 48px) !important;
	margin: 20px 24px;
	background-color: var(--ewd-tunnel-border);
	border: 0;
	height: 1px;
}

#reservationvoyagecontent .bloc_step form {
    padding: 0;
}

#reservationvoyagecontent .bloc_step > h3.subtitle_step + p {
	padding: 0 24px !important;
}

/* ----------------------------------------------------------------- Buttons */
#reservationvoyagecontent .bloc_step input[type="submit"].sf-button, #reservationvoyagecontent .bloc_step .sf-button:not(.bouton_ajout_heb):not(.bouton_en_attente) {
    display: block;
    width: 100%;
    margin: 0;
    padding: 11px 20px;
    height: auto;
    min-height: 44px;
    color: #fff;
    text-transform: none;
    background-color: var(--ewd-tunnel-teal);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    max-width: 370px;
    margin-top: 24px;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

#reservationvoyagecontent .bloc_step input[type="submit"].sf-button:hover,
#reservationvoyagecontent .bloc_step .sf-button:not(.bouton_ajout_heb):not(.bouton_en_attente):hover {
	background-color: var(--ewd-tunnel-orange) !important;
}

#reservationvoyagecontent .bloc_step .button-large {
	max-width: none;
}

#reservationvoyagecontent .bloc_step .sf-button.bouton_en_attente {
	background-color: var(--ewd-tunnel-gray);
}

#reservationvoyagecontent .bloc_step .text-right {
    padding: 0;
}
/* ------------------------------------------------------------------- Forms */
#reservationvoyagecontent .bloc_step label {
	display: block;
	margin: 10px 0;
	color: var(--ewd-tunnel-muted);
}

#reservationvoyagecontent .bloc_step input[type="text"],
#reservationvoyagecontent .bloc_step input[type="password"],
#reservationvoyagecontent .bloc_step input[type="tel"],
#reservationvoyagecontent .bloc_step input[type="email"],
#reservationvoyagecontent .bloc_step input[type="date"],
#reservationvoyagecontent .bloc_step input[type="number"],
#reservationvoyagecontent .bloc_step input[type="url"],
#reservationvoyagecontent .bloc_step select,
#reservationvoyagecontent .bloc_step textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 12px 15px;
	text-align: left;
	border: 1px solid var(--ewd-tunnel-border);
	border-radius: 10px;
}

#reservationvoyagecontent .bloc_step input[type="checkbox"] {
	margin: 0 5px 0 0;
}

#reservationvoyagecontent .bloc_step .form_modif {
	display: inline;
	padding: 0;
}

#reservationvoyagecontent .bloc_step .link_modif {
    display: inline;
    margin: 0;
    padding: 0;
    height: auto;
    width: auto;
    text-transform: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 100%;
    letter-spacing: 0%;
    border-radius: 0 !important;
}

#reservationvoyagecontent .bloc_step .link_modif:hover {
	color: var(--ewd-tunnel-orange) !important;
}

/* ----------------------------------------------------------- Hébergements */
#reservationvoyagecontent .gestion_heb {
	margin: 0;
}

#reservationvoyagecontent .gestion_heb > table {
	border-collapse: collapse;
	width: 100%;
	table-layout: auto;
	margin-top: 16px;
}

#reservationvoyagecontent .gestion_heb > table > tr > td {
	vertical-align: top;
	padding: 0;
}

#reservationvoyagecontent .ewd-heb-col-info {
	width: auto;
}

#reservationvoyagecontent .ewd-heb-col-control {
	vertical-align: top !important;
}

#reservationvoyagecontent .ewd-heb-add {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    white-space: nowrap;
    width: 100%;
}

#reservationvoyagecontent .gestion_heb  .ewd-heb-add {
    gap: 0 !important;
}

#reservationvoyagecontent .ewd-heb-add .ewd-tunnel-select {
	width: auto !important;
	margin: 0 !important;
	min-width: 260px;
	max-width: 340px;
	white-space: normal;
	flex: 1 1 auto;
}

#reservationvoyagecontent .bloc_step table td:last-child {
    width: auto;
    min-width: 340px;
    display: flex;
    align-items: center;
    justify-content: end;
}
#reservationvoyagecontent .bloc_step p.ewd-heb-restant {
    margin: 0 !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    color: var(--ewd-tunnel-muted) !important;
}


#reservationvoyagecontent .ligne_heb {
	display: flex;
	align-items: center;
	gap: 0;
}
div#aff_heb {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
#reservationvoyagecontent .ligne_heb span.ligne_heb__label {
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 1;
    border-width: 1px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border: 1px solid #E7E7E7;
    padding: 15px 20px;
    max-height: 52px;
}

#reservationvoyagecontent .ligne_heb:last-child {
	border-bottom: 0;
}

#reservationvoyagecontent .ligne_heb span.ligne_heb__label {
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 1;
    border-width: 1px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border: 1px solid #E7E7E7;
    padding: 15px 20px;
    min-height: 52px;
    border-right: none !important;
    color: #767676;
}
#reservationvoyagecontent .gestion_heb .supp_heb {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    line-height: 1;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    background: #FFC0C0;
    min-height: 52px;
    width: 52px;
    padding: 12px !important;
    border-radius: 0 8px 8px 0 !important;
}
#reservationvoyagecontent .gestion_heb .supp_heb:hover {
    background: #ea9696 !important;
}
#reservationvoyagecontent .gestion_heb .supp_heb:hover {
	background: var(--ewd-tunnel-teal-dark);
}

#reservationvoyagecontent .bouton_ajout_heb {
    display: inline-block !important;
    width: auto !important;
    max-width: none !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 12px 12pxpx !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 15px !important;
    color: #fff !important;
    background-color: #009C22 !important;
    border: 0;
    border-radius: 0 8px 8px 0 !important;
    cursor: pointer;
    user-select: none;
    max-width: 88px !important;
}

#reservationvoyagecontent .bouton_ajout_heb:hover {
	background-color: #F2930E !important;
}

#reservationvoyagecontent #bouton_en_attente, #reservationvoyagecontent .bouton_en_attente {
    display: block;
    width: 100%;
    max-width: 370px;
    margin-top: 24px;
    padding: 11px 20px;
    min-height: 44px;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 22px !important;
    text-align: center;
    color: #fff;
    background-color: #CCCCCC !important;
    border: 0;
    border-radius: 8px;
    cursor: not-allowed;
    align-items: center !important;
}

#reservationvoyagecontent #aff_heb:empty {
	min-height: 0;
}

#reservationvoyagecontent #bouton_en_attente.hide,
#reservationvoyagecontent #bouton_option_en_attente.hide,
#reservationvoyagecontent #createHebergement.hide,
#reservationvoyagecontent #createOptions.hide,
#reservationvoyagecontent div.bouton_en_attente.hide,
#reservationvoyagecontent #bloc_add_heb.hide,
#reservationvoyagecontent #sel_individual.hide,
#reservationvoyagecontent #sel_group.hide {
	display: none;
}

/* -------------------------------------------------------------- Récapitulatif */
#reservationvoyagecontent .tab_devis {
	padding: 0 24px 20px !important;
}

#reservationvoyagecontent .tab_devis > .row:first-child {
	margin-top: 0;
	padding: 12px 8px;
	background: var(--ewd-tunnel-gray-light);
	border-radius: 8px 8px 0 0;
	font-weight: 700;
	color: var(--ewd-tunnel-text);
}

#reservationvoyagecontent .tab_devis .row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin: 0;
	padding: 10px 8px;
	border-bottom: 1px solid var(--ewd-tunnel-border);
}

#reservationvoyagecontent .tab_devis .row.no-gutters {
	margin-left: 0;
	margin-right: 0;
}

#reservationvoyagecontent .tab_devis .row.recap_reserve {
	padding: 16px;
	margin-top: 12px;
	background-color: var(--ewd-tunnel-recap-bg);
	border: 1px solid var(--ewd-tunnel-recap-border);
	border-bottom: 1px solid var(--ewd-tunnel-recap-border);
	border-radius: 10px;
}

#reservationvoyagecontent .tab_devis .row.recap_reserve h4 {
	margin: 0 0 8px;
	color: var(--ewd-tunnel-teal);
	font-size: 14px;
	font-weight: 700;
}

#reservationvoyagecontent .tab_devis .row.recap_reserve ul {
	margin: 0;
	padding-left: 18px;
}

#reservationvoyagecontent .tab_devis .title_total {
	font-weight: 700;
}

#reservationvoyagecontent .tab_devis .price_total {
	color: var(--ewd-tunnel-orange) !important;
	font-size: 1.25rem;
	font-weight: 800;
	text-align: right;
}

#reservationvoyagecontent .tab_devis > h4 {
	display: block;
	padding: 16px 0 8px !important;
	margin: 0;
	color: var(--ewd-tunnel-teal);
	font-size: 1rem;
	font-weight: 700;
}

#reservationvoyagecontent .bloc_reserve_commande {
	padding: 20px 24px;
	text-align: center;
	background: #fff;
	border-top: 1px solid var(--ewd-tunnel-border);
}

#reservationvoyagecontent .bloc_reserve_commande em,
#reservationvoyagecontent .bloc_reserve_commande label p em {
	color: var(--ewd-tunnel-orange);
	font-style: normal;
	font-weight: 600;
}

#reservationvoyagecontent .bloc_reserve_commande input.sf-button {
	width: 100%;
	max-width: 100%;
}

#reservationvoyagecontent .bloc_reserve_commande.row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding: 20px 24px;
	background: #fff;
	border-top: 1px solid var(--ewd-tunnel-border);
}

#reservationvoyagecontent .bloc_reserve_commande .col-6 {
	flex: 1 1 calc(50% - 8px);
	min-width: 240px;
}

#reservationvoyagecontent .bloc_reserve_commande .sf-button.button-large {
	background: #fff !important;
	color: var(--ewd-tunnel-teal) !important;
	border: 2px solid var(--ewd-tunnel-teal) !important;
}

#reservationvoyagecontent .bloc_reserve_commande form.online .sf-button.button-large {
	background: var(--ewd-tunnel-teal) !important;
	color: #fff !important;
	border-color: var(--ewd-tunnel-teal) !important;
}

#reservationvoyagecontent .recap_comm p {
	padding: 1.5em;
	background: var(--ewd-tunnel-gray-light);
	border-radius: 10px;
}

/* ---------------------------------------------------- Grille ABC (col-*) */
#reservationvoyagecontent .bloc_step .row,
#reservationvoyagecontent #identification .row,
#reservationvoyagecontent #infos_payeur .row,
#reservationvoyagecontent #enregistrement_voyageur .row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

#reservationvoyagecontent .bloc_step [class*="col-"], #reservationvoyagecontent #identification [class*="col-"], #reservationvoyagecontent .tab_devis [class*="col-"] {
    box-sizing: border-box;
    padding: 0;
    min-width: 0;
}
#reservationvoyagecontent .col-12 {
	flex: 0 0 100%;
	width: 100%;
}

#reservationvoyagecontent .col-10 {
	flex: 0 0 83.333%;
	width: 83.333%;
}

#reservationvoyagecontent .col-6 {
	flex: 0 0 50%;
	width: 50%;
}

#reservationvoyagecontent .col-4 {
	flex: 0 0 33.333%;
	width: 33.333%;
}

#reservationvoyagecontent .col-2 {
	flex: 0 0 16.666%;
	width: 16.666%;
}

#reservationvoyagecontent #identification h4,
#reservationvoyagecontent .col-6 > h4 {
	display: block;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--ewd-tunnel-border);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ewd-tunnel-teal);
}

#reservationvoyagecontent .bloc_ident {
	margin-bottom: 16px;
}

#reservationvoyagecontent .lost-passwd {
	margin-left: 12px;
	color: var(--ewd-tunnel-teal);
	text-decoration: underline;
}

#reservationvoyagecontent .alert-danger {
	margin: 0 0 12px;
	padding: 12px 14px;
	color: #842029;
	background: #f8d7da;
	border: 1px solid #f5c2c7;
	border-radius: 8px;
}

#reservationvoyagecontent .alert.alert-danger,
#reservationvoyagecontent .succes {
	padding: 12px 14px;
	border-radius: 8px;
}

#reservationvoyagecontent .succes {
	color: #0f5132;
	background: #d1e7dd;
	border: 1px solid #badbcc;
}

/* --------------------------------------------------------- Pages confirmation */
#reservationvoyagecontent .gform_wrapper,
#reservationvoyagecontent .validation_error {
	padding: 24px;
}

#reservationvoyagecontent .gform_wrapper {
	text-align: center;
}

#reservationvoyagecontent .gform_wrapper h3,
#reservationvoyagecontent .gform_wrapper h4,
#reservationvoyagecontent .gform_wrapper strong {
	color: var(--ewd-tunnel-teal);
	font-weight: 700;
}

#reservationvoyagecontent .gform_wrapper .validation_error {
	color: #842029;
	background: #f8d7da;
	border: 1px solid #f5c2c7;
	border-radius: 10px;
}

.ewd-tunnel-stepper-shortcode {
	padding: 32px 24px 20px;
	background: #fff;
}

.ewd-tunnel-stepper-shortcode .ewd-tunnel-stepper-wrap {
	padding: 0;
	overflow: visible;
}

/* ---------------------------------------------------------- Sidebar encart */
.ewd-tunnel-sidebar-shortcode .ewd-tunnel-sidebar,
#reservationvoyagecontent #plus-triangle,
#reservationvoyagecontent .ewd-tunnel-sidebar {
	margin: 0;
	padding: 28px 24px;
	background: #fff;
	border: 1px solid var(--ewd-tunnel-border);
	border-radius: var(--ewd-tunnel-radius);
	box-shadow: var(--ewd-tunnel-shadow);
}

.ewd-tunnel-sidebar-shortcode {
	display: block;
	width: 100%;
}

.ewd-tunnel-sidebar-shortcode .ewd-tunnel-sidebar__title,
#reservationvoyagecontent .ewd-tunnel-sidebar__title {
	margin: 0 0 10px;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--ewd-tunnel-text);
	text-align: left;
}

.ewd-tunnel-sidebar-shortcode .ewd-tunnel-sidebar__duration,
#reservationvoyagecontent .ewd-tunnel-sidebar__duration {
	margin: 0 0 20px;
	color: var(--ewd-tunnel-teal);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.ewd-tunnel-sidebar-shortcode .ewd-tunnel-sidebar__price-block,
#reservationvoyagecontent .ewd-tunnel-sidebar__price-block {
	padding-top: 18px;
	border-top: 1px solid var(--ewd-tunnel-border);
}

.ewd-tunnel-sidebar-shortcode .ewd-tunnel-sidebar__price-label,
#reservationvoyagecontent .ewd-tunnel-sidebar__price-label {
	display: block;
	margin-bottom: 4px;
	color: var(--ewd-tunnel-muted);
	font-size: 13px;
}

.ewd-tunnel-sidebar-shortcode .ewd-tunnel-sidebar__price-value,
#reservationvoyagecontent .ewd-tunnel-sidebar__price-value {
	display: block;
	color: var(--ewd-tunnel-text);
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.15;
}

.ewd-tunnel-sidebar-shortcode #plus-triangle h3,
#reservationvoyagecontent #plus-triangle h3 {
	display: none;
}

.ewd-tunnel-sidebar-shortcode #plus-triangle img.size-medium,
#reservationvoyagecontent #plus-triangle img.size-medium {
	display: none;
}

/* ----------------------------------------------------------- Loader overlay */
.loader {
	display: none;
}

.loader.active {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.45);
}

.loader__spinner {
	width: 52px;
	height: 52px;
	border: 4px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ewd-tunnel-spin 0.75s linear infinite;
}

@keyframes ewd-tunnel-spin {
	to {
		transform: rotate(360deg);
	}
}

/* --------------------------------------------------------- Payment errors */
.ewd-tunnel-payment-error {
	margin: 20px 24px;
	padding: 16px 18px;
	color: #842029;
	background: #f8d7da;
	border: 1px solid #f5c2c7;
	border-radius: 10px;
}

/* --------------------------------------------------------- Modal hébergement */
.modal-error {
	display: table;
	position: fixed;
	inset: 0;
	z-index: 100000;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}

.modal-error .modal-container {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}

.modal-error .modal-content {
	width: min(420px, calc(100% - 32px));
	margin: 0 auto;
	padding: 24px;
	border-radius: 12px;
	background: #fff;
	text-align: center;
}

.modal-error .modal-close-btn {
	float: right;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.modal-error .modal-ok-btn {
	margin-top: 16px;
}

/* --------------------------------------------------------- Étape 1 — fiche voyage */
body.ewd-tunnel-step-1 .ewd-tunnel-stepper-shortcode {
	margin-bottom: 8px;
}

body.ewd-tunnel-step-1 .site-main {
	padding-top: 0;
}

/* ------------------------------------------------ Titres étapes 3–5 (plugin ABC) */
#reservationvoyagecontent .ewd-tunnel-step-payment > h2,
#reservationvoyagecontent .ewd-tunnel-step-agence > h2,
#reservationvoyagecontent .ewd-tunnel-step-agence > h4,
#reservationvoyagecontent .ewd-tunnel-step-confirmation > div > h2 {
	display: block;
	margin: 0 0 12px;
	padding: 24px 24px 0;
	color: var(--ewd-tunnel-teal);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

#reservationvoyagecontent .ewd-tunnel-step-payment > p,
#reservationvoyagecontent .ewd-tunnel-step-agence > p {
	margin: 0 0 20px;
	padding: 0 24px;
	color: var(--ewd-tunnel-muted);
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
}

#reservationvoyagecontent .ewd-tunnel-step-agence h4 {
	margin: 16px 24px;
	padding: 14px 16px;
	color: var(--ewd-tunnel-text);
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	background: var(--ewd-tunnel-recap-bg);
	border: 1px solid var(--ewd-tunnel-recap-border);
	border-radius: 10px;
}

#reservationvoyagecontent .ewd-tunnel-step-agence h4,
#reservationvoyagecontent .ewd-tunnel-step-confirmation h4 {
	color: var(--ewd-tunnel-orange);
}

#reservationvoyagecontent .ewd-tunnel-step-agence form.agence {
	padding: 0 24px 24px;
}

#reservationvoyagecontent .ewd-tunnel-step-agence form.agence label {
	display: block;
	margin-bottom: 16px;
	font-weight: 600;
	color: var(--ewd-tunnel-text);
}

#reservationvoyagecontent .ewd-tunnel-step-agence form.agence select {
	width: 100%;
	max-width: 420px;
	margin-top: 8px;
	padding: 12px 14px;
	border: 1px solid var(--ewd-tunnel-border);
	border-radius: 10px;
	background: #fff;
}

#reservationvoyagecontent #listing_agences .agence {
	display: none;
	margin: 16px 0;
	padding: 16px 18px;
	background: var(--ewd-tunnel-gray-light);
	border-radius: 10px;
}

#reservationvoyagecontent #listing_agences .agence h4 {
	margin: 0 0 8px;
	color: var(--ewd-tunnel-teal);
	font-size: 1rem;
}

/* ------------------------------------------- Paiement CB / agence côte à côte */
#reservationvoyagecontent .ewd-tunnel-step-payment {
	padding-bottom: 24px;
}

#reservationvoyagecontent .ewd-tunnel-step-payment #PaymentRequest {
	display: none;
}

#reservationvoyagecontent .ewd-tunnel-step-payment .ewd-tunnel-payment-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: stretch;
	padding: 0 24px 8px;
}

#reservationvoyagecontent .ewd-tunnel-step-payment > button.sf-button,
#reservationvoyagecontent .ewd-tunnel-step-payment > form.agence {
	flex: 1 1 calc(50% - 10px);
	min-width: 260px;
	margin: 0;
	padding: 24px 20px;
	box-sizing: border-box;
	text-align: center;
	background: #fff;
	border: 2px solid var(--ewd-tunnel-teal);
	border-radius: var(--ewd-tunnel-radius);
}

#reservationvoyagecontent .ewd-tunnel-step-payment > button.sf-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 120px;
	color: #fff !important;
	font-size: 1rem;
	font-weight: 700;
	background: var(--ewd-tunnel-teal) !important;
	border-color: var(--ewd-tunnel-teal) !important;
	cursor: pointer;
}

#reservationvoyagecontent .ewd-tunnel-step-payment > form.agence {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#reservationvoyagecontent .ewd-tunnel-step-payment > form.agence .sf-button.button-large {
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 14px 20px;
	color: var(--ewd-tunnel-teal) !important;
	font-weight: 700;
	background: #fff !important;
	border: 0 !important;
	cursor: pointer;
}

#reservationvoyagecontent .ewd-tunnel-step-payment > .info_cb,
#reservationvoyagecontent .ewd-tunnel-step-payment > form.agence + .info_cb,
#reservationvoyagecontent .ewd-tunnel-step-payment > button.sf-button + .info_cb {
	flex: 1 1 calc(50% - 10px);
	min-width: 260px;
	margin: -8px 0 0;
	padding: 0 8px 16px;
	color: var(--ewd-tunnel-muted);
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
}

/* Flex wrapper via JS fallback : regrouper visuellement CB + info */
#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) {
	display: flex;
	flex-direction: column;
}

#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > h2,
#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > p {
	width: 100%;
}

#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > button.sf-button,
#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > form.agence {
	align-self: stretch;
	margin-left: 24px;
	margin-right: 24px;
}

@media screen and (min-width: 768px) {
	#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto 1fr;
		column-gap: 20px;
		padding-bottom: 24px;
	}

	#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > h2,
	#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > p {
		grid-column: 1 / -1;
	}

	#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > button.sf-button {
		grid-column: 1;
		grid-row: 3;
		margin: 0 0 0 24px;
	}

	#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > button.sf-button + .info_cb {
		grid-column: 1;
		grid-row: 4;
		margin: 8px 0 0 24px;
		padding-bottom: 0;
	}

	#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > form.agence {
		grid-column: 2;
		grid-row: 3;
		margin: 0 24px 0 0;
	}

	#reservationvoyagecontent .ewd-tunnel-step-payment:not(.ewd-tunnel-payment--wrapped) > form.agence + .info_cb {
		grid-column: 2;
		grid-row: 4;
		margin: 8px 24px 0 0;
		padding-bottom: 0;
	}
}

/* ----------------------------------------------- Confirmation (étape 5) */
#reservationvoyage[data-ewd-step="5"] #reservationvoyagecontent .ewd-tunnel-main-card,
#reservationvoyagecontent .ewd-tunnel-step-confirmation {
	text-align: center;
}

#reservationvoyagecontent .ewd-tunnel-step-confirmation::before {
	content: "";
	display: block;
	width: 72px;
	height: 72px;
	margin: 32px auto 20px;
	background: var(--ewd-tunnel-success);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 36px 36px;
}

#reservationvoyagecontent .ewd-tunnel-step-confirmation > div > h2 {
	padding-top: 0;
}

#reservationvoyagecontent .ewd-tunnel-step-confirmation > div[style],
#reservationvoyagecontent .ewd-tunnel-step-agence > div[style] {
	max-width: 640px;
	margin: 0 auto !important;
	padding: 0 24px 32px !important;
	text-align: left !important;
	color: var(--ewd-tunnel-text);
	font-size: 15px;
	line-height: 1.65;
}

#reservationvoyagecontent .ewd-tunnel-step-agence .agence:not(#listing_agences .agence) {
	max-width: 480px;
	margin: 16px auto 24px;
	padding: 20px;
	text-align: left;
	background: var(--ewd-tunnel-gray-light);
	border-radius: 12px;
}

/* --------------------------------------------------------------- Responsive */
@media screen and (max-width: 900px) {
	#reservationvoyagecontent .column.middle,
	#reservationvoyagecontent .ewd-tunnel-main-card,
	#reservationvoyagecontent .column.right,
	#reservationvoyagecontent .ewd-tunnel-sidebar-col {
		flex: 1 1 100%;
		width: 100%;
		position: static;
	}

	#reservationvoyagecontent .col-6,
	#reservationvoyagecontent .col-4,
	#reservationvoyagecontent .col-2,
	#reservationvoyagecontent .col-10 {
		flex: 0 0 100%;
		width: 100%;
	}

	.ewd-tunnel-stepper__label {
		font-size: 12px;
	}

	.ewd-tunnel-stepper__step {
		gap: 8px;
	}

	.ewd-tunnel-stepper__connector {
		min-width: 10px;
		margin: 0 6px;
	}
}

@media screen and (max-width: 640px) {
	.ewd-tunnel-stepper-wrap {
		padding: 20px 16px 16px;
	}

	.ewd-tunnel-stepper__list {
		min-width: 640px;
	}

	:root {
		--ewd-tunnel-stepper-marker: 28px;
	}

	.ewd-tunnel-stepper__marker {
		font-size: 14px;
	}

	.ewd-tunnel-stepper__label {
		font-size: 11px;
	}

	#reservationvoyagecontent .bloc_step table td {
		display: block;
		padding: 12px 24px;
	}

	#reservationvoyagecontent .bloc_step table td + td {
		padding-top: 0;
	}

	#reservationvoyagecontent .bloc_step table td:last-child {
		width: auto;
		text-align: left;
		padding-bottom: 16px;
	}

	.text-right {
		text-align: stretch;
	}
}

/* ----------------------------------------------------------------- Plan bus */
#modal_plan.ewd-bus-plan-modal,
#modal_plan {
	display: none;
	position: fixed;
	z-index: 100000;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 24px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.88);
	overflow: auto;
}

#modal_plan .plan_bus {
	position: relative;
	width: min(960px, 100%);
	margin: 4vh auto;
	padding: 24px;
	background: #fff;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

#modal_plan .plan_bus img {
	display: block;
	width: 100%;
	height: auto;
}

#modal_plan .supp_bus,
#modal_plan .ewd-bus-plan-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 0 16px auto;
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	background: var(--ewd-tunnel-teal, #00a2b1);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

#modal_plan .supp_bus:hover,
#modal_plan .ewd-bus-plan-modal__close:hover {
	background: var(--ewd-tunnel-teal-dark, #008a97);
}

body.ewd-bus-plan-open {
	overflow: hidden;
}

#reservationvoyagecontent .bloc_step button.sf-button.affiche_plan {
	width: 100%;
}

/* --------------------------------------------- NiceSelect2 — tunnel (Nova Cards / Filters) */
#reservationvoyage .ewd-tunnel-select {
	width: 100%;
	margin: 0 0 12px;
	position: relative;
	overflow: visible;
}

#reservationvoyage .ewd-tunnel-select.nova-cards-meta-filter {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}
#reservationvoyage div#details_hebergement .ewd-tunnel-select .nice-select, #reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select {
    border-radius: 8px 0 0 8px !important;
    border-right: none !important;
    width: 100% !important;
    min-width: 100% !important;
}
#reservationvoyage .ewd-tunnel-select .nova-cards-meta-filter__body,
#reservationvoyage .ewd-tunnel-select .nova-cards-meta-filter__control {
	width: 100%;
	min-width: 0;
}

#reservationvoyage .ewd-tunnel-select .nova-cards-meta-filter__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

#reservationvoyage .ewd-tunnel-select .nova-cards-meta-filter__control {
    display: flex;
    align-items: center;
    position: relative;
    border: none;
}

#reservationvoyage .ewd-tunnel-select.nova-cards-meta-filter--nice {
	--nova-mfilter-bg: #ffffff;
	--nova-mfilter-border: var(--ewd-tunnel-border, #e1e4f4);
	--nova-mfilter-text: #1a1b3d;
	--nova-mfilter-accent: var(--ewd-tunnel-teal, #00a1b9);
	--nova-mfilter-radius: 10px;
	--nova-mfilter-height: 48px;
	background: var(--nova-mfilter-bg);
	border: 1px solid var(--nova-mfilter-border);
	border-radius: var(--nova-mfilter-radius);
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
	min-height: var(--nova-mfilter-height);
	padding: 0 14px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#reservationvoyage .ewd-tunnel-select.nova-cards-meta-filter--nice:hover,
#reservationvoyage .ewd-tunnel-select.nova-cards-meta-filter--nice:focus-within {
	border-color: var(--nova-mfilter-accent);
	box-shadow: 0 1px 6px rgba(0, 161, 185, 0.12);
}

#reservationvoyage .ewd-tunnel-select select.ewd-tunnel-select-native[data-nova-nice-select-init="1"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

#reservationvoyage .bloc_step select.ewd-tunnel-select-native:not([data-nova-nice-select-init="1"]) {
	box-sizing: border-box;
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--ewd-tunnel-border);
	border-radius: 10px;
}

/* Surcharge NSF global (.nice-select:not(.open) { overflow:hidden }) */
#reservationvoyage .ewd-tunnel-select .nice-select, #reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select {
    background: transparent !important;
    box-shadow: none !important;
    min-height: 52px !important;
    height: auto !important;
    position: relative;
    float: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    border: 1px solid #E7E7E7 !important;
    opacity: 1;
    border-radius: 16px !important;
    border-width: 1px;
    padding: 8px 20px !important;
    max-width: 175px !important;
    width: 100% !important;
    display: flex;
    align-items: center;
}

#reservationvoyage .ewd-tunnel-select .nice-select:not(.open),
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select:not(.open) {
	overflow: visible !important;
	z-index: 2 !important;
}

#reservationvoyage .ewd-tunnel-select .nice-select:not(.open) .nice-select-dropdown,
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select:not(.open) .nice-select-dropdown {
	display: none !important;
	pointer-events: none !important;
	visibility: hidden !important;
}

#reservationvoyage .ewd-tunnel-select .nice-select.open,
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select.open {
	z-index: 30 !important;
	overflow: visible !important;
}

#reservationvoyage .ewd-tunnel-select .nice-select.open .nice-select-dropdown, #reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select.open .nice-select-dropdown {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: scale(1) translateY(0) !important;
    width: 100%;
}

#reservationvoyage .ewd-tunnel-select .nice-select::after,
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select::after {
	pointer-events: none !important;
}

#reservationvoyage .ewd-tunnel-select .nice-select:not([data-nova-arrow="1"]):not(.open)::after, #reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select:not([data-nova-arrow="1"]):not(.open)::after {
    display: block !important;
    content: '' !important;
    border: none !important;
    width: 7px !important;
    height: 5px !important;
    right: 20px !important;
    top: 50% !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='5' viewBox='0 0 7 5' fill='none'%3E%3Cpath d='M6.5 0.5L3.5 3.5L0.5 0.5' stroke='%23373737' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
}
div#nb_participants .nice-select.ewd-tunnel-nice-select {
    max-width: 100px !important;
}
#reservationvoyage .ewd-tunnel-select .nice-select.open:not([data-nova-arrow="1"])::after,
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select.open:not([data-nova-arrow="1"])::after {
	display: block !important;
	content: '' !important;
	border: none !important;
	position: absolute !important;
	width: 7px !important;
	height: 5px !important;
	right: 20px !important;
	top: 50% !important;
	margin-top: 0 !important;
	transform: translateY(-50%) !important;
	filter: none !important;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 5' width='7' height='5'%3E%3Cpath fill='none' stroke='%23373737' stroke-linecap='round' d='m6.5 4.5l-3-3-3 3'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

#reservationvoyage .ewd-tunnel-select .nice-select .current, #reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select .current {
    color: var(--nova-mfilter-text, #1a1b3d);
    width: calc(100% - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#reservationvoyage .ewd-tunnel-select .nice-select .list,
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select .list {
	border: 1px solid var(--nova-mfilter-border, #e1e4f4);
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
	margin-top: 8px;
	padding: 6px 0;
	min-width: 100%;
	max-height: 220px;
	overflow-y: auto;
	z-index: 31;
}

#reservationvoyage .ewd-tunnel-select .nice-select .option,
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select .option {
	font-size: 14px;
	color: var(--nova-mfilter-text, #1a1b3d);
	padding: 8px 16px;
	min-height: 36px;
	line-height: 1.4;
}

#reservationvoyage .ewd-tunnel-select .nice-select .option:hover,
#reservationvoyage .ewd-tunnel-select .nice-select .option.focus,
#reservationvoyage .ewd-tunnel-select .nice-select .option.selected.focus,
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select .option:hover,
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select .option.focus,
#reservationvoyage .ewd-tunnel-select .ewd-tunnel-nice-select .option.selected.focus {
	background: var(--nova-mfilter-accent, #00a1b9);
	color: #fff;
}

#reservationvoyagecontent .bloc_step table .ewd-tunnel-select {
	margin: 0;
}

#reservationvoyagecontent .bloc_step table td .ewd-tunnel-select {
	min-width: 72px;
	line-height: 1.4;
}

#reservationvoyagecontent .bloc_step table td:has(.ewd-tunnel-select) {
	overflow: visible;
	vertical-align: middle;
	line-height: 1.4;
}

#reservationvoyagecontent .bloc_step table tr:has(.ewd-tunnel-select) {
	overflow: visible;
}

#reservationvoyagecontent .bloc_step table:has(.ewd-tunnel-select) {
	overflow: visible;
}

#reservationvoyagecontent .bloc_step:has(.ewd-tunnel-select) {
    overflow: visible;
    padding-bottom: 40px;
}
#reservationvoyagecontent .bloc_step:has(.ewd-tunnel-select):not(:first-child) {
    padding-top: 40px;
}


#reservationvoyagecontent .bloc_step table td:last-child .ewd-tunnel-select {
	min-width: 72px;
}

#reservationvoyagecontent .bloc_step table td:last-child .ewd-tunnel-select {
    min-width: auto;
    margin: 0 !important;
    max-width: 250px;
}

#reservationvoyagecontent .ewd-tunnel-step-agence form.agence .ewd-tunnel-select {
	max-width: 420px;
	margin-top: 8px;
}


#reservationvoyagecontent .bloc_step table td:last-child {
    width: auto;
    min-width: 340px;
    display: flex;
    align-items: center;
    justify-content: end;
}
#reservationvoyagecontent .gestion_heb table td:last-child {
    flex-direction: column-reverse;
    justify-content: start !important;
    align-items: start !important;
    gap: 6px;
}
#reservationvoyagecontent div#nb_participants table td:last-child {
    max-width: 124px !important;
    min-width: 124px !important;
}
#reservationvoyagecontent div#nb_participants table td:nth-child(2) {
    max-width: 95px !important;
    min-width: 95px !important;
}

td#bloc_add_heb .nice-select.ewd-tunnel-nice-select {
    width: 100% !important;
    min-width: auto !important;
    max-width: max-content !important;
}
td#bloc_add_heb .nice-select.ewd-tunnel-nice-select span.current {
    text-wrap: initial;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}