.card-map-shell {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: var(--map-min-height, 300px);
    overflow: hidden;
    border-radius: var(--map-radius, 6px);
    box-sizing: border-box;
    isolation: isolate;
}

.card-map-shell .card-map-canvas {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: var(--map-height, 100%);
    min-height: var(--map-min-height, 300px);
    border-radius: var(--map-radius, 6px);
    overflow: hidden;
    box-sizing: border-box;
}

.card-map-shell .gm-style,
.card-map-shell .gm-style > div {
    max-width: 100%;
}

.card-map-shell .gm-style .mapzoom-in,
.card-map-shell .gm-style .mapzoom-out {
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.16);
    color: #22a836;
    cursor: pointer;
}

.card-map-shell .gm-style .mapzoom-in {
    margin-top: -84px;
    border-radius: 8px 8px 0 0;
}

.card-map-shell .gm-style .mapzoom-out {
    margin-top: -42px;
    border-radius: 0 0 8px 8px;
}

.card-map-shell .gm-style .mapzoom-in,
.card-map-shell .gm-style .mapzoom-out,
.card-map-shell .gm-style .mapzoom-in:before,
.card-map-shell .gm-style .mapzoom-out:before {
    box-sizing: border-box;
}

.card-map-shell .gm-style .mapzoom-in::before,
.card-map-shell .gm-style .mapzoom-out::before {
    font-family: "Font Awesome 5 Pro", sans-serif;
    font-size: 10px;
    font-weight: 600;
}

.card-map-shell .gm-style .mapzoom-in::before {
    content: "\f067";
}

.card-map-shell .gm-style .mapzoom-out::before {
    content: "\f068";
}

.card-map-shell .marker,
.card-map-shell .marker * {
    box-sizing: border-box;
}

.card-map-shell .marker a,
.card-map-shell .marker a:hover,
.card-map-shell .marker a:focus,
.card-map-shell .marker a:active {
    color: inherit !important;
    text-decoration: none !important;
}

.card-map-shell .marker div,
.card-map-shell .marker span,
.card-map-shell .marker p,
.card-map-shell .marker h4,
.card-map-shell .marker i {
    letter-spacing: normal;
    text-transform: none;
    line-height: normal;
}

@media (max-width: 767.98px) {
    .card-map-shell {
        min-height: var(--map-mobile-min-height, 360px);
    }

    .card-map-shell .card-map-canvas {
        min-height: var(--map-mobile-min-height, 360px);
    }
}

.card-map-shell .fl-wrap {
    float: left;
    width: 100%;
    position: relative;
}

.card-map-shell .light-blue {
    color: #22a836;
}

.card-map-shell .map-popup-location-price {
    position: absolute;
    left: 20px;
    top: 24px;
    padding: 6px 7px;
    font-size: 12px;
    z-index: 20;
    font-weight: 700;
    border-radius: 4px;
    overflow: hidden;
}

.card-map-shell .map-popup-location-price strong {
    color: #fff;
    float: left;
    width: 100%;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 400;
}

.card-map-shell .map-popup-location-price:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #061B41;
    opacity: 0.5;
}

.card-map-shell .map-popup-location-info {
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0 !important;
    padding: 0 !important;
    color: #878C9F;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2 !important;
    text-align: left;
    display: block;
}

.card-map-shell .map-popup-location-info i {
    padding-right: 6px;
    color: #F9B90F;
}

.card-map-shell .marker-listing-content .redirect-icon {
    display: block;
    width: 17px;
    height: 17px;
    position: absolute;
    top: 20px;
    right: 14px;
    left: auto;
    fill: none;
    stroke: currentColor;
    color: #9fa7b4;
    opacity: 0.85;
}

.card-map-shell .marker-listing-title {
    position: relative;
    padding-right: 28px;
}

.card-map-shell .marker-listing-title h4 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #22a836 !important;
    z-index: 1;
    position: relative;
    background-color: #FFFFFF !important;
    text-decoration: none !important;
    font-family: inherit !important;
    width: auto;
    max-width: 100%;
    line-height: 1.3 !important;
    overflow-wrap: anywhere;
}

.card-map-shell .infoBox-close {
    position: absolute;
    width: 36px;
    height: 36px;
    line-height: 36px;
    top: 30px;
    right: 20px;
    color: #fff;
    border-radius: 6px;
    z-index: 20;
    cursor: pointer;
    background: #22a836;
    text-align: center;
    -webkit-transition: all 300ms;
    transition: all 300ms;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    text-indent: 0 !important;
}

.card-map-shell .infoBox-close:hover {
    animation: bounce 1s;
}

.card-map-shell .infoBox-close i {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 14px !important;
}

.card-map-shell .marker.marker-property .icon svg {
    fill: var(--marker-property-color, #3b82f6);
}

.card-map-shell .marker.marker-course .icon svg {
    fill: var(--marker-course-color, #10b981);
}

.card-map-shell .marker:not(.highlight) .details {
    pointer-events: none;
}

.card-map-shell .marker:not(.highlight) .icon,
.card-map-shell .marker:not(.highlight) .marker-title {
    pointer-events: auto;
}

.card-map-shell .marker.highlight .details {
    pointer-events: auto;
}

.card-map-shell .marker.highlight .details a {
    pointer-events: auto;
}

.card-map-shell .map-popup-location-price {
    line-height: 1.2 !important;
}

.card-map-shell .map-popup-location-price strong {
    display: block;
    line-height: 1.2 !important;
}

.card-map-shell .marker-rating,
.card-map-shell .marker-rating span {
    line-height: 1 !important;
}

.card-map-shell .marker-title {
    margin: 0 !important;
    padding: 2px 10px !important;
}

.card-map-shell .marker-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-map-shell .marker-listing-content {
    padding: 20px 20px !important;
}
