.container-jdf-map .map {
    position: relative;
}

.container-jdf-map .map img {
    display: block;
}

.container-jdf-map .map .pin {
    width: max-content;
    /* height: 30px; */
    background-color: transparent;
    position: absolute;
    z-index: 2;
}

.container-jdf-map .map .pin .pin-popup {
    position: absolute;
    width: 300px;
    bottom: 76%;
    /* right: 0; */
    z-index: 99999;
    /* transform: translateX(-50%); */
    left: 0;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    display: none;
    box-shadow: 0px 4px 4px rgba(204, 204, 204, 0.25);
}

.container-jdf-map .map .pin:hover .pin-popup,
.container-jdf-map .map .pin .pin-popup:hover {
    display: block;
    z-index: 9999;
}

.container-jdf-map .map .pin:hover {
    z-index: 9999;
}

.container-jdf-map .map .pin .wrap-title {
    background-color: #ffffff;
    padding: 17px 0 25px 18px;
}

.container-jdf-map .map .pin .title {
    color: #54585A;
    font-size: 18px;
    font-family: "JD Sans Pro";
    font-weight: 600;
    line-height: 120%;
    border-left: 4px solid #367C2B;
    padding-left: 14px;

}

.container-jdf-map .map .pin .description {
    color: #54585A;
    font-size: 12px;
    font-family: "JD Sans Pro";
    font-weight: 400;
    line-height: 120%;
    border-left: 4px solid #367C2B;
    padding-left: 14px;

}

.container-jdf-map .map .pin .image {
    line-height: 0;
}

@media(min-width: 767px) {
    .container-jdf-map .map {
        width: max-content;
    }
}

@media(max-width: 767px) {
    .container-jdf-map .map .pin {
        width: 16px;
        height: 21px;
    }
}

@media(max-width: 380px) {
    .container-jdf-map .map .pin {
        width: 14px;
        height: 19px;
    }

    .container-jdf-map .map .pin .pin-popup {
        width: 200px;
        bottom: 76%;
        right: 100%;
        transform: translateX(-90%);
        left: 100%;
        margin: 0 auto;
    }


    .container-jdf-map .map .pin .title {
        font-size: 14px;
        border-left: 4px solid #367C2B;
        padding-left: 14px;

    }

    .container-jdf-map .map .pin .description {
        font-size: 10px;
        border-left: 4px solid #367C2B;
        padding-left: 14px;
    }
}