@charset "UTF-8";

pre {
	font-size:.625em;
	margin:0 !important;
}

/**
--theme-color defined in colors.css
**/

/***************************/
/***************************/
/********** STYLE **********/
/***************************/
/***************************/

* {
	-webkit-box-sizing:border-box;
	   -moz-box-sizing:border-box;
	        box-sizing:border-box;
}
html {
	font-size:100%;
}
html,
input,
textarea,
select,
button {
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	-webkit-text-size-adjust:100%;
}
h1, h2, h3, h4, h5, h6,
ul, ol,
p, a, span,
blockquote, label, div, table,
input, textarea, button, select {
	margin:0;
	padding:0;
	font-weight:inherit;
}
p {
	font-size:inherit;
	line-height:inherit;
	color:inherit;
}
b, strong, del,
i, em {
	font-size:inherit;
	line-height:inherit;
}

/********** HR **********/

hr {
	width:100%;
	border:0;
	border-bottom:solid var(--logo-line-height);
}
hr.blank {
	border:0 !important;
}

/********** LIST + INLINE **********/

.list > * {
	display:block;
}
.inline {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
}
.inline > * {
	display:inline-block;
	vertical-align:middle;
}

/********** @MEDIA **********/

@media screen and (max-device-width:320px) {
	body {
		-webkit-text-size-adjust:none;
	}
}

/****************************/
/****************************/
/********** CUSTOM **********/
/****************************/
/****************************/
/*
.hidden {
	position:absolute;
	font-size:0 !important;
	padding:0 !important;
}
*/
.screen-reader-text,
.hidden {
	position: absolute;
	width: 0;
	height: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	white-space: nowrap;
}
.disabled {
	opacity:.5;
	pointer-events:none;
}
.centered {
	text-align:center;
}
.highlighted {
	/*color: var(--primary-color);*/
	color: var(--theme-color);
	font-weight: bold;
}

/********** IS-LAST **********/

.is-last {
	margin-left:auto !important;
}
.columns .is-last {
	margin-left:auto !important;
	min-width:auto;
	white-space:nowrap;
	-webkit-box-flex:0;
	-webkit-flex-grow:0;
	   -moz-box-flex:0;
	    -ms-flex-positive:0;
	        flex-grow:0;
}

/**********************************/
/********** INTRODUCTION **********/
/**********************************/
/* js fit text */

.introduction {
	display:inline-block;
	line-height:.95em;
}
.introduction em {
	font-style: normal;
	/*color: var(--primary-color);*/
	color: var(--theme-color);
}
.centered .introduction {
	text-align:center;
}

/********************************/
/********** BLOCKQUOTE **********/
/********************************/

blockquote.important {
	font-size:2em;
}
section.focus blockquote.important {
	margin-left:auto;
	margin-right:auto;
}
blockquote > * {
	display:inline;
}
blockquote cite {
	font-size:.875em;
	font-style: normal;
	font-weight: 700;
}
blockquote cite:before {
	content:"— ";
}

/********** @MEDIA **********/

@media (min-width:1200px) {
	section.focus blockquote.important {
		max-width:60%;
	}
}

/*****************************/
/********** TEXTFIT **********/
/*****************************/
/* js fit text */

.textfit {
	white-space:nowrap;
}
body.single .textfit > * {
	white-space: normal;
}

/***************************/
/***************************/
/********** EVENT **********/
/***************************/
/***************************/

/********** CUSTOM **********/

.event-title {
	text-transform: uppercase;
}
.event-dates {
	font-size:2em;
	text-transform: uppercase;
}
.event-dates i,
.event-location i {
	font-style:inherit;
}
.event-accessibility,
.event-tarif {
	text-transform: uppercase;
}
.event-location {
	text-transform: uppercase;
	/*color: var(--primary-color);*/
	color: var(--theme-color);
}

/** in single event **/

.sidebar .event-type {
	font-size:1em;
	text-transform: uppercase;
}

/** for single post **/

.related-links {
	gap:.5em;
}
.related-link {
	display:-webkit-inline-box;
	display:-webkit-inline-flex;
	display:-moz-inline-box;
	display:-ms-inline-flexbox;
	display:inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap:1em;
	font-size:calc(var(--body-font-size) * .75);
	text-align: left;
}
.related-link > * {
	margin:0;
}

/********** EVENT-ICONS **********/

.event-icons {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap:-webkit-calc(var(--global-spacing) / 2);
	gap:-moz-calc(var(--global-spacing) / 2);
	gap:calc(var(--global-spacing) / 2);
	font-size:1.25em;
}
.event-icons > * {
	-webkit-box-flex:1;
	-webkit-flex-grow:1;
	   -moz-box-flex:1;
	    -ms-flex-positive:1;
	        flex-grow:1;
	-webkit-flex-basis:0;
	    -ms-flex-preferred-size:0;
	        flex-basis:0;
	position:relative;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-webkit-flex-direction:column;
	   -moz-box-orient:vertical;
	   -moz-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	   -moz-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
	gap:-webkit-calc(var(--global-spacing) / 2);
	gap:-moz-calc(var(--global-spacing) / 2);
	gap:calc(var(--global-spacing) / 2);
	text-align:center;
	margin:0;
	cursor:pointer;
}
.event-icons .title {
	position:absolute;
	bottom:0;
	left:50%;
	font-size:.5em;
	line-height:1em;
	white-space: nowrap;
	opacity:0;
	pointer-events:none;
	-webkit-transform:translate3d(-50%,50%,0);
	   -moz-transform:translate3d(-50%,50%,0);
	        transform:translate3d(-50%,50%,0);
}
.event-icons > *:hover .title {
	opacity:1;
	-webkit-transform:translate3d(-50%,2em,0);
	   -moz-transform:translate3d(-50%,2em,0);
	        transform:translate3d(-50%,2em,0);
}

/********** POST-CONTENT **********/

.article.infos .description {
	text-transform:uppercase;
}
.article.infos .description:before {
	content:"";
	position:relative;
	display:block;
	height:var(--logo-line-height);
	width:var(--logo-line-width);
	margin:1em auto;
	-webkit-box-shadow:inset 0 0 0 1em;
	   -moz-box-shadow:inset 0 0 0 1em;
	        box-shadow:inset 0 0 0 1em;
}
.article.infos.short {
	max-width:-webkit-calc(var(--content-maxwidth) / 2);
	max-width:-moz-calc(var(--content-maxwidth) / 2);
	max-width:calc(var(--content-maxwidth) / 2);
	margin-left:auto;
	margin-right:auto;
}

/******************************/
/******************************/
/********** TIMELINE **********/
/******************************/
/******************************/

ul.timeline {
	position:relative;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:justify;
	-webkit-justify-content:space-between;
	   -moz-box-pack:justify;
	    -ms-flex-pack:justify;
	        justify-content:space-between;
	gap:1em;
	font-size:.75em;
	line-height:1em;
}
ul.timeline li {
	-webkit-box-flex:1;
	-webkit-flex-grow:1;
	   -moz-box-flex:1;
	    -ms-flex-positive:1;
	        flex-grow:1;
	-webkit-flex-basis:0;
	    -ms-flex-preferred-size:0;
	        flex-basis:0;
	position:relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-webkit-flex-direction:column;
	   -moz-box-orient:vertical;
	   -moz-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
	-webkit-box-align:center;
	-webkit-align-items:center;
	   -moz-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
	-webkit-box-pack:start;
	-webkit-justify-content:flex-start;
	   -moz-box-pack:start;
	    -ms-flex-pack:start;
	        justify-content:flex-start;
	gap:.5em;
	text-align:center;
	margin:0;
}
ul.timeline li:before {
	content:"";
	display:block;
	height:var(--logo-circle);
	width:var(--logo-circle);
	-webkit-box-shadow:inset 0 0 0 1em;
	   -moz-box-shadow:inset 0 0 0 1em;
	        box-shadow:inset 0 0 0 1em;
	-webkit-border-radius:50%;
	   -moz-border-radius:50%;
	        border-radius:50%;
}
ul.timeline li:not(:last-child):after {
	content:"";
	position:absolute;
	top:0;
	left:50%;
	display:block;
	height:var(--logo-line-height);
	width:-webkit-calc(100% + 1em);
	width:-moz-calc(100% + 1em);
	width:calc(100% + 1em);
	-webkit-box-shadow:inset 0 0 0 1em;
	   -moz-box-shadow:inset 0 0 0 1em;
	        box-shadow:inset 0 0 0 1em;
	-webkit-transform:translate(0,-webkit-calc(var(--logo-circle) / 2 - var(--logo-line-height) / 2));
	   -moz-transform:translate(0,-moz-calc(var(--logo-circle) / 2 - var(--logo-line-height) / 2));
	    -ms-transform:translate(0,calc(var(--logo-circle) / 2 - var(--logo-line-height) / 2));
	     -o-transform:translate(0,calc(var(--logo-circle) / 2 - var(--logo-line-height) / 2));
	        transform:translate(0,calc(var(--logo-circle) / 2 - var(--logo-line-height) / 2));
}

/*******************************/
/*******************************/
/********** THUMBNAIL **********/
/*******************************/
/*******************************/

/*
ratio 1/1 : 100% / 100% (focus, event) == default
ratio 2/3 : 100% / 150% (portrait)
ratio 16/9 : 160 / 90 (block front)
*/

.thumbnail {
	position:relative;
	width:100%;
	background:var(--light-color);
	aspect-ratio:1/1;
}
.thumbnail a:not(.post-icon),
.thumbnail video,
.thumbnail img {
	display:block;
	height:100%;
	width:100%;
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: inherit;
}

/* for :focus-visible */

.thumbnail a {
	/*color: var(--primary-color);*/
	color: var(--theme-color);
}
/*
body.alt .thumbnail a {
	color:var(--secondary-color);
}
*/

/********** POSITIONS **********/

.thumbnail.top-left img {
	-o-object-position: top left;
	   object-position: top left;
}
.thumbnail.top-center img {
	-o-object-position: top center;
	   object-position: top center;
}
.thumbnail.top-right img {
	-o-object-position: top right;
	   object-position: top right;
}
.thumbnail.center-left img {
	-o-object-position: center left;
	   object-position: center left;
}
.thumbnail.center-center img {
	-o-object-position: center center;
	   object-position: center center;
}
.thumbnail.center-right img {
	-o-object-position: center right;
	   object-position: center right;
}
.thumbnail.bottom-left img {
	-o-object-position: bottom left;
	   object-position: bottom left;
}
.thumbnail.bottom-center img {
	-o-object-position: bottom center;
	   object-position: bottom center;
}
.thumbnail.bottom-right img {
	-o-object-position: bottom right;
	   object-position: bottom right;
}

/********** EMPTY **********/

.thumbnail.empty:after {
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate3d(-50%,-50%,0);
	   -moz-transform:translate3d(-50%,-50%,0);
	        transform:translate3d(-50%,-50%,0);
	font-size:1em;
	line-height:1em;
	/* temp no font icon */
	height:2em;
	width:2em;
	background:url(../images/layout/oonr-icon.svg) no-repeat;
	opacity:.5;
}

/********** WITH ANCHOR **********/

.thumbnail a:before {
	content: '';
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	/*background: var(--primary-color);*/
	background: var(--theme-color);
	mix-blend-mode: screen;
	opacity: 0;
	pointer-events: none;
}
.thumbnail a:hover:before {
	opacity: 1;
}

/********** SIZES **********/

.thumbnail.small {
	max-height:3rem;
	max-width:3rem;
}

/****************************/
/****************************/
/********** IFRAME **********/
/****************************/
/****************************/

iframe {
	max-width:100%;
	border:none;
}
iframe.full {
	width:100%;
}
.iframe-container {
	position:relative;
	-webkit-background-size:cover !important;
	   -moz-background-size:cover !important;
	     -o-background-size:cover !important;
	        background-size:cover !important;
	background-position:center center !important;
	min-height:2rem;
	width:100%;
	padding:56.25% 0 0 0 !important;
	background:var(--light-color);
}
.iframe-container iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

/****************************/
/****************************/
/********** MEDIAS **********/
/****************************/
/****************************/

/*
.mediaplayer == default
.mediaplayer.youtube == for youtube video
> data-background == for background image / if none youtube default
> id == video id
.mediaplayer-container == for overlay max-width 1024px
*/

/********** RATIOS **********/

.aspect-ratio-1-1 {
	aspect-ratio:1/1;
}
.aspect-ratio-2-3 {
	aspect-ratio:2/3;
}
.aspect-ratio-16-9 {
	aspect-ratio:16/9;
}

/** containing .aspect-ratio-xxx **/

[class*="aspect-ratio-"] > *,
[class*="aspect-ratio-"] img {
	display:block;
	height:100%;
	width:100%;
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: inherit;
}

/********** MEDIAPLAYER **********/

.mediaplayer {
	position:relative;
	-webkit-background-size:cover !important;
	   -moz-background-size:cover !important;
	     -o-background-size:cover !important;
	        background-size:cover !important;
	background-position:center center !important;
	height:100%;
	width:100%;
	aspect-ratio: 16/9;
}
.mediaplayer.audio {
	aspect-ratio: 32/9;
}
.mediaplayer:after {
	content:"";
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	/*background:var(--light-color);*/
	background:var(--theme-color);
	opacity:.5;
}
.mediaplayer iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

/********** MEDIAPLAYER-CONTAINER **********/

.mediaplayer-container {
	position:relative;
	display:block;
	height:100%;
	width:100%;
	margin-right:auto;
	margin-left:auto;
	/* margin:0 auto; */
}

/********** MEDIAPLAYER BUTTON **********/

.mediaplayer-container .play-button {
	position:absolute;
	z-index:30;
	top:50%;
	left:50%;
	display:-webkit-inline-box;
	display:-webkit-inline-flex;
	display:-moz-inline-box;
	display:-ms-inline-flexbox;
	display:inline-flex;
	cursor:pointer;
	font-size:2.5em;
	line-height:1em;
	padding:1em;
	opacity:0;
	height:3em;
	width:3em;
	-webkit-transform:translate3d(-50%,-50%,0);
	   -moz-transform:translate3d(-50%,-50%,0);
	        transform:translate3d(-50%,-50%,0);
	pointer-events: none;
}
.mediaplayer-container .play-button:focus-visible,
.mediaplayer-container.is-ready .play-button,
.mediaplayer-container.is-loaded.is-paused .play-button,
.mediaplayer-container.is-loaded.is-playing .play-button.on {
	opacity:1;
}
.mediaplayer-container.is-loaded .play-button {
	pointer-events: all;
}

/********** HTML5 VIDEO **********/

video {
	display:block;
	height:auto;
	width:100%;
}
.mediaplayer.chrome video::-internal-media-controls-download-button {
	display:none;
}
.mediaplayer.chrome video::-webkit-media-controls-enclosure {
	overflow:hidden;
}
.mediaplayer.chrome video::-webkit-media-controls-panel {
	width:-webkit-calc(100% + 32px);
	width:calc(100% + 32px);
	margin-left:auto;
}

/********** VLITE **********/

/*
--vlite-colorPrimary	#ff7f15	Primary color
--vlite-transition	0.25s ease	Transition
--vlite-controlBarHeight	50px	Control bar height
--vlite-controlBarHorizontalPadding	10px	Control bar horizontal padding
--vlite-controlBarBackground	linear-gradient(to top, #000 -50%, transparent)	Control bar background
--vlite-controlsColor	#fff|#000	Controls color (video|audio)
--vlite-controlsOpacity	0.9	Controls opacity
--vlite-progressBarHeight	5px	Progress bar height
--vlite-progressBarBackground	rgba(0 0 0 / 25%)	Progress bar background
*/

.mediaplayer-container iframe,
.mediaplayer-container.is-loaded iframe {
	opacity:0;
}
.mediaplayer-container.is-loaded.is-playing iframe {
	opacity:1;
}
.mediaplayer-container .v-controlBar {
	z-index:10;
	background:none !important;
}
.mediaplayer-container:not(.is-loaded) .v-controlBar {
	opacity:0 !important;
	pointer-events:none;
}
.mediaplayer-container .v-controlBar:after {
	content:"";
	position:absolute;
	z-index:-1;
	inset:0;
	background:-webkit-gradient(linear,left bottom, left top,from(var(--dark-color)),to(transparent)) !important;
	background:-webkit-linear-gradient(bottom,var(--dark-color),transparent) !important;
	background:-moz-linear-gradient(bottom,var(--dark-color),transparent) !important;
	background:-o-linear-gradient(bottom,var(--dark-color),transparent) !important;
	background:linear-gradient(0deg,var(--dark-color),transparent) !important;
}
.mediaplayer-container.is-loaded.is-paused .v-controlBar:after {
	opacity:0;
}
.v-poster {
	opacity:.25 !important;
	pointer-events:none;
}
.v-vlite.v-video {
	background:var(--secondary-color) !important;
}
.v-iconPressed {
	margin:0;
}
.v-vlite {
	--vlite-colorPrimary: var(--bright-color) !important;
	--vlite-progressBarBackground: var(--secondary-color) !important;
}

/********** CONSENT **********/

.v-message {
	position: absolute;
	inset: 0;
	padding: 3em 0 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.mediaplayer-container.is-loaded .v-message {
	visibility: hidden;
}

/***************************/
/***************************/
/********** BLOCK **********/
/***************************/
/***************************/

/*
ratio 1/1 : 100% / 100%
.blocks > * == eg. in index
.block ???
*/

.blocks .post > *:not(h2),
.block.post > *:not(h2) {
	text-align: left;
}
.blocks .infos,
.block .infos {
	margin-top:2em;
}
.blocks .infos .read-more {
	display:block;
	margin-right: 0;
	margin-bottom:1em;
}
.blocks h2 {
	font-size:2em;
}

/********** BLOCK COLOR **********/

.blocks .page h2,
.block.page h2 {
	color:var(--dark-color);
}
.blocks .post .thumbnail a,
.block.post .thumbnail a,
.blocks .post h2,
.block.post h2 {
	color:var(--secondary-color);
}

/**********************************/
/**********************************/
/********** NOTIFICATION **********/
/**********************************/
/**********************************/
/* for cart */

.has-notification:after {
	content:"";
	position:absolute;
	bottom:0;
	right:0;
	display:block;
	font-style: normal;
	font-size:.75em;
	line-height:.75em;
	text-align:center;
	height:1em;
	width:1em;
	margin:0;
	-webkit-border-radius:50%;
	   -moz-border-radius:50%;
	        border-radius:50%;
	color:var(--bright-color);
	/*background:var(--primary-color);*/
	background: var(--theme-color);
	-webkit-transform:translate(-50%,-50%);
	   -moz-transform:translate(-50%,-50%);
	    -ms-transform:translate(-50%,-50%);
	     -o-transform:translate(-50%,-50%);
	        transform:translate(-50%,-50%);
	pointer-events:none;
}
body.alt .has-notification:after {
	background:var(--secondary-color);
}

/****************************/
/****************************/
/********** IFRAME **********/
/****************************/
/****************************/

iframe {
	max-width:100%;
	border:none;
}
iframe.full {
	width:100%;
}
.iframe-container {
	position:relative;
	-webkit-background-size:cover !important;
	   -moz-background-size:cover !important;
	     -o-background-size:cover !important;
	        background-size:cover !important;
	background-position:center center !important;
	min-height:2rem;
	width:100%;
	padding:56.25% 0 0 0 !important;
	background:rgb(245,245,245);
}
.iframe-container iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

/*******************************/
/*******************************/
/********** IMG / SVG **********/
/*******************************/
/*******************************/

/*
img
svg
picture
.background
*/

/********** IMG **********/

figure {
	display:block;
	height:auto;
	max-width:100%;
	margin:0;
	border:0;
	/*overflow:hidden;*/ /* for aspect-ratio */
}
img {
	display:block;
	height:auto;
	max-width:100%;
	margin:0 auto;
	border:0;
}
figure img {
	width:100%;
}

/********** IMG FULL **********/
/*
img.full {
	display:block;
	height:auto;
	width:100%;
	margin:0 auto;
}
*/
/********** IMG WITHIN TEXT **********/

.alignleft {
	float:left;
	margin:0 1rem 0 0;
}
.alignright {
	float:right;
	margin:0 0 0 1rem;
}
.aligncenter {
    display:block;
}
.alignleft:after,
.alignright:after,
.aligncenter:after {
	content:"";
    display:block;
    clear:both;
}

/********** SVG **********/

svg {
	display:block;
	-webkit-transform:translate3d(0,0,0);
	   -moz-transform:translate3d(0,0,0);
	        transform:translate3d(0,0,0);
	-webkit-backface-visibility:hidden;
	   -moz-backface-visibility:hidden;
	        backface-visibility:hidden;
}
figure > svg {
	display:block;
	height:100%;
	width:100%;
	margin:0 auto;
}

/** footer **/

.svg-icon-outline {
	fill:none;
	stroke:var(--dark-color);
	stroke-width:-webkit-calc(var(--logo-line-height) / 4);
	stroke-width:-moz-calc(var(--logo-line-height) / 4);
	stroke-width:calc(var(--logo-line-height) / 4);
}

/********************************/
/********************************/
/********** BACKGROUND **********/
/********************************/
/********************************/

.background-container {
	position:absolute;
	z-index:-1;
	top:0;
	left:-100%;
	right:-100%;
	height:100%;
	width:auto;
	overflow:hidden;
	padding:0 !important;
	margin:0 !important;
}
.background {
	position:absolute;
	z-index:-1;
	top:0;
	left:0;
	height:100%;
	width:100%;
	margin:0 !important;
	padding:0 !important;
	max-width:none;
	-webkit-background-size:cover !important;
	   -moz-background-size:cover !important;
	     -o-background-size:cover !important;
	        background-size:cover !important;
	background-repeat:no-repeat !important;
	background-position:center center !important;
}
.background.contain {
	-webkit-background-size:contain !important;
	   -moz-background-size:contain !important;
	     -o-background-size:contain !important;
	        background-size:contain !important;
	background-position:left !important;
}

/********** BACKGROUND CONTENT **********/

.background > *,
.background img {
	height:100%;
	width:100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.background.contain > *,
.background.contain img {
	-o-object-fit: contain;
	   object-fit: contain;
}

/********** BACKGROUND POSITIONS **********/

.bg-top-left {
	background-position:top left !important;
}
.bg-top-center {
	background-position:top center !important;
}
.bg-top-right {
	background-position:top right !important;
}
.bg-center-left {
	background-position:center left !important;
}
.bg-center-right {
	background-position:center right !important;
}
.bg-bottom-left {
	background-position:bottom left !important;
}
.bg-bottom-center {
	background-position:bottom center !important;
}
.bg-bottom-right {
	background-position:bottom right !important;
}

/*****************************/
/*****************************/
/********** GALLERY **********/
/*****************************/
/*****************************/

/* TODO !!! */

.gallery {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap:2em;
}
.gallery img {
	width:100%;
	max-width:none;
}
.gallery figcaption {
	font-size:.875em;
}
.gallery-toggle:hover img {
	opacity:.5;
}

/* grid for logos > partenaires */
/* cf. grid.css */

/***************************/
/***************************/
/********** ICONS **********/
/***************************/
/***************************/

.icon {
	display:-webkit-inline-box;
	display:-webkit-inline-flex;
	display:-moz-inline-box;
	display:-ms-inline-flexbox;
	display:inline-flex;
	width:100%;
	max-width:16rem;
	font-size:1em;
	line-height:1em;
	text-align:center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin:auto;
}
.icon.large {
	font-size:3em;
}
.icon svg {
	height:1em;
	width:1em;
}

/**************************/
/**************************/
/********** LOGO **********/
/**************************/
/**************************/

/* dark as default */

.logo {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	max-width:25rem;
	overflow:visible;
	margin:auto;
	fill:inherit;
}
.logo svg {
	height:100%;
	width:100%;
	fill:inherit;
}
.logo .logo-circles {
	fill:var(--dark-color);
}
.logo:hover .logo-circles {
	fill:var(--theme-color);
}

/********************************/
/********************************/
/********** RESPONSIVE **********/
/********************************/
/********************************/

/********** @MEDIA **********/

@media (min-width:760px) {
	.only-mobile {
		visibility:hidden;
		display:none !important;
	}
}
@media (max-width:760px) {
	.only-desktop {
		visibility:hidden;
		display:none !important;
	}
}

/*****************************/
/*****************************/
/********** ANCHORS **********/
/*****************************/
/*****************************/

/********** DEFAULT INLINE **********/

a {
	position:relative;
	font-size:inherit;
	line-height:inherit;
	color:inherit;
	outline:0;
	text-decoration:none;
}
p a,
li a {
	cursor:pointer;
	border-bottom:solid .0625rem;
}
p a:hover,
li a:hover {
	/*color:var(--primary-color);
	border-color:var(--primary-color);*/
	color: var(--theme-color);
	border-color: var(--theme-color);
}
/*
body.alt p a:hover,
body.alt li a:hover {
	color:var(--secondary-color);
	border-color:var(--secondary-color);
}
	*/
.post p a:hover {
	color:var(--dark-color);
	border-color:var(--dark-color);
}

/********** WITH ICONS **********/

a [class^="icon-"] + span,
a [class*=" icon-"] + span {
	margin:0 0 0 .5rem;
}
a span {
	display:inline-block;
	font-family:inherit;
	font-size:inherit;
	line-height:inherit;
	color:inherit;
}

/********** WITH LABELS **********/

a .label,
button .label {
	position:absolute !important;
	font-size:0 !important;
}

/********** MORE-LINK **********/

.more-link {
	position:absolute;
	z-index:10;
	top:0;
	left:0;
	height:100%;
	width:100%;
}

/********** BEHAVIOURS **********/

:focus {
	outline-color:transparent;
	outline-style:none;
}

/* cf. navigation.css > accessibility for focus-visible */

/********************************/
/********************************/
/********** COLUMNIZER **********/
/********************************/
/********************************/

/*
data-columns == 2 / 3 / 4
2 == default

cf. grid.css for mixing with grid
*/

/********** BEHAVIOURS **********/

.columnizer .break {
	-webkit-column-break-before:always;
	-moz-column-break-before:always;
	break-before:always;
	padding-top:0;
}

/********** SPACING **********/

.columnizer > * + * {
	padding:0;
	margin:0;
}
.columnizer > *:not(:last-child) {
	margin-bottom:var(--global-spacing);
}
.columnizer > li:not(:last-child),
.columnizer > ul li:not(:last-child),
.columnizer > ol li:not(:last-child) {
	margin:0;
}

/********** @MEDIA **********/

@media (min-width:760px) {
	.columnizer {
		-webkit-column-count:2;
		   -moz-column-count:2;
		        column-count:2;
		-webkit-column-gap:var(--gutter-gap);
		   -moz-column-gap:var(--gutter-gap);
		        column-gap:var(--gutter-gap);
	}
}
@media (min-width:1000px) {
	.columnizer[data-columns="3"] {
		-webkit-column-count:3;
		   -moz-column-count:3;
		        column-count:3;
	}
	.columnizer[data-columns="4"] {
		-webkit-column-count:4;
		   -moz-column-count:4;
		        column-count:4;
	}
}

/*****************************/
/*****************************/
/********** UL / OL **********/
/*****************************/
/*****************************/

ul,
ol {
	list-style-position:inside;
}
li {
	list-style-type: disc;
	list-style-type: '— ';
}

/********** OL **********/

ol {
	margin:0;
	list-style-type:none;
}
ol li {
	position:relative;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-webkit-align-items:center;
	   -moz-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
	counter-increment:step-counter;
	padding:.25rem 0 !important;
	text-align:left !important;
}
ol li:before {
	content:counter(step-counter);
	display:inline-block;
	text-align:center;
	border:solid .125rem;
	font-size:.75rem;
	line-height:.75rem;
	height:.75rem;
	width:.75rem;
	min-width:.75rem;
	padding:.375rem;
	margin:0 .5rem 0 0;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	border-radius:100%;
}

/********************************/
/********************************/
/********** GOOGLE MAP **********/
/********************************/
/********************************/

.gmap-container {
	position:relative;
	display:block;
	height:100%;
	width:100%;
	aspect-ratio:1/1;
}

/********** GMAP **********/

.gmap-container .gmap {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	opacity:1;
	-webkit-transform:translate3d(0,0,0);
	   -moz-transform:translate3d(0,0,0);
	        transform:translate3d(0,0,0);
}

/********** GMAP INFOWINDOW **********/

.gmap-container .gm-style-iw {
	font-size: 1em;
	padding:2em !important;
	max-width:16rem !important;
}
.gmap-container .gm-style-iw-d {
	max-height:none !important;
	overflow:hidden !important;
}
.gmap-container .gm-style-iw h3,
.gmap-container .gm-style-iw p,
.gmap-container .gm-style-iw a {
	display:block;
}
.gmap-container .gm-style-iw h3 + p,
.gmap-container .gm-style-iw p + a {
	margin-top:.5em;
}
.gmap-container button.gm-ui-hover-effect {
	top:0 !important;
	right:0 !important;
	height:1.5em !important;
	width:1.5em !important;
}
.gmap-container button.gm-ui-hover-effect span {
	margin:.25em !important;
	height:1em !important;
	width:1em !important;
}

/********** GMAP CONTROLS **********/

.gmap-controls {
	position:absolute;
	z-index:10;
	top:1em;
	right:1em;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap:1em;
}
.gmap-controls a {
	display:block;
	font-size:.75em;
	line-height:1em;
	padding:.675em;
	color:var(--bright-color);
	/*background:var(--primary-color);*/
	background: var(--theme-color);
	-webkit-border-radius:50%;
	   -moz-border-radius:50%;
	        border-radius:50%;
}
.gmap-controls a:hover {
	background:var(--dark-color);
}