/*** RESERVATION (page d'accueil) ***/
.reservation {
    display: flex;
    gap: 1rem;
    align-items: center;
	justify-content: center;
    flex-direction: column;
    position: absolute;
	width:100%;
	top:82%;
}
.reservation__container {
    display: flex;
    justify-content: center;
    position: relative;
	flex-wrap: wrap;
	gap: 1rem;
}
.reservation__container label {
    color: white;
    position: absolute;
    top: -2rem;
    left: 2rem;
}
	/* Style du select */
.reservation__container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: black;
    border: none;
    padding: 1rem 2rem;
    padding-right: 3rem;
    background: url(/wp-content/uploads/2023/02/arrow_down.webp) #EAF5F7 no-repeat 98.5%;
    background: url(/wp-content/uploads/2023/02/arrow_down.webp) #EAF5F7 no-repeat calc(100% - 10px);
	font-family: 'Poppins', sans-serif;
}
.reservation__container :focus-visible {
	outline: none;
}
.reservation .btn {
    background-color: #FF6600;
    color: white;
    font-weight: bold;
    width: fit-content;
    font-size: 1rem;
    border: none;
	font-family: 'Poppins', sans-serif;
}
.reservation .btn[type='submit']{
	background-color: #00F3D8;
	color: black;
}

@media(min-width: 950px){
	.reservation{
		flex-direction: row;
		gap: 4rem;
		top: 82%;
		left: 50%;
		transform: translateX(-50%);
    }
	.reservation__container{
		gap: 0;
	}
    .reservation__container select {
        font-size: 1.1rem;
    }
    .reservation .btn{
        padding: 0.85rem 2rem;
    }
}

