.green-audio-player {
  width: 100%;
  background-color: var(--surface-dark);
  border-radius: 0;
}
.green-audio-player .holder {
  position: relative;
}
.green-audio-player .holder .pulsar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0;
  -webkit-animation: pulsar 1.33s ease-out infinite;
          animation: pulsar 1.33s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}
.green-audio-player .play-pause-btn svg path {
  fill: var(--primary);
}
.green-audio-player .volume__button svg path {
  fill: var(--primary);
}
.green-audio-player .controls {
  color: var(--grey-300);
}
.green-audio-player .slider {
  background-color: var(--surface);
}
.green-audio-player .slider .gap-progress,
.green-audio-player .slider .gap-progress .pin {
  background-color: var(--primary);
}

@-webkit-keyframes pulsar {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

@keyframes pulsar {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(5);
            transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}
button#menu-trigger {
  border: none;
  color: var(--contrast);
  background-color: var(--primary);
}
button#menu-trigger:hover {
  background-color: var(--grey-900);
  color: var(--text-invert);
}

.site-footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 500;
}

body.admin-bar.home header, body.admin-bar.home nav {
  margin-top: 32px;
}
body.admin-bar.home #mapHome {
  height: calc(100vh - 32px);
}
body.admin-bar.home .leaflet-bottom {
  bottom: 0px;
}
body.admin-bar.home .contenu-listSons {
  height: calc(100vh - 112px);
  overflow: auto;
}
body.admin-bar.home nav#menuSons {
  height: calc(100vh - 32px);
}

body.capture header {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.capture header h1 a {
  text-decoration: none;
}
body.capture header .cta-menu {
  display: none;
}
body.capture .player.green-audio-player {
  display: none !important;
}
body.capture #player-sticky.is-active {
  bottom: auto;
  top: 0;
}
body.capture #player-sticky .details {
  position: relative;
  top: 0;
  left: 0;
  padding-top: 100px;
  background-color: #000000;
}
body.capture .leaflet-control-zoom {
  display: none !important;
}
body.capture .player-nav {
  display: none !important;
}

.leaflet-bottom.leaflet-right {
  z-index: 500;
}

.map-marker-inner img {
  display: block;
}

.map-marker-active .map-marker-inner {
  -webkit-animation: markerPulse 1000ms infinite;
          animation: markerPulse 1000ms infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  scale: 2;
}
@-webkit-keyframes markerPulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
@keyframes markerPulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

.home header {
  position: fixed;
  top: 0;
  z-index: 10500;
  width: 400px;
  background-color: var(--surface-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home header h1 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.5em;
  margin: 0;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home header h1 a {
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .home header {
    width: 100%;
  }
}
.home .map {
  height: 100vh;
  width: 100vw;
  -webkit-transition: width 0.6s cubic-bezier(0.77, 0.18, 0.6, 0.85);
  transition: width 0.6s cubic-bezier(0.77, 0.18, 0.6, 0.85);
  -webkit-transition-property: width, height, left, top, bottom, right;
  transition-property: width, height, left, top, bottom, right;
  left: 0;
}
.home .map.is-small {
  width: calc(100vw - 300px);
  left: 300px;
}
@media screen and (max-width: 600px) {
  .home .map .leaflet-control-zoom {
    top: 70px;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 500;
  display: none;
}
.overlay.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.overlay .content {
  margin: auto;
  color: var(--text-invert);
  font-size: 2em;
  font-weight: 800;
}

nav#menuSons {
  background-color: var(--surface-dark);
  color: var(--text-invert);
  width: 400px;
  position: absolute;
  left: -420px;
  top: 0;
  z-index: 10000;
  height: 100vh;
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0.18, 0.6, 0.85);
  transition: all 0.6s cubic-bezier(0.77, 0.18, 0.6, 0.85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
nav#menuSons.is-open {
  left: 0;
}
nav#menuSons .contenu-listSons {
  padding: 85px 0;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: auto;
}
@media screen and (max-width: 600px) {
  nav#menuSons .contenu-listSons {
    height: calc(100dvh - 70px);
  }
}
nav#menuSons .menu-nav-volet-container {
  background-color: var(--surface-dark);
  width: 400px;
  left: 0;
  bottom: 0;
  padding: 10px 0;
}
nav#menuSons .menu-nav-volet-container ul {
  list-style: none;
  margin: 0;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 3px;
}
nav#menuSons .menu-nav-volet-container ul li {
  font-size: 0.9rem;
  margin-right: 0.6em;
  padding: 0 0;
}
@media screen and (max-width: 600px) {
  nav#menuSons {
    width: 100%;
    left: -100%;
    height: 100dvh;
  }
  nav#menuSons .menu-nav-volet-container {
    width: 100%;
  }
}

ul#sounds-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul#sounds-list li {
  cursor: pointer;
  padding: 15px 20px;
}
ul#sounds-list li .date {
  font-size: 0.8em;
  color: var(--grey-300);
}
ul#sounds-list li .titre {
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1em;
}
ul#sounds-list li.is-active {
  background-color: var(--primary);
  color: var(--contrast);
}
ul#sounds-list li.is-active .date {
  color: var(--contrast);
}

#player-sticky {
  position: fixed;
  bottom: -200px;
  width: 100%;
  z-index: 1000;
  color: var(--primary);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0.18, 0.6, 0.85);
  transition: all 0.6s cubic-bezier(0.77, 0.18, 0.6, 0.85);
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#player-sticky.is-active {
  bottom: 0;
}
#player-sticky .details {
  position: absolute;
  bottom: 56px;
  width: auto;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#player-sticky .details .infos {
  padding: 8px 16px;
  background-color: var(--surface-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#player-sticky .details .title {
  display: inline-block;
  color: var(--surface);
  font-weight: 800;
  font-size: 1.5em;
}
#player-sticky .details .date {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.5em;
}
#player-sticky .details .date::first-letter {
  text-transform: uppercase;
}
#player-sticky .details #expand-description-action {
  display: none;
  margin-left: 0.6em;
  cursor: pointer;
}
#player-sticky .details #expand-description-action.is-active {
  display: block;
}
#player-sticky .details .description {
  color: var(--grey-300);
  font-size: 0.88em;
  padding: 8px 16px;
  background-color: var(--surface-dark);
  display: none;
  max-width: 900px;
}
#player-sticky .details .description.is-open {
  display: inline-block;
}
#player-sticky .details .description p:last-child {
  margin-bottom: 0;
}
#player-sticky .player-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#player-sticky .player-nav button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#player-sticky .player-nav button span {
  display: none;
}
#player-sticky .player-nav button svg {
  height: 20px;
}
@media screen and (min-width: 600px) {
  body.nav-open #player-sticky {
    width: calc(100% - 400px);
    left: 400px;
  }
}
@media screen and (max-width: 600px) {
  #player-sticky {
    z-index: 510;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #player-sticky .player-nav {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: var(--contrast);
  }
  #player-sticky .player-nav button span {
    padding-right: 5px;
    display: block;
  }
  #player-sticky .details {
    bottom: 102px;
  }
}

.page-template-liste-sons header .grid-container.inside-header {
  max-width: none;
  padding: 8px 15px;
}
.page-template-liste-sons .site-content {
  padding: 15px;
  color: var(--text-invert);
}
.page-template-liste-sons .site-content .container {
  width: 100%;
}
.page-template-liste-sons h1 {
  color: var(--primary);
}

.sound-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, auto));
  gap: 2px;
}

.sound-card {
  background-color: var(--surface);
  padding: 20px;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-height: 320px;
  cursor: pointer;
  color: var(--contrast);
}
.sound-card a {
  color: var(--contrast);
  text-decoration: none;
}
.sound-card h2 {
  color: var(--contrast);
  font-size: 1.46rem;
  font-weight: 800;
  margin: 0;
}
.sound-card p {
  margin: 0;
  font-size: 0.95rem;
}
.sound-card .details {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.sound-card .sound-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.sound-card .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.2em;
}
.sound-card .tags li.tag {
  list-style: none;
  padding: 0.3em 0.6em;
  background-color: var(--contrast);
  color: var(--text-invert);
  font-size: 0.6em;
}
.sound-card .tags li.tag::first-letter {
  text-transform: uppercase;
}
.sound-card .tags li.tag {
  font-weight: 600;
}
.sound-card .locate a {
  color: var(--contrast);
}
.sound-card .locate svg {
  display: block;
  height: 20px;
}
.sound-card:hover {
  color: var(--primary);
  background-color: var(--contrast);
}
.sound-card:hover a, .sound-card:hover h2, .sound-card:hover p {
  color: var(--primary);
}
.sound-card:hover .tags li {
  background-color: var(--surface);
  color: var(--contrast);
}

.tab-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .tab-cat {
    display: none;
  }
}

.tab {
  font-size: 3rem;
  line-height: 1em;
}

.tab.active {
  color: var(--accent);
}

.form-cat {
  margin-bottom: 20px;
  width: 100%;
  display: none;
}
.form-cat select {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: var(--surface-dark);
  color: var(--primary);
  border: 2px solid var(--primary);
}
@media screen and (max-width: 600px) {
  .form-cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}/*# sourceMappingURL=custom.css.map */