#map-po {
    max-width: 800px;
    margin: 32px 0;
}

#map-po path.active,
#map-po .region.active path {
    fill: rgb(188, 207, 104);
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
}

#map-po .region.active:hover,
#map-po .region.active:hover path {
    opacity: 1;
}

[id^="popup-"].po-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
}

[id^="popup-"] .po-popup-content {
    position: relative;
    background-color: #FDF0E0;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

[id^="popup-"] .po-popup-title {
    padding: 20px 0 20px 20px;
    font-size: 23px;
    background-color: #fff;
    letter-spacing: 0.23px;
    color: #1B3E4E;
    font-weight: bold;
}

[id^="popup-"] .po-close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #1B3E4E;
    cursor: pointer;
    z-index: 10;
}

[id^="popup-"] .po-houses-swiper-container {
    padding: 20px;
    position: relative;
    overflow: hidden;
}

[id^="popup-"] .po-houses-container {
    display: flex;
    align-items: flex-end;
}

[id^="popup-"] .po-houses-pagination {
    bottom: 5px;
    text-align: center;
    width: 100%;
    margin-top: 15px;
    position: relative;
    z-index: 5;
}

[id^="popup-"] .po-houses-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #1B3E4E;
    opacity: 0.3;
    margin: 0 5px;
}

[id^="popup-"] .po-houses-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #1B3E4E;
}

[id^="popup-"] .po-houses-next, [id^="popup-"] .po-houses-prev {
    color: #1B3E4E;
}

[id^="popup-"] .po-house-card {
    background-color: #fff;
    border-radius: 17px;
    width: 313px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 21px 23px;
    border: 1px solid #1B3E4E;
    flex-shrink: 0;
}

[id^="popup-"] .po-house-swiper {
    width: 267px;
    height: 194px;
    position: relative;
    overflow: hidden;
}

[id^="popup-"] .po-house-swiper .swiper-wrapper {
    height: 100%;
}

[id^="popup-"] .po-house-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[id^="popup-"] .po-house-swiper .swiper-pagination {
    bottom: 5px !important;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 5;
}

[id^="popup-"] .po-house-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.5;
    margin: 0 3px;
}

[id^="popup-"] .po-house-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

[id^="popup-"] .po-house-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

[id^="popup-"] .po-house-swiper + .po-house-info {
    margin-top: 28px;
}

[id^="popup-"] .po-info-section:not(:last-child) {
    margin-bottom: 10px;
}

[id^="popup-"] .po-info-section h4 {
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.12px;
    color: #1B3E4E;
    opacity: 0.51;
}

[id^="popup-"] .po-info-section p {
    margin: 0;
    font-size: 14px;
}

[id^="popup-"] .po-city-name {
    font-weight: bold;
    color: #1B3E4E;
    text-transform: capitalize;
    letter-spacing: 0.19px;
}

[id^="popup-"] .po-description {
    font-size: 19px;
    line-height: 27px;
    color: #1B3E4E;
    letter-spacing: 0.19px;
}

[id^="popup-"] .po-prendre-rdv-btn {
    background-color: #FF8000;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    font-weight: 500;
}

[id^="popup-"] .po-prendre-rdv-btn:hover {
    background-color: #E67300;
}