/*
Theme Name: Com6 Bootstrap
Text Domain: com6-bs4
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
# Infinite scroll
# Media
	## Captions
	## Galleries
# Footer
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

html, body { 
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top;
  font-family: 'opensans', sans-serif;
}

body {
  min-height: 100vh;
  max-width: 1920px;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #333;
  background: url('/wp-content/themes/comsix-bootstrap/images/geometry.png');
  background-attachment: fixed;
}

/*--------------------------------------------------------------
# Colors COULEURS + variables
--------------------------------------------------------------*/

:root{
  --bright-blue-color: #009dde;
  --blue-color: #3a5386;
  --gray-blue-color: #5872a3;
  --dark-blue-color: #1f2b37;
  --green-color: #7ac141;
  --yellow-color: #f3a01f;
  --light-gray: #f2f2f2;
  --dark-gray: #373636;
  --black-color: #181818;
  --transition-eio: all .3s ease-in-out;
  --c6i-marge: calc(50% - 570px);
}

.has-text-color{
  color: var(--gray-blue-color);
}
.has-light-blue-color{
  color: var(--bright-blue-color);
}
.has-dark-blue-color{
  color: var(--dark-blue-color);
}
.has-green-color{
  color: var(--green-color);
}
.has-yellow-color{
  color: var(--yellow-color);
}
.has-white-color{
  color: var(--white-color);
}
.has-black-color{
  color: var(--black-color);
}

.has-text-background-color{
  background-color: var(--gray-blue-color);
}
.has-light-blue-background-color{
  background-color: var(--bright-blue-color);
}
.has-dark-blue-background-color{
  background-color: var(--dark-blue-color);
}
.has-green-background-color{
  background-color: var(--green-color);
}
.has-yellow-background-color{
  background-color: var(--yellow-color);
}
.has-white-background-color{
  background-color: var(--white-color);
}
.has-black-background-color{
  background-color: var(--black-color);
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
body {
  -webkit-font-smoothing: auto;
}

details,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

a { color: inherit;}

a:active,
a:hover {
	color: var(--bright-blue-color);
}

small {
  font-size: 80%;
}

svg:not(:root) {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

button {
	cursor: pointer;
	background-color: transparent;
	border-color: transparent;
	border-style: none;
}

.strong{
  font-weight: 700;
}

.btn { 
  border-radius: 0;
}

.bef-white-button{
  display: inline-block;
  padding: 7px 15px;
  color: var(--dark-blue-color);
  font-weight: 700;
  background-color: #fff;
  border: 2px solid var(--bright-blue-color);
  border-radius: 30px;
  box-shadow: 0px 3px 6px #aaa;
  transition: var(--transition-eio);
}

.bef-white-button span.icon-arrow-down:before{
  display: inline-block;
  margin-right: 10px;
  color: var(--bright-blue-color);
  transform: rotate(-90deg);
  transition: var(--transition-eio);
}

.bef-white-button:focus span.icon-arrow-down:before,
.bef-white-button:hover span.icon-arrow-down:before {
  color: #fff;
  transform: rotate(-90deg) translateY(5px);
}

.bef-white-button:focus,
.bef-white-button:hover{
  color: #fff !important;
  text-decoration: none;
  background-color: var(--bright-blue-color);
}

.full-link{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/*--------------------------------------------------------------
# CK Editor Style
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float: right;
  margin: 0.313rem 0 1.25rem 1.25rem;
}

a img.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.alignleft {
  float: left;
  margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignleft {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignright {
  margin: 0.313rem 0 1.25rem 1.25rem;
}

.wp-caption {
  position: relative;
}
.wp-caption p { margin: 0; }

.wp-caption img[class*="wp-image-"] {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
.wp-caption .wp-caption-dd,.wp-caption .wp-caption-text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba( 0, 0, 0, .5 );
  color: #fff;
  font-size: 11px;
  padding: .75em 1em;
  line-height: 1;
  font-style: italic;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  position: absolute !important;
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.sr-only:focus,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.fake-link {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

article .alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

article .alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

article .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

article img.alignleft, article .wp-caption.alignleft,
article img.alignright, article .wp-caption.alignright {
	float: none;
	display: inline-block;
	margin-bottom: 1.25rem;
}

article img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
  position: relative;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
  display: block;
}
.wp-caption .wp-caption-text {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba( 0, 0, 0, .8 );
  color: #fff;
  font-size: 11px;
  padding: .75em 1em;
  line-height: 1;
  font-style: italic;
}

@media screen and (min-width: 544px) {
	article img.alignright, article .wp-caption.alignright {
	  float: right;
	  margin: 0.313rem 0 1.25rem 1.25rem;
	}
	
	article img.alignnone {
	  margin: 0.313rem 1.25rem 1.25rem 0;
	}
	
	article img.alignleft, article .wp-caption.alignleft {
	  float: left;
	  margin: 0.313rem 1.25rem 1.25rem 0;
	}
	
	article .wp-caption.alignleft {
	  margin: 0.313rem 1.25rem 1.25rem 0;
	}
	
	article .wp-caption.alignright {
	  margin: 0.313rem 0 1.25rem 1.25rem;
	}

}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.site-header:before,
.site-header:after,
.site-footer:before,
.site-footer:after
 {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.site-header:after {
  clear: both;
}

hr,h2,h3,h4,h5,h6 {
	clear: both;
}

h1,h2,h3{
  font-family: 'allerdisplay';
  color: var(--bright-blue-color);
}

h4{
  text-transform: uppercase;
  color: var(--bright-blue-color);
}

/*--------------------------------------------------------------
# Styles particuliers
--------------------------------------------------------------*/
.acces:before {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAA7CAMAAAAkXtjkAAAALVBMVEXtay3////tayz84tfzn3b0poD1qIP5x6/97+f/+PT2tJPvfEXykWL62cnucTUFSUGFAAAAwUlEQVR4Ae3U0YqEMAyF4ZzUMWlaff/HXcso0pydy2Vg8b878F2JqfzvlOIe9D0ky1ZxV7dFCIlhVN5hZJJRYOTncowiob1iVF/vzrVPSDp+q09IF9grZ1gyWjUl64TMCI0GMrsQykdU8CW0xkcUK38CQqM/QV5yzggcI++74c727oziGBVXVVSDkak23DVVYwQLx52HIaNWwdU2I20b/eNbo7szuhZTQoGjco6Co2DUCuD9Oh4HSksoT3mewwelfgB9wxE6Hjx7GgAAAABJRU5ErkJggg==);
}
.geoloc:before {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAA7CAMAAAAkXtjkAAAALVBMVEXtay3tayz////++PXwfUb4wab60b3//v7yj1/ucTX839H1qob96+L2s5P0oHe/J/dNAAAA2klEQVR4Ae3Uy3KFIBAEUJThwQz6/58bu1IdN42VTbK4Za8UDjPAfaQ3/53tF/kUNM5SaznHAxpH3huSj7FC5vtP3DSySYFMk6hiLteImvFUFerXRJt21+wCFdSBgUKtItDkOFdMgbD45MuJ3gsUfAn0Fsh5Ip7UBTruE6XerudDIMNEjmsgBVo3W15my+4g4jJ5m1AIO4sPuFKxkELYFdNMo5TKjcrq+5Qs02TTCAmi2NYo+bfxpBDTG0zrzz+pwl0/oTH3fY41YkM2U4gpbPaExvjTP4wXvegLqKAKoT4m6qEAAAAASUVORK5CYII=);
}
.horaires:before {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAA7CAMAAAAkXtjkAAAAOVBMVEXtay385Nn1qYT5yrPubjH97ufwgUvtayz////+9vLxiVb61cPveT/3uZv4xazznHL50Lv728zylWhTcSDoAAAA50lEQVR4Ae3TYYuEIBDG8axR/5Np7X7/D3tWHGs7LfTm4Fh6XoTID7GZsfvuxAu50f9H8izO4115yickvec3vpdTFBw1Pi1psy6coFFBc9h9VtDRoKCQphWX9Tsl0PCGxEHZ1gP9tl/AyRH1kLrYoNgl6A9IFJ3iAcVJUWnRDDm+oZhhblGBYFCAoUUOHw2KHtci5XGCHmiLYHkh9WvqxgIfTsrs8d3rJHOnbtwzmTsN0PTT/J2pU42pk6l4jam46V2N6Z2ZghozBWaeasw8XZ7M6zNelxdeS43Mg1PUDbP82TO/0Y1+AK/xNNR5HluqAAAAAElFTkSuQmCC);
}
.liens:before {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAA7AgMAAABu7sBFAAAACVBMVEXtayz////udToKG6NjAAAANElEQVQoz2NYBQMMgxWwhoaGOuBmOTCI4mXBTMHKQpiCjQVTSoAVGoKHhd8RhEzG5/NBCADPiRsrdUfjbgAAAABJRU5ErkJggg==);
}
.contact:before {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAA7CAMAAAAkXtjkAAAANlBMVEXtay3yk2bveUD+9vPxi1n2spH85dvtayz////ucDP97uf4v6Pwf0n728z60r75xq7//PvznnQd2HSBAAAA5klEQVR4Ae3TSW7AIAwFUAYD38y5/2XrQpQuQLTLVs1f2cpTbAlQfzbhB3nRf0LGtUTfoMtCkviAlMaMPiCON8qjq3mHrtv40VH3vEFNQKvAJTU34+A2qAgyQY9PhMLR8oq8oNkrxwna4VpRHGhu50yvBu2ElLeq2OD9gpQVxLN0yAlG3PInPCg4kLi6QfYLNZgGLvG0k7ElxKhsWZF/kO5aIxHSHt3jMvueE2hFVVDO1X9C6i73ElbkBMWOOYRUgd4gwsw8Mi14g0K9FYWh1BaZOEyn4x03VYwXc0LCNKnf8IJf9KIPXq42CFOCr4sAAAAASUVORK5CYII=);
}

/* ---------------------------------- 
# PAGE D'ACCUEIL
-------------------------------------*/

.home .accueil-container{
  width: 87%;
  margin: 0 auto;
  padding: 30px 0;
}

.home #content{
  padding-bottom: 5px;
}

@media (max-width: 575px) {
  .home .accueil-container{
    width: 100%;
  }
}

/*--------------------------------------------------------------
# FLASH INFO
--------------------------------------------------------------*/
#flash-info-container {
  position: fixed;
  bottom: 0;
  z-index: 2;
}

.flash-info-wrapper {
  margin-bottom: 30px;
  font-family: 'opensans';
  color: #000;
  font-size: 1.8rem;
  text-transform: uppercase;
  background-color: #ebebeb;
}

.flash-info{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flash-info .flash-titre {
  width: 25%;
  margin: 0;
}

.flash-info .flash-titre div {
  padding: 10px 20px;
  font-family: 'opensans', sans-serif;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-transform: none;
  text-align: center;
  background-color: #3a5386;
}

.flash-info .flash-infos{
  width: 70%;
}

.flash-info .flash-button {
  width: 5%;
  margin-top: -4px;
  text-align: center;
}

.flash-info .icon-cancel {
  margin-left: 10px;
  color: #000;
  transition: var(--transition-eio);
  outline: none;
}

.flash-info .icon-cancel:focus,
.flash-info .icon-cancel:hover {
  color: red;
}

.jctkr-wrapper,
.jctkr-wrapper * {
  box-sizing: border-box;
}

.jctkr-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 35px;
  vertical-align: top;
  overflow: hidden;
}

.jctkr-wrapper ul {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  font-size: 0;
  text-align: left;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.jctkr-wrapper.jctkr-initialized ul {
  opacity: 1;
}

.jctkr-wrapper ul li {
  display: inline-block;
  padding: 0 25px;
  font-family: 'opensans';
  font-size: 1.6rem;
  line-height: 35px;
}

.jctkr-label {
  display: inline-block;
}

@media (max-width: 767px) {

  .flash-info .flash-titre div {
    font-size: 2rem;
  }

  .flash-info .icon-cancel{
    margin-left: -10px;
  }

}

@media (max-width: 575px) {

  .flash-info .flash-titre{
    width: 45%;
  }

}

/*--- HOME ACCUEIL ACTU ---*/

.home .actualites{
  position: relative;
}

.home-actu-wrapper{
  position: relative;
  box-shadow: 0 0 7px 3px #ccc;
}

.home-actu-txt{
  padding: 20px 20px 30px 20px;
}

.home-actu-wrapper h3{
  font-family: 'opensans', sans-serif;
  color: #000;
  font-size: 3rem;
  font-weight: 400;
}

.home-actu-wrapper .home-actu-link:focus,
.home-actu-wrapper .home-actu-link:hover{
  color: #000;
}

.home-actu-wrapper .slick-dots{
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

.home-actu-wrapper .slick-dots li{
  list-style-type: none;
}

.home-actu-wrapper .slick-dots li:before{
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px;
  border-radius: 16px;
  border: 1px solid #ccc;
}

.home-actu-wrapper .slick-dots li.slick-active:before{
  background: var(--bright-blue-color);
}

.home-actu-wrapper .slick-dots li button{
  display: none;
}

.home .actualites .archive-wrapper-button{
  position: absolute;
  bottom: 5px;
  right: 10px;
  background: #fff;
}

@media screen and (max-width: 991px) {
  
  .home .home-section{
    margin: 50px 0;
  }

}

@media screen and (max-width: 575px) {
  .home-actu-wrapper h3{
    font-size: 2.4rem;
  }
  .home .actualites .archive-wrapper-button {
    bottom: 15px;
  }

}

/*--- ACCES RAPIDE ---*/

.home .liste-1-clic{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 50px 0;
  padding: 0;
}

.home .liste-1-clic li{
  width: 20%;
  list-style-type: none;
}

.home .liste-1-clic li .clic-wrapper{
  margin: 10px;
}

.home .liste-1-clic li a{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ebebeb;
}

.home .liste-1-clic span.icone-clic{
    display: flex;
    align-items: center;
    height: 76px;
}

.home .liste-1-clic li:focus span.icone-clic,
.home .liste-1-clic li:hover span.icone-clic{
  opacity: 0.5;
}

.home .liste-1-clic span.intitule-clic{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 3px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--blue-color);
  transition: var(--transition-eio);
}

.home .liste-1-clic li:nth-child(odd) span.intitule-clic{
  background: var(--bright-blue-color);
}

.home .liste-1-clic li:focus a,
.home .liste-1-clic li:hover a{
  text-decoration: none;
}

@media screen and (max-width: 991px) {

  .home .liste-1-clic li{
    width: 33%;
  }

}

@media screen and (max-width: 767px) {

  .home .liste-1-clic li{
    width: 50%;
  }

}

@media screen and (max-width: 575px) {

  .home .liste-1-clic li{
    width: 100%;
  }

}

/*--- HOME ACCUEIL AGENDA ---*/

.home section.agenda-kiosque{
  display: flex;
}

.home .agenda-container{
  width: 48%;
  margin-right: 2%;
}

.home .agenda.home-section{
  min-height: 378px;
  padding: 15px;
  border: 5px solid #ebebeb;
}

.home .agenda.home-section h2{
  font-size: 3.3rem;
  color: #fff;
  text-transform: uppercase;
}

.home .agenda.home-section a{
  color: #fff;
  text-decoration: underline;
  text-shadow: 0 0 1px #000;
}

.home .agenda.home-section a:focus,
.home .agenda.home-section a:hover{
  text-decoration: none;
}

@media screen and (max-width: 991px) {

  .home section.agenda-kiosque{
    flex-direction: column;
  }

  .home .agenda-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .home .home-section{
    margin: 0;
  }

}

/*--- HOME ACCUEIL KIOSQUE ---*/

.home .kiosque-container{
  width: 50%;
  padding-left: 0;
  padding-right: 0;
}

.home .kiosque.home-section{
	position: relative;
  display: flex;
  margin-bottom: 35px;
  padding-top: 25px;
  background-color: var(--green-color);
}

.home .kiosque .kiosque-image{
  width: 131px;
  margin-right: 15px;
}

.home .kiosque .kiosque-infos{
  width: calc( 100% - 146px );
}

.home .kiosque .home-section-title{
  width: 100%;
  margin: -18px 0 40px 25px;
  font-size: 4.4rem;
  text-align: left;
  color: #fff;
}

.home .kiosque h3{
  position: absolute;
  top: 45px;
  right: -12px;
  width: 256px;
  height: 36px;
  margin: 20px 0 40px -12px;
  padding: 5px 0 0 15px;
  font-family: 'opensans', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  text-align: left;
  background: url(/wp-content/themes/comsix-bootstrap/images/sprites-2022.png) no-repeat -369px -368px;
}

.home .kiosque .kiosque-link{
  font-size: 1.3rem;
  margin: 5px 0 0 50px;
}

.home .kiosque .kiosque-link a,
.home .kiosque .kiosque-link i:before{
  color: #fff;
}

.home .kiosque .kiosque-link:last-child{
  margin: 15px 0 0 30px;
  color: var(--dark-blue-color);
}

.home .kiosque-container .buttons-section ul.gray-buttons{
  display: flex;
  justify-content: space-between;
  padding-left: 0;
}

.home .kiosque-container .buttons-section ul li{
  list-style-type: none;
  padding: 1px;
}

.home .kiosque-container .buttons-section ul li a{
  padding: 15px;
  font-family: 'allerdisplay';
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--blue-color);
  background: #d6d6d6;
}

.home .kiosque-container .buttons-section .orange-button{
  position: relative;
  height: 80px;
  margin-top: 34px;
  text-align: center;
  background-color: var(--yellow-color);
}

.home .kiosque-container .buttons-section .orange-button a{
  display: flex;
  justify-content: center;
  width: 100%;
}

.home .kiosque-container .buttons-section .orange-button a img{
  height: 80px;
}

@media screen and (max-width: 991px) {

  .home .kiosque-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 50px;
  }

  .home .kiosque.home-section {
    flex-direction: column;
    width: 100%;
    padding-bottom: 15px;
  }

}

@media screen and (max-width: 575px) {
  
  .home .kiosque .kiosque-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .home .kiosque .home-section-title{
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }

  .home .kiosque .kiosque-infos{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .home .kiosque h3{
    position: static;
    margin: 10px;
  }

  .home .kiosque .kiosque-link,
  .home .kiosque .kiosque-link:last-child{
    margin: 5px 0;
  }

  .home .kiosque-container .buttons-section{
    width: 100%;
  }

  .home .kiosque-container .buttons-section ul.gray-buttons {
    flex-direction: column;
    align-items: center;
  }

  .home .kiosque-container .buttons-section ul.gray-buttons li{
    margin: 15px 0;
  }

}

/*--- FIL ARIANE BREADCRUMBS ---*/

.breadcrumb{
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb span{
  font-size: 1.4rem;
}

.breadcrumb-item + .breadcrumb-item::before{
  content: "/";
}

/*--- PARTAGE SHARE -+-*/

.partage{
  display: flex;
  justify-content: flex-end;
}

.partage i:before,
.partage button:before{
  color: var(--dark-blue-color);
  font-size: 1.6rem;
  opacity: 0.5;
  transition: var(--transition-eio);
}

.partage a:focus i:before,
.partage a:hover i:before,
.partage button:focus i:before,
.partage button:hover i:before,
.partage button:focus:before,
.partage button:hover:before{
  color: var(--bright-blue-color);
  opacity: 1;
}


/*--------------------------------------------------------------
# CONTENT
--------------------------------------------------------------*/
#content { 
  min-height: 700px;
  padding-bottom: 50px;
  background: #fff;
}

#content .actu-date{
  margin: 15px;
}

.entry-content .post-thumb{
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

/*#content .central-content {
  padding-right: 7%;
}*/

#content .central-content.col-md-12{
	padding-right: 15px;
}

.entry-content a[target="_blank"]:after {
  content: '\00A0\f08e';
  font-family: "bef-icon";
}

.entry-content { 
  padding: 0 1em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4{
  font-family: 'opensans', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}

.entry-content h2 {
	font-size: 2.6rem;
	padding: 10px 0;
	line-height: 1.2em;
}
.entry-content h3 {
  font-size: 2.2rem;
  color: var(--bright-blue-color);
  margin-bottom: 1em;
}
.entry-content h4 {
  font-size: 1.8rem;
  color: var(--bright-blue-color);
  margin: 1em 0;
}

.entry-content * + h2,
.entry-content * + h3 {
  margin-top: 1em;
}

.entry-content p{
  font-size: 1.6rem;
  line-height: 1.5;
}

.entry-content p.text-align-center{
  text-align: center;
}

.entry-content p a {
  color: var(--bright-blue-color);
  text-decoration: underline;
  font-weight: 700;
  transition: var(--transition-eio);
}

.entry-content p a:focus,
.entry-content p a:hover{
  text-decoration: none;
  color: var(--brown-color);
}

.entry-content ol {
  counter-reset: li; /* Initiate a counter */
  /*list-style: none;*/ /* Remove default numbering */
  padding-left: 2em;
}
/*.entry-content ol li {
	counter-increment: li;
}
.entry-content ol li::before {
	/*content: counter(li);
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    margin-left: -1.5em;
    margin-right: 0.5em;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    color: red;
    direction: rtl;
}*/

.entry-content ol li::marker{
  color: var(--bright-blue-color);
  font-weight: 700;
}

.entry-content ul {
	list-style: none;
	margin-left: 3em;
	margin-top: .5em;
	margin-bottom: .5em;
  padding-left: 0; 
}

.entry-content li {
  position: relative;
}

.entry-content li:before { /* fa-caret-right */
    content: ' ';
    display: inline-block;
    margin-right: .5em;
    width: .5em;
    height: .5em;
    border-radius: 1em;
    background: var(--yellow-color);
}

.entry-content ol li::before{
  display: none;
}

.entry-content .wp-block-eedee-block-gutenslider{
  z-index: 0;
}

.entry-content .wp-block-eedee-block-gutenslider .eedee-gutenslider-nav svg #bg,
.entry-content .wp-block-eedee-block-gutenslider .eedee-gutenslider-nav svg .bg {
  fill: var(--bright-blue-color);
  /* background: var(--gutenslider-arrow-bg-color); */
}

.entry-content .wp-block-eedee-block-gutenslider .eedee-gutenslider-nav svg:hover #bg,
.entry-content .wp-block-eedee-block-gutenslider .eedee-gutenslider-nav svg:hover .bg{
  fill: var(--brown-color);
}

.entry-content .wp-block-eedee-block-gutenslider .eedee-gutenslider-nav,
.entry-content .wp-block-eedee-block-gutenslider .eedee-gutenslider-nav svg {
  height: 40px;
  width: 40px;
}

.entry-content .wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-prev {
  left: -20px;
}

.entry-content .wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-next{
  right: -20px;
}

.entry-content .wp-block-gallery figure:focus,
.entry-content .wp-block-gallery figure:hover{
  cursor: pointer;
}

.entry-content .wp-block-gallery img{
	display: inline-block !important;
  transition: var(--transition-eio);
}

.entry-content .wp-block-gallery figure:focus img,
.entry-content .wp-block-gallery figure:hover img{
  opacity: 0.75;
}

.entry-content .wp-block-media-text{
  margin: 30px 0;
}

.entry-content blockquote,
.entry-content .wp-block-pullquote {
  margin: 30px 0;
  padding: 10px 20px;
  line-height: 26px;
  font-size: 1.6rem;
  background-color: #f2f2f2;
  border-left: 5px solid #eee;
}

.entry-content blockquote p,
.entry-content .wp-block-pullquote p{
  font-size: 2rem;
}

.entry-content blockquote cite,
.entry-content .wp-block-pullquote cite{
  display: flex;
  justify-content: flex-end;
}

.entry-content a.wp-block-button__link{
  color: #fff;
  background-color: var(--gray-blue-color);
  border-radius: 0;
  transition: var(--transition-eio);
}

.entry-content a.wp-block-button__link:focus,
.entry-content a.wp-block-button__link:hover{
  color: #fff;
  background-color: var(--bright-blue-color);
}

.entry-content .wp-block-file:not(.wp-element-button){
  display: flex;
  justify-content: space-between;
  background-color: var(--light-gray);
}

.entry-content .wp-block-file a{
  display: inline-block;
  padding: 10px 15px;
  font-family: 'allerdisplay';
  font-size: 2.2rem;
}

.entry-content .wp-block-file a + a{
  font-size: 0;
  background-color: transparent;
}

.entry-content .wp-block-file a + a:before{
  content: "\f02e";
  font-family: 'bef-icon';
  font-size: 2rem;
  color: var(--bright-blue-color);
}

.entry-content .wp-block-embed__wrapper:before{
  padding-top: 0 !important;
}

@media screen and (max-width: 575px) {
  .entry-content{
    padding: 0;
  }
  .entry-content ul {
    margin-left: 1em;
  }
}

/*--- CONTENT FICHE AGENDA EVENEMENT ---*/

.single-evenement .agenda-cartouche{
  display: flex;
  justify-content: center;
}

.single-evenement .agenda-cartouche-wrapper{
  display: flex;
  align-items: center;
  margin: 30px 15px;
  padding: 15px;
  background-color: #fff;
}

.single-evenement .cartouche-gauche{
  margin-right: 15px;
}

.single-evenement .agenda-date{
  display: inline-block;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  padding: 20px;
  font-family: 'allerdisplay';
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  background: var(--green-color);
}

.single-evenement .agenda-cat{
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: var(--green-color);
}

.single-evenement .lieu-horaires {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10px 0;
  font-size: 1.4rem;
  color: var(--green-color);
}

.single-evenement .agenda-lieu:before,
.single-evenement .agenda-horaires:before {
  font-family: 'bef-icon';
  margin-right: 7px;
}

.single-evenement .agenda-lieu:before {
  content: "\e828";
}

.single-evenement .agenda-horaires:before {
  content: "\e825";
}

.single-evenement .agenda-thumbnail{
  position: relative;
}

.single-evenement .bandeau-tricolore {
  position: absolute;
  top: 0;
  left: 0;
  width: 65px !important;
  height: 65px !important;
}

.single-evenement .agenda-cartouche img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.single-evenement .agenda-loc{
  margin-top: 30px;
}

.single-evenement .agenda-loc .label{
  font-size: 1.8rem;
  font-weight: 700;
}

.single-evenement #single-map{
  margin-top: 15px;
  height: 500px;
}

@media screen and (max-width: 991px) {

  .single-evenement .agenda-date {
    font-size: 2rem;
  }

}

@media screen and (max-width: 767px) {

  .single-evenement .agenda-cartouche-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .single-evenement .cartouche-droite{
    margin-top: 10px;
  }

}

/*--- CONTENT FICHE ANNUAIRE ---*/

.single-annuaire #content .central-content{
  padding-right: 0;
}

.single-annuaire .entry-content .annuaire-infos{
	margin: 30px 0;
	padding: 15px;
	font-size: 1.4rem;
	background: #fff;
}

.single-annuaire .entry-content .annuaire-infos h2{
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 2rem;
	text-transform: none;
}

.single-annuaire .entry-content .annuaire-infos .annuaire-activite{
	font-style: italic;
}

.single-annuaire .entry-content .annuaire-infos .annuaire-cat{
	font-size: 1.2rem;
	color: var(--bright-blue-color);
}

.single-annuaire .entry-content .annuaire-infos .annuaire-adresse{
	display: flex;
	margin-top: 15px;
}

.single-annuaire .entry-content .annuaire-infos .annuaire-adresse i{
	margin-right: 5px;
	font-size: 2rem;
	color: var(--bright-blue-color);
}

.single-annuaire .entry-content .annuaire-infos .coord-col{
	margin-top: 15px;
	font-size: 1.4rem;
}

.single-annuaire .entry-content .annuaire-infos .coord-col > div{
	margin: 5px 0;
}

.single-annuaire .entry-content .annuaire-infos .coord-col i{
	margin-right: 5px;
	color: var(--bright-blue-color);
}

.single-annuaire .entry-content .annuaire-infos .coord-col .annuaire-mail{
	margin-bottom: 10px;
}

.single-annuaire .entry-content .annuaire-infos .coord-col .annuaire-mail a{
	color: var(--bright-blue-color);
}

.single-annuaire .entry-content .annuaire-infos .coord-col .annuaire-mail a:before{
	content: "\e82c";
	display: inline-block;
	margin-right: 7px;
	font-family: 'bef-icon';
}

.single-annuaire .entry-content .annuaire-infos .horaires-col{
	display: flex;
	align-items: center;
	margin-top: 15px;
	font-size: 1.4rem;
}

.single-annuaire .entry-content .annuaire-infos .horaires-col .annuaire-horaires{
	display: flex;
}

.single-annuaire .entry-content .annuaire-infos .horaires-col i{
	margin-right: 5px;
	color: var(--bright-blue-color);
}

.single-annuaire .entry-content .annuaire-url-ext a{
  color: var(--bright-blue-color);
  font-weight: 700;
  text-decoration: underline;
  transition: var(--transition-eio);
}

.single-annuaire .entry-content .annuaire-url-ext a:focus,
.single-annuaire .entry-content .annuaire-url-ext a:hover{
  color: var(--brown-color);
  text-decoration: none;
}

.single-annuaire .annuaire-loc{
  margin: 15px 0;
}

.single-annuaire .annuaire-loc .label{
  font-weight: 700;
}

.single-annuaire #single-map{
  height: 500px;
}

/*--- ACCORDEONS ---*/

.wp-block-pb-accordion-item{
  background-color: #fff;
}

.wp-block-pb-accordion-item h2.c-accordion__title{
  position: relative;
  padding: 15px;
  font-size: 2rem;
  background-color: var(--light-gray);
}

.wp-block-pb-accordion-item .c-accordion__title:after {
  content: "\e81a";
  position: absolute;
  top: 15px;
  margin-right: 15px;
  font-family: 'bef-icon';
  color: var(--bright-blue-color);
  transform: rotate(90deg);
  transition: var(--transition-eio);
}

.wp-block-pb-accordion-item.is-open > .c-accordion__title:after {
  transform: rotate(-90deg);
}

.wp-block-pb-accordion-item .c-accordion__content {
  padding: 15px 30px;
}

/* collapse shortcode */
.title-collapse {
	clear:both;
	border-bottom: 1px solid #ccc;
	padding: .25em;
}
a.btn-collapse {
	position: relative;
	display: block;
	padding-right: 2em;
	text-decoration: none;
}
a.btn-collapse:after {
	color: #ccc;
	position: absolute;
	right: 1em;
	content: '+';
	display: inline-block;
}
a.btn-collapse[aria-expanded=true]:after {
	content: '-';
}
.clear.collapse {
	margin-bottom: 1em;
}

/*--------------------------------------------------------------
## SIDEBAR
--------------------------------------------------------------*/

.sidebar-right{
  margin-top: 30px;
}

.sidebar-right .sidebar-block{
  margin-bottom: 30px;
  padding: 15px;
}

.sidebar-right .sidebar-block h2{
  margin-bottom: 15px;
  font-family: 'allerdisplay';
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--blue-color);
}

.sidebar-right .infos-pratiques.sidebar-block a{
  color: var(--green-color);
  font-weight: 700;
  text-decoration: underline;
  transition: var(--transition-eio);
}

.sidebar-right .lire-aussi ul{
  padding-left: 0;
}

.sidebar-right .lire-aussi ul li{
  padding: 7px 0;
  list-style-type: none;
  line-height: 1.2;
}

.sidebar-right .lire-aussi ul li:before{
    content: ' ';
    display: inline-block;
    margin-right: 0.5em;
    width: 0.5em;
    height: 0.5em;
    border-radius: 1em;
    background: var(--yellow-color);
}

.sidebar-right .lire-aussi ul li a{
  font-size: 1.4rem;
  color: #000;
  text-decoration: underline;
}

.sidebar-right .lire-aussi ul li a:focus,
.sidebar-right .lire-aussi ul li a:hover{
  text-decoration: none;
}

/*--------------------------------------------------------------
## ZC CONTACT FOOTER PAGE
--------------------------------------------------------------*/

.zc-contact{
  margin-top: 30px;
  padding: 0 1em;
}

.zc-contact h2{
  margin-bottom: 0;
  padding: 10px;
  font-family: 'opensans', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  background: var(--yellow-color);
}

.zc-contact h3{
  font-family: 'opensans', sans-serif;
  color: #333;
}

.zc-contact-infos{
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  font-size: 1.4rem;
  color: #000;
  background: var(--light-gray);
}

.zc-contact-infos .zc-contact-left,
.zc-contact-infos .zc-contact-right{
  width: 50%;
  padding: 10px;
}

.zc-contact-infos .zc-contact-adresse{
  margin-bottom: 20px;
}

.zc-contact-infos .zc-contact-horaires {
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  .zc-contact-infos{
    flex-direction: column;
  }

  .zc-contact-infos .zc-contact-left,
  .zc-contact-infos .zc-contact-right{
    width: 100%;
  }
}

/*--------------------------------------------------------------
## ARCHIVES MOTEURS
--------------------------------------------------------------*/

.archive h1.page-title{
  margin-top: 35px;
  padding-bottom: 20px;
  padding-left: 40px;
  border-bottom: 1px solid #eee;
}

.sf-wrapper{
  width: 100%;
  margin: 0 50px;
}

form.searchandfilter{
  width: 100%;
}

form.searchandfilter ul{
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}

#archive-results{
  margin: 0 45px;
}

#archive-results article.archive-result{
  position: relative;
  width: 100%;
  margin: 10px 0;
  padding: 5px;
  border: 5px solid #ebebeb;
}

#archive-results .archive-content {
  display: flex;
  /* flex-wrap: wrap; */
}

article.archive-result .article-thumbnail-wrapper {
  position: relative;
  width: 320px;
  min-width: 320px;
}

article.archive-result .article-cat {
  position: absolute;
  top: 0;
  left: 5px;
  width: 110px;
  height: 36px;
  margin: 20px 0 0 -22px;
  padding-top: 3px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  background: url(images/sprites-2022.png) no-repeat -236px -368px;
}

article.archive-result .article-thumbnail-wrapper img {
  width: 320px;
  height: 215px;
  object-fit: cover;
}

article.archive-result .article-thumbnail-wrapper .article-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

article.archive-result .article-infos {
  margin: 10px 30px;
}

article.archive-result .article-infos .article-title {
  margin-bottom: 7px;
  font-family: 'opensans';
  color: #373636;
  font-size: 2.6rem;
  font-weight: 700;
}

article.archive-result .article-infos a:focus,
article.archive-result .article-infos a:hover {
  color: #373636;
}

article.archive-result .article-infos .article-dates {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bright-blue-color);
}

article.archive-result .article-infos .article-dates span.date-deb,
article.archive-result .article-infos .article-dates span.date-fin{
  text-transform: capitalize;
}

article.archive-result .article-infos .article-excerpt {
  margin: 20px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #373636;
}

@media screen and (max-width: 767px) {
  article.archive-result .archive-content{
    display: flex;
    flex-direction: column;
  }
  article.archive-result .article-thumbnail-wrapper {
    position: relative;
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
  }
}

/*----- MOTEUR ARCHIVE ASSOCIATIONS --------------------------------*/

.post-type-archive-association .sf-field-taxonomy-type-association {
  display: none;
}

.post-type-archive-association .sports .sf-field-taxonomy-categorie-culture {
  display: none;
}

.post-type-archive-association .culture .sf-field-taxonomy-categorie-sports {
  display: none;
}

.post-type-archive-association .article-content{
  display: flex;
  justify-content: space-between;
}

.post-type-archive-association article.archive-result .article-infos{
  width: 100%;
  margin: 10px 10px 10px 20px;
}

.post-type-archive-association .article-infos .article-title {
  margin-top: 50px;
}

.post-type-archive-association article.archive-result .article-infos .article-excerpt{
  font-weight: 400;
}

.post-type-archive-association article.archive-result .article-texts{
  width: calc( 100% - 330px);
}

.post-type-archive-association article.archive-result .article-contact{
  margin-top: 50px;
  width: 300px;
  min-width: 300px;
  margin-left: 30px;
  padding: 15px 20px;
  font-size: 1.4rem;
  color: var(--bright-blue-color);
  background-color: var(--light-gray);
}

.post-type-archive-association article.archive-result .article-contact h3{
  margin-bottom: 15px;
  font-family: 'opensans';
  font-size: 1.4rem;
  font-weight: 700;
}

.post-type-archive-association article.archive-result .article-contact a:focus,
.post-type-archive-association article.archive-result .article-contact a:hover{
  color: var(--bright-blue-color);
}

.post-type-archive-association article.archive-result .article-contact .adresse-cp-ville-asso{
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {

  .post-type-archive-association .article-content{
    flex-direction: column;
    width: auto;
  }
  .post-type-archive-association article.archive-result .article-infos {
    margin: 10px;
  }
  .post-type-archive-association article.archive-result .article-texts{
    width: 100%;
  }
  .post-type-archive-association article.archive-result .article-contact{
    /*width: 100%;
    min-width: 0;*/
    margin: 0;
  }

}

@media screen and (max-width: 575px) {

  .archive h1.page-title{
    margin-left: 0;
  }

  .sf-wrapper {
      margin: 0 5px;
  }

  #archive-results {
    max-width: 100%;
    margin: 0 7px;
  }

  article.archive-result .article-infos .article-excerpt{
    max-width: 250px;
  }
  
  .post-type-archive-association article.archive-result .article-contact{
    min-width: auto;
    max-width: 250px;
  }
}

/*--- Agenda Sidebar ----*/

.sidebar-left .periode-list{
  padding-left: 0;
}

.sidebar-left .periode-list li{
  margin-bottom: 10px;
  list-style-type: none;
}

/*--- Agenda results ------*/

.post-type-archive-evenement #archive-results .archive-content{
  padding-bottom: 0;
}

.post-type-archive-evenement #archive-results .bandeau-tricolore{
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
}

.post-type-archive-evenement #archive-results .agenda-date{
    position: absolute;
    left: 15%;
    bottom: 0;
    width: 70%;
    padding: 3px;
    font-family: 'allerdisplay';
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    background-color: var(--green-color);
}

.post-type-archive-evenement #archive-results .article-cat{
  margin: 10px 0;
  font-size: 1.4rem;
  color: var(--green-color);
}

.post-type-archive-evenement #archive-results .agenda-lieu,
.post-type-archive-evenement #archive-results .agenda-horaires{
  font-size: 1.4rem;
  color: var(--green-color);
}

.post-type-archive-evenement #archive-results .agenda-lieu:before,
.post-type-archive-evenement #archive-results .agenda-horaires:before{
  font-family: 'bef-icon';
  margin-right: 7px;
}

.post-type-archive-evenement #archive-results .agenda-lieu:before{
  content: "\e828";
}

.post-type-archive-evenement #archive-results .agenda-horaires:before {
  content: "\e825";
}

.post-type-archive-evenement #archive-results .article-link:focus,
.post-type-archive-evenement #archive-results .article-link:hover{
  border: 5px solid var(--green-color);
}

/* ---------------------  MOTEUR ANNUAIRE -------------------*/

.post-type-archive-annuaire #archive-results .archive-content{
  background-color: #fff;
}

.post-type-archive-annuaire #archive-results h2.article-title {
  margin-bottom: 5px;
  font-size: 2.4rem;
}

.post-type-archive-annuaire #archive-results .article-cat{
  margin: 5px 0;
  font-size: 1.4rem;
  color: var(--bright-blue-color);
}

.post-type-archive-annuaire #archive-results .annuaire-activite{
  margin: 5px 0;
  font-style: italic;
}

.post-type-archive-annuaire #archive-results .annuaire-adresse-wrapper{
  display: flex;
  margin-top: 20px;
  font-size: 1.5rem;
  color: var(--bright-blue-color);
}

.post-type-archive-annuaire #archive-results .annuaire-adresse-wrapper:before{
  content: "\e828";
  display: inline-block;
  margin-right: 10px;
  font-family: 'bef-icon';
  font-size: 2.4rem;
}

.post-type-archive-annuaire #archive-results a.article-link{
  border: 0 solid transparent;
  transition: var(--transition-eio);
}

.post-type-archive-annuaire #archive-results a.article-link:focus,
.post-type-archive-annuaire #archive-results a.article-link:hover{
  border: 5px solid var(--bright-blue-color);
}

/* ---------------------  MOTEUR MEDIATHEQUE DOCUTHEQUE PHOTOS VIDEOS PUBLICATIONS -------------------*/

.post-type-archive-docutheque .header-image{
  border-bottom: 10px solid var(--brown-color);
}

.post-type-archive-docutheque .header-docutheque{
  width: 100%;
}

.post-type-archive-docutheque .header-docutheque h1.page-title:before{
  color: var(--brown-color);
}

.post-type-archive-docutheque .type-media-nav-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #fff;
  /* background-color: var(--bright-blue-color); */
}

.post-type-archive-docutheque .type-media-nav-wrapper.photos {
  background: url("/wp-content/uploads/2023/10/bandea-appareil-photo.png") center center no-repeat;
}

.post-type-archive-docutheque .type-media-nav-wrapper.videos {
  background: url("/wp-content/uploads/2023/10/sieges-spectacle.png") center center no-repeat;
}

.post-type-archive-docutheque .type-media-nav-wrapper.documents{
  background: url("/wp-content/uploads/2023/10/bandeau-livre-ouvert.png") center center no-repeat;
}

.post-type-archive-docutheque .type-media-nav-wrapper li{
  margin: 15px;
}

.post-type-archive-docutheque .type-media-nav-wrapper li a,
.post-type-archive-docutheque .type-media-nav-wrapper li span{
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 30px;
}

.post-type-archive-docutheque .type-media-nav-wrapper li a{
  color: #fff;
  background: #A9A9A9;
  border: 2px solid #A9A9A9;
  transition: var(--transition-eio);
}

.post-type-archive-docutheque .type-media-nav-wrapper li a:focus,
.post-type-archive-docutheque .type-media-nav-wrapper li a:hover{
  text-decoration: none;
  background: var(--brown-color);
  border: 2px solid var(--brown-color);
}

.post-type-archive-docutheque .type-media-nav-wrapper li span {
  color: var(--dark-blue-color);
  background: #fff;
  border: 2px solid var(--brown-color);
}

.post-type-archive-docutheque .type-media-nav-wrapper li a:after,
.post-type-archive-docutheque .type-media-nav-wrapper li span:after{
  display: inline-block;
  margin-left: 15px;
  font-family: 'bef-icon';
  font-weight: 400;
}

.post-type-archive-docutheque .type-media-nav-wrapper li a:after{
  color: #fff;
}

.post-type-archive-docutheque .type-media-nav-wrapper li span:after {
  
  color: var(--brown-color);
}

.post-type-archive-docutheque .type-media-nav-wrapper li.cat-item.galerie a:after,
.post-type-archive-docutheque .type-media-nav-wrapper li.cat-item.galerie span:after{
  content: "\e81f";
}

.post-type-archive-docutheque .type-media-nav-wrapper li.cat-item.videos a:after,
.post-type-archive-docutheque .type-media-nav-wrapper li.cat-item.videos span:after {
  content: "\e821";
}

.post-type-archive-docutheque .type-media-nav-wrapper li.cat-item.documents a:after,
.post-type-archive-docutheque .type-media-nav-wrapper li.cat-item.documents span:after {
  content: "\e82d";
}

.post-type-archive-docutheque article .article-thumbnail-wrapper .video-play{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.post-type-archive-docutheque article .article-thumbnail-wrapper .video-play:before{
  content: "\e814";
  font-family: 'bef-icon';
  font-size: 4rem;
  color: var(--bright-blue-color);
  text-shadow: 0 0 4px #000;
  transition: var(--transition-eio);
}

.post-type-archive-docutheque article .archive-content:focus .video-play:before,
.post-type-archive-docutheque article .archive-content:hover .video-play:before{
	color: var(--yellow-color);
}

.post-type-archive-docutheque article .archive-content.ac-documents{
  padding-bottom: 0;
}

.post-type-archive-docutheque article .article-thumbnail-wrapper.publi-wrapper{
  height: 368px;
}

.post-type-archive-docutheque article .publi-cat,
.post-type-archive-docutheque article .file-format {
  font-size: 1.2rem;
  color: var(--brown-color);
}

.post-type-archive-docutheque article .publi-consult {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.post-type-archive-docutheque article .publi-calameo a,
.post-type-archive-docutheque article .publi-link a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown-color);
}

.post-type-archive-docutheque article .publi-consult a:focus,
.post-type-archive-docutheque article .publi-consult a:hover {
  color: var(--brown-color);
  text-decoration: none;
}

.post-type-archive-docutheque article .publi-calameo a:before,
.post-type-archive-docutheque article .publi-link a:before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  font-family: 'bef-icon';
  font-size: 1.6rem;
  color: var(--brown-color);
  border: 1px solid #fff;
  border-radius: 32px;
  background-color: #fff;
  box-shadow: 0 3px 6px #aaa;
  transition: var(--transition-eio);
}

.post-type-archive-docutheque article .publi-calameo a:before {
  content: "\e82f";
}

.post-type-archive-docutheque article .publi-link a:before {
  content: "\e805";
}

.post-type-archive-docutheque article .publi-consult a:focus:before,
.post-type-archive-docutheque article .publi-consult a:hover:before {
  color: #fff;
  background-color: var(--brown-color);
}


.post-type-archive-docutheque article a.article-link:focus,
.post-type-archive-docutheque article a.article-link:hover{
  border: 5px solid var(--brown-color);
}

/* ---------- MOTEUR MEDIAS ADMINISTRATIF --------------*/

.post-type-archive-docutheque .archive-content.ac-administratif{
  padding-bottom: 0;
}

/* ---------- FORMULAIRES GRAVITY FORMS --------------*/

.gform_wrapper form{
  padding: 30px;
  border: 2px solid var(--bright-blue-color);
  /* border-radius: 20px; */
}

.gform_wrapper form input,
.gform_wrapper form select,
.gform_wrapper form textarea{
  border: 1px solid var(--bright-blue-color) !important;
  border-radius: 3px !important;
}

.gform_wrapper form .gfield_radio .gfield-choice-input{
  border-radius: 15px !important;
}

.gform_wrapper form .gform_footer{
  justify-content: flex-end;
}

.gform_wrapper form input[type="submit"]{
  display: flex !important;
  padding: 7px 15px !important;
  color: var(--dark-blue-color) !important;
  font-weight: 700 !important;
  background-color: #fff !important;
  border: 2px solid var(--bright-blue-color) !important;
  border-radius: 30px !important;
  box-shadow: 0px 3px 6px #aaa !important;
  transition: var(--transition-eio) !important;
}

.gform_wrapper form input[type="submit"]:focus,
.gform_wrapper form input[type="submit"]:hover{
  color: #fff !important;
  text-decoration: none !important;
  background-color: var(--bright-blue-color) !important;
}

@media screen and (max-width: 767px) {
  .gform_wrapper form input{
    width: 100% !important;
  }
}

/* ---------- FORMULAIRES SEARCH & FILTER --------------*/

.sf-wrapper{
  color: var(--dark-blue-color);
}

.sf-wrapper h4{
  display: inline-block;
  padding: 0;
  color: var(--blue-color);
  font-family: 'opensans';
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: none;
}

.sf-wrapper h4:after{
  content: ":";
  display: inline-block;
  margin: 0 5px;
}

.sf-wrapper .sf-field-category,
.sf-wrapper .sf-field-taxonomy-categorie-culture,
.sf-wrapper .sf-field-taxonomy-categorie-sports,
.sf-wrapper .sf-field-search{
  display: flex;
  align-items: center;
  height: 40px;
  margin-right: 10px;
  padding: 10px;
  background-color: var(--light-gray);
}

.sf-wrapper .sf-field-category select,
.sf-wrapper .sf-field-taxonomy-categorie-culture select,
.sf-wrapper .sf-field-taxonomy-categorie-sports select,
.sf-wrapper .sf-field-search input{
  color: var(--blue-color);
  font-size: 1.4rem;
  border: none;
  background: transparent;
  box-shadow: 0 0 1px #737373 inset;
}


.sf-wrapper input[type="text"],
.sf-wrapper .sf-datepicker{
  border: 1px solid #ddd;
}

.sf-wrapper .sfaccordion {
  position: relative;
  display: block;
  padding: 10px 30px 10px 10px;
  transition: var(--transition-eio);
}

.sf-wrapper .sfaccordion:focus,
.sf-wrapper .sfaccordion:hover{
  color: var(--bright-blue-color);
  background-color: var(--light-gray);
}

.sf-wrapper .sfaccordion::after {
  content: "\f107";
  position: absolute;
  right: 5px;
  top: 10px;
  font-family: "bef-icon";
  font-size: 2rem;
  color: var(--dark-blue-color);
  font-weight: 700;
  transition: var(--transition-eio);
}

.sf-wrapper .sfaccordion:focus::after,
.sf-wrapper .sfaccordion:hover::after {
  color: var(--bright-blue-color);
}

.sf-wrapper .sfaccordion[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.sf-wrapper .sfaccordion:hover,
.sf-wrapper .sfaccordion:focus {
  text-decoration: none;
}

.sf-wrapper .sf-label-radio,
.sf-wrapper .sf-label-checkbox{
  font-size: 1.4rem;
}

.sf-wrapper .sf_date_field li{
  margin-right: 10px;
}

.sf-wrapper .sf_date_field label{
  position: relative;
}

.sf-wrapper .sf_date_field label:after{
  content: "\e822";
  position: absolute;
  top: 5px;
  right: 15px;
  font-family: 'bef-icon';
  font-size: 2rem;
  color: var(--bright-blue-color);
}

.sf-wrapper .searchandfilter{
  position: relative;
}

.sf-wrapper li.sf-field-submit{
  display: inline-block;
}

.sf-wrapper li.sf-field-reset{
  display: inline-block;
  margin-left: 10px;
  /*font-size: 0;*/
}

.sf-wrapper li.sf-field-submit,
.sf-wrapper a.search-filter-reset{
  display: inline-block;
  padding: 7px 15px;
  background-color: var(--bright-blue-color);
  transition: var(--transition-eio);
}

.sf-wrapper li.sf-field-submit{
  position: absolute;
  right: 0;
}

.sf-wrapper input[type="submit"]{
  color: #fff;
  font-weight: 400;
  background-color: transparent;
  border: none;
}

.sf-wrapper li.sf-field-submit:focus,
.sf-wrapper li.sf-field-submit:hover,
.sf-wrapper a.search-filter-reset:focus,
.sf-wrapper a.search-filter-reset:hover{
  color: #fff;
  background-color: var(--dark-blue-color);
  cursor: pointer;
  text-decoration: none;
}

.sf-wrapper li.sf-field-submit:focus input[type="submit"],
.sf-wrapper li.sf-field-submit:hover input[type="submit"]{
  cursor: pointer;
  color: #fff;
}

/* .sf-wrapper li.sf-field-submit:before{
  content: "\e819";
  display: inline-block;
  margin-right: 5px;
  font-size: 1.4rem;
  font-family: 'bef-icon';
} */

.sf-wrapper a.search-filter-reset{
  padding: 7px 12px;
  font-size: 0;
}

.sf-wrapper .search-filter-reset:before{
  content: "\e830";
  display: inline-block;
  margin: 0;
  font-family: 'bef-icon';
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .sf-wrapper li.sf-field-submit{
    position: static;
    right: auto;
    margin: 15px 0;
  }
}

@media screen and (max-width: 767px) {
  
  #secondary form.searchandfilter{
    display: flex;
    justify-content: center;
  }

  .sf-wrapper .sfaccordion {
    position: relative;
    display: block;
    padding: 10px 30px 10px 10px;
    transition: var(--transition-eio);
    width: 210px;
  }

}

/* ---------------------  PAGINATION -------------------*/

.pagination{
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2rem 0;
  width: 100%;
}
.pagination .page-numbers {
  margin: 0 .5em;
  padding: .5em .8em;
  font-weight: 500;
  border-radius: 1.2em;
}

.pagination .current,
.pagination .page-numbers:focus,
.pagination .page-numbers:hover {
  color: #fff;
  background: var(--bright-blue-color);
}

.pagination .next,
.pagination .prev {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  border-radius: 40px;
  background: var(--bright-blue-color);
  transition: var(--transition-eio);
}

.pagination .prev {
  padding: 7px 6px 7px 5px;
}

.pagination .next {
  padding: 7px 5px 7px 6px;
}

.pagination .next:focus,
.pagination .next:hover,
.pagination .prev:focus,
.pagination .prev:hover{
  padding: 10px;
}

.pagination .prev:focus i:before,
.pagination .prev:hover i:before{
  padding-right: 10px;
  transform: scale(1.1);
}

.pagination .next:focus i:before,
.pagination .next:hover i:before{
  padding-left: 10px;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.site-content .entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.post.hentry {
  margin-bottom: 4rem;
}

.entry-title > a {
  color: inherit;
}



/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery-item {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	margin: 0 0 1.5em;
	padding: 0 1em 0 0;
	width: 50%;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus {
	box-shadow: none;
	background: none;
	display: inline-block;
	max-width: 100%;
}

.gallery-item a img {
	display: block;
	transition: filter 0.2s ease-in;
	backface-visibility: hidden;	
}

.gallery-item a:hover img,
.gallery-item a:focus img {
	filter: opacity(60%);
}

.gallery-caption {
	display: block;
	text-align: left;
	padding: 0 10px 0 0;
	margin-bottom: 0;
}

@media screen and (min-width: 480px) {
	.gallery-item {
		max-width: 25%;
	}

	.gallery-columns-1 .gallery-item {
		max-width: 100%;
	}

	.gallery-columns-2 .gallery-item {
		max-width: 50%;
	}

	.gallery-columns-3 .gallery-item {
		max-width: 33.33%;
	}

	.gallery-columns-4 .gallery-item {
		max-width: 25%;
	}
}

@media screen and (min-width: 768px) {
	.gallery-columns-5 .gallery-item {
		max-width: 20%;
	}

	.gallery-columns-6 .gallery-item {
		max-width: 16.66%;
	}

	.gallery-columns-7 .gallery-item {
		max-width: 14.28%;
	}

	.gallery-columns-8 .gallery-item {
		max-width: 12.5%;
	}

	.gallery-columns-9 .gallery-item {
		max-width: 11.11%;
	}
}

@media screen and (min-width: 1024px) {

}


/*--------------------------------------------------------------
## Navigation
--------------------------------------------------------------*/

.posts-navigation,
.post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.navigation.post-navigation {
  padding-top: 1.875rem;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  border: 1px solid #ddd;
  border-radius: 0.938rem;
  display: inline-block;
  padding: 0.313rem 0.875rem;
  text-decoration: none;
}

.post-navigation .nav-next a::after {
  content: " \2192";
}

.post-navigation .nav-previous a::before {
  content: "\2190 ";
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background: #eee none repeat scroll 0 0;
}

/*--------------------------------------------------------------
# ENTETE / MENU
--------------------------------------------------------------*/

/* header#page-header.fixe {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
} */

header#page-header{
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 110px;
  background: #fff;
}

header#page-header .site-title{
  position: absolute;
  top: 10px;
  left: 15px;
  display: flex;
  align-items: center;
}

header#page-header .navbar {
  position: static;
  padding: 0 7%;
}

header#page-header .header-rs{
  display: flex;
  align-items: center;
}

header ul#socialLink {
  list-style: none;
  text-indent: -5000px;
  width: 320px;
}

header ul#socialLink li {
  float: left;
}

header ul#socialLink li a {
  display: block;
  background: url(images/sprites-2022.png) no-repeat;
  width: 50px;
  height: 50px;
  margin-right: 8px;
}

header ul#socialLink li#linkedin a {
  background-position: -400px 0;
}

header ul#socialLink li#instagram a {
  background-position: -550px 0;
}

header ul#socialLink li#scoopit a {
  background-position: -300px -420px;
}

header ul#socialLink li#youtube a {
  background-position: -102px 0;
}

header#page-header ul.header-rs-list{
  display: flex;
  align-items: center;
  height: 100%;
}

header#page-header ul.header-rs-list li{
  list-style-type: none;
}

header#page-header ul.header-rs-list li a{
  display: inline-block;
  margin: 0 3px;
  font-size: 2.4rem;
  color: var(--yellow-color);
  transition: var(--transition-eio);
}

header#page-header ul.header-rs-list li a:focus,
header#page-header ul.header-rs-list li a:hover{
  color: var(--brown-color);
}

header#page-header .search-button-zone{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3%;
}

#header-search-button{
  color: var(--dark-blue-color);
  font-size: 2.6rem;
  outline: none;
}

.search-popup {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  background: rgba(24, 148, 218, 0.9);
  z-index: 10000;
}

.search-popup.open {
  display: flex;
}

.search-popup .search-form {
  width: 30%;
  font-size: 2rem;
}

.search-popup .search-form input {
  font-size: 2rem;
}

.search-popup .search-form .input-group-append {
  font-size: 2rem;
  background-color: var(--dark-blue-color);
  border: 2px solid var(--dark-blue-color);
  border-radius: 0 10px 10px 0;
  transition: var(--transition-eio);
}

.search-popup .search-form .input-group-append:focus,
.search-popup .search-form .input-group-append:hover {
  background-color: #fff;
}

.search-popup .search-form .input-group-append .icon-search:before {
  font-size: 2rem;
  color: #fff;
}

.search-popup .search-form .input-group-append:focus .icon-search:before,
.search-popup .search-form .input-group-append:hover .icon-search:before {
  color: var(--dark-blue-color);
}

.search-popup #close-popup-button {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  outline: none;
}

@media (max-width: 1439px) {

  .search-popup .search-form{
    width: 50%;
  }

}

@media (max-width: 767px) {
  .search-popup .search-form {
    width: 80%;
  }
}

/* header #menu-principal{
  display: flex;
  justify-content: space-around;
  background: var(--bright-blue-color);
} */

.menu-principal-wrapper{
  position: relative;
}

.menu-principal-wrapper:before {
  content: "";
  position: absolute;
  left: -30px;
  width: 30px;
  height: 82px;
  background: url(images/bg-header-left.jpg) no-repeat;
}

.menu-principal-wrapper:after {
  content: "";
  position: absolute;
  top: 0; 
  right: -30px;
  width: 30px;
  height: 82px;
  background: url(images/bg-header-right.jpg) no-repeat;
}

#mega-menu-wrap-primary #mega-menu-primary{
  position: relative;
  display: flex;
  justify-content: space-around;
  height: 50px;
  background-color: var(--bright-blue-color);
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator::after {
    content: "\f140";
}

/* #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item{
  display: flex;
  justify-content: center;
}
 */

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 2rem;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:active,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
  background-color: var(--bright-blue-color);
  transform: scale(1.05);
  border: 1px #9fa7c5 solid;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>.mega-sub-menu{
  margin-top: 10px;
  padding: 20px 0 !important;
  background-color: var(--bright-blue-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link{
  padding: 5px 10px;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: none;
  color: #fff;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:focus,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover{
  color: var(--light-black--color);
  background-color: #fff;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item{
  padding: 0 15px;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>ul{
  display: none !important;
}

@media screen and (max-width:991px) {

  #mega-menu-wrap-primary .mega-menu-toggle{
    height: 50px;
  }

  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left #mega-toggle-block-1{
    display: flex;
    align-items: center;
  }

  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner,
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner:before,
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner:after{
    background-color: #fff;
  }

  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child:after{
    content: "MENU";
    display: inline-block;
    margin-left: 7px;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
  }

  #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary{
    height: auto;
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:active,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
    transform: none;
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link{
    padding: 10px;
  }

}

/*--- ACCUEIL RUBRIQUE -------------------------*/

.accueil-rubrique ul.rubrique-wrapper{
  margin-top: 30px;
  margin-left: 0;
}

.accueil-rubrique ul.rubrique-wrapper li:before{
  display: none;
}

.accueil-rubrique ul.rubrique-wrapper li a{
  display: inline-block;
  width: 100%;
  margin: 0 15px 15px 0;
  padding: 10px 20px;
  color: var(--blue-color);
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
  background-color: #ebebeb;
  transition: var(--transition-eio);
}

.accueil-rubrique ul.rubrique-wrapper li a:focus,
.accueil-rubrique ul.rubrique-wrapper li a:hover{
  color: var(--bright-blue-color);
}

/*--- PARTAGER -------------------------*/

.shortcuts-share {
    position: fixed;
    top: 280px;
    right: 10px;
    width: 54px;
    z-index: 100000;
}
.shortcuts-share h2.share-title {
    width: 100%;
    padding: 3px 2px;
    margin-bottom: 5px;
    margin-top: 0;
    font-family: 'opensans', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    background-color: #34454d;
}
.shortcuts-share-wrapper{
  padding: 0;
}
.facebook-white,
.twitter-white,
.print-white,
.mail-white{
    background: url(images/sprites-2022.png);
    display: inline-block;
    background-repeat: no-repeat;
    text-indent: -9999px;
    vertical-align: middle;
}
.shortcuts-share-wrapper li{
  list-style-type: none;
}

.shortcuts-share-wrapper li.facebook-icon {
    background-color: #3b5998;
    cursor: pointer;
}
.shortcuts-share-wrapper li.twitter-icon {
    background-color: #000;
    cursor: pointer;
}
.shortcuts-share-wrapper li {
    height: 54px;
    width: 54px;
    margin-bottom: 5px;
    padding: 5px;
    background-color: #1f2b37;
}
.facebook-white {
    background-position: -12px -422px;
    width: 44px;
    height: 44px;
}
.twitter-white {
    background-position: -53px -2px;
    width: 44px;
    height: 44px;
}
.print-white {
    background-position: -147px -422px;
    width: 44px;
    height: 44px;
}
.mail-white {
    background-position: -213px -422px;
    width: 44px;
    height: 44px;
}

@media screen and (max-width:1439px) {

  header#page-header .navbar {
    padding: 0;
  }

  #menu-principal.navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  header#page-header ul.header-rs-list {
    padding: 10px;
  }

  header#page-header .search-button-zone {
    padding: 0 1%;
    padding-left: 0;
  }

}

@media screen and (max-width:991px) {

  header#page-header .navbar{
    display: none;
    position: absolute;
    /*left: calc(100% - 220px);*/
    padding: 0;
  }

  header#page-header .custom-logo-link{
    width: 200px;
  }

  .header-rs {
    display: flex;
    /* position: absolute; */
    height: 110px;
    padding: 0;
    /* left: calc(100% - 470px); */
  }

  header#page-header .search-button-zone {
    /* position: absolute; */
    height: 110px;
    padding: 0;
    /* left: calc(100% - 290px); */
  }

  .navbar-toggler{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    border-radius: 0;
    border: 3px solid var(--bright-blue-color);
    background: var(--bright-blue-color);
    transition: var(--transition-eio);
  }

  .navbar-toggler:focus,
  .navbar-toggler:hover{
    border: 3px solid #fff;
  }

  header#page-header .navbar-toggler .navbar-toggler-icon {
    display: none;
  }

  header#page-header .navbar-toggler.collapsed .navbar-toggler-icon{
    display: block;
    width: 44px;
    height: 4px;
    margin-bottom: 5px;
    border-radius: 4px;
    background: #fff;
    transition: var(--transition-eio);
  }

  header#page-header .navbar-toggler.collapsed:focus .navbar-toggler-icon,
  header#page-header .navbar-toggler.collapsed:hover .navbar-toggler-icon{
    transform: scale(1.2);
  }

  .navbar-toggler-txt{
    display: block;
    margin-top: 12px;
    font-size: 1.5rem;
    color: #fff;
  }

  header#page-header .navbar-toggler .icon-cancel{
    display: block;
    color: #fff;
    font-size: 5rem;
  }

  header#page-header .navbar-toggler.collapsed .icon-cancel{
    display: none;
  }

  .navbar-collapse.collapse.show{
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    color: #fff;
    background: #145173;
  }

  #menu-principal {
    display: flex;
    flex-direction: column !important;
  }

  #menu-principal button.nav-link{
    margin: 15px;
    font-size: 2.5rem;
    color: #fff;
  }

  #menu-principal .dropdown-toggle::after{
    margin-left: 18px;
  }

  .navbar-nav .dropdown-menu{
    padding: 25px;
    background: #145173;
  }

  /* #menu-principal .dropdown:focus,
  #menu-principal .dropdown:hover{
    opacity: 0.5;
  } */

  #menu-principal .dropdown.show .nav-link{
    color: #fff;
  }

  #menu-principal .dropdown.show .nav-link::before{
    display: none;
  }

  #menu-principal .list-menu {
    max-height: 400px;
    overflow: auto;
  }

}

@media screen and (max-width:767px) {
  
  header#page-header {
    display: flex;
    align-items: center;
  }

  header#page-header .site-title{
    position: static;
    display: block;
  }

  header ul#socialLink{
    width: 280px;
  }

}


@media screen and (max-width:575px) {

  header#page-header {
    flex-direction: column;
    height: auto;
    padding-top: 30px;
  }

  .header-rs {
    height: 80px;
  }

  .menu-principal-wrapper::before,
  .menu-principal-wrapper::after{
    display: none;
  }

  body .header-rs{
    display: none;
  }

  body.menu-open .header-rs{
    display: flex;
    position: fixed;
    top: 92px;
    left: 50%;
  }

  body header#page-header .search-button-zone{
    display: none;
  }

  body.mega-menu-primary-mobile-open header#page-header .search-button-zone {
    display: flex;
    position: absolute;
    top: 80px;
    right: 5px;
    z-index: 1000;
    /* left: 86%; */
  }

  header#page-header .search-button-zone .icon-search::before{
    color: #fff;
  }

  #menu-principal .dropdown .nav-link{
    font-size: 2rem;
  }

  #menu-principal .menu-title {
    font-size: 1.8rem;
  }

  .shortcuts-share{
    top: auto;
    bottom: 55px;
  }

}

.header-image{
  height: 250px;
  overflow: hidden;
  margin-bottom: 10px;
}

.header-image-default{
  height: 154px;
  overflow: hidden;
  background: url('/wp-content/themes/comsix-bootstrap/images/filigrane-bandeau-defaut.png') center center no-repeat var(--light-gray);
}

.header-image img{
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/*----------------------------------------- 
## PAGES
-------------------------------------------*/

.page-header { 
	margin-bottom: 20px;
}

.page-chapo {
	padding: 15px;
	position: relative;
}

.h1-wrapper{
  border-bottom: 1px solid #eee;
}

h1.page-title {
  position: relative;
  padding: 10px 15px;
  font-size: 4.4rem;
  font-weight: 500;
}

/* h1.page-title:before{
  content: "\e81e";
  position: absolute;
  top: -25px;
  left: -53px;
  font-family: 'bef-icon';
  font-size: 6rem;
  color: var(--bright-blue-color);
} */

@media screen and (max-width:767px) {
  
  h1.page-title {
    font-size: 3rem;
  }

}

.up-thumbnail {
    position: absolute;
    bottom: 1px;
    left: 1.5rem;
    right: 1.5rem;
    background-color: rgba( 255,255,255,.9 );
	transition: all 400ms ease;
}
.up-thumbnail .article-title {
	font-size: 16px;
    font-weight: 700;
}
.up-thumbnail .article-content {
	padding: 1rem;;
}

.actualite:hover .up-thumbnail {
	background-color: rgba( 255,255,255,1 );
}

.page-footer {
	padding: 2em;
}

.page-footer ul { padding-left: 0; margin:0; list-style: none; }
.page-footer a { font-weight: 700; }

/************ SEARCH résultats de RECHERCHE ********************/

.search .page-header{
  margin-top: 50px;
}

.search .page-chapo{
  color: var(--dark-blue-color);
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.search .nb-results {
  margin-bottom: 20px;
  color: var(--dark-blue-color);
  font-size: 1.8rem;
  font-weight: 500;
}

.search .entry-post-type{
  font-size: 2rem;
  color: var(--gray-blue-color);
}

/* .search .entry-content h2 { 
  margin-bottom: .5em
} */

.search .entry-content{
  margin-bottom: 30px;
}

.search .entry-content .entry-title a{
  font-size: 2.4rem;
}

/* .search .entry-content h2 small {
  font-size: .5em; text-transform: uppercase;
} */

/*********** formulaire des archives *************/

.sidebar-left .widget-search h2.widget-title { color:#827435; }
.form-archive {
	background: #dadada;
	padding: 15px;
}

.form-archive .form-group {
	margin-bottom: 5px;
	position:relative;
}
.form-archive .form-control-label {
	color: #000;
    margin: 3px 0;
    font-weight: 700;
}

.form-archive .form-control {
    border: 0;
    border-radius: 0;
    background: #fff;
	padding: 0.5rem .75rem;
}

.form-archive .datepicker-button {
	border: 0;
	background: #fff;
}

.form-archive .form-submit {
	margin: 1rem 0;
}

.form-archive .btn-submit {
	font-weight: 700;
    color: #fff;
    font-size: 1.2em;
	background: #827435;
    padding: 5px;
    width: 100%;
}

.form-archive select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none; 
}
.form-archive select::-ms-expand {
     display: none;
}
.form-archive .select-classic .form-control,
.form-archive .select-date .form-control {
	padding-right: 2.5rem;
}
.form-archive .select-classic:before {
	content: '\f107';
    position: absolute;
    font: normal normal normal 14px/1 "bef-icon";
    font-weight: 700;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    bottom: 4px;
    right: 10px;
    padding-left: .5em;
	font-size: 2em;
}
.form-archive .select-date:after {
	content: '\e80b';
    position: absolute;
    font: normal normal normal 14px/1 "bef-icon";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    top: 50%;
    right: 5px;
    margin-top: -.5em;
}	


.form-archive .form-group.label { background: transparent; }

/* ---------  CARTE interactive -----------*/

.carte-interactive .col-droite {
  position: relative;
}

.carte-interactive .col-gauche {
  height: auto;
  position: relative;
}

.carte-interactive .search-cats-wrapper{
  display: none;
}

.carte-interactive .sf-wrapper{
	padding-bottom: 30px;
}

/*.carte-interactive .sf-level-0 ul.children{
	display: none;
}

.carte-interactive .sf-level-0 ul.children.open{
	display: block;
}*/

.carte-interactive .sf-field-submit {
  text-align: right;
}

.carte-interactive .vue-liste {
  transition: all 0.2s ease-in-out;
}

.carte-interactive .vue-liste:focus,
.carte-interactive .vue-liste:hover {
  background-color: var(--wp--preset--color--turbo-pale);
}

.carte-interactive .sf-field-submit input{
  padding: 0;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--wp--preset--color--noir);
  background-color: var(--wp--preset--color--turbo);
  border: none;
  border-radius: 2em;
  transition: all 0.2s ease-in-out;
}

.carte-interactive .sf-field-submit input:focus,
.carte-interactive .sf-field-submit input:hover{
  background-color: var(--wp--preset--color--turbo-pale);
}

.carte-interactive .searchandfilter ul li li{
	padding: 2px 0;
}

#carteInteractive {
  width: 100%;
  height: 80vh;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

@media screen and (min-width:768px){
  .carte-interactive .col-gauche {
    height: 100vh;
    overflow-y: scroll;
  }
  #carteInteractive {
    height: 100vh;
  }
}

@media screen and (max-width:767px) {

  .carte-interactive .sf-field-taxonomy-categories-cartannuaire > ul{
    height: 200px;
    padding: 0 15px;
    border: 1px solid var(--bright-blue-color);
    overflow: auto;
  }

  /* .carte-interactive .sf-field-taxonomy-categories-cartannuaire h4:after{
    content: "\f0dd";
    display: inline-block;
    margin-left: 10px;
    font-family: 'bef-icon';
    transition: var(--transition-eio);
  }

  .carte-interactive .sf-field-taxonomy-categories-cartannuaire.cats-open{
    height: auto;
  }

  .carte-interactive .sf-field-taxonomy-categories-cartannuaire.cats-open h4:after{
    transform: rotate(180deg);
  } */

}

.leaflet-popup-content-wrapper{
	border-radius: 0;
}

.leaflet-container a.leaflet-popup-close-button{
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--bright-blue-color);
}

.leaflet-popup-content .structure{
	font-family: 'opensans';
}

.leaflet-popup-content .structure h4{
	font-family: 'allerdisplay';
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--dark-blue-color);
}

.leaflet-popup-content .structure-cat{
	font-size: 1.2rem;
	color: var(--bright-blue-color);
}

.leaflet-popup-content .article-meta{
	position: relative;
	font-size: 1.4rem;
	color: var(--bright-blue-color);
}

.leaflet-popup-content .article-meta li{
	padding-left: 20px;
}

.leaflet-popup-content .article-meta:before{
	content: "\e828";
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'bef-icon';
	font-size: 1.8rem;
}

.leaflet-popup-content .article-contact a{
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--dark-blue-color);
}

.leaflet-popup-content .carte .article-contact{
	display: none;
}

/* --------------- PAGE SERVICES EN LIGNE -------------- */

.page-id-6099 .wp-block-pb-accordion-item{
  margin-top: 20px;
}

.page-id-6099 .portail-link{
  margin: 30px 0;
}

.page-id-6099 .portail-link a{
  display: inline-block;
  padding: 10px 10px 10px 70px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background: url('/wp-content/uploads/2025/04/portail-famille.png') left center no-repeat var(--yellow-color);
}

.page-id-6099 .portail-link a:focus,
.page-id-6099 .portail-link a:hover{
  text-decoration: underline;
}



/* --------------- PAGE CONSEIL MUNICIPAL -------------- */

.page-id-1612 .cm-video-une-wrapper,
.page-id-1612 .cm-video-une-txt{
	display: flex;
	justify-content: center;
	margin: 30px 0;
}

.page-id-1612 .cm-video-une-txt{
	flex-direction: column;
	align-items: center;
	font-family: 'allerdisplay';
	font-size: 2.4rem;
	font-weight: 700;
}

.page-id-1612 .cm-video-une-txt span{
	font-family: 'opensans';
	font-size: 1.6rem;
}

.page-id-1612 .cm-video-result{
	max-width: 350px;
  padding-bottom: 30px;
}

.page-id-1612 .cm-video-content{
	position: relative;
}

.page-id-1612 .cm-video-content .cm-video-thumbnail{
	position: relative;
  max-width: 350px;
}

.page-id-1612 .cm-video-content .cm-video-thumbnail .video-play{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.page-id-1612 .cm-video-content .cm-video-thumbnail .video-play:before{
  content: "\e814";
  font-family: 'bef-icon';
  font-size: 4rem;
  color: var(--bright-blue-color);
  text-shadow: 0 0 4px #000;
  transition: var(--transition-eio);
}

.page-id-1612 .cm-video-content:focus .video-play:before,
.page-id-1612 .cm-video-content:hover .video-play:before{
	color: var(--yellow-color);
}

.page-id-1612 .cm-video-content .cm-video-title{
	margin-top: 10px;
	font-size: 1.6rem;
	font-weight: 700;
}

.page-id-1612 .cm-video-link{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.page-id-1612 .cm-mediatheque-link{
  text-align: center;
  font-weight: 700;
}

.page-id-1612 .cm-mediatheque-link a{
  color: var(--bright-blue-color);
  text-decoration: underline;
  transition: var(--transition-eio);
}

.page-id-1612 .cm-mediatheque-link a:focus,
.page-id-1612 .cm-mediatheque-link a:hover{
  color: var(--brown-color);
  text-decoration: none;
}

@media (max-width: 767px) {
  .page-id-1612 .cm-videos-results{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-id-1612 .cm-video-content .cm-video-title{
    text-align: center;
  }

}

/*---- PAGE GALERIE PHOTOS DOCUTHEQUE -------*/

/*-------------- FICHE ALBUM PHOTO -----------------------------*/

.single-docutheque .album-photo{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.single-docutheque .album-photo .photo-unique{
	flex: 0 0 32%;
	margin: 15px 0;
	padding: 0 1%;
}

.single-docutheque .album-photo .photo-unique img{
	object-fit: cover;
	width: 320px;
	height: 214px;
	overflow: hidden;
}

@media (max-width: 767px) {

	.single-docutheque .album-photo .photo-unique {
		flex: 0 0 48%;
	}

}

@media (max-width: 575px) {

	.single-docutheque .album-photo .photo-unique {
		display: flex;
		flex: 0 0 100%;
		width: 100%;
		justify-content: center;
	}

}

/* --------------- PLAN DU SITE -------------- */

.page-id-39 .central-content h2{
  font-size: 3rem;
  font-weight: 700;
}

.page-id-39 ul#sitemap{
  padding-left: 20px;
}

.page-id-39 ul#sitemap li{
  list-style-type: none;
}

.page-id-39 #sitemap .dropdown-menu {
  display: block;
  position: relative;
  float: none;
  border: none;
  background-color: transparent;
}

.page-id-39 #sitemap .nav-item:before {
  display: none;
}

.page-id-39 #sitemap button {
  display: inline-block;
  outline: none;
  font-weight: 700;
}

.page-id-39 #sitemap button:focus,
.page-id-39 #sitemap button:hover {
  cursor: default;
}

.page-id-39 #sitemap button:after {
  display: none;
}

.page-id-39 #sitemap .dropdown-menu img,
.page-id-39 #sitemap .favorite-item,
.page-id-39 #sitemap .search-form {
  display: none;
}

.page-id-39 #sitemap .nav-link,
.page-id-39 #sitemap .dropdown-item {
  font-size: 2rem;
}

.page-id-39 #sitemap .dropdown-item:hover,
.page-id-39 #sitemap .dropdown-item:focus {
  background: none;
}

.page-id-39 #sitemap .nav-link {
  display: inline-block;
}

.page-id-39 #sitemap ul.dropdown-menu.level-0{
  padding-left: 40px;
}

.page-id-39 #sitemap ul.dropdown-menu.level-0 a{
  color: var(--bright-blue-color);
  text-decoration: underline;
  transition: var(--transition-eio);
}

.page-id-39 #sitemap ul.dropdown-menu.level-0 a:focus,
.page-id-39 #sitemap ul.dropdown-menu.level-0 a:hover{
  text-decoration: none;
  color: var(--brown-color);
}

.page-id-39 #sitemap ul.dropdown-menu.level-0 a.nav-link-2{
  font-size: 1.8rem;
}

/*---- PAGE NON TROUVEE 404 ----*/

.error404 h1.page-title{
  margin-top: 50px;
}

.error404 .entry-content .search-form{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px !important;
}

.error404 .entry-content .search-form .input-group{
  width: 50%;
}

.error404 .entry-content .search-form input{
  font-size: 1.8rem;
}

.error404 .entry-content .search-form .input-group-append i{
  font-size: 2rem;
  color: var(--dark-blue-color);
  transition: var(--transition-eio);

}

.error404 .entry-content .search-form .input-group-append:focus i,
.error404 .entry-content .search-form .input-group-append:hover i{
  color: var(--brown-color);
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/

.site-footer{
  position: relative;
  height: 299px;
  padding: 22px 0;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--dark-blue-color);
}

.site-footer:before{
  position: absolute;
  top: -21px;
  left: -30px;
  width: 30px;
  height: 320px;
  background: url(/wp-content/themes/comsix-bootstrap/images/bgFooterLeft.jpg) no-repeat;
}

.site-footer:after {
  position: absolute;
  top: -21px;
  right: -30px;
  width: 30px;
  height: 320px;
  background: url(/wp-content/themes/comsix-bootstrap/images/bgFooterRight.jpg) no-repeat;
}

.site-footer .widget_block h3{
  margin-bottom: 15px;
  font-family: 'opensans', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--bright-blue-color);
}

.site-footer .widget_block hr {
  border-top: 1px solid #3a5386;
  width: 80%;
  margin: 10px auto;
}

.site-footer .widget_block ul {
  padding-left: 0;
}

.site-footer .widget_block ul li{
  margin-bottom: 10px;
  list-style-type: none;
}

.site-footer .widget_block ul li a{
  color: var(--dark-blue-color);
  font-size: 1.4rem;
  font-weight: 700;
  transition: var(--transition-eio);
}

.site-footer .widget_block ul li a:focus,
.site-footer .widget_block ul li a:hover{
  color: var(--brown-color);
}

.site-footer .widget_block ul.rs-footer li a{
  display: flex;
  align-items: center;
}

.site-footer .widget_block ul.rs-footer li span:before{
  display: inline-block;
  margin-right: 10px;
  font-size: 3rem;
}

.site-footer .menu-footer{
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #181818;
}

.site-footer .menu-footer .nav-link{
  padding: 5px 20px;
  font-size: 1.4rem;
}

@media (max-width: 991px) {
  .site-footer{
    height: auto;
    padding-bottom: 50px;
  }
  .site-footer:before,
  .site-footer:after{
    display: none;
  }
}

@media (max-width: 767px) {

  .sidebar-footer > .container > .row{
    display: block;
    text-align: center;
  }

  .sidebar-footer > .container > .row section{
    margin-bottom: 50px;
  }

  .sidebar-footer > .container > .row section#block-2 img{
    width: 150px;
  }

  .site-footer .widget_block#block-5 ul {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .site-footer .widget_block#block-5 ul.rs-footer li{
    margin: 0 15px;
  }

  .site-footer .widget_block#block-5 ul.rs-footer li a {
    flex-direction: column;
  }

}

/* Navigation pied de page */

#scroll-to-top {
  display: none;
  padding: 10px 20px;
  position: fixed;
  bottom: 1em;
  right: 1em;
}

.home #scroll-to-top {
    bottom: 4em;
}

#scroll-to-top.fixe {
  display: block;
}

#scroll-to-top .icon-angle-up:before{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0 17px 3px 17px;
  font-size: 3rem;
  border-radius: 30px;
  background-color: var(--bright-blue-color);
  transition: var(--transition-eio);
}

#scroll-to-top:focus,
#scroll-to-top:hover{
  text-decoration: none;
}

#scroll-to-top:focus .icon-angle-up:before,
#scroll-to-top:hover .icon-angle-up:before{
  background-color: var(--brown-color);
}

@media (max-width: 575px) {
  #scroll-to-top {
    right: 0;
  }
}

/* caldera forms */
/* .caldera_forms_form .field_required { color: #A30000 !important }
.caldera-forms-conditional-field label {
    width: 100%;
}
.caldera_forms_form .help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}
.caldera_forms_form label{ font-weight: 500; } */