body {
  --map-width: 335px;
  --map-height: 500px;
  --list-width: 280px;
  --list-height-mobile: 250px;
  --clr-bg-list: #f8f8f8;
}

.container-pois {
  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;
  background: transparent url("../img/background.png") repeat;
  width: 100%;
}

.container-pois > div {
  display: -ms-grid;
  display: grid;
  width: 100%;
  gap: 10px;
  max-width: var(--width);
      grid-template-areas: 'title title' 'filter search' 'map list';
  -ms-grid-columns: auto var(--list-width);
      grid-template-columns: auto var(--list-width);
  background-color: white;
  padding: 20px;
}

.container-pois > div > h1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: title;
  position: relative;
  line-height: 50px;
  padding-left: 60px;
  margin-bottom: 0;
}

.container-pois > div > h1::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  left: 0;
  background: transparent url("../img/header-menu-poi-off.png") no-repeat;
}

.container-pois > div > #container-pois__filter {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: filter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container-pois > div > #container-pois__filter > button {
  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;
  padding: 5px;
  margin: 5px;
  background-color: transparent;
  border: none;
  font-weight: 700;
  color: var(--clr-main-midgray);
}

.container-pois > div > #container-pois__filter > button > img {
  margin-right: 10px;
}

.container-pois > div > #container-pois__filter > button.selected {
  color: var(--clr-main-rose);
}

.container-pois > div > #container-pois__search {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: search;
  width: var(--list-width);
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-bottom: 10px;
}

.container-pois > div > #container-pois__search > input {
  width: 100%;
  line-height: 1.5em;
  border-radius: 0.5em;
  border-style: solid;
  padding: 5px 10px;
  border-color: var(--clr-main-dkgray);
  -webkit-appearance: none;
}

.container-pois > div > #container-pois__search > input:focus-visible {
  outline: none;
}

.container-pois > div > #container-pois__map {
  width: 100%;
  margin-right: 10px;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: map;
}

.container-pois > div > #container-pois__map .title-top::before {
  background: transparent url("../img/banner-icons-map.png") no-repeat;
}

.container-pois > div > #container-pois__list {
  width: calc(var(--list-width));
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: list;
}

.container-pois > div > #container-pois__list .title-top::before {
  background: transparent url("../img/banner-icons-list.png") no-repeat;
}

@media screen and (max-width: 680px) {
  .container-pois > div {
        grid-template-areas: 'title' 'filter' 'map' 'search' 'list';
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
  .container-pois > div > #container-pois__search {
    padding-top: 20px;
    width: 100%;
  }
  .container-pois > div > #container-pois__list {
    width: 100%;
    height: var(--list-height-mobile);
    max-height: var(--list-height-mobile);
  }
  .container-pois > div > #container-pois__list > #list {
    height: 100%;
    border-bottom: 1px solid var(--clr-main-ltgray);
  }
  .container-pois > div > #container-pois__list > #list > ul > li {
    width: 50%;
  }
  .container-pois > div > #container-pois__list > #list > ul > li:nth-child(2n) {
    border-left: 1px solid var(--clr-main-ltgray);
  }
}

@media screen and (max-width: 500px) {
  .container-pois > div > #container-pois__list > #list > ul > li {
    width: 100%;
    border-left: none;
  }
}

#map, #list {
  position: relative;
  height: var(--map-height);
  margin-top: 0px;
  margin-left: 5px;
  z-index: 1;
}

#map {
  width: calc(100% - 5px);
}

#list {
  width: calc(100% - 5px);
  height: var(--map-height);
  max-height: var(--map-height);
  background-color: var(--clr-bg-list);
}

#list > ul {
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  margin: 0;
  overflow-y: scroll;
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#list > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--clr-main-ltgray);
  padding: 5px 0;
  width: 100%;
}

#list > ul > li > img {
  padding: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}

#list > ul > li > div {
  width: 100%;
  padding-right: 10px;
}

#list > ul > li > div > span {
  display: block;
}

#list > ul > li > div > span:first-of-type {
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.4;
}

#list > ul > li > div > span:nth-of-type(2) {
  font-size: 0.7em;
  color: var(--clr-main-dkgray);
  text-transform: uppercase;
  line-height: 1.4;
}

#list > ul > li > div:nth-of-type(2) {
  min-width: 70px;
  max-width: 70px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 10px;
}

#list > ul > li > div:nth-of-type(2) > button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 27px;
  width: 27px;
  border-radius: 5px;
  border-width: 0;
  padding: 1px;
}

#list > ul > li > div:nth-of-type(2) > button:first-of-type {
  background-color: var(--clr-main-ltgray);
}

#list > ul > li > div:nth-of-type(2) > button:nth-of-type(2) {
  background-color: var(--clr-main-rose);
}

.popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 200px;
}

.popup > h2 {
  margin-bottom: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup > img {
  width: 100%;
}

.popup > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(50% - 5px);
  height: 30px;
  padding: 7px 5px 5px 25px;
  color: white;
}

.popup > a:link, .popup > a:visited, .popup > a:hover, .popup > a:active {
  color: white;
  text-decoration: none;
}

.popup > a::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  top: 3px;
  left: 2px;
}

.popup > a:first-of-type {
  margin: 10px 5px 0 0;
  background-color: var(--clr-main-green);
}

.popup > a:first-of-type::before {
  background: transparent url("../img/poi-actions-y-aller-off.png") no-repeat;
}

.popup > a:nth-of-type(2) {
  margin: 10px 0 0 5px;
  background-color: var(--clr-main-rose);
}

.popup > a:nth-of-type(2)::before {
  background: transparent url("../img/poi-actions-voir-off.png") no-repeat;
}

@-webkit-keyframes animBoing {
  0% {
    top: 0;
  }
  20% {
    top: 0;
  }
  100% {
    top: -30px;
  }
}

@keyframes animBoing {
  0% {
    top: 0;
  }
  20% {
    top: 0;
  }
  100% {
    top: -30px;
  }
}

.boing {
  -webkit-animation: animBoing 0.4s ease-in-out 0.01s infinite alternate backwards;
          animation: animBoing 0.4s ease-in-out 0.01s infinite alternate backwards;
}
/*# sourceMappingURL=pois.css.map */