/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');
@import url('./_utilities.css');
@import url('./_buttons.css');

.fredoka {
	font-family: "Fredoka", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
	  "wdth" 100;
}

:root {
  /* Couleurs principales */
  --color-primary: #b5f2eb;
  --color-primary-light: #dafffb;
  --color-primary-dark: #77bfb7;
  --color-secondary: #ffad94;
  --color-secondary-light: #ffcfc4;
  --color-secondary-dark: #ff7f4d;
  --color-black: #000;
  --color-white: #FFF;
  --color-grey-light: #f5f5f5;
  --color-grey: #888;
  --color-grey-dark: #777;
  --color-blue: #1A6C9F;
  --color-error: #eb7e79;
  --color-highlight: #b5f2eb;
  --color-border: #b5f2eb;
  --color-shadow: rgba(0, 0, 0, 0.5);
  --color-dark: #434444;

  /* Couleurs additionnelles */
  --color-grey-medium: #999999;
  --color-grey-text: #6d7072;
  --color-text-light: #9b9b9b;
  --color-bg-admin: #f8f9fa;
  --color-bg-light: #f1f1f1;
  --color-text-secondary: #333333;
  --color-link-blue: #0099CC;
  --color-admin-blue: #007bff;
  --color-admin-blue-hover: #0056b3;
  --color-danger: #dc3545;

  /* === Transitions === */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-bg: background-color 0.5s linear;
  --transition-opacity: opacity 0.5s linear;
  --transition-shadow: box-shadow 0.3s ease-in-out;
  --transition-transform: transform 0.2s ease-in-out;

  /* === Spacing === */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 25px;
  --spacing-2xl: 30px;

  /* === Border Radius === */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 15px;

  /* === Font Sizes === */
  --font-xs: 0.7rem;
  --font-sm: 0.8rem;
  --font-base: 1rem;
  --font-lg: 1.2rem;
  --font-xl: 1.5rem;
  --font-2xl: 2rem;

  /* === Shadows === */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 15px rgba(0, 0, 0, 0.15);
  --shadow-blue: 0 5px 20px #89caff94;

  /* === Gradients === */
  --gradient-form-split: linear-gradient(90deg, var(--color-white) 0%, var(--color-white) 50%, var(--color-primary-light) 50%, var(--color-primary-light) 100%);
}

html {
	font-size: 100%;
}

body {
	font-family: "Fredoka", sans-serif, Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4, p, ul, li {
	margin: 0;
	padding: 0;
}
table, tr, td, th {
	border: 0;
}
.clear {
	clear: both;
}
.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* header */
header div {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--color-dark);
	z-index: 50;
	-webkit-user-select: none;
	user-select: none;
	box-sizing: border-box;
}
header input {
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Burger menu */
header span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
  opacity 0.55s ease;
}

header span:first-child {
  transform-origin: 0% 0%;
}

header span:nth-child(3) {
  transform-origin: 0% 100%;
}

.menu-logo {
  line-height: 0;
  margin: 0 20px;
}

.menu-logo img {
  height: 73px;
  flex-shrink: 0;
}

.titre_1 {
	margin: 15px 0 0 0;
}

/* styles pour les écrans  */
@media only screen and (min-width: 768px) {
	#header {
		height: 73px;
	}
	#header_container {
		display: flex;
		justify-content: center;
		backdrop-filter: blur(7px);
		position: fixed;
		z-index: 20;
		width: 100%;
		background-color: var(--color-black);
		transition: 0.2s; /* Add a transition effect (when scrolling - and font size is decreased) */
	}
	/* Burger menu */
	header input {
		display: none;
	}
	header span {
		display: none;
	}
	#header a {
		display: inherit;
	}
	#header nav {
		display: flex;
		flex-basis: 900px;
		flex-shrink: 1;
		align-items: center;
		justify-content: center;
	}
	#header nav > a {
		font-size: 0.9rem;
		margin: 0 15px;
		color: var(--color-white);
		text-decoration: none;
	}

	#header nav > a.new {
		background: var(--color-primary);
		padding: 5px 10px;
		border-radius: 5px;
		color: black;
	}

	section#slider {
		height: 400px;
	}
	
	section#slider h1 {
		font-size: 2rem;
	}
	
	section#slider h2 {
		font-size: 2.5rem;
	}

	section#slider > div > div {
		padding-left: 50px;
	}

	section#slider > div > p {
		flex-basis: 260px;
		font-size: 2.8rem;
	}
	
	section#slider .wi {
		font-size: 5rem;
	}
	
	#global_large {
		margin-top: 73px;
	}
	
	.titre_1 {
		font-size: 1.5em;
	}
	
	article.avant p:first-child {
		font-size: 2em;
	}
	
	.headline_h2 {
		margin-left: 15px;
	}
	
	.separation {
		width: 150px;
	}
	
	.op_mobile {
		display: none;
	}

}
 
/* styles pour les écrans mobiles */
@media only screen and (max-width: 767px) {

	header {
		position: relative;
		height: 60px;
		flex-direction: column;
		align-items: flex-end;
	}
	
	.burger {
		margin: 20px 20px 0 0;
	}

  .menu-logo {
    position: absolute;
	top: 0;
	left: 0;
  }

  .menu-logo img {
	margin: 0 auto;
    height: 60px;
  }
  
    .menu-dropdown {
		display: none;
		position: absolute;
        box-sizing: border-box;
        width: 100%;
        right: 0;
        top: 60px; 
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        overflow-y: auto;
    }

  .menu-dropdown a {
    display: block;
    padding: 10px 0 10px 50px;
    text-decoration: none;
    color: var(--color-black);
    background-color: var(--color-grey-light);
  }

  .menu-dropdown a:hover {
    background-color: var(--color-primary);
  }

  .menu-dropdown a.new {
    background-color: var(--color-primary-light);
  }

	#menu-toggle:checked ~ .menu-dropdown {
    display: flex;
    flex-direction: column;
	transform: translateX(0);
	}
	
	#menu-toggle:checked ~ .burger span {
		opacity: 1;
		transform: rotate(45deg) translate(-1px, 0px);
		background: #232323;
	}

	#menu-toggle:checked ~ .burger span:nth-last-child(1) {
		opacity: 0;
		transform: rotate(0deg) scale(0.2, 0.2);
	}

	#menu-toggle:checked ~ .burger span:nth-last-child(2) {
		transform: rotate(-45deg);
	}
  
	section#slider > div {
		height: 150px;
	}

	section#slider h1 {
		font-size: 1.1rem;
	}
	
	section#slider h2 {
		margin-left: 15px;
		font-size: 1.2rem;
	}
	
	section#slider > div > p {
		font-size: 1rem;
	}
	
	section#slider .wi {
		font-size: 1rem;
	}
	
	.titre_1 {
		font-size: 1.2em;
		text-align: center;
	}
	
	article.avant p:first-child {
		font-size: 1.2em;
	}
	
	.sidebar, .argues {
		display: none;
	}
	
	.headline_h2 {
		text-align: center;
	}
  
}

section#slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

section#slider > div#content {
	display: flex;
	position: relative;
	margin: 0 auto;
	max-width: 1100px;
	z-index: 15;
}

section#slider > div#content > div {
	padding-top: 100px;
	display: flex;
	flex-basis: 500px;
    flex-direction: column;
	flex-grow: 1;
	justify-content: center;
	align-items: flex-start;
}

section#slider > div#content > p {
	align-self: flex-start;
    text-align: center;
    padding: 10px 20px;
	color: var(--color-white);
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%); 
}

section#slider h2 {
	color: var(--color-primary);
	text-shadow: 0 0 7px rgba(0,0,0, 0.5);
}
section#slider h1 {
	margin-left: 15px;
	font-weight: normal;
	color: var(--color-secondary);
	text-shadow: 0 0 7px rgba(0,0,0, 0.5);
}
section#slider h3 {
	margin-left: 15px;
	font-size: 1rem;
	font-weight: normal;
	color: var(--color-white);
	text-shadow: 0 0 7px rgba(0,0,0, 0.5);
}
.menuLigne {
	margin: 15px 0;
	display: flex;
	text-align: center;
	justify-content: center;
	flex-wrap: wrap;
	list-style-type: none;
}

.menuLigne__item {
	flex: 1 1 auto; /* permet de faire varier la taille des éléments en fonction de l'espace disponible */
	margin: 5px; /* ajoute une marge entre les éléments */
	font-size: 0.8em;
	font-weight: bold;
}

.menuLigne__item__heading {
	margin: 10px;
	font-size: 0.8em;
}

.menuLigne__item a {
	display: block; /* permet de faire occuper tout l'espace disponible par les éléments "a" */
	padding: 5px 5px;
	list-style-type: none;
	color: var(--color-primary);
	text-decoration: none;
}

.menuLigne__item a:hover {
	background: var(--color-primary);
    -webkit-transition: background-color 0.5s linear;
    -ms-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
	border-radius: 10px;
	color: var(--color-white);
}


.text-carousel {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none; /* Pour cacher la barre de défilement */
  -ms-overflow-style: none; /* Pour cacher la barre de défilement dans Edge */
}

.text-carousel::-webkit-scrollbar {
  display: none; /* Pour cacher la barre de défilement dans Chrome et Safari */
}

.menu_responsive__item {
	font-size: 0.8em;
	flex: 0 0 auto;
	margin-right: 10px;
	white-space: nowrap;
}

.menu_responsive__item a {
	padding: 5px 10px;
	color: var(--color-secondary-dark);
	background: var(--color-secondary-light);
	border-radius: 10px;
}
.menuLigne__item a:hover {
    -webkit-transition: background-color 0.5s linear;
    -ms-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
	border-radius: 10px;
	color: var(--color-primary);
	background: var(--color-white);
}


/* Bouton favoris */
.beach__favorite-btn {
	padding: 12px 20px;
	border: 2px solid var(--color-secondary);
	background: transparent;
	color: #fff;
	border-radius: 25px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
}

.beach__favorite-btn:hover {
	background: var(--color-secondary);
	color: #000;
}

.beach__favorite-btn--active {
	background: var(--color-secondary);
	color: #000;
}

.beach__favorite-btn i {
	margin-right: 5px;
}

.lien_noir {
	display: inline;
	margin: 0 15px;
	padding: 5px 15px;
	font-size: 0.6rem;
	background: var(--color-black);
	color: var(--color-white);
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	border-radius: 10px;
}
.lien_noir:hover {
	background: var(--color-primary);
    -webkit-transition: background-color 0.5s linear;
    -ms-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
	color: var(--color-black);
}

.lien_jaune {
	color: var(--color-primary-dark);
	text-decoration: none;
}
.lien_jaune:hover {
	color: var(--color-white);
}

.lien_jaune_bloc {
	padding: 10px 15px;
	color: var(--color-white);
	background: var(--color-primary-dark);
	text-decoration: none;
	border-radius: 10px;
	box-sizing: border-box;
	border: 1px solid;
}
.lien_jaune_bloc:hover {
	color: var(--color-primary-dark);
	background: var(--color-white);
    -webkit-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

.lien_jaune_inverse_bloc {
	padding: 10px 15px;
	color: var(--color-primary-dark);
	text-decoration: none;
	border-radius: 10px;
	box-sizing: border-box;
	border: 1px solid var(--color-primary-dark);
}
.lien_jaune_inverse_bloc:hover {
	color: var(--color-white);
	background: var(--color-primary-dark);
    -webkit-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}


.lien_text_jaune {
	color: gray;
	border-bottom: 1px solid var(--color-primary-dark);
	text-decoration: none;
}
.lien_text_jaune:hover {
	color: var(--color-primary-dark);
	text-decoration: none;
	background: var(--color-white)8e2;
}

.lien_fd--blanc {
	color:#ffbcbc;
}
.lien_fd--blanc:hover {
	padding: 0 5px;
	background: var(--color-white);
	border-radius: 15px;
	color: #ffbcbc
}

.decoration_none {
	text-decoration: none;
}

.erreur_text {
	padding: 15px;
	color: var(--color-white);
	background: var(--color-error);
	text-align: center;
}

p#b_connexion {
	height: 24px;
	line-height: 24px;
	padding: 0 5px;
	text-align: center;
	float: right;
	background: var(--color-blue);
	color: var(--color-white);
	font-size: 1.5rem;
}

#global {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1100px;
	text-align: left;
}
#global_large {
	margin: 0 auto;
	max-width: 1100px;
}

#main {
	float: left;
	width: 100%;
	max-width: 800px;
	background: var(--color-white);
}
#main_inner {
	margin: 10px;
}
.headline_h2 {
	margin-top: 25px;
	font-size: 0.9rem;
	color: var(--color-grey-dark);
}
#main_inner h2 strong {
	font-size: 1.2rem;
	font-weight: bold;
	color: #333333;
}

.voirplus {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 1rem;
	font-weight: bold;
	color: #999999;
}

.mention {
	clear: both;
	margin-top: 10px;
	font-size: 1.2 rem;
}

#cartel div {
	margin: 5px;
}
#cartel h2 {
	font-size: 2rem;
	color: var(--color-primary);
}
#cartel p {
	color: var(--color-white);
	font-size: 1.4rem;
}

article.avant {
	  margin: 30px 50px;
}

article.avant p:first-child span {
	background: var(--color-primary-light);
	line-height: 1.5em;
	font-style: oblique;
	color: var(--color-primary-dark);
}
article.avant p:nth-child(2) {
	font-style: italic;
	color: var(--color-grey-dark);
}

/* Carrousel departements */
.carDep {
	display: flex;
	flex-wrap: no-wrap;
	justify-content: center;
}
.carDep__item {
	display: flex;
	justify-content: center;
	position: relative;
	margin: 5px;
	flex-basis: 365px;
	height: 160px;
	background-size: cover;
	background-position: center center;
	border-radius: 8px;
	color: var(--color-white);
	cursor: pointer;
}
.carDep__item:hover {
    -webkit-transition: opacity 0.5s linear;
    -ms-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
	opacity: 0.5;
	color: var(--color-primary);
}
.carDep__titre {
	align-self: center;
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	text-shadow: 0 0 7px rgba(0,0,0, 0.5);
}
.carDep__sousTitre {
	position: absolute;
	bottom: 10px;
	font-size: 0.8em;
}

.lien_blanc {
	color: var(--color-white);
	text-decoration: none;
}

.lien_bleu {
	color: var(--color-primary-dark);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.lien_bleu:hover {
	color: var(--color-primary);
	text-decoration: underline;
}

.button_jaune {
	display: block;
	margin: 10px auto;
	padding: 14px;
	border-radius: 8px;
	border: none;
	background-color: var(--color-primary);
	background-image: linear-gradient(to right, var(--color-highlight), var(--color-primary));
	color: var(--color-black);
	font-size: 1rem;
	box-shadow: 0 5px 20px #89caff94;
	cursor: pointer;
	transition: box-shadow 0.3s ease-in-out;
}

.button_jaune:hover {
	box-shadow: none;
}

.error {
  color: red;
  margin-top: 5px;
}

.error-message {
  display: none;
  color: red;
  margin-top: 5px;
  font-size: 0.8rem;
}
.error-message.active {
  display: block;
}
.input-error {
	border: 3px solid #ffbcbc !important;
}


/* HomePage */
#homePlage {
	position: relative;
	width: 100%;
	height: 250px;
	background: url('/photos/home/turballe.jpg');
}
#homePlage div#cartel{
	position: absolute;
	right: 0;
	top:0;
	width: 220px;
	height: 250px;
	background-color:rgba(136,136,136,0.3);
	border-left: 1px solid var(--color-primary);
}
.wrapp {
	margin-top: 10px;
}
.wrapp h2 {
	position: relative;
	font-size: 1.4rem;
	color: #0085B2;
}
.wrapp div#galeries {
    width: 440px;
    float: left;
    color: #6d7072;
}
.wrapp div#top5 {
	margin-left: 10px;
    width: 220px;
    float: left;
    color: #6d7072;
}

#galeries p:nth-child(-n+3) {
	margin-right: 4px;
}

#galeries p {
	float: left;
	width: 144px;
	height: 108px;
	background: red;
	line-height: 108px;
	text-align: center;
}

#galeries p span { 
	width: 130px;
	padding: 5px;
	vertical-align: middle;
	font-size: 1.8em;
	color: var(--color-white);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+, IE v10+ and by Opera v10.5+ */
	text-shadow:1px 1px 0px rgb(0,0,0);
	-ms-filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=1,OffY=1,Color=#ff000000,Positive=true)";zoom:1;
	filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=1,OffY=1,Color=#ff000000,Positive=true);
}
#top5 p { 
	text-indent: 25px;
	font-size: 1.4em;
}
#top5 p:first-child { 
	margin-top: 5px;
}
#top5 p a {
	display: block;
	color: var(--color-grey);
	text-decoration: none;
}
#top5 p a:hover { 
	color: var(--color-white);
	background: #FFDC73;
}

.separation {
	margin: 5px 0 5px 0;
	height: 4px;
	background: var(--color-primary-light);
}

.ug-thumb-image {
  border-radius: 8px;
}

/* colonne droite */

aside.sidebar {
	position: -webkit-sticky;
	position: sticky;
	top: 85px;
	align-self: flex-start;
	width: 300px;
	background: var(--color-primary-light);
}

#card_bzh {
	position: sticky;
	top: 85px;
}

#carte {
    padding: 15px;
}

.cls-1 {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: var(--color-white);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.cls-1:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, var(--color-white)b00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.cls-1:active {
    color: var(--color-black)
}

.cls-1:active:after {
    background: transparent;
}

.cls-1:hover:before {
    opacity: 1;
}

.cls-1:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.cls-1:hover {
    fill: #FFDC73;
	animation: glow 2s ease infinite;
    cursor: pointer;
}

aside.sidebar img::before {
	content: '';
	text-align: center;
}
aside.sidebar h1 {
	margin: 35px 0 0 0;
	color: var(--color-grey);
	font-size: 0.9em;
	height: 40px;
	line-height: 1em;
	text-align: center;
	font-weight: normal;
}
aside.sidebar h2 {
	padding-left: 45px;
	line-height: 0.9rem;
}
aside.sidebar ul#menu_plages {
	list-style-type: none;
	font-size: 0.9rem;
}
aside.sidebar ul#menu_plages li {
	margin: 10px 0;
	text-align: center;
}
aside.sidebar ul#menu_plages li:last-child {
	border-bottom: none;
}
aside.sidebar ul#menu_plages li a {
	display: inline;
	padding: 2px 15px;
	color: #888;
	text-decoration: none;
}
aside.sidebar ul#menu_plages li a:hover {
	background: var(--color-white);
	border-radius: 15px;
}

.center_vflex {
	display: flex;
	justify-content: center; /* centre horizontalement */
	align-items: center;     /* centre verticalement */
}


/* Plages */
#principal {
	float: left;
	width: 680px;
	background: url('/images/header-plages.jpg') no-repeat var(--color-white);
}
#principal h1 {
	height: 115px;
	font-size: 2.3rem;
	line-height: 115px;
	color: var(--color-white);
	margin-bottom: 10px;
	font-style: italic;
	overflow: hidden;
	-o-text-overflow: ellipsis; /* pour Opera 9 */
	text-overflow: ellipsis; /* pour le reste du monde */
}

p.participer {
	text-align: right;
	font-size: 0.7rem;
	margin: 0 0 10px 0px;
	color: #999;
}

/* pages */
#main_p {
	float: left;
	margin-right: 10px;
	width: 685px;
	background: var(--color-white);
}
div#main_p h2 {
	clear: left;
	position: relative;
	margin-top: 15px;
	font-size: 1rem;
	color: var(--color-black);
	border-bottom: 1px solid;
}
div#main_p h2.mini_h {
	width: 485px;
}
div#main_p p {
	font-size: 0.8rem;
	text-indent: 15px;
}
div#main_p span.inter {
	color: #999999;
	font-size: 0.8rem;
	font-weight: normal;
	position: absolute;
	right: 0;
}
div#main_p p#note {
	height: 24px;
	line-height: 24px;
	color: var(--color-black);
	font-size: 0.8rem;
	background: url('/images/note.jpg') no-repeat;
	text-align: right;
}
div#main_p div#galerie {
	float: left;
	width: 305px;
}
div#main_p div#GGMap {
	margin-left: 8px;
	float: left;
}
div#main_p div#GMap {
	width: 350px;
	height: 350px;
	display: block;
}
div#main_p ul#evaluation {
	margin-left: 15px;
	list-style-type: none;	
}
div#main_p ul#evaluation li {
	float: left;
	width: 215px;
	font-size: 0.8rem;
}

div#volet {
	float: right;
	margin-left: 5px;
	width: 175px;
}
div#volet img {
	margin-top: 30px;
}
div#volet div {
	margin-top: 8px;
	padding-bottom: 10px;
	background: url('/images/volet_b.png');
	border-radius: 5px 5px 0 0;
}
div#volet h2 {
	font-size: 1.1rem;
	font-weight: normal;
	text-indent: 5px;
}
div#volet h2 {
    color: white;
    font-size: 1.1rem;
    height: 30px;
    line-height: 30px;
}
div#volet p {
	margin-left: 10px;
	font-size: 0.8rem;
}
div#volet p#maree {
	width: 175px;
	height: 34px;
	padding-top: 10px;
	background: url('/images/b_cara.jpg') no-repeat;
	margin: 0;
	text-align: center;
    color: white;
    font-size: 1.1rem;
}
div#volet p#autorisation {
	border-bottom: 2px solid var(--color-white);
	border-top: 2px solid var(--color-white);
	color: var(--color-white);
	font-weight: bold;
	height: 20px;
	line-height: 19px;
	line-height: 1.5rem;
	margin: 10px auto;
	text-align: center;
	text-indent: 0;
	width: 120px;
}


/* FOOTER */
footer, #footer-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
footer {
	min-height: 170px;
	background: url('/images/ft-oyats.svg') top right no-repeat var(--color-secondary);
	text-align: left;
	clear: both;
	border-top: 10px solid var(--color-secondary-light);
}
#footer-inner .logo {
	padding: 15px 0;
	width: 180px;
}
footer div#footer-inner {
	width: 100%;
}
footer div#footer-inner ul {
	padding: 15px 0;
	min-width: 250px;
	list-style-type: none;
}
footer div#footer-inner ul li {
	margin: 2px;
	font-size: 0.9rem;
}
footer div#footer-inner ul li a {
	display: inline;
	padding: 2px 15px;
	color: var(--color-white);
	text-decoration: none;
}
footer div#footer-inner ul li a:hover {
	background: var(--color-white);
	border-radius: 15px;
	color: var(--color-secondary-dark);
}
#footer-inner div#central {
	display: flex;
	flex-grow: 1;
	max-width: 600px;
	flex-direction: column;
	align-items: center;
}
#footer-inner div#central span {
	font-size: 0.8em;
	color: white;
}
#footer-inner div#central input {
	background-color: var(--color-secondary);
	border-radius: 5px;
	border: 1px solid var(--color-secondary-light);
	color: var(--color-white);
	font-size: 1.2rem;
	padding: 0 6px;
	height: 30px;
	min-width: 300px;
}
#footer-inner div#central button {
	position: relative;
	border: none;
	padding: 0;
	background: none;
	cursor: pointer;
	text-indent: -9999px;
}

.slip {
	position: absolute;
	right: -10px;
	top: -50px;
}

.legal_text {
	font-size: 0.7em;
	color: var(--color-grey);
}