@charset "UTF-8";
/*
* IMPORTANT : Utiliser "!default" à la fin de chaque variable de couleur
* permet la recompiler côté PHP des variables via "Personnaliser" 
*/
/* ---------- COLORS ---------- */
/* ---------- BUTTON PRIMARY ---------- */
/* ---------- BUTTON SECONDARY ---------- */
/* ---------- TYPOGRAPHY ---------- */
/* ---------- SPACING / BOX ---------- */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: #467530;
  font-style: italic;
}
#entry-page {
  margin-bottom: 8rem;
}
#entry-page h2, #entry-page h3, #entry-page h4 {
  margin-bottom: 4rem;
  margin-top: 8rem;
}
h1 {
  font-size: 5.8rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 4.8rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 3.8rem;
  }
}
h2 {
  font-size: 4.8rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 3.8rem;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 2.8rem;
  }
}
h3 {
  font-size: 3.8rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 1.8rem;
  }
}
h4 {
  font-size: 2.8rem;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  h4 {
    font-size: 1.4rem;
  }
}
h5 {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  h5 {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  h5 {
    font-size: 1.2rem;
  }
}
h6 {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  h6 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  h6 {
    font-size: 1rem;
  }
}
.wrapper, .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
@media (max-width: 1300px) {
  .wrapper, .container {
    max-width: 100%;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
.hidden {
  display: none;
}
.inline-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}
.flex.center {
  justify-content: center;
  align-items: center;
}
.flex.space-between {
  justify-content: space-between;
  align-items: center;
}
.flex.align-start {
  align-items: flex-start;
}
.gap:not(.flex) {
  display: flex;
  align-items: center;
}
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-4 {
  gap: 4rem;
}
.gap-5 {
  gap: 5rem;
}
html {
  font-size: 10px;
}
body {
  background-color: #ffffff;
  color: #0a0a0a;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}
header {
  position: sticky;
  top: 0px;
  z-index: 99999;
  box-shadow: 0 5px 20px -2px rgba(19, 19, 19, 0.1);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  header {
    top: 0px;
  }
}
header #logo {
  object-fit: contain;
}
header .wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .header-content {
  padding: 1rem 0;
}
@media (max-width: 768px) {
  header .header-content {
    justify-content: center !important;
  }
}
@media (max-width: 768px) {
  header .header-content nav {
    display: none;
  }
}
header .header-content ul li a {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}
header .header-content ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #467530;
  left: 0;
  bottom: -5px;
  transition: width 0.3s;
}
header .header-content ul li a:hover::after {
  width: 100%;
}
header #topbar {
  background: #e2f3f4;
}
header #topbar .topbar-content {
  padding: 0.8rem 0;
  font-size: 1.4rem;
  max-width: 1075px;
  width: 100%;
}
header #topbar .coords li {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  header #topbar .coords {
    width: 100%;
    justify-content: space-between;
    text-align: center;
  }
}
@media (max-width: 768px) {
  header #topbar .coords {
    flex-wrap: wrap;
    gap: 10px;
  }
  header #topbar .coords li {
    width: 100%;
    justify-content: center;
  }
}
footer {
  background: #4d8aaf;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
footer ul.inline-list {
  flex-wrap: wrap;
  margin: 0;
  padding: 1rem 0;
}
footer ul.inline-list li {
  padding-right: 4rem;
}
footer ul.inline-list li a {
  color: #000000;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}
footer ul.inline-list li a span {
  text-transform: none;
}
#entry-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  height: 71vh;
}
#entry-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 5.6rem;
  margin-top: 0;
  margin-bottom: 3rem;
  font-weight: 900;
}
#entry-header h1 span {
  color: #467530;
  font-style: italic;
}
#entry-header .btn-container {
  max-width: 500px;
}
#notre-mairie {
  margin: 8rem auto;
}
#notre-mairie h2 {
  text-align: center;
  margin-bottom: 4rem;
}
#notre-mairie #description-img {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
#notre-mairie #description-img p {
  margin: 0;
  padding: 0 3rem 10vh 3rem;
  max-width: 84rem;
  font-size: 1.8rem;
  color: #0a0a0a;
}
#notre-mairie #description-img img {
  max-width: 19rem;
  max-height: 19rem;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  position: relative;
  z-index: 999;
}
@media (max-width: 768px) {
  #notre-mairie #description-img img {
    display: block;
    margin: 0 auto;
    margin-bottom: 5rem;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  #notre-mairie #description-img {
    flex-direction: column-reverse;
  }
  #notre-mairie #description-img p {
    padding: 0;
  }
}
#notre-mairie #motdumaire {
  max-width: 84rem;
  margin-top: -11rem !important;
  margin: 0 auto;
  background: #e2f3f4;
  box-shadow: 1px 10px 20px -2px rgba(14, 59, 67, 0.2);
  z-index: 99;
  position: relative;
  text-align: center;
  color: #000000;
}
#notre-mairie #motdumaire h3 {
  padding-top: 3rem;
  text-align: center;
  font-weight: 600;
  margin: 0;
}
#notre-mairie #motdumaire h3 span {
  font-style: italic;
  color: #467530;
}
#notre-mairie #motdumaire p {
  padding: 4rem 11rem;
  margin: 0;
  font-size: 1.5rem;
}
#notre-mairie #motdumaire p#signature {
  text-align: right !important;
  padding-bottom: 3rem !important;
  font-size: 2.8rem !important;
  font-family: "Great Vibes", cursive;
}
@media (max-width: 768px) {
  #notre-mairie #motdumaire p#signature {
    padding: 1rem 2rem !important;
  }
}
#notre-mairie #motdumaire q {
  display: inline-block;
  padding: 2rem 11rem;
  margin: 0;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #notre-mairie #motdumaire q {
    padding: 2rem 2rem;
  }
}
.nos-publications {
  margin-top: -15rem;
  background: #4d8aaf;
  padding-bottom: 30rem;
}
.nos-publications #nos-publications {
  position: relative;
  top: 22.3rem;
  margin: 0 auto;
  padding: 8rem;
  max-width: 106.2rem;
  background: #ffffff;
}
@media (max-width: 768px) {
  .nos-publications #nos-publications .container {
    padding: 0 !important;
  }
}
.nos-publications #nos-publications h2, .nos-publications #nos-publications h3 {
  margin: 0;
}
.nos-publications #nos-publications h2 {
  margin-bottom: 3rem;
}
.nos-publications #nos-publications #intro-publication {
  padding: 4rem 0;
  margin: 0;
  font-size: 1.5rem;
}
#section-contacter #back-contact {
  margin-top: 8rem;
  margin-bottom: 8rem;
  padding-bottom: 8rem;
  background: #e2f3f4;
  height: auto;
  display: flex;
  gap: 4rem;
}
@media (max-width: 1024px) {
  #section-contacter #back-contact {
    flex-direction: column;
  }
}
#section-contacter #left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}
@media (max-width: 1024px) {
  #section-contacter #left-content {
    flex-direction: row !important;
    width: 100% !important;
    margin-top: 4rem;
    gap: 20px;
    align-items: stretch !important;
    flex-wrap: wrap;
  }
  #section-contacter #left-content > div {
    flex: 1 1 auto;
    width: 30%;
    max-width: unset;
    margin-bottom: 0;
  }
}
#section-contacter #right-content {
  flex: 1 1 auto;
}
#section-contacter #right-content p {
  font-size: 1.5rem;
}
#section-contacter #right-content #form-accueil {
  background: white;
}
#section-contacter #right-content #formulaire-contact {
  padding: 4rem;
}
#section-contacter #right-content #formulaire-contact p#champobligatoire {
  font-style: italic;
  text-align: end;
  margin-bottom: 1.3rem;
}
#section-contacter #right-content #formulaire-contact .entry {
  width: 100%;
  margin-bottom: 4rem !important;
}
#section-contacter #right-content #formulaire-contact .entry.txt {
  display: flex;
  flex-direction: column;
}
#section-contacter #right-content .group-contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
#section-contacter #right-content .group-contact input {
  width: 100%;
  border-width: 0px 0px 2px 0px;
  border-color: #4d8aaf;
  padding: 0rem 0 0 1rem;
  height: 4rem;
}
#section-contacter #right-content .group-contact input:focus {
  outline: none;
  border-width: 2px 2px 2px 2px !important;
  border-top-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  box-shadow: 2px 3px 6px -2px rgba(10, 9, 8, 0.2);
}
#section-contacter #right-content textarea#message {
  width: 100%;
  min-height: 6rem;
  padding-left: 1rem;
  outline: none;
  border-width: 0px 0px 2px 0px !important;
  border-color: #4d8aaf;
}
#section-contacter #right-content textarea#message:focus {
  border-width: 2px !important;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 2px 3px 6px -2px rgba(10, 9, 8, 0.2);
}
#section-contacter #right-content #case-mentions {
  margin-bottom: 4rem;
  display: flex;
  align-items: baseline;
}
#section-contacter #right-content #case-mentions #mentions-legales {
  height: auto;
  box-shadow: 1px 3px 10px -2px rgba(10, 9, 8, 0.2);
  border: solid 1px #0e3b43;
}
#section-contacter #right-content #label-mentions {
  margin-left: 1rem;
}
#section-contacter #right-content #label-mentions .cf-m-legales {
  max-width: 100%;
  font-style: italic;
  color: #575a5d;
  font-size: 1.4rem;
}
#section-contacter #right-content #label-mentions .cf-m-legales > a {
  text-decoration: none;
  border-bottom: 1px solid #0e3b43;
}
#section-contacter #right-content #label-mentions .cf-m-legales > a:hover {
  font-weight: bold;
}
#section-contacter #right-content #captcha-envoi {
  display: flex;
  padding-left: 7rem;
}
@media (max-width: 1024px) {
  #section-contacter #right-content h2 {
    margin-top: 0 !important;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 767px) {
  div#formulaire-contact {
    padding: 4rem 2rem;
  }
  div.entry {
    width: 100%;
  }
  div.group-contact > div.entry:first-child {
    margin-right: 0;
  }
  #captcha-envoi {
    display: flex;
    padding-left: 0;
    flex-direction: column;
  }
  #captcha-test {
    margin-bottom: 4rem;
  }
  input.button-submit {
    align-self: center;
    margin-left: 0;
  }
}
.bloc-adresse, .bloc-coordonnees, .bloc-horaires {
  min-width: 30rem;
  max-width: 30rem;
  width: 100%;
  background: white;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  box-shadow: 1px 5px 20px -2px rgba(10, 9, 8, 0.1);
  margin-bottom: 4rem;
  min-height: 20rem;
  padding: 1rem;
  padding-bottom: 3rem;
}
.titre-blocs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
  padding: 0 2rem;
  flex-direction: row-reverse;
}
.content-blocs {
  padding: 0 2rem;
}
.content-blocs ul {
  font-size: 1.6rem;
  padding: 0;
}
#left-content h3 {
  margin: 0;
  font-size: 2.5rem;
}
#left-content li {
  list-style-type: none;
}
#left-content a {
  font-weight: 500;
  text-decoration: underline;
}
i.fas.fa-map-marked-alt, i.fas.fa-phone-alt, i.fas.fa-clock {
  color: #e2f3f4;
  font-size: 2.5rem;
}
div#right-content h2 {
  font-size: 4.8rem;
  font-family: "Playfair Display", serif;
  margin: 8rem 0rem 3rem 0rem;
}
div#right-content > p {
  margin-bottom: 3rem;
}
.contact-bloc ul {
  margin-left: 8rem;
  list-style-type: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #0a0908;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 991px) {
  div#back-contact {
    display: flex;
    flex-direction: column;
  }
  p.titre-pdf {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-device-width: 530px) and (max-device-width: 770px) {
  .button-accordeon {
    width: -webkit-fill-available;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 529px) {
  div.button-accordeon {
    flex-direction: column;
  }
  .orange {
    width: auto !important;
    margin-bottom: 2rem;
  }
  .bleu {
    width: auto !important;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 420px) {
  .orange {
    display: none;
  }
  .bleu {
    display: none;
  }
}
body .page-404 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .page-404 h1 {
  font-size: 4.6rem;
  line-height: 6.9rem;
  text-align: center;
  margin-bottom: 6rem;
}
body .page-404 section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 4rem;
}
body .page-404 div#help-search {
  background-color: #e2f3f4;
  max-width: 84.4rem;
  width: 100%;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-shadow: 2px 3px 6px -2px rgba(10, 9, 8, 0.2);
}
body .page-404 div#help-search h2 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 2rem;
  text-align: center;
  font-size: 3.8rem;
  line-height: 5.7rem;
}
body .page-404 div#help-search p {
  margin-block-end: 0;
  margin-block-start: 0;
  margin-bottom: 2rem;
  text-align: center;
}
body .page-404 div#help-search a {
  text-decoration: none;
  border-bottom: 2px solid #467530;
  margin-left: 2rem;
  display: inline-block;
}
body .page-404 div#help-search p.first-link:after {
  content: "";
  border-top: 2px solid #8aa899;
  max-width: 84.4rem;
  width: 100%;
  display: flex;
  flex-direction: column !important;
  margin-top: 2rem;
}
a#evitement {
  display: inline-block;
  color: #555;
  background: #fff;
  padding: 0.5em;
  position: absolute;
  left: -99999rem;
  z-index: 100;
}
a#evitement:focus {
  left: 0;
}
input.button-submit, .button {
  background: #4d8aaf;
  color: #000000;
  font-weight: bold;
  border: 2px solid #3d6e8c;
  padding: 1.4rem 3rem;
  border-radius: 20px 0px 20px 0px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 10px;
  line-height: 1.38;
  text-align: center;
  font-size: 1.6rem;
}
input.button-submit:hover, .button:hover {
  background: #437199;
  color: #FFFFFF;
  transform: scale(1.05);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
input.button-submit.secondary, .button.secondary {
  background: #e2f3f4;
  color: #000000;
  border: 2px solid #bde4e6;
}
input.button-submit.secondary:hover, .button.secondary:hover {
  background: #b7f7f6;
  color: #0a0a0a;
}
.maintenance-active {
  background: red;
  color: white;
  padding: 5px;
  position: fixed;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 100000000000000000000;
  margin: 0;
  font-size: 2rem;
  opacity: 0.5;
  text-align: center;
  font-family: sans-serif;
  pointer-events: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
#back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  align-items: center;
  z-index: 9999999999;
  position: fixed;
  bottom: 3.5rem;
  right: 3.5rem;
  width: 40px;
  height: 40px;
  box-shadow: 1px 5px 20px 0 rgba(10, 9, 8, 0.1);
  border: solid 2px #467530;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #e2f3f4;
  color: #467530;
}
* {
  box-sizing: border-box;
}
.heading-primary {
  font-size: 2em;
  padding: 2em;
  text-align: center;
}
.accordion {
  max-width: 1000px;
  width: 100%;
  margin: 20px auto;
  padding-bottom: 3rem;
  position: relative;
  background-color: transparent;
}
.accordion h3 {
  padding: 0 !important;
}
.accordion-content {
  margin: 0;
  padding: 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.accordion dl:after, .accordion-list:after {
  content: "";
  display: block;
  height: 0.1em;
  width: 100%;
  margin-top: -4%;
  background-color: transparent;
}
.accordion dd, .accordion__panel {
  background-color: transparent;
  font-size: 1em;
  line-height: 1.5em;
}
.accordionTitle, .accordion__Heading {
  border-radius: 20px 0px 20px 0px;
  background-color: #e2f3f4;
  text-align: left;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
  color: #000000;
  display: block;
  padding: 1.5rem;
  border: 2px solid #bde4e6;
  width: 100%;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.accordionTitle svg, .accordion__Heading svg {
  transition: 0.3s ease-in-out;
}
.accordionTitle:hover, .accordion__Heading:hover {
  background-color: #e2f3f4;
}
.accordionTitle:hover p, .accordion__Heading:hover p {
  color: #000000 !important;
}
.accordionTitleActive, .accordionTitle.is-expanded {
  background-color: #4d8aaf;
  border-color: #3d6e8c;
}
.accordionTitleActive svg, .accordionTitle.is-expanded svg {
  transform: rotate(180deg);
}
.accordionTitleActive:before, .accordionTitle.is-expanded:before {
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}
.accordionItem {
  height: auto;
  overflow: hidden;
  max-height: 1000em;
  -webkit-transition: max-height 1s;
  transition: max-height 0.3s;
}
@media screen and (min-width: 48em) {
  .accordionItem {
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
  }
}
.accordionItem.is-collapsed {
  max-height: 0;
}
.no-js .accordionItem.is-collapsed {
  max-height: auto;
}
.animateIn {
  -webkit-animation: accordionIn 0.45s normal ease-in-out both 1;
  animation: accordionIn 0.45s normal ease-in-out both 1;
}
.animateOut {
  -webkit-animation: accordionOut 0.45s alternate ease-in-out both 1;
  animation: accordionOut 0.45s alternate ease-in-out both 1;
}
@-webkit-keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
    transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes accordionIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
    transform: scale(0.9) rotateX(-60deg);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
    transform: scale(0.9) rotateX(-60deg);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9) rotateX(-60deg);
    transform: scale(0.9) rotateX(-60deg);
  }
}
div#cm {
  margin-top: 3rem;
}
button.accordion-title.accordionTitle.js-accordionTrigger {
  display: flex;
  align-items: center;
}
button.accordion-title.accordionTitle.js-accordionTrigger i.fas.fa-angle-up {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 2rem;
  transform: rotate(180deg);
  pointer-events: none;
}
.accordion-content.is-expanded {
  border-bottom: 1px solid;
  border-bottom-right-radius: 20px;
  border-width: 0px 2px 2px 2px;
  border-color: #e2f3f4;
}
button.accordion-title.accordionTitle.js-accordionTrigger.is-collapsed.is-expanded i.fas.fa-angle-up {
  transform: rotate(0deg);
}
button.accordion-title.accordionTitle.js-accordionTrigger.is-collapsed.is-expanded {
  border-bottom-right-radius: 0;
}
p.titre-spoiler {
  display: flex;
  padding: 0 !important;
  align-items: center;
  pointer-events: none;
  font-size: 1.8rem;
  color: #000000;
  transition: 0.3s ease-in-out;
  margin: 0;
}
.separateur {
  margin: 0px 22.8rem 3rem 10.8rem;
  height: 2px;
  background: #4d8aaf;
  opacity: 0.8;
}
div.div-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 2rem 2rem;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 767px) {
  div.div-accordion {
    padding: 2rem 2rem;
  }
}
button.accordion-title.accordionTitle.js-accordionTrigger {
  justify-content: space-between;
}
.wp-block-lazyblock-fichier-pdf {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.wp-block-lazyblock-fichier-pdf:not(:last-child):after {
  content: "";
  border-top: 2px solid #467530;
  width: 874px;
  opacity: 0.8;
  margin: 2rem 10.9rem;
  display: none;
  flex-direction: column;
}
.wp-block-lazyblock-fichier-pdf > a {
  text-decoration: none !important;
  flex: 1 1 auto;
}
.wp-block-lazyblock-fichier-pdf > a:hover {
  font-weight: bold;
  color: #467530;
}
p.titre-pdf {
  padding: 0 !important;
  padding-bottom: 5px !important;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 2px solid #467530;
  width: 100%;
}
div.button-accordeon {
  display: flex;
  gap: 20px;
}
div.button-accordeon a {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #0a0908;
  text-decoration: none;
  background: #4d8aaf;
  border: 2px solid #467530;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 1rem 3rem;
  transition-duration: 0.3s;
}
div.button-accordeon a:hover {
  box-shadow: 0 10px 10px -10px #0a0a0a;
  transform: scale(1.05);
}
div.button-accordeon a.bleu {
  background: #e2f3f4;
  color: #000000;
  border: 2px solid #000000;
}
.wp-block-separator {
  border-bottom-width: 2px;
  border-color: #4d8aaf;
  margin: 0 11rem 2rem 11rem;
}
.adico-sidebar-block {
  background: #eee;
  max-width: 350px;
  min-width: 200px;
  padding: 20px;
}
.adico-tiroir {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.1);
  margin: 20px 10px;
}
.adico-tiroir .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.adico-tiroir .header button {
  background: transparent;
  border: none;
  color: #0a0a0a;
  padding: 20px;
  flex: 1 1 auto;
  text-align: left;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .adico-tiroir .header button {
    font-size: 1.3rem;
  }
}
.adico-tiroir .header span {
  font-size: 1.1rem;
  transform: rotate(180deg);
  transition: 0.2s ease-in-out;
  margin-right: 20px;
}
.adico-tiroir .header button[aria-expanded="true"] + span {
  transform: rotate(0deg);
}
.adico-tiroir .content {
  display: none;
  padding: 10px 20px;
  margin: 0;
  background: transparent;
}
.adico-tiroir .content.active {
  display: block;
}
.fichier-pdf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.fichier-pdf > a p {
  font-size: 1.6rem;
  color: #0a0a0a;
  margin: 0;
  text-decoration: underline;
  font-weight: bold;
}
.fichier-pdf ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.fichier-pdf ul p {
  margin: 0;
}
@media (max-width: 768px) {
  .fichier-pdf ul {
    flex-direction: column;
  }
}
.adico-alert {
  background: #eee;
  padding: 20px;
  margin: 10px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.adico-alert.primary {
  background: #4d8aaf;
  color: #000000;
}
.adico-alert.secondary {
  background: #e2f3f4;
  color: #000000;
}
.adico-alert.tertiary {
  background: #467530;
  color: #f7f7f7;
}
#alerte {
  background: #467530;
  color: #f7f7f7;
  max-width: 106.5rem;
  padding: clamp(2rem, 5vw, 6rem);
  margin: 4rem auto;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
#alerte #alert-content {
  background: #ffffff;
  box-shadow: 2px 5px 6px 0 rgba(10, 9, 8, 0.4);
  padding: 0 2rem;
  color: #0a0a0a;
  position: relative;
}
#alerte #alert-content .fa-exclamation {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 3.6rem;
  padding-top: clamp(2rem, 5vw, 5.4rem);
  padding-left: clamp(2rem, 5vw, 7rem);
  color: #a70000;
}
#alerte #alert-content h2 {
  font-weight: 600;
  font-size: 3.6rem;
  padding-left: clamp(4rem, 10vw, 11rem);
  padding-top: 4rem;
  text-align: left;
  margin: 0;
}
#alerte #alert-content p {
  font-size: 1.6rem;
  text-align: left;
  padding-left: 11rem;
  padding-top: 2rem;
}
#alerte #alert-content p:last-child {
  padding-bottom: 4rem;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 767px) {
  div#alerte {
    padding: 3rem;
  }
  div#alerte #alert-content {
    display: flex;
    flex-direction: column;
  }
  div#alerte #alert-content i.fas.fa-exclamation {
    padding-top: 2rem;
    padding-left: 0;
  }
  div#alerte #alert-content h2 {
    padding: 2rem 3rem 0;
    text-align: center;
  }
  div#alerte #alert-content p {
    padding: 2rem 3rem 0;
    overflow-wrap: break-word;
    text-align: center;
  }
}
div#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(77, 138, 175, 0.32);
  padding: 3.9rem 0;
}
div#tarteaucitronRoot #tarteaucitronAlertBig, div#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseCross, div#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert {
  color: #0a0a0a;
}
@media (max-width: 763px) {
  div#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert {
    margin: 1.6rem auto;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #000;
}
