/* MOBILE FIRST */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

body {
  font-family: var(--fontFamily);
  font-size: var(--textSize);
  color: var(--black);
  line-height: 1.4;
  margin: 20px;
  background: var(--background);
}

a {
  text-decoration: none;
  color: var(--black);
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--fontTitle);
}

h1 {
  font-size: var(--h1Size);
  color: var(--green);
  line-height: 1;
}

h1.page-title {
  position: fixed;
  top: 0;
  left: 40px;
  right: 40px;
  width: calc(100% - 80px);
  text-align: center;
  z-index: 1000;
  font-size: var(--menuSize);
  padding: 12px 0 40px;
  pointer-events: none;
  transition: all 0.6s 0.3s linear;
}

header.active ~ main h1.page-title,
header.active ~ h1.page-title {
  opacity: 0;
  transition: all 0.2s linear;
}

.toggle-help.show-for-small-only:not(.site-help),
body[data-template="map"] .toggle-help:not(.site-help) {
  padding-top: 0;
  transition: all 0.6s 0.3s linear;
}

header.active ~ .toggle-help.show-for-small-only:not(.site-help),
body[data-template="map"] header.active ~ .toggle-help:not(.site-help) {
  opacity: 0;
  transition: all 0.2s linear;
}

h2 {
  line-height: 1.1;
}
p {
  margin-bottom: 1rem;
}
img {
  width: 100%;
}
audio {
  max-width: 100%;
}

main {
  padding-top: 90px;
  padding-bottom: 150px;
}

main h1 {
  margin-bottom: 0;
}

main h1 + article,
main h1 + .page__content-wrapper {
  margin-top: calc(var(--margin) * 2);
}

main article figure {
  margin-bottom: var(--margin);
}

figcaption {
  font-size: var(--smallSize);
  margin-top: 5px;
}

blockquote {
  margin-left: 15%;
  margin-right: 0;
  font-size: var(--mediumSize);
  margin-bottom: var(--margin);
}

blockquote footer {
  font-size: 15px;
  text-align: right;
}

/* grille de 12 colonnes  */
.row__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.row__grid .column__grid {
  grid-column: span 11;
}

.show-for-small-only {
  display: block;
}

.hide-for-small-only {
  display: none;
}

/* ---- H E A D E R -----*/
body > header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--background);
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--background) 60%,
    transparent 100%
  );
  min-height: 90px;
}

header .header-inner {
  position: relative;
  width: 100%;
  max-height: 0;
  height: 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--background) 40%,
    var(--yellow) 100%
  );
  transition: all 0.5s linear;
}

header.active .header-inner {
  max-height: 100vh;
  height: 100vh;
  overflow: auto;
}

header .menu-left {
  width: 100%;
  text-align: center;
  margin-top: 110px;
}

header .menu-left ul li {
  font-family: var(--fontTitle);
  font-size: var(--menuSize);
  margin-bottom: 35px;
}

header .menu-left ul li a {
  color: var(--green);
}

header .menu-left ul li a.active {
  text-decoration: underline;
}

header .menu-right {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: absolute;
  top: 0px;
}

header .menu-right li {
  padding-right: 10px;
}

header .menu-right li a {
  color: var(--green);
}

header h1.menu-site-title {
  position: absolute;
  bottom: 20px;
  font-size: var(--menuSize);
  text-align: center;
  text-transform: lowercase;
  transform: scale(1.25, 1);
}

header .site-help {
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

header .site-help:hover {
  background: var(--green);
  color: var(--background);
}

header #toggle-night-mode {
  color: var(--green);
  font-size: 24px;
  margin-top: -5px;
  cursor: pointer;
}

header #toggle-low-tech-mode {
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 15px;
  padding: 2px 15px;
  cursor: pointer;
}

header #toggle-low-tech-mode:hover {
  background: var(--green);
  color: var(--background);
}

#switch-lang-wrapper {
  display: flex;
}

#switch-lang-wrapper li {
  padding: 0 2px 0;
}

#switch-lang-wrapper li:first-child:before {
  content: none;
}

#switch-lang-wrapper li:before {
  content: "/";
  color: var(--green);
}

#switch-lang-wrapper li.active a {
  text-decoration: underline;
}

header .mobile__menu_btn {
  display: block;
  position: absolute;
  left: 15px;
  top: 15px;
  cursor: pointer;
  height: 24px;
  width: 24px;
  z-index: 1005;
}

header .mobile__menu_btn span {
  display: block;
  background: var(--green);
  height: 2px;
  width: 26px;
  position: absolute;
  transition: all 0.5s ease;
}

header .mobile__menu_btn span:nth-child(1) {
  top: 0px;
}
header .mobile__menu_btn span:nth-child(2) {
  top: 8px;
}
header .mobile__menu_btn span:nth-child(3) {
  top: 16px;
}
header .mobile__menu_btn .transparent {
  opacity: 0;
}

header .mobile__menu_btn .rotate-top {
  -ms-transform: rotate(45deg);
  transform: rotatez(45deg);
  -webkit-transform-origin: 0%;
  left: 2px;
}

header .mobile__menu_btn .rotate-bottom {
  -ms-transform: rotate(-45deg);
  transform: rotatez(-45deg);
  -webkit-transform-origin: 15%;
}

/* ---- F O O T E R -----*/
body[data-template="home"] footer.website__footer {
  display: block;
}

footer.website__footer {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 30px 30px 20px;
  background: var(--background);
  background: linear-gradient(180deg, var(--background) 0%, var(--yellow) 100%);
}

footer.website__footer h1 {
  font-family: var(--fontTitle);
  color: var(--green);
  font-size: var(--menuSize);
  text-align: center;
  text-transform: lowercase;
  transform: scale(1.25, 1);
}

footer.website__footer h1 a {
  color: var(--green);
}

footer.website__footer h1 a:hover {
  text-decoration: none;
}

body[data-template="home"] footer.website__footer {
  padding-top: 50vh;
  z-index: -1;
}

body[data-template="home"] footer.website__footer h1 {
  font-size: var(--menuSize);
}

/* ---- G E N E R A L ----- */
.page__content-wrapper {
  padding: 0;
}

.page__content-wrapper h2 {
  font-size: var(--h2SizeBis);
  color: var(--green);
  margin-bottom: var(--margin);
  margin-top: calc(var(--margin) * 2);
}

.page__content-wrapper h3 {
  font-size: var(--menuSize);
  color: var(--green);
  margin-bottom: var(--margin);
  margin-top: var(--margin);
}

.relative {
  position: relative;
}

.relative .full {
  position: absolute;
  inset: 0;
}

.common__btn {
  font-family: var(--fontTitle);
  border: 1px solid var(--green);
  padding: 5px 20px;
  color: var(--green);
  border-radius: 15px;
  cursor: pointer;
  margin-bottom: 15px;
}

.common__btn:hover,
.common__btn.active {
  color: var(--background);
  background: var(--green);
}

#help {
  min-height: 200px;
  /*min-width: 350px;*/
  max-width: 800px;
  border: 2px solid var(--green);
  border-radius: 15px;
  padding: 30px;
  background: var(--background);
  top: 50%;
  transform: translateY(-80%);
  position: fixed;
  z-index: 1003;
}

#help h3 {
  text-align: center;
  margin-bottom: 1rem;
}

#close-help-dialog {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 15px;
  color: var(--background);
  background: var(--green);
  width: 22px;
  height: 22px;
  border-radius: 100%;
  cursor: pointer;
}

.item__tags li {
  border: 1px solid var(--green);
  display: inline-block;
  color: var(--green);
  font-family: var(--fontTitle);
  border-radius: 12px;
  padding: 3px 10px;
  cursor: pointer;
  margin-right: 5px;
  margin-top: 2.5px;
  margin-bottom: 2.5px;
}

.item__tags li:hover,
.item__tags li.active {
  background: var(--green);
  color: var(--background);
}

.item__tags li a {
  color: var(--green);
  text-decoration: none;
}

.item__tags li:hover a {
  color: #fff;
}

.document__meta {
  position: absolute;
  left: calc(-15% - 10px);
  width: 15%;
  text-align: right;
}

.document__meta p {
  color: var(--green);
  font-family: var(--fontTitle);
  font-size: var(--smallSize);
  margin-bottom: 5px;
}

.document__meta .item__tags li {
  padding-top: 0;
  line-height: 1;
  padding-bottom: 7px;
}

.document__meta .item__tags li a {
  font-size: var(--smallSize);
}

.block-image {
  position: relative;
}

.block-gallery li {
  margin-bottom: var(--margin);
}

.video-from-web {
  position: relative;
  padding-top: 56.25%;
  /*  height: 0; */
  overflow: hidden;
  width: 100%;
}

.video-from-web iframe,
.video-from-web object,
.video-from-web embed {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-from-web figcaption {
  margin-top: calc(var(--margin) + 10px);
}

.toggle-help:not(.site-help) {
  font-size: var(--smallSize);
  /*position: absolute;*/
  position: fixed;
  padding-top: 5px;
  width: 100%;
  left: 0;
  right: 0;
  top: 40px;
  z-index: 1002;
}

.toggle-help:not(.site-help):before {
  content: "> ";
  margin-right: 5px;
}

.toggle-help:hover {
  text-decoration: underline;
}

/*body[data-template="map"] .toggle-help{
  top: 42px;
  z-index: 900;
  width: 400px;
  text-align: center;
}*/

/* ----- N I G H T   M O D E ----- */
body.night {
  --black: rgb(252, 250, 250);
  --green: rgb(252, 250, 250);
  --background: var(--dark);
}

/* ----- L O W  M O D E ----- */
body.low img,
body.low video {
  display: none;
}

body.low figure {
  min-height: 100px;
  width: 100%;
  background: var(--yellow);
  padding: 10px 15px;
  border-radius: 15px;
}

/* ---- H O M E -----*/
body[data-template="home"] header .mobile__menu_btn {
  display: none;
}

body[data-template="home"] header .header-inner {
  max-height: none;
  height: auto;
  background: transparent;
}

body[data-template="home"] header .menu-left {
  margin-top: 0px;
}

body[data-template="home"] header .menu-right {
  position: relative;
  top: auto;
}

body[data-template="home"] main nav li {
  font-family: var(--fontTitle);
  font-size: var(--menuSize);
  color: var(--green);
  text-align: center;
  margin-bottom: 35px;
}

body[data-template="home"] main nav li a {
  color: var(--green);
}

/* ---- N E T W O R K -----*/
#network-grid.row {
  margin: 0;
}

#network-grid article {
  padding: 0;
  margin-bottom: var(--margin);
}

#network-grid article h2 {
  font-size: var(--h2Size);
  color: var(--green);
  margin-bottom: 10px;
  /*	text-align: center;*/
}

.device__list {
  margin-top: calc(var(--margin) * 3);
  padding: 15px 0px 40px;
}

.device__list h2 {
  font-size: var(--h2Size);
  color: var(--green);
  border-bottom: 1px solid var(--green);
  margin-bottom: var(--margin);
}

.device__list h3 {
  color: var(--green);
  font-size: var(--menuSize);
}

.device__additional {
  margin-top: calc(var(--margin) * 6);
}

.device__additional h2 {
  font-size: var(--h2Size);
  color: var(--green);
  border-bottom: 1px solid var(--green);
  margin-bottom: var(--margin);
}

.device__additional h3 {
  color: var(--green);
  font-size: var(--menuSize);
  margin-bottom: var(--margin);
  margin-top: calc(var(--margin) * 2);
}

.video-wrapper {
  padding: 0;
  margin-bottom: var(--margin);
}

/* ---- F O O T N O T E S ----- */
.note-call-wrapper {
  /*position: relative;*/
}

.note-call-wrapper .note-call {
  display: inline-block;
  width: 30px;
  cursor: pointer;
  font-size: 12px;
  background: var(--yellow);
  border-radius: 10px;
  text-align: center;
  color: var(--green);
}

.note-call-wrapper .contextual-note,
.note-call-wrapper .note-pointer {
  color: var(--green);
  font-size: var(--mediumSize);
  line-height: 1.2;
}

.note-call-wrapper .contextual-note a {
  color: var(--green);
}

.note-call-wrapper .note-pointer {
  font-weight: bold;
  margin-right: 10px;
}

.note-call-wrapper .footnoteHandler {
  display: inline-block;
  width: 100%;
  float: right;
  margin: 0px;
}

.note-call-wrapper .note__inner {
  width: 15%;
  min-width: 120px;
  max-width: 280px;
  border: none;
  opacity: 1;
  pointer-events: auto;
  display: none;
}

#footnotes {
  margin-top: 50px;
  padding-top: 50px;
  padding-left: 54px;
  border-top: 1px solid var(--black);
  counter-reset: footnotes;
}

#footnotes li {
  counter-increment: footnotes;
}

#footnotes li::marker {
  content: none;
}

#footnotes li p {
  display: inline-block;
  line-height: 1.6;
  font-size: var(--mediumSize);
}

#footnotes .note-pointer {
  display: inline-block;
  width: 30px;
  font-size: 12px;
  background: var(--yellow);
  border-radius: 10px;
  text-align: center;
  color: var(--green);
  margin-right: 12px;
  margin-left: -54px;
}

#footnotes .contextual-note {
  display: inline-block;
  vertical-align: top;
}

/* ---- M E D I A     A R C H I V E S ----- */
#database-manage {
  position: relative;
  width: 100%;
  margin-bottom: var(--margin);
}

#filters {
  display: flex;
  flex-wrap: wrap;
  color: var(--green);
  font-size: 14px;
  font-family: var(--fontTitle);
  padding: 15px 10px;
  border: 1px solid var(--green);
  border-radius: 15px;
}

#filters h4 {
  border-bottom: 1px solid var(--green);
  font-weight: bold;
  margin-bottom: 10px;
}

#filters .filters__category {
  padding-right: var(--margin);
  width: 100%;
  margin-bottom: var(--margin);
}

#filters .filters__category ul {
  column-count: 2;
  column-gap: 25px;
}

#filters li {
  margin-bottom: 3px;
}

#filters button {
  text-align: left;
}

#filters button.active {
  background: var(--green);
  color: var(--background);
  padding: 2px 10px;
  border-radius: 15px;
}

#search input {
  border: 1px solid var(--green);
  border-radius: 15px;
  padding: 5px 15px;
}

#search #search__clear {
  background: var(--green);
  color: #fff;
  /*background: #FFF;
  color: var(--green);*/
  /*border: 1px solid var(--green);*/
  border-radius: 100%;
  font-size: 15px;
  width: 24px;
  line-height: 0;
  height: 24px;
  margin-left: 10px;
}

table {
  opacity: 1;
  transition: opacity 0.5s ease;
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
}

table.loading {
  opacity: 0.4;
  transition: opacity 0.5s ease;
  cursor: wait;
}

#archive-table {
  table-layout: fixed;
  width: 100%;
  font-size: var(--smallSize);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#archive-table thead {
  background: var(--background);
}

#archive-table th:not(.filters, .pdf)::before {
  content: "↓";
  opacity: 0.4;
  margin-right: 10px;
}

#archive-table .sorted-asc:not(.filters, .pdf)::before {
  content: "↓";
  opacity: 1;
}

#archive-table .sorted-desc:not(.filters, .pdf)::before {
  content: "↑";
  opacity: 1;
}

td,
th {
  /*  overflow: hidden;*/
  text-overflow: ellipsis;
  /*  white-space: nowrap;*/
  padding: 8px;
}

#archive-table thead th {
  color: var(--green);
  font-family: var(--fontTitle);
  font-size: var(--menuSize);
  font-weight: normal;
  text-align: left;
  text-transform: lowercase;
}

#archive-table tbody tr.item {
  height: 35px;
  background: rgba(210, 255, 0, 0.1);
}

/*#archive-table tbody tr.item:nth-child(even) {
  background: var(--background);
}*/

#archive-table tbody tr.item:nth-of-type(4n+3),
#archive-table tbody tr.item:nth-of-type(4n+4) {
  background: var(--background);
}

#archive-table th:nth-child(1),
#archive-table td:nth-child(1) {
  width: 22%;
}

#archive-table th:nth-child(2),
#archive-table td:nth-child(2) {
  width: 35%;
}

#archive-table th:nth-child(3),
#archive-table td:nth-child(3),
#archive-table th:nth-child(4),
#archive-table td:nth-child(4) {
  width: 12.5%;
}

#archive-table th:nth-child(5),
#archive-table td:nth-child(5) {
  width: 15%;
}

#archive-table th:nth-child(6),
#archive-table td:nth-child(6) {
  width: 9%;
  min-width: 100px;
}

#archive-table th:nth-child(7),
#archive-table td:nth-child(7) {
  width: 60px;
}

#archive-table th:nth-child(8),
#archive-table td:nth-child(8) {
  width: 60px;
}

#archive-table .item__id {
  /*	background: var(--green);
		color: var(--background);
		border-radius: 10px;*/
}

#archive-table .item__description {
  position: absolute;
  left: -100vw;
  z-index: 999;
  border: 2px solid var(--green);
  width: 400px;
  border-radius: 15px;
}

#archive-table .item__description .item__tags {
  margin-bottom: var(--margin);
}

#archive-table .item__description .description__text {
  margin-bottom: var(--margin);
}

#archive-table .item__description .description__link {
  margin-bottom: 0;
}

#archive-table .item__description .description__link a {
  color: var(--green);
  text-decoration: underline;
}

/* ------      SEARCH DATABASE    ------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

#archive-table td.item__title:before {
  font-family: "Font Awesome 6 Free";
  font-size: 1.5em;
  margin-right: 10px;
  /*margin-left: -20px;*/
}

#archive-table .item__title[data-type="documents"]:before {
  content: "\f1c1";
}

#archive-table .item__title[data-type="audio"]:before {
  content: "\f1c7";
}

#archive-table .item__title[data-type="images"]:before {
  content: "\f03e";
}

#archive-table .item__title[data-type="interviews"]:before {
  content: "\f086";
}

#archive-table .item__title[data-type="videos"]:before {
  content: "\f1c8";
}

#archive-table .item__title[data-type="map"]:before {
  content: "\f279";
}

#archive-table .item__pdf a{
  font-size: var(--mediumSize);
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 100%;
  text-align: center;
  width: 25px;
  height: 25px;
  display: block;
  cursor: pointer;
}

#archive-table .item__pdf a:hover{
  text-decoration: none;
  background: var(--green);
  color: var(--background);
}

#archive-table .details {
  padding: 8px 0px;
}

#archive-table .details figure {
  width: 50%;
  margin-left: 22%;
  margin-bottom: 15px;
}

#archive-table .details .description {
  width: 50%;
  margin-left: 22%;
}

#archive-table .details p {
  font-size: var(--textSize);
}

#archive-table .details figure video {
  width: 100%;
}

/* ------  CARTOGRAPHIC PLATFORM ------ */
body[data-template="map"] {
  margin: 0;
}

body[data-template="map"] main {
  padding: 0;
}

#map {
  width: 100%;
  height: 100vh;
}

#map-wrapper {
  position: relative;
}

#map-panel {
  width: 400px;
  position: absolute;
  left: -24.5rem;
  padding-bottom: 150px;
  background-color: var(--background);
  transition: left 0.5s ease-in-out;
  font-size: var(--mediumSize);
  overflow: scroll;
  z-index: 1;

  height: 35vh;
  bottom: 0;
  top: auto;
  padding-top: 0;
}

#map-panel.open {
  left: 0;
}

#map-panel > section {
  border-top: 1px solid var(--green);
  /*padding: var(--margin);*/
}

#map-panel > section h2 {
  background: var(--green);
  color: #fff;
  font-size: var(--menuSize);
  padding: 10px 0;
  text-align: center;
}

#map-panel > section > div {
  padding: var(--margin);
  border-top: 1px solid var(--green);
}

/*#map-panel > div {
  border-top: 1px solid var(--green);
  padding: var(--margin);
}*/

#map-panel h3 {
  color: var(--green);
  font-size: var(--menuSize);
  text-align: center;
  margin-bottom: 12px;
}

#map-panel__years ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#map-panel > section ul > li {
  margin-right: 7px;
  margin-bottom: 7px;
  text-align: center;
}

#map-panel > section ul > li .common__btn {
  margin-bottom: 0;
}

#map-panel > section > ul > li button {
  padding: 4px 15px;
}

#map-panel__opacity {
  display: flex;
}

#map-panel__opacity input {
  display: block;
}

#map-panel__opacity label {
  color: var(--green);
  font-family: var(--fontTitle);
  width: 40%;
  margin: auto;
  margin-top: -5px;
}

#map-panel__opacity input {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  background: var(--green);
  margin: 10px 0;
  cursor: pointer;
}

#map-panel__opacity input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--background);
  border: 1px solid var(--green);
  margin-top: -6.5px;
}

#map-panel__opacity input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--background);
  border: 1px solid var(--green);
}

#map-panel__opacity input::-moz-range-track {
  height: 1px;
  background: var(--green);
}

#map-panel__opacity input::-ms-track {
  height: 1px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
#map-panel__opacity input::-ms-fill-lower,
#map-panel__opacity input::-ms-fill-upper {
  background: var(--green);
}

#map-panel__opacity input::-ms-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--background);
  border: 1px solid var(--green);
}

#map-panel__shapefiles li button {
  margin-bottom: 10px;
}

#map-panel .category ul li {
  position: relative;
}

#map-panel .category > ul {
  margin-top: 10px;
}

#map-panel .category ul li button {
  font-size: 14px;
  /*text-align: left;*/
  padding-left: 2.3em;
  max-width: 75%;
  display: inline-block;
  vertical-align: middle;
}

#map-panel .category ul li:last-child button {
  margin-bottom: 15px;
}

#map-panel #map-panel__project-materials .category ul li button {
  padding-left: 20px;
}

#map-panel > section ul > li button.shapefile-info {
  padding: 0px 1px 2px;
  font-size: 14px;
  font-family: var(--fontTitle);
  border-radius: 100%;
  color: var(--green);
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  border: 1px solid var(--green);
  width: 16px;
  height: 16px;
  margin-right: 4px;
  margin-top: 4px;
}

#map-panel > section ul > li button.shapefile-info.active,
#map-panel > section ul > li button.shapefile-info:hover {
  background: var(--green);
  color: #fff;
}

.shapefile-color {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-top: -4px;
  margin-right: 0.2em;
  margin-left: -1.5em;
  border-radius: 5px;
  vertical-align: middle;
}

.maplibregl-popup {
  max-width: 300px !important;
}

body[data-template="map"] .maplibregl-popup-content header {
  width: auto;
}

.maplibregl-popup-content {
  border-radius: 15px !important;
  padding: 10px !important;
}

.maplibregl-popup-content h3 {
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.3;
  width: 90%;
  font-size: 1.2em;
}

.maplibregl-popup-content li {
  display: inline-block;
  margin-right: 5px;
}

.maplibregl-popup-content p {
  line-height: 1.3;
  color: var(--green);
}

.maplibregl-popup-content .popup__type {
  margin-top: -10px;
}

.maplibregl-popup-content figure {
  margin-top: 10px;
  margin-bottom: 10px;
}

.maplibregl-popup-content .common__btn {
  padding: 1px 10px;
  margin-bottom: 5px;
}

.maplibregl-popup-close-button {
  background: var(--green) !important;
  color: #fff;
  border-radius: 100% !important;
  top: 6px !important;
  right: 6px !important;
  font-size: 15px;
  width: 21px;
  padding-bottom: 4px;
  line-height: 0;
  height: 18px;
}

.project-materials__popup a.document {
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

/* ADRIEN */

/* Generic classes (Adrien) */
.hidden {
  display: none;
}

/* Audio player */
audio {
  display: none;
}

.green-audio-player{
  width: 100%;
  /*height: auto;*/
  background-color: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right:0;
}

.green-audio-player .play-pause-btn__icon, 
.green-audio-player .volume__speaker{
  fill: var(--green);
}

.green-audio-player .controls {
  font-family: var(--fontFamily);
  color: var(--green);
}

.green-audio-player .controls .controls__slider{
  height: 9px;
  /*background: rgba(234, 215, 255, 0.7);*/
  border-radius: 5px;
  border: 1px solid rgba(1, 113, 88, 0.2);
  box-shadow: 0 0px 10px 0 rgba(1, 113, 88, 0.2);
  /*background: var(--yellow);*/
  background: rgba(210, 255, 0, 0.1);
}

.green-audio-player.volume .volume__controls {
  background: #FFF;
}

.green-audio-player .controls .controls__slider .controls__progress .progress__pin{
  top: -3.5px;
}

.green-audio-player .slider .gap-progress .pin{
  width: 14px;
  height: 14px;
  position: absolute;
  border-radius: 100px;
  background-color: var(--yellow);
  /*background-color: var(--background);*/
  border: 1px solid rgba(1, 113, 88, 0.5);
}

.green-audio-player .slider .gap-progress {
  /*background: var(--green);*/
  background: rgba(1, 113, 88, 0.9);
}





