div#arcasa-listings-map{
  margin: 0 auto;
}
div#arcasa-listings-map div.leaflet-marker-icon svg{
  height: 30px;
  width: 30px;
  fill: var(--first-color);
}
div#arcasa-listings-map div.leaflet-popup-content h6,
div#arcasa-listings-map div.leaflet-popup-content h6 a{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--first-color);
}
div#arcasa-listings-map div.leaflet-popup-content h6 a:hover{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--second-color);
}
div#arcasa-listings-map div.leaflet-popup-content p{
  margin: 0px;
  margin-bottom: 5px;
  font-size: 15px;
}
div#arcasa-listings-map div.leaflet-popup-content p span.popup-contract{
  float: right;
  padding: 0px 5px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
}
div#arcasa-listings-map div.leaflet-popup-content p span.popup-price span.period{
  font-size: 11px;
}
div#arcasa-listings-map div.leaflet-popup-content img{
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}
div#arcasa-listings-map span.markerclustergroup-icon{
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  top: -20px;
  left: -20px;
  line-height: 30px;
  font-size: 16px;
  padding: 5px;
  color: white;
  background-color: var(--first-color);
  border-radius: 100px;
  text-align: center;
  outline: 1px solid var(--first-color);
  outline-offset: 7px;
  -webkit-box-shadow: 0px 0px 8px 2px #FFFFFF;
  -moz-box-shadow: 0px 0px 8px 2px #FFFFFF;
  box-shadow: 0px 0px 8px 2px #FFFFFF;
  animation-duration: .5s;
  animation-timing-function: ease-out;
  animation-iteration-count: 2;
  animation-direction: alternate;
  -webkit-animation-duration: .5s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-iteration-count: 2;
  -webkit-animation-direction: alternate;
  box-sizing: border-box;
}
div#arcasa-listings-map span.markerclustergroup-icon:after{
  display: block;
  position: absolute;
  content:  "";
  height: 110%;
  width: 110%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid var(--first-color);
  border-radius: 100px;
}
@-webkit-keyframes zoom-bounce {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes zoom-bounce {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}
div#arcasa-listings-map span.markerclustergroup-icon:hover{
  -webkit-animation-name: zoom-bounce;
}