/*
FLEX
--
$positions: justify-content & align-items
If only one value, will be used for the two properties
Use 'null' to not declare a propertie, ex: flex(center null)
*/
/*
FILL
--
$mode = 'parent' || 'viewport'
$fullH fill width AND height
*/
/*
RESPONSIVE FONT
--
https://www.smashingmagazine.com/2015/06/responsive-typography-with-sass-maps
*/
/*
ADD WEBFONT
--
$path in context of the fonts folder
*/
/*
TEXT TRUNCATE
--
requires inline-block or block for proper styling
*/
/*
PSEUDO BACKGROUND
--
Use in :before or :after
Parent element should be positioned
*/
/*
PSEUDO ROUND
--
Use in :before or :after
Parent element should be positioned
*/
/*
BACKGROUND WITH SHADOW
--
Make background with :after and fancy shadow with :before
*/
/*======================================================================*\
==========================================================================

								RESET

==========================================================================
\*======================================================================*/
body {
  margin: 0;
  padding: 0;
}

button, input, select, textarea {
  border: 0;
  outline: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: 100%;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  max-height: 100%;
}

a {
  text-decoration: none;
  outline: 0;
}

button {
  cursor: pointer;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/*======================================================================*\
==========================================================================

								LAYERS

==========================================================================
\*======================================================================*/
#global {
  position: relative;
  overflow-x: hidden;
}

#main {
  position: relative;
  z-index: 2;
}

#header {
  position: relative;
  z-index: 5;
}

#footer {
  position: relative;
  z-index: 3;
}
#footer--under {
  z-index: 1;
}

/*======================================================================*\
==========================================================================

								HELPERS

==========================================================================
\*======================================================================*/
.cb-adminTools,
.transition,
p a,
p li a,
li a,
.c-button,
.c-navLink,
.c-form-row__label [class*="fa"],
.c-form-row__input + .c-form-row__label,
.c-accordeon__title__icon,
.c-link,
.c-ressource__link,
.c-link [class*="fa"],
.c-ressource__link [class*="fa"],
.hp-nav,
.hp-nav__item::after,
.popup,
.displayDl,
.gm-style-iw,
.infowindow__content::after,
.header,
.footerForm__wrap__label {
  transition-property: all;
  transition-duration: 0.2s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.posR {
  position: relative;
}

.posA {
  position: absolute;
}

.posF {
  position: fixed;
}

.displayIB {
  display: inline-block;
}

.displayB {
  display: block;
}

[class*="show@"] {
  display: none;
}

@media screen and (min-width: 400px) {
  .show\@small {
    display: block;
  }
}

@media screen and (min-width: 760px) {
  .show\@medium {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .show\@large {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  .show\@xlarge {
    display: block;
  }
}

.t-deco--none {
  text-decoration: none !important;
}

.t--h {
  font-family: "basicsans", sans-serif !important;
}

.t--bt {
  font-family: "basicsans", sans-serif !important;
}

.t--p {
  font-family: "basicsans", sans-serif !important;
}

.t--uppercase {
  text-transform: uppercase !important;
}

.t--lowercase {
  text-transform: lowercase !important;
}

.t-align--l {
  text-align: left !important;
}

.t-align--r {
  text-align: right !important;
}

.t-align--c {
  text-align: center !important;
}

.t-fw--400 {
  font-weight: 400 !important;
}

.t-fw--700 {
  font-weight: 700 !important;
}

.t-fw--900 {
  font-weight: 900 !important;
}

.flex {
  display: flex !important;
}
.flex--column {
  flex-direction: column !important;
}
.flex--wrap {
  flex-wrap: wrap !important;
}
.flex--jcc {
  justify-content: center !important;
}
.flex--jcsb {
  justify-content: space-between !important;
}
.flex--jcfs {
  justify-content: flex-start !important;
}
.flex--jcfe {
  justify-content: flex-end !important;
}
.flex--jcspa {
  justify-content: space-around !important;
}
.flex--aifs {
  align-items: flex-start !important;
}
.flex--aic {
  align-items: center !important;
}
.flex--aife {
  align-items: flex-end !important;
}
.flex--center {
  align-items: center !important;
  justify-content: center !important;
}
.flex--none {
  flex: none !important;
}
.flex--auto {
  flex: 1 0 auto !important;
}
.flex--100 {
  flex: 1 0 100% !important;
}
.flex--1 {
  flex: 1 !important;
}
.flex--2 {
  flex: 2 !important;
}
.flex--3 {
  flex: 3 !important;
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.is-visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.is-none {
  display: none !important;
}

.is-muted {
  opacity: 0.3 !important;
}

.is-on-top {
  z-index: 10 !important;
}

.is-fixed {
  position: fixed !important;
}

.has-pointer {
  cursor: pointer;
}

.has-no-scroll {
  overflow: hidden;
}

.c-main {
  color: #78AD5B !important;
}

.bg-main {
  background-color: #78AD5B !important;
}

.c-accent {
  color: #009478 !important;
}

.bg-accent {
  background-color: #009478 !important;
}

.c-dark {
  color: #006666 !important;
}

.bg-dark {
  background-color: #006666 !important;
}

.c-light {
  color: #DEDEDE !important;
}

.bg-light {
  background-color: #DEDEDE !important;
}

.c-txt {
  color: #000 !important;
}

.bg-txt {
  background-color: #000 !important;
}

.c-valid {
  color: #00C15F !important;
}

.bg-valid {
  background-color: #00C15F !important;
}

.c-error {
  color: #F13636 !important;
}

.bg-error {
  background-color: #F13636 !important;
}

.c-facebook {
  color: #3b5998 !important;
}

.bg-facebook {
  background-color: #3b5998 !important;
}

.c-twitter {
  color: #1da1f2 !important;
}

.bg-twitter {
  background-color: #1da1f2 !important;
}

.c-linkedin {
  color: #0077b5 !important;
}

.bg-linkedin {
  background-color: #0077b5 !important;
}

.c-youtube {
  color: #cd201f !important;
}

.bg-youtube {
  background-color: #cd201f !important;
}

.c-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.mgn--center {
  margin-left: auto;
  margin-right: auto;
}

.mgnTop--auto {
  margin-top: auto !important;
}

.mgnRight--auto {
  margin-right: auto !important;
}

.mgnBottom--auto {
  margin-bottom: auto !important;
}

.mgnLeft--auto {
  margin-left: auto !important;
}

.pdg--none {
  padding: 0 !important;
}

.pdgTop--none {
  padding-top: 0 !important;
}

.pdgRight--none {
  padding-right: 0 !important;
}

.pdgBottom--none {
  padding-bottom: 0 !important;
}

.pdgLeft--none {
  padding-left: 0 !important;
}

.mgn--none {
  margin: 0 !important;
}

.mgnTop--none {
  margin-top: 0 !important;
}

.mgnRight--none {
  margin-right: 0 !important;
}

.mgnBottom--none {
  margin-bottom: 0 !important;
}

.mgnLeft--none {
  margin-left: 0 !important;
}

.pdg--xs {
  padding: 8px !important;
}

.pdgTop--xs {
  padding-top: 8px !important;
}

.pdgRight--xs {
  padding-right: 8px !important;
}

.pdgBottom--xs {
  padding-bottom: 8px !important;
}

.pdgLeft--xs {
  padding-left: 8px !important;
}

.mgn--xs {
  margin: 8px !important;
}

.mgnTop--xs {
  margin-top: 8px !important;
}

.mgnRight--xs {
  margin-right: 8px !important;
}

.mgnBottom--xs {
  margin-bottom: 8px !important;
}

.mgnLeft--xs {
  margin-left: 8px !important;
}

.pdg--s {
  padding: 16px !important;
}

.pdgTop--s {
  padding-top: 16px !important;
}

.pdgRight--s {
  padding-right: 16px !important;
}

.pdgBottom--s {
  padding-bottom: 16px !important;
}

.pdgLeft--s {
  padding-left: 16px !important;
}

.mgn--s {
  margin: 16px !important;
}

.mgnTop--s {
  margin-top: 16px !important;
}

.mgnRight--s {
  margin-right: 16px !important;
}

.mgnBottom--s {
  margin-bottom: 16px !important;
}

.mgnLeft--s {
  margin-left: 16px !important;
}

.pdg--m {
  padding: 24px !important;
}

.pdgTop--m {
  padding-top: 24px !important;
}

.pdgRight--m {
  padding-right: 24px !important;
}

.pdgBottom--m {
  padding-bottom: 24px !important;
}

.pdgLeft--m {
  padding-left: 24px !important;
}

.mgn--m {
  margin: 24px !important;
}

.mgnTop--m {
  margin-top: 24px !important;
}

.mgnRight--m {
  margin-right: 24px !important;
}

.mgnBottom--m {
  margin-bottom: 24px !important;
}

.mgnLeft--m {
  margin-left: 24px !important;
}

.pdg--l {
  padding: 40px !important;
}

.pdgTop--l {
  padding-top: 40px !important;
}

.pdgRight--l {
  padding-right: 40px !important;
}

.pdgBottom--l {
  padding-bottom: 40px !important;
}

.pdgLeft--l {
  padding-left: 40px !important;
}

.mgn--l {
  margin: 40px !important;
}

.mgnTop--l {
  margin-top: 40px !important;
}

.mgnRight--l {
  margin-right: 40px !important;
}

.mgnBottom--l {
  margin-bottom: 40px !important;
}

.mgnLeft--l {
  margin-left: 40px !important;
}

.pdg--xl {
  padding: 64px !important;
}

.pdgTop--xl {
  padding-top: 64px !important;
}

.pdgRight--xl {
  padding-right: 64px !important;
}

.pdgBottom--xl {
  padding-bottom: 64px !important;
}

.pdgLeft--xl {
  padding-left: 64px !important;
}

.mgn--xl {
  margin: 64px !important;
}

.mgnTop--xl {
  margin-top: 64px !important;
}

.mgnRight--xl {
  margin-right: 64px !important;
}

.mgnBottom--xl {
  margin-bottom: 64px !important;
}

.mgnLeft--xl {
  margin-left: 64px !important;
}

.pdg--xxl {
  padding: 96px !important;
}

.pdgTop--xxl {
  padding-top: 96px !important;
}

.pdgRight--xxl {
  padding-right: 96px !important;
}

.pdgBottom--xxl {
  padding-bottom: 96px !important;
}

.pdgLeft--xxl {
  padding-left: 96px !important;
}

.mgn--xxl {
  margin: 96px !important;
}

.mgnTop--xxl {
  margin-top: 96px !important;
}

.mgnRight--xxl {
  margin-right: 96px !important;
}

.mgnBottom--xxl {
  margin-bottom: 96px !important;
}

.mgnLeft--xxl {
  margin-left: 96px !important;
}

/*======================================================================*\
==========================================================================

							TYPOGRAPHY

==========================================================================
\*======================================================================*/
body {
  font-family: "basicsans", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "basicsans";
  src: url("../fonts/basicsans/black/BasicSans-Black.eot");
  src: url("../fonts/basicsans/black/BasicSans-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/basicsans/black/BasicSans-Black.ttf") format("truetype"), url("../fonts/basicsans/black/BasicSans-Black.woff") format("woff"), url("../fonts/basicsans/black/BasicSans-Black.svg") format("svg");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "basicsans";
  src: url("../fonts/basicsans/regular/BasicSans-Regular.eot");
  src: url("../fonts/basicsans/regular/BasicSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/basicsans/regular/BasicSans-Regular.ttf") format("truetype"), url("../fonts/basicsans/regular/BasicSans-Regular.woff") format("woff"), url("../fonts/basicsans/regular/BasicSans-Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, p:first-child {
  margin-top: 0;
}

h1, .h1 {
  font-size: 30px;
}
@media screen and (min-width: 760px) {
  h1, .h1 {
    font-size: 42px;
  }
}

h1 {
  margin-top: 4.5em;
}

h2, .h2, .t-sectionTitle {
  font-size: 24px;
}
@media screen and (min-width: 760px) {
  h2, .h2, .t-sectionTitle {
    font-size: 32px;
  }
}

h2 {
  margin-top: 4em;
}

h3, .h3, .t-title, .t-subtitle, .cb-notify__message, .c-button, .c-form-row__label, .c-form-row__input, .c-accordeon__title, .c-ressource__title, .displayDl, .infowindow__content__title, .footerForm__wrap__input, .footerForm__wrap__label {
  font-size: 20px;
}
@media screen and (min-width: 760px) {
  h3, .h3, .t-title, .t-subtitle, .cb-notify__message, .c-button, .c-form-row__label, .c-form-row__input, .c-accordeon__title, .c-ressource__title, .displayDl, .infowindow__content__title, .footerForm__wrap__input, .footerForm__wrap__label {
    font-size: 22px;
  }
}

h3 {
  margin-top: 2em;
}

h4, .h4 {
  font-size: 16px;
}
@media screen and (min-width: 760px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h4 {
  margin-top: 1em;
}

h5, .h5, .t-miniH, .cb-adminTools__bt, .c-navLink, .c-link, .c-ressource__link, .infowindow__content__date,
.infowindow__content__contact, .infowindow__content__desc p {
  font-size: 12px;
}
@media screen and (min-width: 760px) {
  h5, .h5, .t-miniH, .cb-adminTools__bt, .c-navLink, .c-link, .c-ressource__link, .infowindow__content__date,
  .infowindow__content__contact, .infowindow__content__desc p {
    font-size: 14px;
  }
}

h5 {
  margin-top: 1.2em;
}

p, .p, ul li,
ol li {
  font-size: 16px;
  font-family: "basicsans", sans-serif;
  line-height: 1.6;
}
@media screen and (min-width: 760px) {
  p, .p, ul li,
  ol li {
    font-size: 18px;
  }
}

p {
  margin-top: 1em;
}

ul,
ol {
  margin-top: 1em;
}

p a,
p li a,
li a {
  color: #78AD5B;
  font-weight: 900;
  text-decoration: underline;
}
p a:hover, p li a:hover, li a:hover {
  color: #006666;
}
.footer p a:hover,
.footer p li a:hover,
.footer li a:hover {
  color: #fff;
}

.t-miniH, .cb-adminTools__bt, .c-navLink, .c-link, .c-ressource__link {
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.t-title {
  font-weight: 900;
}

.t-subtitle {
  font-weight: 400;
}

.t-sectionTitle {
  font-weight: 900;
}
.t-sectionTitle [class*="fa"] {
  margin-right: 8px;
}

/*======================================================================*\
==========================================================================

							ANIMATION

==========================================================================
\*======================================================================*/
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
.anim-spin {
  animation: 1s spin infinite linear;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}
.anim-floating {
  animation: 3s floating infinite linear;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.anim-pulse {
  animation: 1s pulse 5 linear;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim-flash {
  animation: 0.2s flash 5 linear;
}

.top-border {
  border-top: 3px solid #DEDEDE;
}

.i-required {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #F13636;
}
label .i-required {
  margin-left: 8px;
}

/*======================================================================*\
==========================================================================

							LAYOUT BASICS

==========================================================================
\*======================================================================*/
.l-cell, .c-form__charte, .c-form-notify span, .c-accordeon__content, .c-ressource, .infowindow__content__desc p {
  padding: 16px;
}
@media screen and (min-width: 960px) {
  .l-cell, .c-form__charte, .c-form-notify span, .c-accordeon__content, .c-ressource, .infowindow__content__desc p {
    padding: 24px;
  }
}

.l-largeCell, .l-pictoContent, .l-duo__content, .popup__content {
  padding: 40px;
}
@media screen and (min-width: 760px) {
  .l-largeCell, .l-pictoContent, .l-duo__content, .popup__content {
    padding: 50px;
  }
}
@media screen and (min-width: 960px) {
  .l-largeCell, .l-pictoContent, .l-duo__content, .popup__content {
    padding: 64px;
  }
}
.l-largeCell--noSideGutter {
  padding-left: 0;
  padding-right: 0;
}

.l-heroCell {
  padding: 40px;
}
@media screen and (min-width: 760px) {
  .l-heroCell {
    padding: 80px 50px;
  }
}
@media screen and (min-width: 960px) {
  .l-heroCell {
    padding: 160px 128px;
  }
}

.l-col {
  width: 100%;
  max-width: 900px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
}
@media screen and (min-width: 1200px) {
  .l-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.l-col--content {
  max-width: 670px;
}
.l-col--narrow {
  max-width: 502.5px;
}

.l-jump, .c-accordeon, .c-ressource {
  margin-top: 24px;
}
@media screen and (min-width: 760px) {
  .l-jump, .c-accordeon, .c-ressource {
    margin-top: 40px;
  }
}
@media screen and (min-width: 960px) {
  .l-jump, .c-accordeon, .c-ressource {
    margin-top: 50px;
  }
}

.l-topMargin, .l-margin {
  margin-top: 40px;
}
@media screen and (min-width: 760px) {
  .l-topMargin, .l-margin {
    margin-top: 64px;
  }
}
@media screen and (min-width: 960px) {
  .l-topMargin, .l-margin {
    margin-top: 96px;
  }
}
@media screen and (min-width: 1200px) {
  .l-topMargin, .l-margin {
    margin-top: 120px;
  }
}

.l-bottomMargin, .l-margin {
  margin-bottom: 40px;
}
@media screen and (min-width: 760px) {
  .l-bottomMargin, .l-margin {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 960px) {
  .l-bottomMargin, .l-margin {
    margin-bottom: 96px;
  }
}
@media screen and (min-width: 1200px) {
  .l-bottomMargin, .l-margin {
    margin-bottom: 120px;
  }
}

.l-topPadding, .l-padding {
  padding-top: 40px;
}
@media screen and (min-width: 760px) {
  .l-topPadding, .l-padding {
    padding-top: 64px;
  }
}
@media screen and (min-width: 960px) {
  .l-topPadding, .l-padding {
    padding-top: 96px;
  }
}
@media screen and (min-width: 1200px) {
  .l-topPadding, .l-padding {
    padding-top: 120px;
  }
}

.l-bottomPadding, .l-padding {
  padding-bottom: 40px;
}
@media screen and (min-width: 760px) {
  .l-bottomPadding, .l-padding {
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 960px) {
  .l-bottomPadding, .l-padding {
    padding-bottom: 96px;
  }
}
@media screen and (min-width: 1200px) {
  .l-bottomPadding, .l-padding {
    padding-bottom: 120px;
  }
}

.l-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-center--col {
  flex-direction: column;
}

.l-pictoContent__picto {
  flex: none;
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

.l-pictoContent__content {
  flex: 1 0 0;
}

@media screen and (min-width: 760px) {
  .l-pictoContent {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    max-width: 670px;
  }

  .l-pictoContent__picto {
    width: 162px;
    height: 162px;
    margin-right: 24px;
    margin-bottom: 0;
  }
}
.l-duo--compact .l-duo__content {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 759px) {
  .l-duo__content {
    padding-left: 0;
    padding-right: 0;
  }
  .l-duo__content:first-child {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 760px) {
  .l-duo {
    display: flex;
    max-width: 900px;
  }

  .l-duo__content {
    flex: 1 0 50%;
  }
  .l-duo__content:first-child {
    padding-left: 0;
  }
  .top-border .l-duo__content:first-child {
    border-right: 3px solid #DEDEDE;
  }
  .l-duo__content:last-child {
    padding-right: 0;
  }
}
/*======================================================================*\
==========================================================================

							BASE SPINNER

==========================================================================
\*======================================================================*/
.cb-spinner {
  width: 14px;
  border: 2px solid #78AD5B;
  border-top-color: transparent;
  border-radius: 50%;
  background-color: transparent;
  animation: 0.8s linear infinite spin;
}
.cb-spinner:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.cb-spinner--white {
  border-color: #fff;
}

/*======================================================================*\
==========================================================================

							BASE LOADER

==========================================================================
\*======================================================================*/
.cb-loader {
  position: fixed;
  z-index: 1000;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background-color: #fff;
  transform: translateY(100%);
  transition-property: transform;
  transition-duration: 0.2s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cb-loader.is-visible {
  transform: translateY(0%);
}

.cb-loader__bar {
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #78AD5B;
  transition-property: width;
  transition-duration: 0.1s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

/*======================================================================*\
==========================================================================

							BASE NOTIFY

==========================================================================
\*======================================================================*/
.cb-notify {
  position: fixed;
  width: 100%;
  z-index: 1000;
  left: 0;
  bottom: 0;
  background-color: #006666;
  transform: translateY(100%);
  transition-property: transform;
  transition-duration: 0.2s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cb-notify.is-open {
  transform: translateY(0%);
}
.cb-notify.error {
  background-color: #F13636;
}
.cb-notify.valid {
  background-color: #00C15F;
}

.cb-notify__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-notify__message {
  font-family: "basicsans", sans-serif;
  color: #fff;
  margin-right: 24px;
}

.cb-notify__btn {
  flex: none;
}

/*======================================================================*\
==========================================================================

							BASE NAV ADMIN

==========================================================================
\*======================================================================*/
.cb-adminTools {
  position: fixed;
  z-index: 500;
  left: 0;
  bottom: 0;
  padding: 0 8px;
  background-color: #000;
}
@media screen and (max-width: 760px) {
  .cb-adminTools {
    display: none;
  }
}

.cb-adminTools__bt {
  display: inline-block;
  color: #fff;
  padding: 1em;
}
.cb-adminTools__bt:hover {
  color: #009478;
}

.c-button {
  display: inline-block;
  font-weight: 900;
  color: #000;
  border: 3px solid #78AD5B;
  padding: 0.8em 1.5em;
  border-radius: 100px;
  text-transform: uppercase;
}
.c-button:hover, .c-button.success {
  background-color: #78AD5B;
  color: #fff;
}
.c-button .c-button__icon {
  margin-right: 8px;
}
.c-button [class*='spinner'] {
  display: none;
}
.c-button.show-spinner [class*='spinner'] {
  display: inline-block;
}
.c-button.show-spinner [class*='check'] {
  display: none;
}

.c-navLink {
  position: relative;
  color: #78AD5B;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 2px;
}
nav .c-navLink {
  padding: 8px 16px;
}
.c-navLink:hover {
  color: #006666;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}
.c-navLink.is-active {
  color: #006666;
  border-color: #006666;
  pointer-events: none;
}

.c-decoration {
  width: 266px;
  height: 322px;
  position: absolute;
}
.c-decoration--intro {
  right: 0;
  bottom: 0;
  transform: translate(12%, 20%);
  opacity: 0.1;
}
.c-decoration--formations {
  left: 0;
  bottom: 0;
  transform: translate(-25%, 20%);
  opacity: 0.05;
}
.c-decoration--formations path {
  fill: #006666;
}

.c-form__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.c-form-row {
  position: relative;
  margin: 40px 0 16px 0;
}
.c-form-row input[type="checkbox"] {
  margin: 0 8px 0 0;
}

.c-form-row__label {
  position: relative;
  z-index: 1;
  display: block;
  font-weight: 900;
  margin-bottom: 16px;
}
.c-form-row__label .i-required {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-form-row__label [class*="fa"] {
  margin-right: 8px;
  overflow: hidden;
  max-width: 22px;
  width: 22px;
}

.c-form-row__input {
  position: relative;
  z-index: 2;
  font-weight: 900;
  border-bottom: 3px solid #DEDEDE;
  width: 100%;
  background-image: none !important;
  box-shadow: none;
  padding-bottom: 8px;
  cursor: pointer !important;
}
.c-form-row__input:focus + .c-form-row__label, .c-form-row__input.is-filled + .c-form-row__label {
  font-size: 12px;
  top: -20px;
  font-weight: 400;
}
.c-form-row__input:focus + .c-form-row__label [class*="fa"], .c-form-row__input.is-filled + .c-form-row__label [class*="fa"] {
  max-width: 0;
  margin: 0;
  visibility: hidden;
}
.c-form-row__input + .c-form-row__label {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.c-form-row__input.has-error {
  border-color: #F13636;
}

.c-form-row__select {
  border: 3px solid #DEDEDE;
  padding: 8px;
  width: 100%;
}

.c-form-row__radio {
  margin-bottom: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: flex-start;
}
.c-form-row__radio:not(:last-child) {
  border-bottom: 1px dotted #DEDEDE;
}
.c-form-row__radio input[type="radio"] {
  position: relative;
  top: 4px;
  margin: 0 8px 0 0;
}

.c-form__charte {
  border: 3px solid #DEDEDE;
}
.c-form__charte li {
  font-size: 1em;
}

.c-form-notify span {
  color: #fff;
  display: block;
}
.c-form-notify span.error {
  background-color: #F13636;
}
.c-form-notify span.valid {
  background-color: #00C15F;
}

.c-intro {
  position: relative;
  background-image: linear-gradient(45deg, #006666, #009478 100%);
  overflow: hidden;
}

.c-intro__content {
  color: #fff;
}

/*======================================================================*\
==========================================================================

							FLUXI ACCORDEON

==========================================================================
\*======================================================================*/
.c-accordeon:hover .c-accordeon__title__icon {
  color: #009478;
}
.c-accordeon.is-open .c-accordeon__title__icon {
  transform: rotate(180deg);
}
.c-accordeon + .c-accordeon {
  margin-top: 24px;
}

.c-accordeon__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  padding-bottom: 0.5em;
  border-bottom: 3px solid #DEDEDE;
  cursor: pointer;
}

.c-accordeon__title__icon {
  color: #78AD5B;
  margin-left: 1em;
  background-color: transparent;
  border: 0;
}

.c-accordeon__content {
  background-color: #f8f8f8;
}

.c-ressource {
  border-left: 3px solid #DEDEDE;
}

.c-ressource__link {
  margin-top: 16px;
}

.c-link, .c-ressource__link {
  display: block;
  color: #78AD5B;
  cursor: pointer;
}
.c-link [class*="fa"], .c-ressource__link [class*="fa"] {
  position: relative;
  left: 0;
  margin-right: 8px;
}
.c-link:hover, .c-ressource__link:hover {
  color: #006666;
}
.c-link:hover [class*="fa"], .c-ressource__link:hover [class*="fa"] {
  left: 3px;
}

/*======================================================================*\
==========================================================================

							HOMEPAGE

==========================================================================
\*======================================================================*/
.hp-nav {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  padding-bottom: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-120%);
}
.hp-nav.is-visible {
  transform: translateY(0);
}
@media screen and (max-width: 760px) {
  .hp-nav {
    display: none;
  }
}

.hp-nav__item {
  padding: 16px !important;
  border: 0;
}
.hp-nav__item::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #006666;
  transform: translate(-50%, 50%) scale(0);
}
.hp-nav__item.is-active::after {
  transform: translate(-50%, 50%) scale(1);
}

.popup {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup.opacity {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10%);
}

.popup__content {
  position: relative;
  max-width: 400px;
  background-color: #fff;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.75);
  border-radius: 3px;
}

.popup__content__toggle, .displayDl {
  padding: 0.5em 1em;
  background-color: #000;
  color: #fff;
  cursor: pointer;
}

.popup__content__toggle {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
}

.displayDl {
  font-weight: 900;
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
}
.displayDl.is-visible {
  transform: translateY(0%);
}

.map {
  position: relative;
  position: relative;
}
.map > * {
  position: relative;
  z-index: 2;
}
.map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  width: 86%;
  left: 7%;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.map::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eeeeee;
  z-index: 2;
}

.map-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #DEDEDE;
}
.map-loader .fa-layers {
  margin-right: 16px;
}
.map-loader .fa-circle {
  color: #fff;
}

#map {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 700px;
}
@media screen and (max-width: 760px) {
  #map {
    height: 500px;
  }
  .fullscreen #map {
    position: fixed !important;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 760px) {
  #map {
    max-height: 80vh;
  }
}

.cluster div {
  color: #fff !important;
  font-family: "basicsans", sans-serif !important;
  position: relative !important;
  top: 2px !important;
  left: 1px !important;
}

.gm-style-iw {
  position: relative;
  top: -75px !important;
  left: -1px !important;
  overflow: visible !important;
  box-shadow: none !important;
  background-color: transparent !important;
  padding: 0 !important;
}
.gm-style-iw > div,
.gm-style-iw > div > div {
  overflow: visible !important;
}

.gm-style-iw-t::before,
.gm-style-iw-t::after {
  display: none !important;
}

.infowindow__shadow,
.infowindow__corne,
.infowindow__shadow-corne {
  display: none;
}

.infowindow__corne + div {
  opacity: 0;
}

.infowindow__content {
  font-family: "basicsans", sans-serif;
  display: block;
  position: relative;
  padding: 24px;
  background-color: #fff;
  border-radius: 2px;
  width: 405px;
  box-shadow: 0 10px 50px rgba(0, 102, 102, 0.2);
  color: #000;
}
.infowindow__content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  margin-left: 1px;
  width: 6px;
  height: 18px;
  border-radius: 100px;
  background-color: #006666;
}
.infowindow__content [class*="fa"] {
  margin-right: 8px;
}
.infowindow__content > *:not(:first-child) {
  margin-top: 16px;
}

.infowindow__content__desc {
  position: relative;
  background-color: #f8f8f8;
  max-height: 200px;
  overflow-y: auto;
}
.infowindow__content__desc p {
  line-height: 1.2;
}

.infowindow__content__link {
  display: block;
}

.infowindow__close {
  height: 30px !important;
  width: 30px !important;
  position: absolute !important;
  top: 40px !important;
  right: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  border-radius: 50%;
  opacity: 1 !important;
}
.infowindow__close:hover {
  background-color: #DEDEDE;
}

/*======================================================================*\
==========================================================================

								HEADER

==========================================================================
\*======================================================================*/
.header {
  position: relative;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 760px) {
  .header {
    overflow-y: auto;
  }
  .header .header__logo,
  .header .header__logos {
    display: none;
  }
  .header .header__nav {
    margin-left: 0;
    padding-left: 0;
  }
}

.header__logo {
  position: absolute;
  top: 0;
  display: block;
  width: 170px;
  padding: 24px;
  background-color: #fff;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.header__logo img {
  width: 100%;
}

.header__nav {
  margin-left: 170px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.header__logos {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.header__logos a {
  margin-left: 16px;
}
.header__logos a:first-child img {
  height: 30px;
}
.header__logos a:last-child img {
  height: 50px;
}

@media screen and (min-width: 760px) {
  .header__nav {
    display: block;
  }
}
/*======================================================================*\
==========================================================================

							FOOTER

==========================================================================
\*======================================================================*/
.footer {
  background-color: #006666;
  color: #fff;
}

@media screen and (min-width: 760px) {
  .footer__area {
    padding: 40px;
    flex: 1 0 50%;
  }
}
@media screen and (min-width: 760px) and (min-width: 760px) {
  .footer__area {
    padding: 50px;
  }
}
@media screen and (min-width: 760px) and (min-width: 960px) {
  .footer__area {
    padding: 64px;
  }
}
@media screen and (min-width: 760px) {
  .footer__area:first-child {
    padding-left: 0;
  }
  .footer__area:last-child {
    padding-right: 0;
  }
}
.footerForm {
  margin-top: 24px;
  display: flex;
  padding: 16px;
  background-color: #fff;
  border-radius: 3px;
}

.footerForm__wrap {
  position: relative;
  margin-right: 16px;
  flex: 1 0 0;
}

.footerForm__wrap__input {
  border-bottom: 3px solid #DEDEDE;
  width: 100%;
  height: 90%;
  font-weight: 900;
  box-shadow: none;
}
.footerForm__wrap__input:focus + .footerForm__wrap__label, .footerForm__wrap__input:valid + .footerForm__wrap__label {
  font-size: 12px;
  top: -10px;
  font-weight: 400;
}

.footerForm__wrap__label {
  position: absolute;
  left: 0;
  top: 6px;
  font-weight: 900;
  color: #000;
}

.footerForm__bt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #78AD5B;
  color: #fff;
}
