* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* DÉBUT - HEADER */
header {
  position: fixed;
  height: 9svh;
  width: 100%;

  background-color: #ffffff;
  box-shadow: 0px -4px 30px #000000;
  z-index: 10000;
}
.arx-header-bar {
  height: 100%;
  width: 100%;
  top: 0;
  padding: 10px 10px 10px 10px;

  display: flex;
  align-items: center;
}
.arx-logo-header {
  height: 100%;
  width: auto;
  margin-right: 20px;
}
.arx-title {
  line-height: 0.8em;
  font-size: 28px;
  color: #277db3;
  z-index: 10001;
}
.arx-button-open-menu {
  background-image: url('../img/burger.png');
  height: 25px;
  width: 25px;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 25px;
}
.arx-button-close-menu {
  height: 9svh;
  width: 9svh;
  display: flex;
  position: absolute;
  right: 0;
  align-items: center;
  justify-content: center;
  background-color: #287db4;
}
.arx-button-close-menu::before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  height: 20px;
  width: 20px;
  left: -20px;
  bottom: 0;
  border-bottom-right-radius: 20px;
  box-shadow: 6px 6px 0px 6px #287db4;
}
.arx-button-close-menu img {
  height: 25px;
  width: 25px;
}
.arx-menu {
  background-color: #287db4;
  float: right;
  color: #ffffff;
  height: auto;
  width: 65vw;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 30px;
  line-height: 2em;
}
.arx-menu ul {
  list-style-type: none;
}
.arx-menu li {
  margin-bottom: 5px;
}
.arx-menu a {
  text-decoration: none;
  color: unset;
}
.hide {
  display: none;
}
/* FIN - HEADER */


/* DÉBUT - PAGE */
section {
  height: calc(100svh - 9svh); 
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  overflow: hidden; 
}
#arx-map-container {
  height: 100%;
  width: 100%;
}

/* DIV PERSONNALITÉS */
.info-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 10002;
  box-shadow: 0px 4px 30px #000000;
  transform: translateY(210px);
  transition: transform 1s ease;
}
.info-content {
  margin-bottom: 20px;
}
.open-div {
  transition: ease 1s;
  transform: translateY(0);
  transition: transform 1s ease;
}
.info-button-open-close-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -29px;
  background-color: #ffffff;
  border-radius: 100px 100px 0px 0px;
  padding: 0px 30px 0px 30px;
  z-index: -1;
}
.info-button-open-close {
  background-image: url('../img/arrow_open_close.svg');
  height: 50px;
  width: 50px;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 1s ease;
}
.down {
  transform: rotate(180deg);
  transition: transform 1s ease;
}
.info-title {
  width: 100%;
  text-align: center;
  color: #277db3;
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.info-personne-container {
  display: flex !important;
  margin-bottom: 25px;
  margin-left: 0px;
  margin-right: 10px;
}
.info-personne-left {
  position: relative;
  width:40%;
}
.info-personne-left img {
  /*height: 160px;*/
  width: 100%;
  max-width:300px;
}
.info-personne-emplacement {
  position: absolute;
  bottom: -13px;
  width: max-content;
  color: #ffffff;
  background-color: #287db4;
  padding: 10px 15px;
  border-radius: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  
}
.info-personne-right {
  margin-left: 12px;
  width:60%;
}
.info-personne-nom {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0px;
}
.info-personne-date {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.info-personne-description {
  font-size: 13px;
  line-height: 1.3em;
}
.info-personne-allee {
  color: #287db4;
  font-weight: bold;
  padding-top: 5px;
}
.slider-progress {
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 2px;
  background-color: #a7a7a7;
  position: relative;
  border-radius: 10px;
}

.progress-dot {
  height: 10px; 
  background-color: #287db4;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.5s ease-out;
}


/* GESTION POP-UP HORAIRES */
.arx-horaires-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10010;

  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 30px -10px #000000;

  height: auto;
  width: 80%;
}
.arx-horaires-close {
  background-image: url('../img/close_black.svg');
  height: 25px;
  width: 25px;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 15px;
}
.arx-horaires-content {
  margin: 50px 25px;
}
.arx-horaires-title {
  color: #287db4;
  font-size: 32px;
  margin-bottom: 20px;
}
.arx-horaires-info {
  margin-bottom: 10px;
}
.arx-horaire-1, .arx-horaire-2 {
  font-size: 18px;
}
.arx-horaire-1 {
  margin-bottom: 10px;
}
/* FIN - PAGE */


.custom-text-label strong {
  font-weight: 900;
}