* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#map {
  height: 80vh;
  z-index: 0;
}
#containerVideo {
  background-color: white;
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  z-index: 1;
  #myVideo {
    width: 100vw;
    height: 70vh;
    object-fit: cover;
  }
}

#containerVideoBtn {
  position: relative;
  height: 20%;
}
#btnBasculerCamera,
#btnPrendrePhoto {
  border: none;
  background-color: transparent;
}
#btnBasculerCamera {
  position: absolute;
  right: 10%;
  top: 40%;
}
/* ------ From internet https://codepen.io/easymac/pen/dypvZj */
.photo-button {
  width: 85px;
  height: 85px;
  top: 30%;
  left: 38%;
  /* margin-top: -50px;
  margin-left: -50px; */
  position: absolute;
}
.circle {
  position: absolute;
  top: 12%;
  left: 12%;
  bottom: 12%;
  right: 12%;
  border-radius: 100%;
  background-color: #000000;
  opacity: 0.3;
}
.ring {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  border-radius: 100%;
  border: 0.5em solid #323232;
  opacity: 0.8;
}
.photo-button .circle,
.photo-button .ring {
  transition: all 0.25s;
}
.photo-button:hover .circle {
  opacity: 0.7; 
}
.photo-button:active .ring {
  opacity: 1;
}
/* .photo-button:active .circle {
  opacity: 0.5;
} */
/* -------------- */


.marker-content {
  p {
    word-break: break-all;
  }

}