#map {
  width: 100vw;
  height: 100vh;
}
html,
body {
  width:100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}



#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  z-index: 9999;
  opacity:1;
  transition: all .2s ease-in-out;
}
#preloader.hide {
  opacity:0;
  z-index: -1;
}



#pac-container ul {
  list-style-type: none;
  padding-left:0;
  display: flex;
  gap: .5em;
  flex-wrap: wrap;
}

.btnCat {
  cursor: pointer;
  display: flex;
  gap: 5px;
  padding: 5px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
  border-radius: 10px;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none!important;
  color: #000;
}
.btnCat[data-slug="clear"] {
  border:none;
}
.btnCat.selected:not([data-slug="clear"]) {
  background-color: var(--btnCatColor);
  color: #fff;
}
.btnCat .icon {
  display: inline;
}






.infoWindowContent .title strong {
  font-size: 18px!important;
}
.gm-style-iw-d .infoWindowContent .description {
  max-height:200px;
  overflow-y: auto;
}
.infoWindowContent .actions .btn {
  width: 32px;
  height: 32px;
}

.infoWindowContent .description img { 
  float: left;
  margin: 2px 5px 0px 0;
  width: 80px;
  height: auto;
  max-width: 100%;
}