:root {
  font-family: "PT Sans", Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  font-size: 1.4em/125%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  --width: 980px;
  --min-width: 420px;
  --header-height: 150px;
  --header-height-small: 100px;
  --header-padding: 20px;
  --header-bgcolor: #f8f8f8;
  --header-button-width: 100px;
  --header-button-width-small: 75px;
  --header-button-height: 80px;
  --focus-bgcolor: #e9eae5;
  --clr-main-rose: rgb(241, 78, 130);
  --clr-main-yellow: rgb(228, 183, 3);
  --clr-main-green: rgb(3, 169, 144);
  --clr-main-dkgray: rgb(98, 98, 98);
  --clr-main-midgray: rgb(132, 133, 135);
  --clr-main-ltgray: rgb(234, 235, 230);
  --clr-facebook: #3b5998;
  --clr-twitter: #00acee;
  --clr-insta: #c13584;
  min-width: var(--min-width);
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-bgcolor);
}

header > div:first-of-type {
  font-size: 0.75em;
  position: fixed;
  width: 100%;
  background-color: var(--clr-main-ltgray);
  margin: 0;
  left: 0;
  top: 0;
  padding: 4px;
  z-index: 2049;
  text-align: center;
}

header > div:first-of-type > span {
  display: block;
}

header > div:first-of-type > a {
  margin: 0 10px;
  color: var(--clr-main-green);
}

header > div:nth-of-type(2) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% auto 50px;
      grid-template-columns: 25% auto 50px;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
      grid-template-areas: "logo buttons fr" "logo buttons en";
  height: 100%;
  width: 100%;
  padding: 20px 0;
  max-width: var(--width);
}

header > div:nth-of-type(2) > a.logo {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: logo;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 90%;
}

header > div:nth-of-type(2) > a.logo > img {
  height: 100%;
}

header > div:nth-of-type(2) > div {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: buttons;
  -ms-grid-column-align: end;
      justify-self: end;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 100%;
}

header > div:nth-of-type(2) > div > a {
  display: inline-block;
  width: var(--header-button-width);
  height: 100%;
  padding-top: calc(var(--header-button-width) - 30px);
  margin-left: auto;
  text-align: center;
  vertical-align: bottom;
  color: black;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.85rem;
}

header > div:nth-of-type(2) > div > a:hover {
  -webkit-animation: animBackground 0.4s ease-in-out 0.01s infinite alternate backwards;
          animation: animBackground 0.4s ease-in-out 0.01s infinite alternate backwards;
}

header > div:nth-of-type(2) > div > a:first-of-type {
  background: transparent url("../img/header-menu-poi-off.png") no-repeat 50% 15px;
}

header > div:nth-of-type(2) > div > a:first-of-type.menu-on {
  background-image: url("../img/header-menu-poi-on.png");
}

header > div:nth-of-type(2) > div > a:nth-of-type(2) {
  background: transparent url("../img/header-menu-map-off.png") no-repeat 50% 15px;
}

header > div:nth-of-type(2) > div > a:nth-of-type(2).menu-on {
  background-image: url("../img/header-menu-map-on.png");
}

header > div:nth-of-type(2) > a.lang {
  -ms-grid-column-align: end;
      justify-self: end;
  width: 35px;
  line-height: 35px;
  border-radius: 8px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: .75em;
  font-weight: bold;
  color: white;
  text-decoration: none;
  background-color: black;
}

header > div:nth-of-type(2) > a.lang:hover {
  text-decoration: underline;
}

header > div:nth-of-type(2) > a.lang:nth-of-type(2) {
  margin-bottom: 3px;
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: fr;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

header > div:nth-of-type(2) > a.lang:nth-of-type(3) {
  margin-top: 3px;
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: en;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

header > div:nth-of-type(2) > a.lang.selected {
  background-color: var(--clr-main-rose);
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8em;
  font-weight: 700;
  margin-top: 20px;
}

footer > ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  width: 100%;
  max-width: var(--width);
}

footer > ul.footerlinks > li {
  padding: 10px 10px;
}

footer > ul.footerlinks > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.25s linear;
  transition: color 0.25s linear;
}

footer > ul.footerlinks > li > a:hover {
  color: var(--clr-main-rose);
}

footer > ul.footerlinks > li > a > span {
  padding-left: 10px;
}

footer > ul.partners {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer > ul.partners > li {
  padding: 0 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer > ul.partners > li img {
  max-height: 80px;
}

footer > ul.partners > li.logo-vertical img {
  max-height: 120px;
}

.menu-on {
  color: var(--clr-main-rose);
}

.title-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  background-color: var(--clr-main-rose);
  color: white;
  border-radius: 15px;
  border-bottom-right-radius: 0;
  margin: 0 0 -15px 0;
  overflow: hidden;
  padding-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: .9em;
  font-weight: 700;
}

.title-top .title-top__shadow {
  position: absolute;
  width: 100%;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 7.5px 0px 0px 7.5px;
  bottom: 0;
  left: 0;
}

.title-top::before {
  content: '';
  width: 30px;
  height: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 1020px) {
  header, footer {
    padding: 0 20px;
  }
}

@media screen and (max-width: 680px) {
  header {
    height: var(--header-height-small);
  }
  header > div:nth-of-type(2) {
    padding: 10px 0;
  }
  header > div:nth-of-type(2) > div > a {
    width: var(--header-button-width-small);
    padding-top: calc(var(--header-button-width-small) - 30px);
  }
  header > div:nth-of-type(2) > div > a:hover {
    -webkit-animation: animBackground-small 0.4s ease-in-out 0.01s infinite alternate backwards;
            animation: animBackground-small 0.4s ease-in-out 0.01s infinite alternate backwards;
  }
  header > div:nth-of-type(2) > div > a:first-of-type {
    background-position-y: 0px;
  }
  header > div:nth-of-type(2) > div > a:nth-of-type(2) {
    background-position-y: 0px;
  }
}

.picto_voir {
  color: var(--clr-main-rose);
  font-weight: bold;
  margin-left: 5px;
  display: inline-block;
}

.picto_voir > img {
  width: 25px;
  height: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 -5px;
     object-position: 0 -5px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.hidden {
  display: none;
}

@-webkit-keyframes animBackground {
  0% {
    background-position-y: 15px;
  }
  20% {
    background-position-y: 15px;
  }
  100% {
    background-position-y: 0px;
  }
}

@keyframes animBackground {
  0% {
    background-position-y: 15px;
  }
  20% {
    background-position-y: 15px;
  }
  100% {
    background-position-y: 0px;
  }
}

@-webkit-keyframes animBackground-small {
  0% {
    background-position-y: 0px;
  }
  20% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: -8px;
  }
}

@keyframes animBackground-small {
  0% {
    background-position-y: 0px;
  }
  20% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: -8px;
  }
}
/*# sourceMappingURL=common.css.map */