/*
#@0
#@1
#@2
#@3
#@4
#@5
#@6
#@7
#@8
#@9
#@10
#@11
#@12
#@13
#@14
#@15
*/
@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animated.fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.animated.faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
i {
  font-style: italic;
  font-weight: 250;
}
html {
  height: 100%;
}
body {
  color: #1d1d1d;
  background-color: #FAFAFA;
}
#spip-admin.spip-admin-block, #spip-admin.spip-admin-float {
  z-index: 1050;
}
@font-face {
  font-family: "robotoCBold";
  src: url('https://www.seinesaintdenis.fr/squelettes/fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf') format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "muli";
  src: url('https://www.seinesaintdenis.fr/squelettes/fonts/Muli/Muli-VariableFont_wght.ttf') format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "mulish";
  src: url('https://www.seinesaintdenis.fr/squelettes/fonts/Mulish/Mulish-VariableFont_wght.ttf') format("truetype");
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 18px;
}
body {
  background-color: white;
  font-family: "mulish", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #173D7F;
}
p {
  margin-bottom: 1em;
}
strong, .strong {
  font-family: mulish;
  font-weight: bold;
}
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  margin-bottom: 0.5em;
}
h1 {
  font-family: mulish, sans-serif, sans-serif;
  margin-top: 0;
  font-weight: 1000;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}
h1 span.surtitre {
  display: block;
  font-size: 0.5em;
  font-family: mulish;
  font-weight: normal;
  padding-bottom: 0.5em;
}
h2, h3, h4, h5 {
  font-family: mulish, sans-serif;
}
h2 {
  font-size: 2em;
}
@media screen and (max-width: 1025px) {
  h2 {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 1.3em;
  }
}
.bande h2, .bande h1 {
  font-size: 3.33em;
  display: inline-block;
  font-weight: 1000;
}
@media screen and (max-width: 1025px) {
  .bande h2, .bande h1 {
    font-size: 2em;
  }
}
@media screen and (max-width: 600px) {
  .bande h2, .bande h1 {
    font-size: 1.6em;
  }
}
.texte h2 {
  font-size: 1.66em;
  font-weight: 700;
}
@media screen and (max-width: 1025px) {
  .texte h2 {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 600px) {
  .texte h2 {
    font-size: 1.2em;
  }
}
h3 {
  font-size: 1.3em;
  font-weight: 1000;
  line-height: 1;
}
@media screen and (max-width: 1025px) {
  h3 {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 1rem;
  }
}
h3.spip {
  margin-top: 30px;
  margin-bottom: 15px;
}
h4 {
  font-size: 1.563em;
  font-weight: 600;
}
@media screen and (max-width: 1025px) {
  h4 {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 600px) {
  h4 {
    font-size: 1rem;
  }
}
h5 {
  font-size: 1.25em;
  font-weight: 600;
}
.roboto {
  font-family: mulish, sans-serif;
}
.geant {
  font-size-adjust: 0.85;
  line-height: normal;
}
.typo_taille1 {
  font-size: 1.563em;
}
.typo_taille2 {
  font-size: 1.953em;
}
@media screen and (max-width: 1025px) {
  .typo_taille2 {
    font-size: 1.3em;
  }
}
.typo_taille3 {
  font-size: 2.441em;
}
@media screen and (max-width: 600px) {
  .typo_taille3 {
    font-size: 1.6em;
  }
}
.typo_taille4 {
  font-size: 3.7em;
}
.typo_titre {
  font-family: mulish, sans-serif;
}
small, .text_small {
  font-size: 0.75em;
}
.em {
  font-style: italic;
}
em.highligth {
  background-color: #E6E6E6;
  border: 1px solid #E6E6E6;
  border-top: none;
  border-left: none;
}
.bold900 {
  font-weight: 900;
}
.bold800 {
  font-weight: 800;
}
.bold700 {
  font-weight: 700;
}
.bold600 {
  font-weight: 600;
}
.capital {
  text-transform: uppercase;
}
@font-face {
  font-family: "fontello";
  src: url('https://www.seinesaintdenis.fr/squelettes/fonts/icons/fontello.eot?72624533');
  src: url('https://www.seinesaintdenis.fr/squelettes/fonts/icons/fontello.eot?72624533#iefix') format("embedded-opentype"), url('https://www.seinesaintdenis.fr/squelettes/fonts/icons/fontello.woff2?72624533') format("woff2"), url('https://www.seinesaintdenis.fr/squelettes/fonts/icons/fontello.woff?72624533') format("woff"), url('https://www.seinesaintdenis.fr/squelettes/fonts/icons/fontello.ttf?72624533') format("truetype"), url('https://www.seinesaintdenis.fr/squelettes/fonts/icons/fontello.svg?72624533#fontello') format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('https://www.seinesaintdenis.fr/squelettes/font/fontello.svg?72941032#fontello') format('svg');
    font-display: swap;
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-search:before {
  content: "!";
}
/* '!' */
.icon-star-1:before {
  content: '"';
}
/* '&quot;' */
.icon-youtube:before {
  content: "#";
}
/* '#' */
.icon-linkedin-rect:before {
  content: "$";
}
/* '$' */
.icon-facebook-rect:before {
  content: "%";
}
/* '%' */
.icon-twitter-bird:before {
  content: "&";
}
/* '&amp;' */
.icon-star-2:before {
  content: "'";
}
/* ''' */
.icon-right-open:before {
  content: "(";
}
/* '(' */
.icon--presse-card:before {
  content: ")";
}
/* ')' */
.icon-agenda-card:before {
  content: "*";
}
/* '*' */
.icon-fb:before {
  content: "+";
}
/* '+' */
.icon-insta:before {
  content: ",";
}
/* ',' */
.icon-lieu-acceuil-card:before {
  content: "-";
}
/* '-' */
.icon-tweeter:before {
  content: ".";
}
/* '.' */
.icon-youtube-1:before {
  content: "/";
}
/* '/' */
.icon-menu:before {
  content: "0";
  line-height: 60px;
}
/* '0' */
.icon-star-empty:before {
  content: "1";
}
/* '1' */
.icon-mail-alt:before {
  content: "2";
}
/* '2' */
.icon-mail-1:before {
  content: "3";
}
/* '3' */
.icon-mail:before {
  content: "";
}
/* '' */
.icon-home:before {
  content: "";
}
/* '' */
.icon-food:before {
  content: "";
}
/* '' */
.icon-truck:before {
  content: "";
}
/* '' */
.icon-star:before {
  content: "";
}
/* '' */
.icon-photo:before {
  content: "";
}
/* '' */
.icon-camera:before {
  content: "";
}
/* '' */
.icon-thumbs-up:before {
  content: "";
}
/* '' */
.icon-location:before {
  content: "";
}
/* '' */
.icon-lightbulb:before {
  content: "";
}
/* '' */
.icon-shop:before {
  content: "";
}
/* '' */
.icon-fleche:before {
  content: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJhcnJvdy11cCIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWFycm93LXVwIGZhLXctMTQiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNDQ4IDUxMiI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMzQuOSAyODkuNWwtMjIuMi0yMi4yYy05LjQtOS40LTkuNC0yNC42IDAtMzMuOUwyMDcgMzljOS40LTkuNCAyNC42LTkuNCAzMy45IDBsMTk0LjMgMTk0LjNjOS40IDkuNCA5LjQgMjQuNiAwIDMzLjlMNDEzIDI4OS40Yy05LjUgOS41LTI1IDkuMy0zNC4zLS40TDI2NCAxNjguNlY0NTZjMCAxMy4zLTEwLjcgMjQtMjQgMjRoLTMyYy0xMy4zIDAtMjQtMTAuNy0yNC0yNFYxNjguNkw2OS4yIDI4OS4xYy05LjMgOS44LTI0LjggMTAtMzQuMy40eiI+PC9wYXRoPjwvc3ZnPg==");
  position: absolute;
  top: 17px;
  left: 11px;
  color: #FAFAFA;
}
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#app {
  flex: 1 0 auto;
}
@media screen and (max-width: 1025px) {
  aside {
    grid-column-end: span 2;
  }
}
.max_largeur {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 1025px) {
  .max_largeur {
    padding: 0 15px;
  }
}
@media screen and (max-width: 600px) {
  .max_largeur {
    padding: 0 0;
    margin: 0 15px;
  }
}
.max_largeur.left {
  margin: 0 0;
}
.ligne1 {
  display: grid;
  max-width: 700px;
  grid-gap: 30px;
}
@media screen and (max-width: 600px) {
  .ligne1 {
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(1fr));
  }
}
.ligne2 {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media screen and (max-width: 600px) {
  .ligne2 {
    grid-gap: 15px;
    grid-template-columns: 1fr;
  }
}
.ligne3, .ligne0 {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media screen and (max-width: 600px) {
  .ligne3, .ligne0 {
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(1fr));
  }
}
.ligne4 {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media screen and (max-width: 600px) {
  .ligne4 {
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(1fr));
  }
}
.ligne2-1 {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 2fr 1fr;
}
@media screen and (max-width: 1025px) {
  .ligne2-1 {
    grid-template-columns: 1fr;
  }
}
.ligne-span2 {
  grid-column-end: span 2;
}
@media screen and (max-width: 370) {
  .ligne-span2 {
    margin-right: 7.5px;
  }
}
.ligne-span3 {
  grid-column-end: span 3;
}
.bloc-flex {
  display: flex;
}
.flex-dir-col {
  flex-direction: column;
}
.flex-dir-row {
  flex-direction: row;
}
.flex-justify-between {
  justify-content: space-between;
}
.flex-justify {
  justify-content: space-around;
}
.flex-centrerH {
  display: flex;
  align-items: center;
}
.etirer_hauteur {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.marginH_menu {
  margin-top: 0px;
}
.marginG {
  margin-left: 30px;
}
.marginD {
  margin-right: 30px;
}
.marginH {
  margin-top: 30px;
}
.marginB {
  margin-bottom: 30px;
}
.margG {
  margin-left: 7.5px;
}
.margD {
  margin-right: 7.5px;
}
.margH {
  margin-top: 7.5px;
}
.margB {
  margin-bottom: 7.5px;
}
.marg {
  margin: 7.5px;
}
.paddingG {
  padding-left: 30px;
}
@media screen and (max-width: 600px) {
  .paddingG {
    padding-left: 15px;
  }
}
.paddingD {
  padding-right: 30px;
}
@media screen and (max-width: 600px) {
  .paddingD {
    padding-right: 15px;
  }
}
.paddingH {
  padding-top: 30px;
}
.paddingHx2 {
  padding-top: 60px;
}
.paddingB {
  padding-bottom: 30px;
}
.padG {
  padding-left: 15px;
}
.padD {
  padding-right: 15px;
}
.padH {
  padding-top: 15px;
}
.padB {
  padding-bottom: 15px;
}
.padBmin {
  padding-bottom: 7.5px;
}
.pad {
  padding: 15px;
}
.width100 {
  width: 100%;
}
.width60 {
  width: 60%;
}
.width30 {
  width: 30%;
}
.height100 {
  height: 100%;
}
.marge0 {
  margin: 0;
}
.inline {
  display: inline-block;
}
.center_l {
  margin: auto;
  align-items: center;
}
.centrer_h_l {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.centrer_h {
  display: flex;
  align-items: center;
}
.text-center {
  text-align: center;
}
.p_relative {
  position: relative;
}
.p_absolute {
  position: absolute;
}
.fixe_hover {
  position: absolute;
  z-index: 1010;
}
.fixe {
  position: fixed;
}
.zindex2 {
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .mobile {
    display: none;
  }
}
div.direct a {
  display: inline-block;
  position: absolute;
  left: -467em;
  z-index: 1020;
  height: 0;
}
div.direct a:focus {
  position: relative;
  left: 0.8em;
  background-color: #FAFAFA;
  color: #003a78;
  top: 0.6em;
  min-height: 2em;
}
@media screen and (min-width: 600px) {
  div.direct a:focus {
    left: 10em;
  }
}
a {
  color: #173D7F;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
a.block {
  display: block;
  height: 100%;
}
button {
  padding: 7.5px 15px;
  border: 1px solid #173D7F;
  font-family: mulish;
  background-color: #173D7F;
  color: #FAFAFA;
  font-size: 1em;
}
button:hover {
  cursor: pointer;
  border: 1px solid #1d1d1d;
}
button.actif {
  background-color: #f15a24;
  color: #FAFAFA;
  border: 1px solid #f15a24;
}
#change_tour button {
  background-color: #FAFAFA;
  color: #173D7F;
}
#change_tour button:hover, #change_tour button.actif {
  background-color: #173D7F;
  color: #FAFAFA;
}
.bouton {
  padding: 7.5px 15px;
  font-family: mulish;
  background-color: #173D7F;
  color: #FAFAFA;
  font-size: 1em;
}
.bouton_rond {
  border: 1px solid #173D7F;
  border-radius: 20px;
  padding: 5px 15px;
  display: inline-block;
  margin: 0 7.5px;
  font-size: 0.8em;
}
.bouton_rond:hover {
  color: #FAFAFA;
  background-color: #173D7F;
}
.menu_burger {
  position: fixed;
  z-index: 1051;
  right: 0;
  top: 0;
  padding: 15px;
}
@media screen and (max-width: 1025px) {
  .menu_burger {
    padding: 7.5px;
  }
}
.menu_burger svg {
  display: inline-block;
  margin-bottom: 5px;
}
@media screen and (max-width: 1025px) {
  .menu_burger svg {
    width: 20px;
  }
}
.menu_burger svg:last-child {
  margin-bottom: 0;
}
#le_menu_burger {
  z-index: 1050;
  right: 0;
}
#autocomplete {
  background-color: #FAFAFA;
  text-align: left;
  font-size: 1.2em;
}
#autocomplete li {
  border-bottom: 1px solid #E6E6E6;
  padding: 3.75px 15px;
}
.expand {
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn {
  cursor: pointer;
}
#menu_dynamique > .sectMenu > .block_p > p {
  z-index: 999;
  background-color: #173D7F;
}
#menu_dynamique > .sectMenu {
  position: relative;
  padding-bottom: 5px;
}
@media screen and (max-width: 640px) {
  #menu_dynamique > .sectMenu {
    margin-left: 5px;
  }
}
#menu_dynamique > .sectMenu > .block_p {
  position: absolute;
  opacity: 0;
  left: 5;
  text-align: center;
  z-index: -1;
  transition: all 0.8s;
}
#menu_dynamique > .sectMenu:hover > .block_p {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  #menu_dynamique > .sectMenu:hover > .block_p {
    opacity: 0;
  }
}
#menu_dynamique > #abonnement > .block_p > P {
  border: none;
  background-color: #FFC7DA;
  color: #173D7F;
}
.block_p > p {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px 50px;
  color: white;
  word-wrap: break-word;
  height: 38px;
  min-width: 110px;
  padding: 0 15px;
}
@media screen and (max-width: 1025px) {
  .block_p > p {
    height: 38px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 700px) {
  .block_p > p {
    width: 0;
  }
}
.sectMenu a img {
  width: 40px;
}
@media screen and (max-width: 1025px) {
  .sectMenu a img {
    width: 35px;
  }
}
@media screen and (max-width: 700px) {
  .sectMenu a img {
    width: 30px;
  }
}
#menu_dynamique {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 1010;
  margin-top: CALC(30px/2);
}
@media screen and (max-width: 700px) {
  #menu_dynamique {
    display: none;
  }
}
.auditsett {
  position: absolute;
  left: -1000px;
}
ul#enavant {
  maring-top: 0;
}
@media screen and (max-width: 700px) {
  ul#enavant {
    display: none;
  }
}
form {
  overflow: hidden;
}
label {
  font-family: mulish;
}
label.actif {
  font-family: robotoMedium;
}
input, textarea {
  min-width: 50px;
  display: block;
  padding: 7.5px 15px;
  border: none;
  font-family: mulish;
  font-size: 1em;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  font-size: 1.2em;
}
@media screen and (max-width: 1025px) {
  input, textarea {
    font-size: 1.1em;
  }
}
input::placeholder, textarea::placeholder {
  font-size: 1em;
}
input[type="number"], input[type="tel"] {
  width: auto;
}
input[type="checkbox"] {
  display: inline;
  min-width: 1px;
  padding: 0;
}
input[type="text"] {
  display: inline;
}
input[type="radio"] {
  display: inline;
}
button[type="submit"] {
  background-color: #fff;
  border: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  color: #1d1d1d;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  font-size: 100%;
  color: #FAFAFA;
  background-color: #003a78;
}
button[type="submit"]:active {
  color: #003a78;
}
input[type="search"] {
  min-width: 50px;
  border: none;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  font-size: 1.2em;
}
@media screen and (max-width: 1025px) {
  input[type="search"] {
    font-size: 1.1em;
  }
}
#tableautri_filter input[type="search"] {
  border: 1px solid #003a78;
  margin-bottom: 30px;
}
.search {
  padding: 10px 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  .search {
    padding: 3.75px 0;
  }
}
.search.petit {
  padding: 3.75px 0;
  width: 30vw;
  position: relative;
}
.formulaire_spip {
  background-color: #E6E6E6;
  padding: 30px;
}
.formulaire_spip input, .formulaire_spip textarea {
  padding: 6px;
  border: 1px solid #E6E6E6;
  border-radius: 2px;
  font-family: mulish;
  font-size: 1em;
  margin-bottom: 30px;
}
.formulaire_spip p.explication {
  margin-bottom: 0;
}
/**
* Styles des formulaires publics plugin formidable Grosse truelle aussi avec surement des effets de bords...
*/
/* 

.formulaire_formidable div.fieldset.grille > fieldset > legend.legend {
  margin: 0.5em 0;
  font-size: 1.5em;
  border-bottom: 2px solid $couleur_principal;
}

.formulaire_formidable div.fieldset > fieldset > legend.legend {
  font-weight: 900;
  margin: 0.25em 0;
  font-size: 1em;
  width:100%;
  display: block;
  border-bottom: 1px solid $couleur_principal;
}

.formulaire_formidable .explication {
  font-size:0.75em;
}
.formulaire_formidable div.editer-groupe {
	text-align: left;
	margin-left: 10px;
	margin-right: 10px;
	font-size: 1.0em;
	overflow: hidden;
  }
  

  .formulaire_formidable div.editer.saisie_selection {
	margin-bottom: 1em;
	border: 8px solid transparent;
	overflow: hidden;
	background: #fff;
  }
   
  .formulaire_formidable div.editer.saisie_selection label {
	width: 80px;
  }
  .formulaire_formidable .obligatoire label {
    font-weight: 900;
  }
   
  .formulaire_formidable div.editer.saisie_selection select {
	padding: 3px;
	width: 95%;
  }
  

  .formulaire_formidable div.editer.saisie_date {
    label {
      display: block;
    }
    input.datePicker {
      display: inline-block;
    }
    img.ui.datepicker-trigger {
      display: inline-block;
      margin-left : -15px;
    }
  }
  .formulaire_formidable div.editer.saisie_checkbox {
    margin-bottom: 1em;
    border: 8px solid transparent;
    overflow: hidden;
    background: #fff;
    label {
      display:block;
    }
    div.choix {
      padding-left: 3px;
      & > * {
        display: inline-block !important;
        vertical-align: middle;
      }
      input[type=checkbox] {
        vertical-align: middle;
        position: relative;
        bottom: 1px;
      }
      label[for] {
        float: none;
        margin-left: 3px;
        width: 80%;
      }
    }   
  }

  .formulaire_formidable div.editer.saisie_radio {
	margin-bottom: 1em;
	border: 8px solid transparent;
	overflow: hidden;
	background: #fff;
  }
   
  .formulaire_formidable div.editer.saisie_radio label {
	float: left;
  width: 80px;
  }
   
  .formulaire_formidable div.editer.saisie_radio div.choix {
	padding-left: 3px;
  }
   
  .formulaire_formidable div.editer.saisie_radio div.choix > * {
	display: inline-block !important;
	vertical-align: middle;
  }
   
  .formulaire_formidable div.editer.saisie_radio div.choix
  input[type="checkbox"] {
	vertical-align: middle;
	position: relative;
	bottom: 1px;
  }
   
  .formulaire_formidable div.editer.saisie_radio div.choix label[for] {
	float: none;
	margin-left: 3px;
	width: 80%;
  }

  .formulaire_formidable div.editer.saisie_textarea {
	margin-bottom: 1em;
	border: 8px solid transparent;
	overflow: hidden;
	background: #fff;
  }
   
  .formulaire_formidable div.editer.saisie_textarea label {
	float: left;
	width: 80px;
  }
  */
.formulaire_spip.formulaire_formidable nav.etapes {
  margin: 0 0 30px;
}
.formulaire_spip.formulaire_formidable nav.etapes li em {
  color: red;
}
.formulaire_spip.formulaire_formidable div.reponse_formulaire.reponse_formulaire_ok {
  border: 2px solid red;
  font-size: 1.5em;
  margin: 15px auto;
  max-width: 75%;
  padding: 15px;
}
.formulaire_spip.formulaire_formidable div.reponse_formulaire.reponse_formulaire_ok p {
  margin-bottom: 0;
}
.formulaire_spip.formulaire_formidable fieldset {
  border: none;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
.formulaire_spip.formulaire_formidable .pliable > fieldset {
  /* border-top: 2px solid #45A180; */
  margin: 0em;
  padding: 0em;
  padding-top: 2em;
}
.formulaire_spip.formulaire_formidable .pliable > fieldset > legend {
  padding: 0 10px;
}
.formulaire_spip.formulaire_formidable legend {
  color: #000;
  font-size: 1.3em;
}
.formulaire_spip.formulaire_formidable .saisie_input, .formulaire_spip.formulaire_formidable .saisie_selection {
  margin-bottom: 1em;
}
.formulaire_spip.formulaire_formidable input {
  font-size: 0.9em;
  margin-bottom: 0;
}
.formulaire_spip.formulaire_formidable .saisie_input label {
  display: block;
}
.formulaire_spip.formulaire_formidable .saisie_date label {
  display: block;
}
.formulaire_spip.formulaire_formidable .saisie_radio {
  margin-bottom: 2em;
}
.formulaire_spip.formulaire_formidable .saisie_radio > label {
  font-size: 1.1em;
}
.formulaire_spip.formulaire_formidable .editer input {
  padding: 5px 5px;
  border: 1px solid #000;
}
.formulaire_spip.formulaire_formidable .saisie_selection select {
  border: 1px solid #000;
}
.formulaire_spip.formulaire_formidable select {
  display: block;
  border: 2px solid #000;
  font-size: 1em;
  padding: 5px 10px;
}
.formulaire_spip.formulaire_formidable input.radio {
  display: inline-block;
}
.formulaire_spip.formulaire_formidable p.boutons {
  margin: 30px auto;
}
.formulaire_spip.formulaire_formidable p.boutons input.submit {
  display: inline;
}
.formulaire_spip.formulaire_formidable .submit {
  background-color: #fff;
  color: #000;
  border: none;
  font-size: 1.1em;
  padding: 5px 10px;
  margin-left: 1em;
}
.formulaire_spip.formulaire_formidable .grand_titre25 > fieldset > legend {
  font-size: 2.5em;
  color: #9F73B0;
}
.formulaire_spip.formulaire_formidable .grand_titre2 > fieldset > legend {
  font-size: 2em;
  border: 1px solid black;
  width: 100%;
}
.formulaire_spip.formulaire_formidable .grand_titre18 > fieldset > legend {
  font-size: 1.6em;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.formulaire_spip.formulaire_formidable .choix_zones > label {
  font-size: 1.6em;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #000;
}
.formulaire_spip.formulaire_formidable .choix {
  margin: 10px 0;
}
.formulaire_spip.formulaire_formidable div.editer.saisie_date label {
  display: block;
}
.formulaire_spip.formulaire_formidable div.editer.saisie_date input.datePicker {
  display: inline-block;
}
.formulaire_spip.formulaire_formidable div.editer.saisie_date img.ui.datepicker-trigger {
  display: inline-block;
  margin-left: -20px;
}
.formulaire_spip.formulaire_formidable div.editer.saisie_calcul {
  margin-left: 50%;
  margin-bottom: 1em;
  padding: 0.5em;
  border: 1px solid #173D7F;
}
.formulaire_spip.formulaire_formidable div.editer.saisie_calcul label {
  display: block;
}
.formulaire_spip.formulaire_formidable div.editer.saisie_calcul input.resultat {
  display: inline-block;
  min-width: 10em;
  background-color: #E6E6E6;
}
.formulaire_spip.formulaire_formidable div.editer.saisie_calcul.euro:after {
  content: "€";
  padding-left: 1em;
  display: inline-block;
}
.formulaire_spip.formulaire_formidable div.editer.saisie_calcul.pourcentage:after {
  content: "%";
  padding-left: 1em;
  display: inline-block;
}
.formulaire_spip.formulaire_formidable div.editer.cacher {
  display: none;
}
.formulaire_spip.formulaire_formidable .obligatoire label {
  font-weight: 900;
}
#sondage_form {
  /* Effet lorsque une note est cochée */
  /* Effet lorsque une note est tabulée au clavier */
}
#sondage_form .formulaire_spip {
  background-color: #292929;
}
#sondage_form fieldset {
  margin-bottom: 15px;
}
#sondage_form legend {
  font-size: 1.2em;
}
#sondage_form .avis.js input {
  position: absolute;
  left: -999%;
}
#sondage_form .avis .choix input.note-checked {
  font-weight: bold;
}
#sondage_form .avis.js .choix.note-focus {
  outline: 1px dotted #000;
}
#sondage_form .choix {
  display: inline-block;
  min-width: 20px;
  min-height: 20px;
  margin-left: 20px;
}
#sondage_form .choix label {
  display: block;
  text-align: center;
  line-height: 1em;
  font-size: 1em;
  padding-top: 1em;
  color: #1d1d1d;
  height: 1.8em;
  width: 1.8em;
  background: url('https://www.seinesaintdenis.fr/squelettes/images/star-plein.svg') center center no-repeat;
  background-size: 100%;
  cursor: pointer;
}
#sondage_form .choix.note-off label {
  background: url('https://www.seinesaintdenis.fr/squelettes/images/star-vide.svg') center center no-repeat;
  background-size: 100%;
}
.cadre_reponse {
  border-radius: 3px;
  background: #fff;
}
.cadre_reponse h3, .cadre_reponse h4 {
  padding: 15px 30px;
}
.cadre_reponse p.strong, .cadre_reponse p.em {
  padding: 0 30px;
}
.cadre_reponse:hover, .cadre_reponse:focus {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12), 0 4px 4px 0 rgba(0, 0, 0, 0.24);
}
.cadre_shadow {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(24, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.card {
  padding-top: 15px;
  flex-direction: column;
  position: relative;
  margin-bottom: 15px;
}
.card:only-child {
  width: 100%;
  margin: 0 auto;
}
.card.actes {
  padding: 0 1em 1em;
  box-shadow: 0px 5px 20px #999;
  background-color: #FAFAFA;
}
.card.actes:hover, .card.actes:focus {
  box-shadow: 0 0 0 2px, 0 4px 4px 0 rgba(0, 0, 0, 0.24);
}
.card .texte {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.card .cat {
  z-index: 2;
}
.card .cat a {
  position: relative;
  text-decoration: underline;
}
.card .cat a:hover, .card .cat a:focus {
  font-weight: bold;
}
.card .card.bord {
  border-top: 3px solid #173D7F;
}
.card ul {
  list-style: inside;
}
.card ul li {
  list-style-type: square;
  color: #1d1d1d;
  list-style-position: inside;
}
.card a {
  text-decoration: none;
}
.card h3 a::after, .card h4 a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.card:hover {
  cursor: pointer;
}
.card a:focus, .card a:hover {
  outline: none;
  text-decoration: underline;
}
.card:focus-within a:focus {
  text-decoration: underline;
}
.card .texte > :nth-last-child(1) {
  margin-top: auto;
}
.card .cta:hover {
  text-decoration: underline;
}
.card .cta:focus-within {
  text-decoration: underline;
}
.card .cta:focus-within a:focus {
  text-decoration: underline;
}
.card .card-item-vac_fin_depot {
  color: #173D7F;
}
.card .card-vacancy-title {
  color: #173D7F;
}
.card .item-list p {
  margin: 0;
  font-size: 14px;
}
.card .item-list span.valeur {
  color: #292929;
}
table {
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  width: 100%;
  margin-bottom: 15px;
  /*
  @media screen and (max-width: $break-small) {
    display: block;
  }
  */
  /*
  @media screen and (max-width: $break-small) {
      caption {
        display:block;
        width: 100%;
      }
      td {
          display: contents;
          width: 100%;
          font-weight: normal; 
      }
      tbody tr {
        display: table;
        width: 100%;
      }
      thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
      }
      [data-headers]::before {
        content: attr(data-headers) ":\000A0";
        font-weight: bold;
      }
      [data-headers]::after {
        content: "\A";
        display: block;
      }
  }
  */
}
table thead {
  word-break: normal;
  hyphens: auto;
  background-color: #E6E6E6;
  /*
    @media screen and (max-width: $break-small) {
      display: block;
    }
    */
}
table thead tr {
  /*
      @media screen and (max-width: $break-small) {
        display: table;
        width: 100%;
        border-spacing: $goutiere/4;   
      }
      */
}
table thead tr th {
  border-right: 1px solid #FAFAFA;
  padding: 10px 15px;
}
table tbody {
  word-break: normal;
  hyphens: auto;
  /*
    @media screen and (max-width: $break-small) {
      display: block;
    }
    */
}
table tbody tr {
  /*
      @media screen and (max-width: $break-small) {
        margin-top: $goutiere;
        display: table;
        width: 100%;
        border-spacing: $goutiere/4;
      }
      */
}
table tbody tr:nth-child(even) {
  background-color: #F6F6F6;
}
table tbody tr td {
  border-right: 1px solid #E6E6E6;
  border-top: 1px solid #E6E6E6;
  padding: 10px 15px;
}
table tbody tr.group td {
  font-size: 1.5em;
  font-weight: 700;
}
#page {
  margin-top: 70px;
}
aside {
  position: relative;
  margin-right: 8rem;
}
aside:after {
  width: 0;
  height: 100%;
  top: 0;
  right: -4rem;
  position: absolute;
  display: block;
  content: "";
  border-left: 1px #b3b3b3 dotted;
}
aside .bloc_aside {
  padding-bottom: 1.3rem;
  margin-bottom: 0.8rem;
  position: relative;
}
aside .bloc_aside::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #003a78;
  width: 3rem;
  height: 0.45rem;
}
aside h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
aside a {
  font-size: 0.9rem;
  font-weight: 900;
}
aside a.majuscule {
  text-transform: uppercase;
}
article ul {
  list-style: inside square;
}
article ol {
  list-style: inside decimal;
}
article a {
  color: #A23596;
}
article .date {
  font-size: 0.7em;
  text-align: right;
  margin: 30px 0 15px;
  font-style: italic;
}
article #actes dt {
  display: inline;
}
article #actes dt img {
  width: 26px;
  height: 26px;
}
article .texte a.spip_out {
  padding-right: 13px;
  background: transparent url('https://www.seinesaintdenis.fr/squelettes/scss/img/links/external.svg') no-repeat right center;
}
article .texte i {
  font-style: italic;
}
article .texte ul {
  margin-bottom: 30px;
}
article .texte ul li {
  list-style-type: square;
  margin-left: 30px;
}
article .texte span.spip_documents_fichiers, article .texte dl.spip_documents_fichiers, article .texte div.spip_documents_fichiers, article .texte figure.spip_documents_fichiers {
  display: grid;
  grid-template-columns: 52px 1fr;
  margin: 30px 0;
}
article .texte span.spip_documents_fichiers figcaption, article .texte dl.spip_documents_fichiers figcaption, article .texte div.spip_documents_fichiers figcaption, article .texte figure.spip_documents_fichiers figcaption {
  margin-left: 30px;
}
article .texte span.spip_documents, article .texte dl.spip_documents, article .texte div.spip_documents, article .texte figure.spip_documents {
  text-align: left;
  margin-bottom: 15px;
}
article .texte span.spip_documents.spip_documents_left, article .texte dl.spip_documents.spip_documents_left, article .texte div.spip_documents.spip_documents_left, article .texte figure.spip_documents.spip_documents_left {
  margin-right: 15px;
}
article .texte span.spip_documents.spip_documents_right, article .texte dl.spip_documents.spip_documents_right, article .texte div.spip_documents.spip_documents_right, article .texte figure.spip_documents.spip_documents_right {
  margin-left: 15px;
}
article .texte span.spip_documents.spip_documents_center, article .texte dl.spip_documents.spip_documents_center, article .texte div.spip_documents.spip_documents_center, article .texte figure.spip_documents.spip_documents_center {
  display: block;
  clear: both;
  width: 100%;
  margin: 15px auto;
}
article .texte span.spip_documents.spip_documents_center *, article .texte dl.spip_documents.spip_documents_center *, article .texte div.spip_documents.spip_documents_center *, article .texte figure.spip_documents.spip_documents_center * {
  margin: 0 auto;
  display: block;
}
article .texte .break {
  display: block;
  clear: both;
  border: none;
  margin: 0;
  padding: 0;
}
article .texte a.spip_mail::before {
  content: "✉";
}
article .texteencadre-spip {
  background-color: #DDDEEA;
  border: none;
  padding: 30px;
}
article .texteencadre-spip figure {
  margin-right: 15px;
}
article .sommaire-back {
  float: right;
}
article .nav-sommaire {
  margin: 30px;
  padding: 30px;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
}
article .nav-sommaire ul li {
  list-style-type: square;
  margin-left: 30px;
}
/* needed for old browsers */
dialog {
  display: block;
  border: 0;
}
.hidden {
  display: none;
}
/* removes scroll when modal is opened */
.no-scroll {
  overflow: hidden;
}
.menu_burger {
  padding: 15px;
}
@media screen and (max-width: 1025px) {
  .menu_burger {
    padding: 7.5px;
  }
}
.menu_burger svg {
  display: inline-block;
  margin-bottom: 5px;
}
@media screen and (max-width: 1025px) {
  .menu_burger svg {
    width: 20px;
  }
}
.menu_burger svg:last-child {
  margin-bottom: 0;
}
/* another modal styling example */
/* tooltip modal for it’s easy button */
.burger-modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fff;
  opacity: 0.8;
  z-index: 1666;
  cursor: pointer;
}
.burger-modal-overlay[data-background-click="disabled"] {
  cursor: auto;
}
.burger-modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.8;
  z-index: 1066;
  cursor: pointer;
}
.burger-modal {
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1067;
  position: fixed;
  width: 80em;
  max-width: 75%;
  padding: 0 0 1em 0;
  font-size: 1em;
  border: 0;
  overflow: auto;
  background-color: #173d7f;
  /* fallback CSS IE9 */
  background-image: none;
  background-attachment: local;
}
@media screen and (max-width: 600px) {
  .burger-modal {
    font-size: 0.75em;
    max-width: 70%;
  }
}
.burger-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  color: #fff;
  border: 0;
  cursor: pointer;
}
.burger-modal-title {
  color: #fff;
  font-size: 1.5em;
}
/* **************************************************Barre de navigation********************************************************************** */
@media screen and (max-width: 990px) {
  .nopmenu {
    display: none;
  }
}
.menu {
  z-index: 1010;
  width: 100%;
  position: fixed;
  min-height: 70px;
  top: 0;
  left: 0;
  background-color: #003a78;
}
.menu .inner_menu {
  margin: 0 auto;
  font-size: 20px;
  font-weight: 600;
  min-height: 70px;
  max-width: 1200px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  width: 100%;
  color: white;
}
@media screen and (max-width: 1400px) {
  .menu .inner_menu {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .menu .inner_menu {
    font-size: 13px;
  }
}
/* *************************************************** Liens du Menu***************************************************************************** */
/* le premier lien Aides et services*/
.active {
  border-radius: 30px;
  background-color: white;
  padding: 10px 20px;
  color: #001f5b;
}
.btn {
  border-radius: 30px;
  color: white;
  padding: 10px 20px;
  font-style: italic;
}
.menu li:first-child a.active {
  color: #001f5b;
}
@media screen and (max-width: 990px) {
  .menu li {
    display: none;
  }
}
/* Les autres liens*/
.menu li a:hover {
  text-decoration: underline;
  background-color: white;
  color: #001f5b;
}
.child {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 2/3;
  /*ajout d'une règle de grille pour centrer l'élément au deuxième tiers*/
}
#multitude {
  color: #1d1d1d;
}
#multitude p {
  font-weight: 300;
}
#multitude h1, #multitude h2, #multitude h3, #multitude h4 {
  color: #173D7F;
}
#multitude h1 {
  line-height: 0.9;
  font-weight: 800;
  margin-bottom: 15px;
}
#multitude h2 {
  margin-bottom: 30px;
  line-height: 1;
}
#multitude h2.bold {
  font-weight: 800;
  font-size: 2.666em;
}
#multitude h3 {
  margin-top: CALC(30px/2);
  margin-bottom: CALC(30px/2);
  font-weight: 800;
  line-height: 1.1em;
}
#multitude h4 {
  font-weight: 800;
  font-size: 1.3em;
  line-height: inherit;
}
#multitude hr {
  border: 1px solid #173D7F;
}
#multitude .card {
  height: auto;
  width: 300px;
  overflow: visible;
}
#multitude .card .tag {
  position: absolute;
  top: CALC(240px);
  left: -10px;
  z-index: 2;
  padding: 3px 10px;
  background-color: #ff418c;
  color: #fff;
  font-weight: 700;
}
#multitude .card strong {
  display: inline-block;
  margin-bottom: CALC(30px/2);
}
#multitude .degrader {
  background-size: cover;
  padding-top: 30px;
}
#multitude .degrader ul {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  #multitude .degrader ul {
    flex-direction: column;
  }
}
#multitude .degrader .logo_multi {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  #multitude .degrader .logo_multi {
    flex-direction: column;
  }
}
#multitude .degrader img {
  margin: 30px 0 30px 0;
  height: 200px;
  width: auto;
}
#multitude .degrader h1 {
  display: none;
}
#multitude .degrader p {
  font-size: 2em;
  color: #173D7F;
  font-weight: 800;
  margin: 30px 0 30px 0;
}
#multitude .degrader p em {
  font-weight: 300;
}
#multitude .carte_multi {
  padding: CALC(30px/2);
  background: linear-gradient(to right bottom, #ffa000, #ff418c, #402391);
}
#multitude #map {
  width: 100%;
  aspect-ratio: 1.7777777778;
}
#multitude .bouton {
  float: right;
  background: linear-gradient(to right, #ffa000, #ff418c);
  font-weight: 700;
}
#multitude .card {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
#multitude .card:focus-within {
  text-decoration: underline;
}
#multitude .card div:first-child {
  align-items: flex-start;
}
#multitude .card div:last-child {
  align-items: flex-end;
}
#multitude .wrappper {
  position: relative;
}
/**
* Définition des marges de la page
*/
@page {
  margin: 2cm;
}
@media print {
  /**
    * Reset global de toutes les propriétés
    */
  /**
    * Taille de polices globales (13pt=16px), couleur de texte et de fond
    * Famille de police en serif (avec empattements)
    */
  /**
    * Lignes veuves et orphelines
    */
  /**
    * Sauts de pages
    */
  /**
    * Liens
    */
  /**
    * Masquage des vidéos
    */
  /**
    * Classes utilitaires
    */
  * {
    all: unset;
    display: revert;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  img {
    max-width: 100%;
  }
  input, textarea, select {
    all: revert;
  }
  body {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 13pt;
    line-height: 1.5;
    background-color: #fff !important;
    color: #000 !important;
  }
  h1 {
    font-size: 24pt;
  }
  h2 {
    font-size: 20pt;
    margin-top: 20pt;
  }
  h3, h4 {
    font-size: 14pt;
    margin-top: 14pt;
  }
  h5, h6 {
    font-size: 13pt;
    margin-top: 14pt;
  }
  p, blockquote, figcaption {
    orphans: 3;
    /* pas de ligne seule en bas */
    widows: 3;
    /* pas de ligne seule en haut */
  }
  ul, ol, dl, a, table, pre, blockquote {
    page-break-inside: avoid;
    /* pas de sauts au sein de ces élements */
  }
  h1, h2, h3, h4, h5, h6, img, figure, caption {
    page-break-inside: avoid;
    /* pas de sauts au sein de ces élements */
    page-break-after: avoid;
    /* pas de saut après ces éléments */
  }
  ul, ol, dl {
    page-break-before: avoid;
    /* pas de sauts avant de ces élements */
  }
  a, a:link, a:visited {
    background: transparent !important;
    color: unset;
    font-weight: 700;
    text-decoration: underline !important;
  }
  a[href^=http]:after, a[href^=https]:after {
    content: " (" attr(href) ")";
    /* affichage des URL des liens externes */
  }
  video, object, iframe {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  .u-print {
    display: block;
    display: revert !important;
    /* affichage des éléments de classe u-print */
  }
  .u-no-print {
    display: none !important;
    /* masquage des éléments de classe u-no-print */
  }
  .spip-admin-float {
    display: none !important;
    /* masquage des éléments admin de spip */
  }
  aside {
    display: none !important;
    /* masquage des éléments de côté */
  }
}
#tarteaucitronAlertBig {
  display: none !important;
}
.invisible {
  line-height: 0;
  height: 0;
  font-size: 0;
}
.minuscule {
  text-transform: lowercase;
}
.fond_bleu {
  background-color: #003a78;
}
.fond_bleu_clair {
  background-color: #535BA8;
}
.fond_bleu_tres_clair {
  background-color: #DDDEEA;
}
.fond_blanc {
  background-color: #FAFAFA;
}
.fond_greg {
  background-color: #FEF5EB;
}
.fond_noir_clair {
  background-color: #292929;
}
.fond_gris {
  background-color: #E6E6E6;
}
.fond_rose {
  background-color: #FFC7DA;
}
.fond_jaune {
  background-color: #FEFEF0;
}
.fond_bleu_clair {
  background-color: #1A77C3;
}
.fond_vert_bleu {
  background-color: #009688;
}
.fond_violet {
  background-color: #F3EDF5;
}
.blanc {
  color: #FAFAFA;
}
.noir {
  color: #1d1d1d;
}
.bleu {
  color: #173D7F;
}
.orange {
  color: #FEA839;
}
.violet {
  color: #A23596;
}
.vert {
  color: #217515;
}
.marron {
  color: #9A6421;
}
.cta-service {
  border-radius: 20px;
  background-color: #173D7F;
  border: 3px solid #173D7F;
  color: #fff;
  padding: 5px 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-service:hover {
  background-color: rgba(23, 60, 125, 0.295);
  color: #173D7F;
}
.border-bottom {
  border-bottom: 1px solid #E6E6E6;
}
.bande {
  width: 100%;
  min-height: 60px;
}
.bande h1, .bande h2, .bande h3, .bande h4 {
  position: relative;
  padding: 0 15px;
  z-index: 2;
}
@media screen and (max-width: 1025px) {
  .bande h1, .bande h2, .bande h3, .bande h4 {
    padding: 0 7.5px;
  }
}
@media screen and (max-width: 600px) {
  .bande h1, .bande h2, .bande h3, .bande h4 {
    padding: 0 3.75px;
  }
}
.trait {
  width: 100%;
  margin: 30px 0;
  height: 3px;
  z-index: 1;
  background-color: #FAFAFA;
  position: absolute;
}
.trait.bleu {
  background-color: #173D7F;
}
.trait.noir {
  background-color: #1d1d1d;
}
.trait.violet {
  background-color: #A23596;
}
.trait.vert {
  background-color: #217515;
}
.trait.orange {
  background-color: #FEA839;
}
.trait.marron {
  background-color: #9A6421;
}
.fond_header {
  transition: ease-out 0.5s;
  background-color: #E6E6E6;
  background-position: center center !important;
  background-size: contain;
  background-repeat: no-repeat;
}
.grande_image {
  min-height: 80vh;
}
@media screen and (max-width: 1025px) {
  .grande_image {
    min-height: 60vh;
  }
}
@media screen and (max-width: 600px) {
  .grande_image {
    min-height: 25vh;
  }
}
.grand_logo {
  width: 100%;
}
.petit_logo {
  height: auto;
  width: 80%;
  margin-top: 30px;
}
.bloc_logo_recherche {
  width: 30vw;
  min-width: 250px;
}
.bloc_logo_recherche h1 {
  line-height: 0;
  margin-bottom: 0;
}
.bloc_logo_page {
  width: 30vw;
  min-width: 250px;
  position: relative;
  bottom: -4px;
  padding-top: 180px;
}
.bloc_logo_page h1 {
  line-height: 0;
}
.fond_header_rub {
  background-position: center bottom;
  background-size: cover;
  min-height: 40vh;
}
.fond_header_rub_min {
  background-position: center center;
  background-size: cover;
}
.chapo {
  font-family: mulish;
  font-size: 1.2em;
}
hr {
  border: 2px solid #173D7F;
  width: 100%;
}
hr.blanc50 {
  border: 2px solid #FAFAFA;
  width: 50%;
}
.facettes ul {
  border-bottom: 1px solid #292929;
  padding-bottom: 7.5px;
}
.aggregation span.compteur {
  border: 1px solid #292929;
  border-radius: 50%;
  padding: 0px 0.3em;
  font-size: 0.8em;
}
.aggregation nav.pagination {
  margin: 15px 0 30px;
}
.text-photo {
  background-color: rgba(255, 255, 255, 0.44);
  color: #173D7F;
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: CALC(30px/8) CALC(30px/4);
}
.text-photo > p {
  padding: 0px;
  margin: 0;
  font-size: 0.8em;
}
.list-reponse-move {
  transition: ease-out 0.3s;
}
.list-reponse_liste {
  transition: ease-out 0.3s;
}
.list-reponse-enter, .list-reponse-leave-to {
  opacity: 0;
}
.list-reponse-leave-active {
  position: absolute;
}
.video, .iframe {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.video iframe, .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rond picture {
  border-radius: 100%;
  overflow: hidden;
}
#abnmtemag {
  bottom: 250px;
  left: -223px;
  position: fixed;
  display: none;
  z-index: 1499;
}
#abnmtemag .abmnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7.5px;
  padding-left: 0;
  position: absolute;
  height: 120px;
  width: 150px;
  z-index: 1500;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 3px 3px 5px 3px rgba(0, 0, 0, 0.5);
}
.bottom {
  vertical-align: bottom;
}
.cache {
  display: none;
  border: red 1px dashed;
  padding: 10px;
}
.pagination .pagination-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  border-radius: inherit;
}
.pagination .pagination-items .pagination-item {
  margin: 0;
  flex-basis: 2em;
  display: flex;
  align-items: center;
}
.pagination .pagination-items .pagination-item.on {
  font-weight: 700;
}
