.map-box .clusterIcon {
    background: #FFFFFF;
    border: 3px solid #41B619;
    box-sizing: border-box;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    text-align: center;
    color: #41B619;
    font-size: 14px;
    font-weight: 900;
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    cursor: pointer;
    margin: -15px;
}
.mapPlacemark {
    position: absolute;
    left: -57px;
    top: -30px;
    width: 115px;
    cursor: pointer;
    height: 60px;
    text-align: center;
    transition: all .15s ease-in-out;
}
.price-tag {
    background-color: #fff;
    border-radius: 5px;
    font-size: 14px;
    padding: 2px 5px;
    position: relative;
    color: #41B619;
    text-align: center;
    font-weight: 700;
    top: 8px;
    filter: drop-shadow(0px 4px 20.6px rgba(57, 91, 110, 0.25));
}
.circle-placemark {
    width: 12px;
    height: 12px;
    display: block;
    position: relative;
    border-radius: 50%;
    background: #41B619;
    margin: auto;
    transition: all .15s ease-in-out;
}
.price-tag:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}