@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:wght@300;400;700&display=swap');

:root
{
	--highlight: #D7CA92;
	--highlight2: #958852;
	--text-default: #D8D8D8;
}

/*GENERAL*/
/* width */
::-webkit-scrollbar {
    width: 10px;
}
 
/* Track */
::-webkit-scrollbar-track {
    background: #888;
    border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 5px;
}
 
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
html
{
	height: 100%;
}
*
{
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
BODY
{
	height: calc(100% - 100px);
	margin: 0;
	font-family: 'Open Sans',sans-serif;
	font-size: 14px;
	color: var(--text-default);
	background-color: #161616;
	background-position: 50% 50%;
}
h1
{
	margin: 0;
	padding: 25px 0 10px;
	text-align: center;
	font-size: 26px;
	font-weight: normal;
	color: var(--text-default);
}
h2
{
	margin: 0;
	padding: 20px 0;
	text-align: center;
	font-size: 20px;
	font-weight: normal;
	color: var(--text-default);
}
.highlight
{
	color: var(--highlight);
}
.standard
{
	color: #adadad;
}
.titre-article
{
	margin: 15px 0;
	text-align: justify;
	font-size: 20px;
	color: var(--text-default);

	padding: 0 0 0 10px;
	border-left: 10px solid var(--highlight);
}
.titre-article + hr
{
	margin: 0;
	border-top-width: 1px;
	border-color: var(--text-default);
}

.contenu-accroche,
.contenu-texte,
.contenu-article,
.contenu-conclusion
{
	padding: 10px 0;
	margin: 15px 0;
	/*max-width: 1200px;*/
}
.contenu-accroche
{
	font-style: italic;
}
.contenu-article
{
	background-color: rgba(0,0,0,0.5);
	padding: 10px;
}
.contenu-article h2
{
	margin-top: 0;
}

h3
{
	margin: 5px 0;
	text-align: center;
	font-size: 14px;
	color: var(--text-default);
}
h1 > a,
h2 > a,
h3 > a
{
	text-decoration: none;
}
table
{
	border-spacing: 0;
}
table td
{
	margin: 0;
	padding: 0;
}
hr
{
	display: block;
	width: 100px;
	margin: 0 auto;
	padding: 0 0 20px;
	max-width: 100%;
	border: 0;
	border-top: 2px solid var(--highlight);
}
hr.small
{
	border-top-width: 1px;
}
h2 + hr.small
{
	width: 100%;
	margin: 0;
}
a img
{
	border: 0;
}
a
{
	color: var(--highlight);
}
a:active,
a:focus
{
	color: var(--highlight);
}
.center
{
	justify-content: center;
	text-align: center;
}
.block
{
	display: block;
}
.left
{
	text-align: left;
}
.right
{
	text-align: right;
}
.small
{
	font-size: 11px;
}
.middle
{
	/*display: flex!important;*/
	align-items: center!important;
}
.pull-right
{
	float: right;
}

.middle.center
{
	justify-content: center;
}
.disable
{
	color: #5A5A5A;
}

li.middle
{
	display: inline-flex!important;
	vertical-align: middle;
}
.ok
{
	color: #1ABA16;
}
.warning
{
	color: #E18E0B;
}
.nok
{
	color: #BA1616;
}
.clear
{
	clear: both;
}
.container
{
	display: block;
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1200px;
}
.container-fluid
{
	display: block;
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 70px;
}

.avatar
{
	position: relative;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	border: 2px solid var(--text-default);
	overflow: hidden;
	box-shadow: 0 0 1px 4px rgba(0,0,0), 0 0 0px 5px var(--highlight);
}
.avatar > img
{
	position: absolute;
	top: 50%;
	left: 50%;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transform: translate(-50%,-50%);
}
.avatar.inline
{
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
}
.uploader
{
	position: relative;
	width: 70px;
	height: 70px;
	display: inline-block;
}
.uploader + form
{
	display: inline-block;
}
.uploader:hover:before
{
	content: "\f303";
	line-height: 60px;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	color: var(--highlight);
	text-align: center;

    font-size: 22px;
	font-weight: 900;
	font-family: "Font Awesome 6 Pro";
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;

    cursor: pointer;
}

.center
{
	text-align: center;
}
.fade-c > *,
.fade
{
	opacity: 0;
	transition: opacity ease-in-out 0.4s,transform ease-in-out 0.5s;
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
}
.fade-c.visible > *,
.fade.visible
{
	opacity: 1;
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}
.fade-c.visible >:nth-child(2)
{
	transition-delay: 0.3s;
}
.fade-c.visible >:nth-child(3)
{
	transition-delay: 0.6s;
}
.fade-c.visible >:nth-child(4)
{
	transition-delay: 0.9s;
}
.fade-c.visible >:nth-child(5)
{
	transition-delay: 1.2s;
}
.fade-c.visible >:nth-child(6)
{
	transition-delay: 1.5s;
}
.fade-c.visible >:nth-child(7)
{
	transition-delay: 1.8s;
}

.row
{
	display: flex;
	gap: 10px;
	width: 100%;
	flex-wrap: wrap;
}
.row.border-bottom
{
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.row.wrap
{
	flex-wrap: wrap;
}

.row.middle
{
	align-items: center;
}

.row.between
{
	justify-content: space-between;
}

.row > *
{
	min-width: 0;
	padding: 5px 0;
}

.col
{
	flex: 1;
}

.col-auto
{
	flex: none;
}

.col-1{flex:0 0 calc(8.333333% - 9.166666px);}
.col-2{flex:0 0 calc(16.666667% - 8.333333px);}
.col-3{flex:0 0 calc(25% - 7.5px);}
.col-4{flex:0 0 calc(33.333333% - 6.666666px);}
.col-5{flex:0 0 calc(41.666667% - 5.833333px);}
.col-6{flex:0 0 calc(50% - 5px);}
.col-7{flex:0 0 calc(58.333333% - 4.166666px);}
.col-8{flex:0 0 calc(66.666667% - 3.333333px);}
.col-9{flex:0 0 calc(75% - 2.5px);}
.col-10{flex:0 0 calc(83.333333% - 1.666666px);}
.col-11{flex:0 0 calc(91.666667% - 0.833333px);}
.col-12{flex:0 0 100%;}

.nowrap
{
	white-space: nowrap;
}

/*.row
{
	display:grid;
	grid-auto-flow:column;
	grid-auto-columns:1fr;
}
.row > :last-child
{
	justify-self:end;
}
.row > .nowrap
{
	white-space:nowrap;
}
.row:has(> .simple-card)
{
	gap: 10px;
}
.row:has(> .simple-card) + .row
{
	margin-top: 10px;
}
.row.auto-fit
{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(0,1fr));
}
.row.border-bottom
{
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.row > .wide
{
	width: 100%;
}
.row > .col-1{grid-column: span 1;}
.row > .col-2{grid-column: span 2;}
.row > .col-3{grid-column: span 3;}
.row > .col-4{grid-column: span 4;}
.row > .col-5{grid-column: span 5;}
.row > .col-6{grid-column: span 6;}
.row > .col-7{grid-column: span 7;}
.row > .col-8{grid-column: span 8;}
.row > .col-9{grid-column: span 9;}
.row > .col-10{grid-column: span 10;}
.row > .col-11{grid-column: span 11;}
.row > .col-12{grid-column: span 12;}*/
/*.row
{
	margin: 0 -10px;
	padding: 0;
	font-size: 0;
	list-style: none;
}
.row.no-auto-width
{
	display: inline-block;
}
.row > *
{
	display: inline-block;
	margin: 0;
	padding: 0 10px;
	font-size: 15px;
	vertical-align: top;
}
.row > .col-1
{
	width: 8.333333%;
}
.row > .col-2
{
	width: 16.666667%;
}
.row > .col-3
{
	width: 25%;
}
.row > .col-4
{
	width: 33.33%;
}
.row > .col-5
{
	width: 41.666667%;
}
.row > .col-6
{
	width: 50%;
}
.row > .col-7
{
	width: 58.333333%;
}
.row > .col-8
{
	width: 66.66%;
}
.row > .col-9
{
	width: 75%;
}
.row > .col-10
{
	width: 83.333333%;
}
.row > .col-11
{
	width: 91.666667%;
}
.row > .col-12
{
	width: 100%;
}*/

ul.checks,
.ul-checks ul
{
	--icon-space: 1.3em;
	list-style: none;
	padding: 0;
}

ul.checks > li,
.ul-checks ul > li
{
	padding-left: var(--icon-space);
}

ul.checks > li:before,
.ul-checks ul > li:before
{
	content: "\f00c"; /* FontAwesome Unicode */
	font-family: FontAwesome;
	display: inline-block;
	margin-left: calc( var(--icon-space) * -1 );
	width: var(--icon-space);
	color: var(--highlight);
}

.acordeon > li > div:first-child + div
{
	display: none;
}
.acordeon > li > div:first-child > i:first-child:before
{
	content: "\f067";
}
.acordeon > li > div:first-child > i
{
	padding: 5px 7px;
    background-color: #fff;
    color: #f3f2f3;
    border-radius: 5px;
}
.acordeon > li.select > div:first-child > i
{
	padding: 5px 7px;
    background-color: #f3f2f3;
    color: #fff;
    border-radius: 5px;
}
.acordeon > li.select > div:first-child + div
{
	display: block;
}
.acordeon > li.select > div:first-child > i:first-child:before
{
	content: "\f068";
}

.choix
{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: center;
}
.choix > a,
.choix > div
{
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: rgba(28,28,28,1);
	width: 220px;
	padding: 5px;
	border: 1px solid rgba(180,180,180,0.1);
	border-radius: 10px;
	text-decoration: none;
	font-size: 14px;
	margin: 0 5px 15px;
	color: var(--text-default);
	transition: ease-in-out 200ms border-color;
}
.choix > .premium:before
{
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    background: linear-gradient(131deg, #f2f9ad 0%, #81661Da8 9%, #6C5E10a8 100%);
    border-radius: 10px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
}
.choix > .premium
{
	background: linear-gradient(165deg, #3C331C 0%, #1B1B1B 50%, #1B1B1B 100%);
}
.choix.select > a,
.choix.select > div,
.choix > a.select
{
	/*width: 220px;*/
	border: 1px solid var(--highlight);
}
.choix > a.select::after
{
	content:"\f0d7";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -13px;
	color: var(--highlight);
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	font-size: 20px;
}
.choix > a:hover,
.choix > div:hover
{
	border: 1px solid var(--highlight);
}
/*.choix > a > div:first-child,
.choix > a > div > div:first-child,*/
.reservation-section .choix > div > div:first-child
{
	text-align: center;
}
.choix > a > div:first-child + div,
.choix > div > div:first-child + div
{
	display: flex;
	gap: 5px;
	justify-content: space-evenly;
}
.choix > a > div:first-child + div > div:first-child,
.choix > div > div:first-child + div > div:first-child
{
	padding: 5px;
	border-radius: 5px;
	color: #adadad;
	text-align: center;
}
.choix > a > div:first-child + div > div:first-child + div,
.choix > div > div:first-child + div > div:first-child + div
{
	padding: 5px;
	border-radius: 5px;
	color: var(--highlight);
	text-align: center;
}
.choix.select > a > div:first-child + div > div,
.choix.select > div > div:first-child + div > div
{
	font-size: 16px;
}
.choix .choix-description
{
	height: 100%;
	padding: 5px;
	margin-top: 10px;
}

.choix > a > .reduction
{
	position: absolute;
	right: -20px;
	top: -20px;
	width: 45px;
	height: 45px;
	background-color: var(--highlight);
	color: #000;
	text-align: center;
	padding: 10px;
	line-height: 25px;
	border-radius: 100%;
	font-weight: 700;
}

.choix .choix-titre
{
	font-weight: 700;
	text-align: center;
	padding: 15px 5px 5px;
}
.choix .choix-prix
{
	text-align: center;
	font-weight: 700;
}
.choix .choix-description
{
	
}

.button.standard,
.button.standard:active,
.button.standard:focus
{
	background-color: rgba(50,50,50,0.1)!important;
	border: 1px solid rgba(180,180,180,0.1)!important;
	border-radius: 10px!important;
	padding: 5px!important;
	color: var(--text-default)!important;
}
.button.premium,
.button.premium:active,
.button.premium:focus
{
	background: linear-gradient(45deg, var(--highlight) 0%, var(--highlight2) 100%)!important;
	border-radius: 10px!important;
	padding: 5px!important;
	color: #000!important;
}
.button.erreur,
.button.erreur:active,
.button.erreur:focus
{
	background: linear-gradient(45deg, #FF0000 0%, #FF6C00 100%)!important;
	border-radius: 10px!important;
	padding: 5px!important;
	color: #FFF!important;
}
.button.disabled
{
	pointer-events: none;
	color: rgba(255,255,255,0.1)!important;
}


/*.choix
{
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
	text-decoration: none;
	color: var(--text-default);
}
.choix > div
{
	border-radius: 5px;
	border: 1px solid #535353;
	padding: 5px;
	text-align: center;
	font-size: 20px;
	width: 225px;
	min-height: 105px;
}
.choix input
{
	display: none;
}
.choix > div > .choix-description
{
	font-size: 15px;
	height: 80px;
}
.choix > div > .choix-tarif
{
	font-size: 30px;
}
.choix:not(.choix-disabled) > div > .choix-tarif
{
	color: var(--highlight);
}
.choix > input[type='radio']:checked + div > .choix-tarif,
.choix:hover > div > .choix-tarif
{
	color: #161616;
}
.choix > div > .choix-tarif > small,
.choix > div > .choix-tarif + .choix-tarif
{
	font-size: 15px;
}
.choix > input[type='radio']:checked + div,
.choix:hover > div
{
	background-color: var(--highlight);
	color: #161616;
	cursor: pointer;
}*/
.choix-disabled
{
	border-color: #393939;
	pointer-events: none;
	color: #393939;
}

.choix-abonnement
{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
}
.choix-abonnement > a
{
	width: 230px;
	padding: 5px;
	border: 1px solid #535353;
	border-radius: 5px;
	margin: 15px 5px;

	display: flex;
	flex-direction: column;

	background-color: #161616;

	text-decoration: none;
}
.choix-abonnement > a:hover,
.choix-abonnement > a.select
{
	border-color: var(--highlight);
}
.choix-abonnement > a > h2:first-child
{

}
.choix-abonnement > a > h2:first-child + div
{
	flex: 1;
}

ul#fil_ariane
{
	list-style: none;
	font-size: 0;
	margin: 15px 0 5px;
	padding: 0;
	width: 100%;

	display: flex;
    justify-content: space-between;
    position: relative;
}
ul#fil_ariane > li
{
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	/*width: 25%;*/
	text-align: center;
	white-space: nowrap;
	color: #232323;
	display: inline-block;
	vertical-align: middle;
	z-index: 2;
}
ul#fil_ariane:not(:last-child):before
{
	content:"";
	position: absolute;
	/*left: 50%;*/
	left: 4%;
    right: 4%;
	top: 30%;
	/*width: 100%;*/
	height: 2px;
	background-color: rgba(218,213,205,1);
	z-index: 1;
}
ul#fil_ariane > li > a
{
	text-decoration: none;
}
ul#fil_ariane > li > span:first-child,
ul#fil_ariane > li > a > span:first-child
{
	position: relative;
	display: block;
	margin: 5px auto;
	background-color: rgba(218,213,205,1);
	width: 32px;
	height: 32px;
	border-radius: 100%;
	font-size: 16px;
	padding: 5px;
	z-index: 2;
	color: #000;
}
ul#fil_ariane > li > span:first-child + span,
ul#fil_ariane > li > a > span:first-child + span
{
	color: rgba(218,213,205,1);
}
ul#fil_ariane > li.select > span:first-child,
ul#fil_ariane > li.select > a > span:first-child
{
	background-color: var(--highlight);
}
ul#fil_ariane > li.select > span:first-child + span,
ul#fil_ariane > li.select > a > span:first-child + span
{
	color: var(--highlight);
}

/*FORMULAIRE*/
#captchagc,
#captchagc *
{
	box-sizing: border-box;
	outline: none;
}
#captchagc
{
	position: relative;
	background-color: #161616;
    border: 1px solid #1c1c1c;
	width: 250px;
	height: 70px;
	overflow: hidden;
	margin: 10px auto;
}
#captchagc > img:nth-of-type(1)
{
	position: absolute;
	top: 18px;
	left: 18px;
	width: 34px;
	height: 34px;
	z-index: 2;
	margin: 0!important;
}
#captchagc > img:nth-of-type(2)
{
    position: absolute;
    top: 40px;
    left: 25px;
    width: 25px;
	height: 25px;
	z-index: 3;
	margin: 0!important;
	animation: 3s ease-out 1s infinite running captchagc;
}
@keyframes captchagc
{
	0% { left: 25px; }
	25% { left: 25px; }
	50%{ left: 210px; }
	100%{ left: 210px; }
}
#captchagc > img:nth-of-type(1) + div
{
	position: absolute;
	top: 14px;
	right: 14px;
	border: 1px solid #272727;
	border-radius: 4px;
	width: 41px;
	height: 40px;
	background-color: #0b0b0b;
	z-index: 1;
}
#captchagc > img:nth-of-type(1) + div.accept
{
	border: 1px solid #F3990C;
}
#captchagc > img:nth-of-type(1) + div.hover
{
	border: 1px solid #1CD129;
}
#captchagc:before
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	content: ">>>>>>>>";
	font-family: 'Open sans', sans-serif;
	font-size: 17px;
}
#captchagc.valid:after
{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: rgba(255,255,255,0.9);
	z-index: 3;
}
#captchagc > i
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
	opacity: 0;
	transition: ease-in-out 200ms opacity, ease-in-out 200ms left;
}	
#captchagc.valid > i:nth-of-type(1)
{
	opacity: 1;
	left: 17%;
}
#captchagc > i:nth-of-type(1):before
{
	content: "\f00c";

	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	
	padding: 5px;
	color: #12D954;
	font-size: 30px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 100%;
	background-color: var(--text-default);
	border: 2px solid #12D954;
}
#captchagc > i:nth-of-type(2)
{
	position: absolute;
	top: 23px;
	left: 113px;
	z-index: 5;
	font-size: 25px;
	opacity: 1;
}
#captchagc.valid > img:nth-of-type(1)
{
	top: 18px!important;
	left: 197px!important;
}
#captchagc.valid > img:nth-of-type(2)
{
	display: none;
}

form
{
	display: inline;
}

.bouton,
.bouton:active,
.bouton:focus,
.button,
.button:active,
.button:focus,
.ui-button,
.ui-button:active,
.ui-button:focus
{
	display: inline-block;
	margin: 10px;
	padding: 5px 30px;
	border: 0!important;
	border-radius: 20px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	color: #000000!important;
	line-height: 25px;
	background: var(--highlight)!important;
	transition: color .15s ease-in-out,background .15s ease-in-out;
	cursor: pointer;
}
.ui-button,
.ui-button:active,
.ui-button:focus
{
	margin: 10px!important;
	padding: 5px 30px!important;
}

.button.small,
.bouton.small
{
	margin: 2px;
	padding: 3px 10px;
	font-weight: 400;
	font-size: 12px;
	line-height: initial;
}

.bouton > i,
.button > i
{
	margin-right: 5px;
	vertical-align: middle;
}

.bouton:hover,
.button:hover,
.ui-button:hover
{
	text-decoration: none!important;
	color: var(--text-default)!important;
	background: #535353!important;
}

input[type='text'],
input[type='password'],
input[type='date'],
select,
textarea,
#card-element
{
	margin: 2px 0;
	padding: 6px;
	border-radius: 2px;
	outline: none;
	font-family: 'Open Sans',sans-serif;
	font-size: 14px;

	background-color: #161616;
    border: 1px solid #dad5cd;
    color: var(--text-default);
}
#card-element
{
	border: 1px solid var(--highlight);
}
select
{
	padding: 5px 6px;
}
textarea
{
	padding: 6px;
}
input[type='text']:focus,
input[type='password']:focus,
input[type='date']:focus,
select:focus,
textarea:focus
{
	border: 1px solid var(--highlight);
	outline: none;
}

fieldset
{
	margin: 0;
	padding: 0;
	border: 0;
}
fieldset > legend
{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}
fieldset > ul
{
	margin: 0;
	padding: 0;
	font-size: 0;
	list-style: none;
}
fieldset > ul > li
{
	display: inline-block;
	width: 50%;
	margin: 0;
	padding: 0;
	font-size: 14px;
	vertical-align: middle;
}
fieldset > ul > li .row
{
	margin: 0;
}
fieldset > ul > li .row > *
{
	padding: 0;
}

fieldset > ul > li .input
{
	display: block;
	width: 100%;
	padding: 5px;
	text-align: left;
	font-size: 0;
}
fieldset > ul > li .input > label
{
	display: block;
	font-weight: 400;
	font-size: 16px;
	padding: 3px 0;
	color: #d7ca92;
}
fieldset > ul > li .input > div > *
{
	font-size: 14px;
}
fieldset > ul > li .input > div > input,
fieldset > ul > li .input > div > select,
fieldset > ul > li .input > div > textarea
{
	display: inline-block;
	width: 100%;
	font-size: 14px;
}
fieldset > ul > li.double
{
	width: 100%;
}



/*NOTIFICATIONS*/
.notification
{
	margin: 10px;
	padding: 10px 20px;
	border-radius: 3px;
	text-align: left;
	color: #FFF;
}
.notification.small
{
	margin: 0;
}
.notification:before
{
	display: inline-block;
	margin: 0 10px 0 0;
	font-family: "Font Awesome 5 Pro";
	font-size: 18px;
	vertical-align: middle;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 900;
}
.notification > span
{
	display: inline-block;
	width: calc(100% - 40px);
	vertical-align: middle;
}
.notification.closable:after
{
	content: "\f00d";
	position: absolute;
	top: 50%;
	right: 0;
	margin: 0 10px 0 0;
	font-family: "Font Awesome 5 Pro";
	font-size: 18px;
	vertical-align: middle;
	transform: translateY(-50%);
	cursor: pointer;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.notification.absolute
{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}
.notification.validation,
.button.validation
{
	background-color: #253e2b;
	color: #aff19e;
}
.notification.validation:before
{
	content: "\f058";
}
/*.notification.information,*/
.button.information
{
	background-color: #5D9CEC;
}
/*.notification.information:before
{
	content: "\f05a";
}*/
.notification.erreur,
.button.erreur
{
	background-color: #AF3939;
    color: #FBA8A8;
}
.notification.erreur:before
{
	content: "\f06a";
}
.notification.alert,
.button.alert
{
	background-color: #937431;
    color: #ffe391;
}
.notification.alert:before
{
	content: "\f071";
}
.notification.disable,
.button.disable
{
	background-color: #A2A2A2;
}

/*BADGE*/
.badge
{
	
	display: inline-block;
	padding: 3px 10px;
    border-radius: 3px;
    background-color: #727272;
    color: #FFF;
	font-size: 12px;
}
.badge:after
{
	display: inline-block;
	margin: 0 0 0 10px;
	font-family: "Font Awesome 5 Pro";
	font-size: 10px;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.badge.validation
{
	background-color: #253e2b;
	color: #aff19e;
}
.badge.validation:after
{
	content: "\f058";
}
.badge.information
{
	background-color: #5D9CEC;
}
.badge.erreur
{
	background-color: #AF3939;
    color: #FBA8A8;
}
.badge.alert
{
	background-color: #937431;
    color: #ffe391;
}
.badge.autre
{
	background-color: #7237BC;
}
.badge.small
{
	padding: 0px 5px;
	font-size: 11px;
}

/*SITE*/
#site
{
	position: relative;
	width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	/*overflow-x: hidden;*/

	display: flex;
    flex-direction: column;
}



/*HEADER*/
#header
{
	z-index: 55;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	text-align: right;
	background-color: #20202085;
	box-shadow: 0 2px 2px rgba(0,0,0,0.1);
	transition: background-color 0.5s ease;
	backdrop-filter: blur(5px);
}
#header > .container-fluid
{
	height: 100px;
	transition: height 0.5s ease;
}
#header.scroll
{
	/*background-color: rgba(255,255,255,1) !important;*/
	transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
	background-color: #202020ed;
	backdrop-filter: blur(5px);
}
#header.scroll > .container
{
	height: 60px;
}
#logo
{
	display: flex;
	position: absolute;
	align-items: center;
	height: 100%;
}
#logo > img
{
	height: 80%;
	transition: width ease-in-out 0.15s;
}



/*MENU*/
.burger {
	display: none;
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	height: 80px;
	margin: 10px 20px;
	text-align: left;
	cursor: pointer;
}
.burger > div
{
	width: 100%;
	height: 4px;
	border-radius: 5px;
	background: #957e4e;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0ms 300ms;
}
.burger > div::before
{
	content: '';
	position: absolute;
	bottom: 13px;
	background: #957e4e;
	width: 100%;
	height: 4px;
	border-radius: 5px;
	transition: bottom 300ms 300ms ease, transform 300ms ease, background 300ms ease;
}
.burger > div::after
{
	content: '';
	position: absolute;
	top: 13px;
	background: #957e4e;
	width: 100%;
	height: 4px;
	border-radius: 5px;
	transition: top 300ms 300ms ease, transform 300ms ease, background 300ms ease;
}
.nav-open .burger > div::after
{
	top: 0;
	transform: rotate(45deg);
	transition: top 300ms ease, transform 300ms 300ms ease, background 300ms ease;
	background-color: #957e4e;
}
.nav-open .burger > div
{
	background: transparent;
}
.nav-open .burger > div::before
{
	bottom: 0;
	transform: rotate(-45deg);
	transition: bottom 300ms ease, transform 300ms 300ms ease, background 300ms ease;
	background-color: #957e4e;
}
#menu
{
	padding: 0;
    height: 100%;
}
#menu > ul
{
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
	height: 100%;
}
#menu > ul > li
{
	display: inline-flex;
	align-items: center;
	position: relative;
	vertical-align: middle;
	height: 100%;
}
#menu > ul > li:first-child > a
{
	padding: 7px 20px 8px;
}
#menu > ul > li:last-child
{
	border-right: none;
}
#menu > ul > li > a
{
	display: block;
	position: relative;
	padding: 10px 8px;
	overflow: hidden;
	text-decoration: none;
	font-size: 15px;
	/*letter-spacing: -1px;*/
	font-weight: 600;
}
#menu > ul > li > a:not(.button)
{
	color: var(--text-default);
}
#menu > ul > li > a.button
{
	padding: 5px 15px;
}
#menu > ul > li.sous-menu > a
{
	padding: 40px 20px 40px 5px;
}
#menu > ul > li.sous-menu:last-child > a
{
	padding: 30px 20px 30px 5px;
}
#menu > ul > li > a > i
{
	line-height: 25px;
}
#menu > ul > li > a > .fa-angle-down
{
	position: absolute;
	top: 50%;
	right: 4px;
	font-size: 17px;
	transition: top 0.3s;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#menu > ul > li > a > .fa-angle-down.down2
{
	top: -20%;
}
@media screen and (min-width:860px)
{
	#menu > ul > li:hover > a > .fa-angle-down.down1
	{
		top: 120%;
	}

	#menu > ul > li:hover > a > .fa-angle-down.down2
	{
		top: 50%;
	}
}
#menu > ul > li > a:hover,
#menu > ul > li > a.select:not(.button)
{
	color: var(--highlight);
}
#menu > ul > li > ul
{
	z-index: 3;
	position: absolute;
	top: 100%;
	padding: 0 5px;
	max-height: 0;
	min-width: 100%;
	overflow: hidden;
	text-align: left;
	list-style: none;
	background-color: #161616;
	box-shadow: 1px 1px 4px #3a3a3a;
	transition: max-height ease-in-out 0.4s;
}
#menu > ul > li.live > ul
{
	right: 0;
}
#menu > ul > li.live > a
{
	color: var(--highlight);
}

.blink
{
	animation-duration: 1s;
	animation-name: blink;
	animation-iteration-count: infinite;
	transition: none;
}
@keyframes blink
{
	0%   { opacity:1; }
	20%   {opacity:0; }
	100% { opacity:1; }
}

#menu > ul > li > ul > li
{
	padding: 5px 0;
}
#menu > ul > li > ul > li:first-child
{
	padding-top: 15px;
}
#menu > ul > li > ul > li:last-child
{
	padding-bottom: 15px;
}
#menu > ul > li:hover ul
{
	max-height: 500px;
}
#menu > ul > li > ul > li
{
	white-space: nowrap;
}
#menu > ul > li > ul > li > a
{
	display: flex;
	padding: 5px;
	text-decoration: none;
	font-size: 15px;
	white-space: nowrap;
	color: var(--text-default);
	width: 100%;
}
#menu > ul > li > ul > li > a:hover,
#menu > ul > li > ul > li > a.select
{
	color: var(--highlight);
}
#menu > ul > li > ul > li > a > span
{
	width: 100%;
}
#menu > ul > li > ul > li > a > span:first-child + span
{
	text-align: right;
	padding-left: 5px;
	width: 50px;
}



/*SLIDER ACCUEIL*/
/*#slider_accueil
{
	z-index: 1;
	position: relative;
	width: 100%!important;
	margin-top: 100px;
	overflow: hidden;
}
#slider_accueil > ul
{
	position: relative!important;
	width: 100%;
}
#slider_accueil > ul > li
{
	position: relative!important;
	width: 100%;
	padding-top: 30%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
#slider_accueil > ul > li > a
{
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
#slider_accueil img
{
	margin: 0;
}
#slider_accueil > ul > li video
{
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#slider_accueil .boutonPagination.select
{
	background: var(--highlight)!important;
}
#slider_accueil .boutonsPagination
{
	right: 30px!important;
}
#slider_accueil .boutonPagination
{
	width: 20px!important;
	height: 20px!important;
	opacity: 1!important;
}
#slider_accueil .CJSlider-navigation-gauche > i,
#slider_accueil .CJSlider-navigation-droite > i
{
	text-shadow: 1px 1px 4px #555;
	font-size: 62px;
	color: rgb(255,255,255);
	cursor: pointer;
}
#slider_accueil .CJSlider-navigation-gauche > i
{
	right: 10px;
}
#slider_accueil .CJSlider-navigation-droite > i
{
	left: 10px;
}
#slider_accueil .slide-contenu
{
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.slide-contenu .container
{
	position: relative;
	top: 0;
	height: 100%;
}
#slider_accueil .slide-contenu > .container > div
{
	position: absolute;
	bottom: 25px;
	left: 0;
}
#slider_accueil .slide-contenu .slide-titre
{
	display: inline-block;
	padding: 5px 50px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 27px;
	color: #FFF;
	background-color: rgba(229, 64, 137, 0.98);
}
#slider_accueil .slide-contenu .slide-texte
{
	display: block;
	margin: 0 0 0 30px;
	padding: 10px 20px;
	max-width: 490px;
	text-decoration: none;
	font-size: 17px;
	color: #FFF;
	background-color: rgba(0,0,0,0.9);
}
#slider_accueil .slide-contenu .slide-texte a
{
	text-shadow: none;
}*/

.slider, .slider > ul, .slider > ul > li
{
	position: relative;
	width: 100%;
    height: 100vh;
    background-size: cover;
    z-index: 1;
    background-position: 50% 0;
}
.slider .boutonPagination.select
{
	background: var(--highlight)!important;
}
.slider .boutonsPagination
{
	right: 30px!important;
}
.slider .boutonPagination
{
	width: 20px!important;
	height: 20px!important;
	opacity: 1!important;
}
.slider .CJSlider-navigation-gauche > i,
.slider .CJSlider-navigation-droite > i
{
	text-shadow: 1px 1px 4px #555;
	font-size: 62px;
	color: rgb(255,255,255);
	cursor: pointer;
}
.slider .CJSlider-navigation-gauche > i
{
	right: 10px;
}
.slider .CJSlider-navigation-droite > i
{
	left: 10px;
}
.slider > ul > li > div.slide-contenu
{
	display: flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;

	z-index: 2;

	font-family: 'Open Sans',sans-serif;
	font-size: 30px;
	text-align: center;
	color: var(--text-default);
}
.slider > ul > li > div:not(.slide-contenu)
{
	display: flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;

	z-index: 2;

	font-family: 'Open Sans',sans-serif;
	font-size: 30px;
	text-align: center;
	color: var(--text-default);
}
.slider > ul > li > div.slide-contenu > div
{
	position: relative;
    width: 90%;
    height: 90%;
    margin: 0 auto;
    padding: 0 20px;

	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 20px;
	align-items: center;
}
.slider > ul > li > div.slide-contenu > div > div
{
	max-height: 90%;
    overflow: auto;
    margin-top: 100px;
}
.slider > ul > li > div.slide-contenu:before
{
	content: "";
	position: absolute;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, rgba(22,22,22,1) 0%, rgba(22,22,22,0.8) 50%, rgba(22,22,22,0) 100%);
}
.slider > ul > li > div.slide-contenu > div iframe
{
	width: 90%;
	height: 50vh;
}
.slider > ul > li > div .slide-titre
{

}
.slider > ul > li > div .slide-texte
{
	font-size: 14px;
	text-align: left;
}
.slider > ul > li > div .slide-texte ul
{
	list-style: disc;
}
.slider video
{
    /*position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1*/;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider h1
{
	/*font-family: 'Anton', sans-serif;
	font-size: 60px;
	color: #FFF;*/

	font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    text-align: center;
    color: var(--text-default);
}
.slider img
{
	max-width: calc(100% - 40px);
	margin: 0 20px;
}
.slider .button.infos
{
	position: absolute;
	z-index: 2;
	left: 100px;
	bottom: 100px;
}
.slider .button.infos[data-text] > div
{
	display: none;
	position: absolute;
	bottom: 100%;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	padding: 10px;
	border-radius: 5px;
	color: var(--text-default);
	font-weight: normal;
	width:  660px;
	max-height: 400px;
	overflow: auto!important;
}
.mouse
{
    max-width: $mouse-width;
    width: 100%;
    height: 38px;
}
.scroll_slide
{
    animation-name: scroll_slide;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(0.65, -0.55, 0.25, 1.5);
    animation-iteration-count: infinite;
    transform-origin: 50% 20.5px;
    will-change: transform, opacity;
    opacity: 1;
}
.scroll_slide-link
{
	width: 25px;
    position: absolute;
    z-index: 9999;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
}
@keyframes scroll_slide
{
    0%,
    20% {
        transform: translateY(0) scaleY(1);
    }
    100% {
        transform: translateY(36px) scaleY(2);
        opacity: 0;
    }
}

.accordeon
{
	list-style: none;
	margin: 50px 0;
	padding: 0;
}
.accordeon > li
{
	margin: 10px 0;
	padding: 0 10px;

	background-color: rgba(0,0,0,0.5);
}
.accordeon > li > div:first-child
{
	padding: 10px 0;
	
	font-size: 15px;
}
.accordeon > li:not(.select) > div:first-child + div,
.accordeon > div:not(.select) > div:first-child + div
{
	display: none;
}
.accordeon > li > div:first-child i
{
	font-size: 14px;
}
.accordeon > li > div:first-child
{
	display: flex;

	padding: 0;
	font-size: 18px;

	cursor: pointer;
}
.accordeon > li > div:first-child > div
{
	padding: 15px 0;
}
.accordeon > li > div:first-child + div
{
	font-size: 15px;
	line-height: 25px;
	padding-bottom: 10px;
}
.accordeon > li > div:first-child > div:first-child
{
	width: 100%;
}
.accordeon > li > div:first-child > div:first-child h2
{
	font-size: 18px;
	padding: 0;
	margin: 0;
	line-height: initial;
	text-align: left;
}



/*CONTENT*/
#content
{
	position: relative;
	margin-top: 100px;
	/*min-height: calc(100vh - 147px);*/
	padding-top: 0;
	flex: 1;
}
.slider + #content
{
	margin-top: 0;
	min-height: initial;
}
.contenu img
{
	margin: 5px;
}
.contenu img[align='left']
{
	margin: 5px 20px 5px 0;
}
.contenu img[align='right']
{
	margin: 5px 0 5px 20px;
}
.contenu img[align='absmiddle']
{
	margin: 5px;
}

.blocs
{

}
.blocs > div > div
{
	display: inline-block;
	padding: 20px 10px;
	width: 100%;
	margin: 5px auto;
	border-radius: 5px;
	background-color: rgba(255,255,255,0.1);
}
.blocs > div > div > i
{
	margin: 0 0 10px;
	color: #d7ca92;
}
.blocs > div > div > div:first-of-type
{
	font-size: 16px;
}
.blocs > div > div > div:first-of-type + div
{
	color: #949494;
	font-size: 12px;
}

.parallax
{
	margin: 0;
	padding: 70px 0;
	min-height: 450px;
	color: white;
	background-attachment: fixed;
	/*background-image: url(../img/parallax.jpg);*/
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.parallax h2
{
	text-align: center;
	color: var(--text-default);
}

/*VIDEO*/
#video
{
	width: 100%;
	height: 100%;
}
#video .video-player
{
	width: 100%;
	height: 100%;
	background-color: #000;
}
#video .video-player iframe
{
	width: 100%;
	height: 100%;
}
#video .video-details
{
	padding: 10px;
}
#video .video-details h1
{
	text-align: left;
	margin: 0;
	padding: 0;
	color: var(--text-default);
}
#video .video-details .video-date
{

}
#video .video-details .video-description
{
	padding: 10px 0;
	color: var(--text-default);
}

#video > .playlist
{
	display: grid;
	grid-template-columns: auto 430px;
}
#video > div:first-child
{
	width: 100%;
	height: calc(100vh - 100px);
	/*aspect-ratio: 16 / 9;*/
}
#video > .playlist > .video-playlist
{
	overflow: auto;
	padding: 15px;
}
#video > .playlist > .video-playlist .titre
{
	font-size: 16px;
	padding: 5px 5px 10px 5px;
	font-weight: 700;
}
#video > .playlist > .video-playlist > ul
{
	list-style: none;
	margin: 0;
	padding: 0;
}
#video > .playlist > .video-playlist > ul > li
{
	margin: 0;
	padding: 5px;
}
#video > .playlist > .video-playlist > ul > li.select
{
	background-color: rgba(0,0,0,0.5);
}
#video > .playlist > .video-playlist > ul > li > a
{
	display: grid;
	grid-template-columns: 150px auto;
	grid-gap: 10px;
	text-decoration: none;
	font-weight: 700;
}
#video > .playlist > .video-playlist > ul > li > a > div > div
{
	font-weight: 400;
	color: var(--text-default);
	font-size: 12px;
	margin-top: 10px;
}
#video > .playlist > .video-playlist > ul > li > a img
{
	width: 100%;
	height: 100px;
	object-fit: cover;
}

@media screen and (orientation: landscape) and (max-width: 932px)
{
	body:has(.video-player) #header
	{
		display: none;
	}

	body:has(.video-player) #content
	{
		margin-top: 0;
	}

	body:has(.video-player) #video > div:first-child
	{
		height: 100vh;
		aspect-ratio: initial;
	}
}


/*CONNEXION*/
.page-connexion #content,
.page-inscription #content,
.page-mot-de-passe-perdu #content,
.adapt
{
	display: flex;
	align-items: center;
}
.adapt
{
	position: relative;
    margin-top: 100px;
    height: calc(100vh - 150px);
}

.card
{
	background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(7px);
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}

.card-form
{
	display: block;
	background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(7px);
	margin: 0 auto;
	padding: 10px;
}

.card-text img
{
	vertical-align: middle;
}
.card-text h2
{
	font-size: 30px;
	text-align: left;
	color: var(--text-default);
	font-weight: bold;
}
.card-text p
{
	font-size: 20px;
	color: var(--text-default);
	margin: 0;
	padding: 0;
}


.simple-card
{
	display: inline-block;
    width: 100%;
	padding: 10px;
	background-color: rgba(255,255,255,0.05);
	box-shadow: 0 0 3px rgba(0,0,0,0.5);
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.1);
}
.simple-card.select
{
	border-color: var(--highlight);
	box-shadow: 0 0 3px rgba(0,0,0,0.5), inset 0 0 13px color-mix(in srgb, var(--highlight) 30%, transparent);
}


#form_recherche
{
	display: block;
	padding: 30px 0 10px;
}
#form_recherche > div
{
	display: flex;
    background-color: #565656;
    border-radius: 5px;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}
#form_recherche > div > i
{
	font-size: 40px;
	margin: 0 15px;
}
#form_recherche input[type='text']
{
	width: 100%;
	font-size: 40px;
	border: 0;
	flex: 1;
	background-color: #565656;
	border-radius: 5px;
}

.groupe
{
	width: 100%;
	padding: 0 70px;
	margin: 0 auto;
}
.groupe-center
{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.groupe > div:not(.slide-groupe,.clear)
{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.groupe > div:not(.slide-groupe) > div
{
    max-width: 335px;
    width: 100%;
}
.groupe + .groupe
{
    margin-top: -50px;
}
.groupe h1,
.groupe h2
{
	text-align: left;
}
.groupe .slide-groupe
{
	margin: 0 -70px 0;
}
ul.groupe
{
	padding: 0;
	margin: 10px auto;
}
ul.groupe > li
{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 359px;
    display: inline-block;
}
.slick-list
{
	padding: 0 60px;
}
.slick-slide
{
	transition: ease-in-out 200ms opacity;
}
.slick-slide[aria-hidden="true"]
{
	opacity: 0.3;
}
.slick-track
{
	padding: 18px 0 50px 0;
	margin-left: initial;
}
.groupe .widget
{
	display: inline-block;
	position: relative;
	margin: 0 10px 50px;
	width: calc(100% - 24px);
	max-width: 335px;
	height: initial;

	box-shadow: rgb(0 0 0 / 69%) 0px 26px 30px -10px, rgb(0 0 0 / 73%) 0px 16px 10px -10px;
	background-color: #161616;

	z-index: 1;
}
.groupe .widget > div
{
	position: relative;
    width: 100%;
    height: 187px;
    transition: ease-in-out 200ms transform;
}
.groupe .widget > div > i
{
	position: absolute;
	z-index: 3;
	top: 5px;
	right: 5px;
	font-size: 20px;
}
/*.groupe .widget:after
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: ease-in-out 200ms backdrop-filter;
	z-index: 2;
}
.groupe .widget:hover:after
{	
	backdrop-filter: blur(2px);
}
.groupe .widget:before
{
	content: "\f04b";
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	position: absolute;
	left: 0%;
	top: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
	z-index: 4;
	transition: ease-in-out 200ms opacity,ease-in-out 200ms left;
	color: #FFF;
	font-size: 25px;
}
.groupe .widget:hover:before
{
	opacity: 1;
	left: 50%;
}

.groupe .widget.disabled
{
	cursor: default;
	filter: grayscale(100%);
}*/
.groupe .widget img
{
	position: absolute;
	max-width: 100%;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
}
.groupe .widget .widget-details
{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.groupe .widget .widget-details
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.groupe .widget .widget-details .widget-verrou
{
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: 200ms ease-in-out opacity;
	color: var(--text-default);
	font-size: 30px;
	flex: 1;
}
.groupe .widget .widget-details .widget-verrou i
{
	background-color: rgba(0,0,0,0.8);
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 100%;
	padding: 9px 0;
}
.groupe .widget:hover .widget-details .widget-verrou
{
	opacity: 1;
}
.groupe .widget .widget-titre
{
	background-color: rgba(0,0,0,0.8);
	padding: 5px;
	font-size: 17px;
	color: var(--text-default);
}
.groupe .widget .widget-texte
{
	position: absolute;
    top: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    color: var(--text-default);
    opacity: 0;
    transition: ease-in-out 200ms opacity;
    pointer-events: none;
    font-size: 10px;
    padding: 5px;
}
.groupe .widget .widget-texte > div
{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
@media screen and (min-width:860px)
{
	.groupe .widget:hover
	{
		z-index: 2;
	}
	.groupe .widget:hover > div
	{
		transform: scale(1.2);
	}
	.groupe .widget:hover .widget-texte
	{
		opacity: 1;
		pointer-events: initial;
	}
}
/*.groupe .widget:hover .widget-details
{
	opacity: 1;
}
.groupe .widget:not(.disabled):after
{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	opacity: 0;
	transition: 200ms opacity ease-in-out;
	z-index: 2;
}
.groupe .widget:not(.disabled):hover:after
{
	opacity: 1;
}
.groupe .widget:not(.disabled) img
{
	transition: 200ms opacity ease-in-out;
}
.groupe .widget:not(.disabled):hover img
{
	opacity: 0.5;
}*/
.groupe .widget .progressbar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	
	background-color: #161616;
	z-index: 3;
}
.groupe .widget .progressbar > div
{
	/*background-color: #D52121;*/
	background-color: var(--highlight);
	height: 4px;
}
/*.slick-prev, 
.slick-next
{
	display: none!important;
	width: 40px;
	height: calc(100% - 50px);
	z-index: 2;
	top: 0;
	transform: translate(0,0);
	line-height: 0;
	text-align: center;
}
.slick-prev
{
	left: 0;
}
.slick-prev:before
{
	content: "\f053";
	font-family: "Font Awesome 5 Pro";
	transition: font-size 200ms ease-in-out;
	font-size: 30px;
	color: #FFF;
	opacity: 1;
}
.slick-next
{
	right: 0;
}
.slick-next:before
{
	content: "\f054";
	font-family: "Font Awesome 5 Pro";
	transition: font-size 200ms ease-in-out;
	font-size: 30px;
	color: #FFF;
	opacity: 1;
}
.slick-prev:hover:before,
.slick-next:hover:before
{
	font-size: 45px;
	line-height: initial;
}
.slide-groupe:hover .slick-prev:not(.slick-disabled), 
.slide-groupe:hover .slick-next:not(.slick-disabled)
{
	display: block!important;
}*/
.slick-list
{
	padding: 0 20px;
}


.mon-compte-titre
{
	font-size: 17px;
}
.mon-compte-profil > div:first-child + div
{
	margin: 15px 0;
}
.mon-compte-profil > div:first-child + div > div:first-child + div > div
{
	border-bottom: 1px solid rgba(255,255,255,0.05);
	padding: 5px;
}



/*FAQ*/
#faq
{
	list-style: none;
	margin: 0;
	padding: 0;
}
#faq > li
{
	background-color: #F2F2F2;
	margin: 1px;
	padding: 5px;
}
#faq > li > .question
{
	padding: 5px;
	cursor: pointer;
}
#faq > li > .reponse
{
	padding: 5px;
	font-style: italic;
}

/*CHARTE*/
#charte > div
{
	margin-bottom: 30px;
}

/*MENTIONS*/
#mentions
{
	font-size: 0;
}
#mentions h2,
#mentions h3
{
	margin: 0;
	padding: 0 0 10px;
	text-align: left;
	text-align: center;
	font-size: 16px;
}
#mentions > div
{
	margin: 10px 0 10px;
	padding: 10px;
	font-size: 14px;
	background-color: #20202085;
}
#mentions > div:first-child,
#mentions > div:first-child + div
{
	display: inline-block;
	width: calc(50% - 5px);
	margin: 10px 0 0;
	min-height: 280px;
	vertical-align: top;
}
#mentions > div:first-child
{
	margin-right: 5px;
}
#mentions > div:first-child + div
{
	margin-left: 5px;
}

.nuage
{
	text-align: center;
}

/*FOOTER*/
#footer
{
	color: var(--text-default);
	background-color: rgba(0,0,0,0.5);
}
#footer > div
{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#footer a
{
	color: var(--text-default);
	text-decoration: none;
}
#footer a:hover
{
	text-decoration: underline;
}
#footer #infos_site
{
	padding: 15px 0;
	font-size: 12px;
}
#footer #infos_complementaires
{
	padding: 15px 0;
	font-size: 12px;
}



#question-message
{
	position: sticky;
	right: 10px;
	bottom: 10px;
	z-index: 9;
	/*padding: 5px;*/
	width: 285px;
	margin: 0 0 0 auto;
	transform: translateY(-60px);
    height: 0;
	/*transition: 200ms ease-in-out width,200ms ease-in-out margin;*/
}
#question-message > div:first-child
{
	position: relative;
    z-index: 2;
	font-weight: 700;
	font-size: 19px;
}
#question-message.open > div:first-child
{
	background-color: #0000007a;
    backdrop-filter: blur(5px);
    border-radius: 22px;
    width: 280px;
}
#question-message > div:first-child > i
{
	background-color: var(--highlight);
	padding: 10px 0;
    width: 45px;
    height: 45px;
	border-radius: 100%;
	color: #161616;
	text-align: center;
	font-size: 25px;
	vertical-align: middle;
}
#question-message > div:first-child + div
{
	overflow: hidden;
	width: 0;
	height: 0;
	/*transition: 200ms ease-in-out width,200ms ease-in-out height,200ms ease-in-out opacity,200ms ease-in-out margin;*/
	margin: -15px 0 0 15px;
	/*background-color: rgba(0,0,0,0.8);*/
	padding: 10px;
	opacity: 0;
	/*box-shadow: 0 5px 55px 0px rgba(255,255,255,0.5);*/
	font-size: 15px;

	background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 255, 255, 0.05);
}
#question-message > div:first-child + div > div
{
	font-weight: 700;
	padding:  5px;
}
#question-message > div:first-child + div + div
{
	position: absolute;
    right: 0;
    bottom: 60px;
    width: 300px;
    margin: 0;
}
#question-message.open
{
	width: 390px;
	/*margin: 0;*/
	transform: translateY(-330px);
}
#question-message.open > div:first-child + div
{
	width: calc(100% - 30px);
	max-width: 350px;
	height: 273px;
	opacity: 1;
}

.moyen_paiement
{
	padding: 10px;
	margin: 10px;
}
.moyen_paiement > div
{
	position: relative;
	border: 2px solid #079314;
	padding: 20px 70px 20px 10px;
	border-radius: 5px;
	margin: 20px 0;
}
.moyen_paiement i:last-child
{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 25px;
	color: #079314;
}


.ui-dialog
{
	border-radius: 3px;
	padding: 0;
	z-index: 10000!important;
}
.ui-widget-overlay
{
	z-index: 9999!important;
}
.ui-dialog > .ui-dialog-titlebar
{
	border: 0;
	border-radius: 0;
	color: #000;
	background: var(--highlight);
	padding: 6px;
}
.ui-dialog .ui-dialog-titlebar-close, .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus
{
	padding: 0;
}
.ui-widget-header .ui-state-hover, 
.ui-widget-header .ui-state-focus
{
	background: none;
	border: 0;
}
.ui-widget-header .ui-icon
{
    /*background-image: url(../img/ui-icons_ffffff_256x240.png);*/
}
.ui-widget-content
{
	background: #161616!important;
	color: var(--text-default)!important;
}
.ui-dialog.ui-widget-content
{	
	border: 0;
	box-shadow: 0 5px 55px 0px rgba(255,255,255,0.5);
}
.ui-dialog > .ui-dialog-content
{
	display: table;
	margin: 5px auto;
	width: 80%!important;

	background: #161616!important;
	color: var(--text-default)!important;
}
.ui-dialog > .ui-dialog-content > tbody > tr > td:first-child
{
	width: 20%;
}
.ui-dialog > .ui-dialog-content > tbody > tr > td:first-child + td
{
	width: 80%;
}
.ui-dialog > .ui-dialog-content > div
{
	display: table-cell;
	vertical-align: middle;
}
.ui-dialog > .ui-dialog-content > div:first-child
{
	text-align: right;
}
.ui-dialog > .ui-dialog-content > div:first-child + div
{
	padding-left: 10px;
}
.ui-dialog .ui-dialog-buttonpane
{
	border: 0;
	padding: 5px;
	margin: 0;
}
.ui-widget-overlay
{
	background: #000;
	backdrop-filter: blur(2px) grayscale(100%);
	opacity: 0.5;
}


/*Divers*/
#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine
{
	background-color: #000!important;
}
#payment-form form {
  width: 30vw;
  min-width: 500px;
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 40px;
}

#payment-form .hidden {
  display: none;
}

#payment-form #payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

#payment-form #payment-element {
  margin-bottom: 24px;
}

#payment-form button:disabled {
  opacity: 0.5;
  cursor: default;
}

/* spinner/processing state, errors */
#payment-form .spinner,
#payment-form .spinner:before,
#payment-form .spinner:after {
  border-radius: 50%;
}
#payment-form .spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
#payment-form .spinner:before,
#payment-form .spinner:after {
  position: absolute;
  content: "";
}
#payment-form .spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
#payment-form .spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 600px) {
  form:not(#form_recherche) {
    width: 80vw;
    min-width: initial;
  }
}



.atouts
{
	margin: 100px 0;
}

.atouts-mcf
{
	padding: 0 25px;
}
.atouts-mcf > div > .col-3 > div
{
	display: inline-block;
	text-align: center;
	border: 1px solid #d7ca92;
	border-radius: 50vh;
	background-color: #242424;
	padding: 12px 8px;
	margin: 5px;
	width: initial;
}
.atouts-mcf > div > .col-3 > div > i
{
	font-size: 30px;
	color: #d7ca92;
}
.atouts-mcf > div > .col-9 > div:first-child
{
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
}
.atouts-mcf > div > .col-9 > div:last-child
{
	text-align: justify;
}

/*.professionnel
{
	text-decoration: none;	
}
.professionnel > div
{
	position: relative;
	width: 100%;
	height:  150px;
}
*/

.professionnels
{
	position: relative;
	z-index: 2;
	list-style: none;
	margin: 0;
	padding: 0 10px 160px;

	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 10px;
}
.professionnels > .professionnel
{
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 1;
}
.professionnel > a
{
	position: relative;
	width: 100%;
	height: 200px;
	background-color: #000;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;

	transition: ease-in-out 200ms transform;

	display: block;
	text-decoration: none;
}
@media screen and (min-width:860px)
{
	.professionnel:hover
	{
		z-index: 2;
	}
	.professionnel:hover > a
	{
		transform: scale(1.2);
	}
}
.professionnel > a > div:first-child
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.8);
	color: var(--text-default);
	padding: 5px;
}
.professionnel > a > div:first-child + div
{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0);
	color: var(--text-default);
	opacity: 0;
	transition: ease-in-out 200ms opacity;
	pointer-events: none;
	padding: 5px;
	font-size: 10px;
}
.professionnel:hover > a > div:first-child + div
{
	opacity: 1;
	pointer-events: auto;
}
.professionnel > a > div:first-child + div .professionnel-resume
{
	display: -webkit-box;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.professionnel > a > div:first-child + div a
{
	font-size: 10px;
}
.professionnel > a > div:first-child + div .professionnel-rdv
{
	text-align: right;
}


.professionnel_profil
{
	display: grid;
	grid-template-columns: 150px 2fr;
	grid-template-rows: 17px 17px auto;
	grid-gap: 10px;

	background-color: #20202085;
	border-radius: 5px;
	padding: 10px;
}

.professionnel_profil > *:nth-child(1){ grid-area: 1 / 1 / 5 / 2; }
.professionnel_profil > *:nth-child(2){ grid-area: 1 / 2 / 2 / 3; }
.professionnel_profil > *:nth-child(3){ grid-area: 2 / 2 / 3 / 3; }
.professionnel_profil > *:nth-child(4){ grid-area: 3 / 2 / 5 / 3; }

.professionnel_profil > *:nth-child(1)
{
	width: 150px;
}
.professionnel_profil > *:nth-child(2)
{
	font-weight: 700;
	font-size: 16px;
}
.professionnel_profil > *:nth-child(3)
{
	font-style: italic;
}
.professionnel_profil > *:nth-child(1) > img
{
	width: 100%;
	height: 150px;
	object-fit: cover;
	vertical-align: middle;
}

.notification.information
{
	position: relative;
	padding: 10px 10px 10px 90px;
	border-radius: 10px;
	background-color: rgba(255,255,255,0.1);
	overflow: hidden;
	border: 1px solid var(--highlight);
}
.notification.information::before
{
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	content: "\f05a";
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	font-size: 90px;
	color: var(--highlight);
}

#pop-professionnel
{
	width: 100%;
}
#pop-professionnel .pop-professionnel-photo
{
	position: absolute;
	overflow: hidden;
	width: 300px;
	height: 300px;
	z-index: 1;
}
#pop-professionnel .pop-professionnel-photo > img:first-child
{
    position: absolute;
    left: 55px;
    top: 48px;
	width: 196px;
    height: 202px;
    object-fit: cover;
}
#pop-professionnel .pop-professionnel-photo > img:first-child + img
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}
#pop-professionnel .pop-professionnel-photo + div
{
	margin-left: 300px;
    width: calc(100% - 300px - 40px);
}
#pop-professionnel .pop-professionnel-nom
{
	padding: 15px 0 5px;
	font-size: 24px;
	font-weight: 700;
}
#pop-professionnel .pop-professionnel-qualite
{
	color: var(--highlight);
	font-size: 20px;
}
#pop-professionnel .pop-professionnel-resume
{
	padding: 15px 0;
	line-height: 20px;
	min-height: 120px;
}
#pop-professionnel .pop-professionnel-tarifs
{
	position: relative;
	z-index: 2;
}


body[class*='page-espace'] h2
{
	font-size: 19px;
}

#cboxContent
{
    background: #111111;
}

/*
#creneaux table
{
	width: 100%;
}
#creneaux table > tbody > tr > th
{
	height: 60px;
}

#creneaux table > tbody > tr > td > div
{
	min-height: 30px;
}
#creneaux table.preparateur > tbody > tr > td > div
{
	min-height: 45px;
}
#creneaux .creneau
{
	position: relative;
	margin-bottom: 20px;
	width: 90%;
}
#creneaux .creneau > span
{
	display: block;	
	background-color: #B6B6B6;
	color: #000!important;
	border-radius: 20px;
	font-size: 12px;
	padding: 0px 2px;
	bottom: -5px;
	width: 100%;
    font-weight: initial;
    line-height: 15px;
}*/
#creneaux
{
	margin: 20px 0;
}
#creneaux > div:not(.notification)
{
	border: 1px solid var(--highlight);
	border-radius: 10px;
	padding: 5px;
	margin: 5px;
}
#creneaux > div:not(.notification) > div:first-child
{
	padding: 10px;
	/*border-bottom: 1px solid var(--highlight);*/
	font-weight: 700;

	display: flex;
    justify-content: space-between;
}
#creneaux > div:not(.notification) > div:first-child + div > ul
{
	list-style: none;
	padding: 5px;
	margin: 0;
}
#creneaux > div:not(.notification) > div:first-child + div > ul > li
{
	display: inline-block;
}
#creneaux .creneau
{
	position: relative;
	margin-bottom: 20px;
	/*width: 90%;*/

	margin: 2px;
	padding: 1px 10px;
	text-align: center;
	width: 120px;
	border-radius: 10px;
}
#creneaux .creneau > span
{
	display: block;	
	background-color: #B6B6B6;
	color: #000!important;
	border-radius: 20px;
	font-size: 12px;
	padding: 0px 2px;
	width: 100%;
    font-weight: initial;
    line-height: 15px;
}
#creneaux .creneau.select:before
{
	content:"\f00c";
	position: absolute;
	top: 2px;
	left: 2px;

	font-size: 22px;
	font-weight: 900;
	font-family: "Font Awesome 6 Pro";
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
}

.rdvs
{
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(420px,1fr));
	gap: 10px;
	margin-bottom: 15px;
}
.rdvs > .rdv
{
	display: flex;
	align-items: center;
	gap: 20px;

	padding: 20px;

	position: relative;
}
.rdvs > .rdv.disabled
{
	opacity: 0.5;
	pointer-events: none;
	user-select: none;
}
.rdvs > .rdv > .rdv-date
{
	width: 90px;
	height: 90px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	flex-shrink: 0;

	border-radius: 16px;

	background: rgba(0,0,0,0.1);

	/*border: 1px solid rgba(255,255,255,.08);*/
}
.rdvs > .rdv > .rdv-date > div:first-child
{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;

	color: var(--highlight);

	text-transform: uppercase;
}
.rdvs > .rdv > .rdv-date > div:first-child + div
{
	font-size: 34px;
	font-weight: 700;
	line-height: 1;

	color: #ffffff;
}
.rdvs > .rdv > .rdv-date > div:first-child + div + div
{
	font-size: 12px;
	font-weight: 600;

	color: #b8beca;

	text-transform: uppercase;
}
.rdvs > .rdv > .rdv-date > span
{
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;

	color: var(--highlight);
}
.rdvs > .rdv > .rdv-professionnel
{
	flex: 1;

	display: grid;
	grid-template-columns: 50px 1fr;
	grid-template-rows: auto auto auto;

	column-gap: 15px;
	row-gap: 4px;
}
.rdvs > .rdv > .rdv-professionnel > .rdv-heure
{
	grid-column: 1 / span 2;
	grid-row: 1;

	margin-bottom: 6px;

	font-size: 24px;
	font-weight: 700;

	color: var(--highlight);
}
.rdvs > .rdv > .rdv-professionnel > .rdv-professionnel-photo
{
	grid-column: 1;
	grid-row: 2 / span 2;
}
.rdvs > .rdv > .rdv-professionnel > .rdv-professionnel-nom
{
	grid-column: 2;
	grid-row: 2;

	font-weight: 700;
	color: #fff;
}
.rdvs > .rdv > .rdv-professionnel > .rdv-professionnel-statut
{
	grid-column: 2;
	grid-row: 3;

	font-size: 14px;
	color: #9ca3af;
}
.rdvs > .rdv > .rdv-etat
{
	margin-left: auto;

	display: flex;
	align-items: center;
}


/*.rdv
{
	display: inline-block;
	width: 100%;
	max-width: 370px;
	border-radius: 10px;
	background-color: #161616;
	overflow: hidden;
	margin: 5px;
}
.rdv.disabled
{
	opacity: 0.5;
	pointer-events: none;
	user-select: none;
}
.rdv .rdv-date
{
	background-color: var(--highlight);
	color: #000;
	padding: 10px;
}
.rdv .rdv-date > span:first-child
{
	display: inline-block;
	margin-right: 10px;
}
.rdv .rdv-professionnel
{
	padding: 10px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.rdv .rdv-professionnel-photo
{
	grid-area: 1 / 1 / 3 / 2;
}
.rdv .rdv-professionnel-nom
{
	font-weight: 700;
	grid-area: 1 / 2 / 2 / 6;
}
.rdv .rdv-professionnel-statut
{
	grid-area: 2 / 2 / 3 / 6;
	color: #B4B4B4;
}
.rdv .rdv-etat
{
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 5px;
}*/

.pop
{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	backdrop-filter: blur(2px) grayscale(100%);
	z-index: 99999;
}
.pop .pop-close
{
	position: absolute;
	font-size: 30px;
	top: 20px;
	right: 30px;
	color: var(--text-default);
	cursor: pointer;
	z-index: 3;
}
.pop .pop-content
{
	transform: translate(-50%,-50%);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	max-width:  80%;
	height: 100%;
	max-height: 575px;
}
.pop .pop-content:before
{
    content: '';
    position: absolute;
    left: -1px;
    top: -1px;
    background: linear-gradient(131deg, #f2f9ad 0%, #81661Da8 9%, #6C5E10a8 100%);
    border-radius: 10px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    z-index: -1;
}
.pop .pop-content > div
{
	border-radius: 10px;
	padding: 10px;
	background-color: #161616;
	/*max-height: 500px;*/
	height: 100%;
}
.pop .pop-content > div section
{	
	position: relative;
	height: 100%;
	min-height: 200px;
	overflow: hidden;
	overflow-y: auto;
}
.pop .pop-content section:not(.full)
{
	/*height: calc(100% - 55px);*/
	height: 100%;
}
.pop .pop-content footer
{
	background-color: rgba(0,0,0,0.5);
	height: 55px;
	text-align: right;
}


#reservation
{
	border-radius: 5px;
	background-color: #000;
	overflow: hidden;
	margin: 20px 0 0 auto;
	max-width: 350px;
}
#reservation > div
{
	padding: 10px;
}
#reservation > div:not(:last-child)
{
	display: flex;
	gap: 10px;
	/*justify-content: center;*/
}
#reservation > div.reservation-creneau
{
	background-color: var(--highlight);
	color: #000;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}
#reservation > div.reservation-professionnel
{
	background-color: var(--highlight);
	color: #000;
	display: flex;
	gap: 10px;
}
#reservation > div.reservation-creneau a,
#reservation > div.reservation-professionnel a
{
	color: #000;
}
/*#reservation > div:not(:last-child) > span:first-child + span
{
	flex: 1;
}
#reservation > div:last-child
{
	border-top: 1px solid var(--highlight);
}
#reservation > div:last-child > div:nth-child(2n)
{
	padding: 10px;
}
#reservation > div:last-child > div > div
{
	display: flex;
	margin: 0 0 5px 0;
}
#reservation > div:last-child > div > div > i
{
	margin-top: 3px;
	margin-right: 5px;
}*/
#reservation .reservation-etape
{
	padding: 0 0 5px;
}
#reservation .reservation-titre
{
	font-weight: 700;
}
#reservation .reservation-section
{
	padding: 10px;
}
#reservation .reservation-section > div
{
	padding: 0 0 5px;
}
#reservation .reservation-section > .reservation-creneaux
{
	position: relative;
	overflow: hidden;
	max-height: 150px;
	transition: 500ms ease-in-out max-height;
}
#reservation .reservation-section > .reservation-creneaux::after
{
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	height: 4px;
	width: 100%;
	box-shadow: 0 0 20px 4px rgba(0, 0, 0);
	z-index: 1;
}
#reservation .reservation-section > .reservation-creneaux > .reservation-creneau
{
	border-left: 2px solid var(--highlight);
	padding: 5px;
	margin: 2px 0;
	background-color: #161616;
}
#reservation .reservation-bouton
{
	text-align: center;
}


/*Mobiles*/
@media screen and (max-width:1280px)
{
	/*.row > *
	{
		display: block!important;
		width: initial!important;
		padding: initial!important;
	}*/
	.row > *
	{
		flex: 1 1 auto;
	}

	#header,
	#header.scroll
	{
		backdrop-filter: initial;
	}

	.burger
	{
		display: inline-flex;
	}	
	#menu > ul
	{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		border-radius: 0 !important;
		background-color: rgba(0,0,0,0.9);
		transition: ease-in-out 300ms opacity,ease-in-out 300ms padding,ease-in-out 300ms height;
	}	
	#menu > ul .fa-home-lg:before
	{
		content: "Accueil";
		font-family: 'Open Sans',sans-serif;
		font-weight: 600;
		font-size: 20px;
	}
	body.nav-close #menu > ul
	{
		height: 0%;
		padding: 0;
		overflow: hidden;
		opacity: 0;
	}	
	body.nav-open #menu > ul
	{
		height: 100%;
		padding: 80px 40px 0;
		overflow: auto;
		opacity: 1;
	}	
	#menu > ul > li
	{
		display: block;
		border-bottom: 1px solid rgba(255,255,255,0.5);
		text-align: left;
		height: initial;
	}	
	#menu > ul > li:first-child > a,
	#menu > ul > li > a
	{
		display: block;
		padding: 20px 10px;
		font-size: 20px;
		color: var(--text-default);
	}	
	#menu > ul > li > ul
	{
		position: initial;
	}
	#menu > ul > li.sous-menu > a
	{
		padding: 20px 10px;
	}

	#menu > ul > li > a.select + ul
	{
		position: relative;
		max-height: initial;
		box-shadow: initial;
	}

	.professionnels
	{
		grid-template-columns: 1fr 1fr;
	}


	.rdvs
	{
		grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	}
	.rdvs > .rdv
	{
		flex-wrap: wrap;
	}
	.rdvs > .rdv > .rdv-etat
	{
		width: 100%;

		margin-left: 0;
		margin-top: 10px;

		display: flex;
		justify-content: flex-end;
	}
	
	/*#footer > div > div #infos_site,
	#footer > div > div #infos_complementaires
	{
		display: block;
		position: relative;
		right: inherit;
		left: inherit;
		padding: 5px;
		text-align: center;
	}*/
	#footer #infos_site,
	#footer #infos_complementaires
	{
		text-align: center;
	}

	.card-text img,
	.contenu img
	{
		max-width: 100%;
		height: initial;
	}


	#video > div:first-child
	{
		height: initial;
		display: flex;
		flex-direction: column;
	}
	#video .video-player
	{
        aspect-ratio: 16 / 9;
    }
}

@media screen and (max-width:930px)
{
	#footer > div
	{
		justify-content: center;
	}
}

@media screen and (max-width:430px)
{
	fieldset > ul > li
	{
		display: block;
		width: 100%;
	}
		
	/*#footer > div > div
	{
		display: block;
		position: relative!important;
		top: initial!important;
		right: initial!important;
		left: initial!important;
		text-align: center;
	}*/

	.accueil-blocs > .card-text:nth-child(even) > .row
	{
		flex-direction: column-reverse;
	}
	
	#mentions > div:first-child,
	#mentions > div:first-child + div
	{
		display: block;
		width: initial;
	}

	.slider h1
	{
		font-size: 37px;
	}

	.container-fluid
	{
		padding: 0 20px;
	}

	/*.row
	{
		display: block!important;
	}
	.row > *
	{
		width: 100%!important;
	}*/

	.adapt
	{
		height: initial;
	}

	.professionnels
	{
		grid-template-columns: 1fr;
	}
	.professionnel_profil
	{
		display: block;
	}
	ul#fil_ariane > li
	{
		font-size: 10px;
	}

	.slider > ul > li > div.slide-contenu > div
	{
		grid-template-columns: 1fr;
	}

	.pop .pop-content
	{
		max-width: 100%;
        max-height: 100%;
        height: 100%;
	}
	.pop .pop-content:before,
	.pop .pop-content > div
	{
		border-radius: 0;
	}

	#pop-professionnel .pop-professionnel-photo
	{
		position: relative;
	}
	#pop-professionnel .pop-professionnel-photo + div
	{
		margin-left: initial;
		width: calc(100% - 40px);
	}

	#reservation
	{
		margin: 5px;
		max-width: 100%;
	}

	.groupe
	{
		padding: 0 20px;
	}
	.groupe .slide-groupe
	{
		margin: 0 -20px 0;
	}
	.groupe .widget
	{
		display: block;
		margin: 0 auto 50px;
	}
	.groupe .widget .widget-details .widget-verrou
	{
		opacity: 1;
	}

	#question-message
	{
		width: 55px;
	}
	#question-message:not(.open) > div:first-child > span
	{
		display: none;
	}
	#question-message.open
	{
		margin: 0;
		width: initial;
	}
	#question-message.open > div:first-child + div
	{
		max-width: initial;
	}

	#form_recherche input[type='text']
	{
		font-size: 25px;
	}

	#video
	{
		aspect-ratio: 16/9
		height: initial;
	}
	#video > div:first-child
	{
		height: initial;
	}
}