body {
  --carrousel-width: 520px;
  --carrousel-height: 336px;
  --map-width: 380px;
  --map-height: 320px;
}

.container-detail {
  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-detail > div {
  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;
  background-color: white;
  width: 100%;
  max-width: var(--width);
}

.container-detail > div > .detail-top {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container-detail > div > .detail-top > a {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  line-height: 20px;
  color: var(--clr-main-midgray);
  font-weight: bold;
  font-size: 0.9em;
  text-decoration: none;
}

.container-detail > div > .detail-top > a::before {
  content: '';
  position: absolute;
  background: transparent url("../img/poi-icons-retour.png") no-repeat;
  width: 20px;
  height: 20px;
  left: 0;
}

.container-detail > div > .detail-top > div > button {
  border: none;
  background-color: var(--clr-main-rose);
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.container-detail > div > .detail-top > div #unpausesound {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.container-detail > div > .detail-top > div #pausesound {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.container-detail > div > .detail-top > div #stopsound {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.container-detail > div > .detail-left {
  width: calc(100% - var(--map-width) - 40px);
  padding: 20px;
}

.container-detail > div > .detail-left > img:first-of-type {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  float: left;
  clear: left;
}

.container-detail > div > .detail-left > h1 {
  margin: 0;
  margin-left: 90px;
  padding: 0;
}

.container-detail > div > .detail-left > h2 {
  color: var(--clr-main-rose);
  text-transform: uppercase;
  font-size: 1.15em;
}

.container-detail > div > .detail-left > span {
  display: block;
  margin-left: 90px;
  text-transform: uppercase;
  font-size: 0.7em;
  color: var(--clr-main-dkgray);
}

.container-detail > div > .detail-left > .carrousel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-top: 20px;
  overflow-x: hidden;
}

.container-detail > div > .detail-left > .carrousel > div:first-of-type .owl-item {
  width: 100%;
  max-width: 100%;
}

.container-detail > div > .detail-left > .carrousel > div:first-of-type .owl-item > img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 520 / 336;
  -o-object-fit: cover;
     object-fit: cover;
}

.container-detail > div > .detail-left > .carrousel > div:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  margin-top: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container-detail > div > .detail-left > .carrousel > div:nth-of-type(2) > span {
  width: 10px;
  height: 10px;
  background-color: var(--clr-main-midgray);
  border-radius: 50%;
  margin: 0 2px;
}

.container-detail > div > .detail-left > .carrousel > div:nth-of-type(2) > span[data-selected] {
  background-color: var(--clr-main-rose);
}

.container-detail > div > .detail-left > .carrousel .big-prev, .container-detail > div > .detail-left > .carrousel .big-next {
  position: absolute;
  background-color: var(--clr-main-rose);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  top: calc(50% - 20px);
  z-index: 2;
  opacity: 0%;
}

.container-detail > div > .detail-left > .carrousel .big-prev {
  left: -40px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.container-detail > div > .detail-left > .carrousel .big-prev::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  background: url("../img/prev-big.png") no-repeat;
}

.container-detail > div > .detail-left > .carrousel .big-next {
  right: -40px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.container-detail > div > .detail-left > .carrousel .big-next::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  background: url("../img/next-big.png") no-repeat;
}

.container-detail > div > .detail-left > .carrousel:hover .big-prev {
  left: 10px;
  opacity: 75%;
}

.container-detail > div > .detail-left > .carrousel:hover .big-next {
  right: 10px;
  opacity: 75%;
}

.container-detail > div > .detail-left > p {
  font-size: .85em;
}

.container-detail > div > .detail-right {
  width: calc(var(--map-width) + 40px);
  min-width: calc(var(--map-width) + 40px);
  max-width: calc(var(--map-width) + 40px);
  font-size: 1.1em;
  padding: 20px 20px 0 20px;
}

.container-detail > div > .detail-right > div:first-of-type::before {
  background: transparent url("../img/banner-icons-map.png") no-repeat;
}

.container-detail > div > .detail-right > div:nth-of-type(3) {
  margin-top: 30px;
}

.container-detail > div > .detail-right > div:nth-of-type(3)::before {
  width: 0;
}

.container-detail > div > .detail-right > div:nth-of-type(4) {
  position: relative;
  width: calc(100% - 5px);
  background-color: white;
  margin-top: 10px;
  margin-left: 5px;
}

.container-detail > div > .detail-right > div:nth-of-type(4) > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  margin-top: -25px;
  border-bottom: 1px solid var(--clr-main-ltgray);
}

.container-detail > div > .detail-right > div:nth-of-type(4) > ul > li {
  height: 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  border-right: 1px solid var(--clr-main-ltgray);
}

.container-detail > div > .detail-right > div:nth-of-type(4) > ul > li > span {
  font-size: .65em;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
}

.container-detail > div > .detail-right > div:nth-of-type(4) > ul > li > img {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.container-detail > div > .detail-right > div:nth-of-type(5) {
  width: 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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
  margin-top: 40px;
  padding: 20px;
  background-color: var(--clr-main-ltgray);
  border-radius: 25px 25px 0 0;
}

.container-detail > div > .detail-right > div:nth-of-type(5) > h3 {
  margin: 0;
  width: 100%;
  font-size: 1em;
  color: var(--clr-main-midgray);
}

.container-detail > div > .detail-right > div:nth-of-type(5) > a {
  display: inline-block;
  position: relative;
  width: calc(50% - 10px);
  height: 30px;
  line-height: 30px;
  background-color: aqua;
  border-radius: 5px;
  margin-top: 15px;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85em;
  text-align: center;
}

.container-detail > div > .detail-right > div:nth-of-type(5) > a::before {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  top: 0;
}

.container-detail > div > .detail-right > div:nth-of-type(5) > a:first-of-type {
  background-color: var(--clr-facebook);
}

.container-detail > div > .detail-right > div:nth-of-type(5) > a:first-of-type::before {
  background: transparent url("../img/share-icons-fb.png") no-repeat;
}

.container-detail > div > .detail-right > div:nth-of-type(5) > a:nth-of-type(2) {
  background-color: var(--clr-twitter);
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.container-detail > div > .detail-right > div:nth-of-type(5) > a:nth-of-type(2)::before {
  background: transparent url("../img/share-icons-twitter.png") no-repeat;
}

.detail-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  background: var(--focus-bgcolor) url("../img/special-background.png") repeat center top;
}

.detail-bottom > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: var(--width);
  padding: 0 20px 20px;
}

.detail-bottom > div > .title-top {
  width: calc(25% - 10px);
  background-color: var(--clr-main-green);
  text-transform: uppercase;
  padding-left: 20px;
}

.detail-bottom > div > .title-top::before {
  content: none;
}

.detail-bottom > div > a:first-of-type {
  position: relative;
  width: 75%;
  text-align: right;
  text-decoration: none;
  color: var(--clr-main-midgray);
  font-weight: bold;
  padding-right: 30px;
}

.detail-bottom > div > a:first-of-type::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 0;
  background: transparent url("../img/poi-icons-droite.png") no-repeat;
}

.detail-bottom > div > .voir-aussi {
  position: relative;
  width: calc(25% - 10px - 5px);
  margin: 0 0 20px 5px;
  background-color: white;
  padding: 15px;
  text-decoration: none;
  color: black;
  -webkit-transition: -webkit-box-shadow .15s linear;
  transition: -webkit-box-shadow .15s linear;
  transition: box-shadow .15s linear;
  transition: box-shadow .15s linear, -webkit-box-shadow .15s linear;
}

.detail-bottom > div > .voir-aussi > .imgpoi {
  position: relative;
  width: 100%;
}

.detail-bottom > div > .voir-aussi > .imgpoi > img {
  width: 100%;
  aspect-ratio: 300 / 180;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform .15s linear;
  transition: -webkit-transform .15s linear;
  transition: transform .15s linear;
  transition: transform .15s linear, -webkit-transform .15s linear;
}

.detail-bottom > div > .voir-aussi > .imgpoi::after {
  content: "En savoir plus...";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: -10px;
  bottom: -10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--clr-main-rose);
  padding: 5px;
  border-radius: 50%;
  font-size: 0.7em;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  text-align: center;
  width: 50px;
  height: 50px;
}

.detail-bottom > div > .voir-aussi > .imgpoi.en::after {
  content: "More info...";
}

.detail-bottom > div > .voir-aussi > p {
  margin-bottom: 0;
}

.detail-bottom > div > .voir-aussi > h2 {
  position: relative;
  font-size: 1.15rem;
  margin: 10px 20px 0 80px;
}

.detail-bottom > div > .voir-aussi > h3 {
  font-size: .75rem;
  font-weight: lighter;
  text-transform: uppercase;
  margin: 5px 0 15px 80px;
  color: var(--clr-main-midgray);
}

.detail-bottom > div > .voir-aussi > img {
  float: left;
  aspect-ratio: 39 / 40;
  margin-top: 10px;
  width: 70px;
}

.detail-bottom > div > .voir-aussi > p {
  clear: left;
  font-size: 0.8em;
  line-height: 1.4;
}

.detail-bottom > div > .voir-aussi:hover {
  -webkit-box-shadow: 0 0 8px #aaa;
          box-shadow: 0 0 8px #aaa;
}

.detail-bottom > div > .voir-aussi:hover > .imgpoi > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.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 > 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: 100%;
  height: 30px;
  padding: 7px 25px 5px;
  color: white;
  background-color: var(--clr-main-green);
}

.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;
  background: transparent url("../img/poi-actions-y-aller-off.png") no-repeat;
}

@media screen and (max-width: 980px) {
  .detail-bottom > div > .title-top {
    width: calc(33.33% - 10px);
  }
  .detail-bottom > div > a:first-of-type {
    width: 66.66%;
  }
  .detail-bottom > div > .voir-aussi {
    width: calc(33.33% - 10px - 5px);
  }
  .detail-bottom > div > .voir-aussi:nth-of-type(5) {
    display: none;
  }
}

@media screen and (max-width: 830px) {
  .container-detail > div > .detail-left {
    width: 100%;
    padding-bottom: 0;
  }
  .container-detail > div > .detail-right {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .detail-bottom > div > .title-top {
    width: calc(50% - 10px);
  }
  .detail-bottom > div > a:first-of-type {
    width: 50%;
  }
  .detail-bottom > div > .voir-aussi {
    width: calc(50% - 10px - 5px);
  }
  .detail-bottom > div > .voir-aussi:nth-of-type(5) {
    display: block;
  }
}

@media screen and (max-width: 680px) {
  .detail-bottom > div {
    position: relative;
    padding-top: 20px;
  }
  .detail-bottom > div > .voir-aussi {
    width: calc(100% - 5px);
  }
  .detail-bottom > div > .title-top {
    width: calc(100%);
  }
  .detail-bottom > div > a:first-of-type {
    width: auto;
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 20px;
    text-align: left;
  }
}

#map {
  position: relative;
  width: calc(100% - 5px);
  height: var(--map-height);
  margin-top: 0px;
  margin-left: 5px;
  z-index: 1;
}
/*# sourceMappingURL=detail.css.map */