.icons{
  font-size: 0.8em;
  /*filter: invert(1);*/
}

.marker-housing{
  width: 22px;
  aspect-ratio: 1;
  z-index: 0;
  background-color: var(--accent);
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
}

.lodgingPanel {

}

#lodgingInfo{
  width: 350px;
  height: fit-content;

  position: relative;
  top: -20px;
  translate: 0 -50%;
  background-color: white; /**var(--secondary);**/

  border-radius: 8px;

  box-shadow: 10px 10px 15px -12px rgba(0, 0, 0, 0.75);
}

#lodgingInfoImg {
  width: 100%;
  aspect-ratio: 4/2.5;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

#lodgingLowerPanel {
  margin-top: -5px;
  display: flex;
  height: fit-content;
}

#lodgingLowerLeftSide{
  width: 15%;
  margin-top: 5px;
  background-color: var(--primary);
  border-radius: 0 0 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#lodgingLowerLeftSide i {
  /* transform: scale(1.3); */
  font-size: 1.5em;
  color: var(--text);
}

#lodgingLowerRightSide{
  width: 90%;
  padding-left: 8px;
}

#lodgingButtons{
  color: var(--text);
  font-size: 1.2rem;
  width: fit-content;
  margin-bottom: 5px;
}

#lodgingButtons span {
  cursor: pointer;
}

#lodgingTitle{
  width: fit-content;
  margin-top: 12px;
  margin-bottom: 0;
  color: #333;
  font-size: 2rem;
  letter-spacing: -0.1px;
  font-weight: bold;
}

#lodgingPhone{
  margin: 8px 0 3px 0;
  font-size: 1.4rem;
  color: var(--text);
  width: fit-content;
}

#lodgingInfoClose {
  position: absolute;
  aspect-ratio: 1;
  scale: 2;
  background: #FFFFFFAA;
  border-radius: 50%;
  filter: invert(1);
  top: 15px;
  right: 15px;
  cursor: pointer;
}

#lodgingInfoAdd {
  cursor: pointer;
}

.mapboxgl-marker.inactive {
  opacity: 0.3 !important;
}