/* Formulaire vol Explorer, rendu dans la pancarte Séjour. */

#apulia-ss-flight-search-sheet.is-open{
	z-index:21;
}
#apulia-ss-flight-search-sheet .apulia-ss-sheet-card{
	height:56vh;
	height:56dvh;
	max-height:56vh;
	max-height:56dvh;
	overflow-x:hidden;
	overflow-y:auto;
	-webkit-overflow-scrolling:touch;
	overscroll-behavior:contain;
	touch-action:pan-y;
	scrollbar-width:none;
	-ms-overflow-style:none;
}
#apulia-ss-flight-search-sheet .apulia-ss-sheet-card::-webkit-scrollbar{
	display:none;
	width:0;
	height:0;
}
#apulia-ss-flight-search-sheet .apulia-ss-handle,
#apulia-ss-flight-search-sheet .apulia-ss-modal-close{
	position:sticky;
}
#apulia-ss-flight-search-sheet .apulia-ss-modal-close{
	position:absolute;
	top:12px;
	right:12px;
}

.apulia-ss-flight-search{
	width:100%;
	max-width:none;
	margin:0;
	padding:0;
	box-sizing:border-box;
}

#apulia-ss-flight-search-sheet .ap-explore-location-row{
	display:flex;
	align-items:stretch;
	gap:6px;
	margin-bottom:6px;
}
#apulia-ss-flight-search-sheet .ap-explore-field{
	flex:1;
	display:flex;
	align-items:center;
	gap:8px;
	padding:8px 12px;
	border-radius:10px;
	background:rgba(0,0,0,0.28);
	border:1px solid rgba(255,255,255,0.18);
	box-sizing:border-box;
}
#apulia-ss-flight-search-sheet .ap-explore-search-icon{
	font-size:15px;
	opacity:0.85;
	flex-shrink:0;
}
#apulia-ss-flight-search-sheet .ap-explore-search-input{
	border:none;
	background:transparent;
	width:100%;
	font-size:13px;
	color:#fff;
	outline:none;
	min-width:0;
	-webkit-appearance:none;
	appearance:none;
	padding:0;
	margin:0;
	box-shadow:none;
}
#apulia-ss-flight-search-sheet .ap-explore-search-input::placeholder{
	color:rgba(255,255,255,0.70);
}
#apulia-ss-flight-search-sheet select.ap-explore-search-input{
	color:#fff;
}
#apulia-ss-flight-search-sheet select.ap-explore-search-input option{
	color:#001D26;
}

.ap-explore-flight-toggle{
	display:flex;
	align-items:center;
	gap:8px;
	margin:6px 0 2px;
	font-size:12px;
	color:#fff;
}

.apulia-ss-flight-search-go{
	width:100%;
	height:42px;
	border:none;
	border-radius:10px;
	background:#F6A623;
	color:#001D26;
	font-weight:700;
	font-size:14px;
	margin-top:4px;
	cursor:pointer;
}

.ap-flight-results{
	margin-top:8px;
	display:flex;
	flex-direction:column;
	gap:6px;
}
.ap-flight-card{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:10px;
	padding:10px 12px;
	border-radius:10px;
	background:rgba(0,0,0,0.28);
	border:1px solid rgba(255,255,255,0.18);
	box-sizing:border-box;
}
.ap-flight-card.is-selected{
	border-color:#F6A623;
}
.ap-flight-card-airline{
	font-size:11px;
	font-weight:700;
	color:#F6A623;
	min-width:70px;
	flex-shrink:0;
}
.ap-flight-card-times{
	flex:1;
	min-width:0;
	display:flex;
	flex-direction:column;
	gap:1px;
}
.ap-flight-card-route{
	font-size:13px;
	font-weight:600;
	color:#fff;
}
.ap-flight-card-detail{
	font-size:11px;
	color:rgba(255,255,255,0.65);
}
.ap-flight-card-price{
	font-size:15px;
	font-weight:700;
	color:#F6A623;
	flex-shrink:0;
	text-align:right;
}
.ap-flight-card-add{
	width:100%;
	height:36px;
	border:none;
	border-radius:10px;
	background:#F6A623;
	color:#001D26;
	font-weight:700;
	font-size:13px;
	cursor:pointer;
}
.ap-flight-loader{
	text-align:center;
	padding:18px 0;
	font-size:13px;
	color:rgba(255,255,255,0.7);
}
.ap-flight-loader-spinner{
	display:inline-block;
	width:20px;
	height:20px;
	border:2px solid rgba(255,255,255,0.2);
	border-top-color:#F6A623;
	border-radius:50%;
	animation:ap-spin .6s linear infinite;
	vertical-align:middle;
	margin-right:8px;
}
@keyframes ap-spin{to{transform:rotate(360deg)}}
.ap-flight-empty{
	text-align:center;
	padding:16px 0;
	font-size:13px;
	color:rgba(255,255,255,0.6);
}
.ap-flight-error{
	text-align:center;
	padding:12px;
	font-size:12px;
	color:#ff6b6b;
	background:rgba(255,0,0,0.08);
	border-radius:8px;
}

@media (max-width:480px){
	.ap-flight-card-airline{
		min-width:auto;
		width:100%;
	}
}
