
/**********/

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #191b1d;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 80px;
    background: black;
    padding: 0%;
    z-index: 2;
}

h1 {
    font-size: 2em;
    margin: .5%;
    color: white;
    font-family: 'Inter', sans-serif;
}
a {
  color: #7f00ff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #7f00ff;
}
a:hover {
  color: #191b1d;
  border-bottom: 1px solid #191b1d;
}
p {
  line-height: 1.5;
  font-size: 14px;
}
span {
  font-size: 1rem;
  font-weight: 600;
}
#map-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
}
#map {
    width: 100%;
    height: 100%;
}

#content-container {
    position: fixed;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
}

#content {   
    width: 100%;
    height: 100%;
    margin-top: 70px;
    overflow: hidden;
}

.places  {
    padding: 5%;
    border: 3px dashed black;
    height: 100%;
}
.places h3 {
  padding-top: 2%;
  margin-bottom: 0rem;
  line-height: 1;
}
button  {
  background: white;
  border-radius: 8px;
  border: 3px solid #191b1d;
  box-shadow: 4px 4px 8px 0px rgb(0,0,0,10%);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5px;
  opacity: 0;
  padding: 20px 14px;
  position: absolute;
  right: 2%;
  text-transform: capitalize;
  top: 12%;
  z-index: 10;
}
button:hover {
  background-color: #f2f2f2;
  cursor: pointer;
}
li {
  padding: 2% 0;
}
.place-image img {
  width: 97%;
}
img {

}
.marker {
    background-image: url(../img/pin-grn.jpeg);
    background-size: cover;
    width: 5%;
    height: 5%;
    cursor: pointer;
}
.mapboxgl-popup {
    max-width: 200px;
}
.mapboxgl-popup-content {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

/*for css fades*/
.show {
  transition: opacity 1000ms;
  opacity: 1;
}
.hide {
  opacity: 0;
}