.pm-frontend-map {
    position: relative;
}
.map-point {
	fill: white;
	cursor: pointer;
	transition: all 0.3s ease;
}
.map-point.mapped {
	fill: red !important;
}
/*
.map-point:hover {
	stroke: black;
	stroke-width: 1px;
}
*/
.map-point.active-point {
    filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.6));
    stroke: #e83515;
    stroke-width: 3px;
}
.pm-tooltip {
	position: absolute;
    padding: 1rem;
	width: 333px;
    background-color: #0a0a0a;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0px);
    pointer-events: none;
}
.pm-tooltip.visible {
    opacity: 1;
    pointer-events: auto;
}
.pm-tooltip.hidden {
	display: none;
}
.pm-card {
	position: relative;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}
.pm-card__header {
    padding: 0.5vw 2vw 0.5vw 0.5vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #FFE500;
    box-shadow: 0 0 10px #FFE500;
}
.pm-card__deco {
    display: block;
    width: 3rem;
    height: 3rem;
    background-image: url(/wp-content/uploads/project-figure-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.pm-card__power {
    display: flex;
	align-items: center;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1em;
    color: #0a0a0a;
}
.pm-card__power:before {
    content: "";
	margin-right: 0.5vw;
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url(/wp-content/uploads/project-lightning-white-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.pm-card__power i {
    font-weight: 200;
	font-style: normal;
}
.pm-card__footer {
    width: 100%;
    height: 16rem;
}
.pm-card__image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}
.pm-card__title {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 !important;
    padding: 1vw 1.5vw;
	width: 100%;
    font-size: 1rem;
    line-height: 1.2em;
    text-align: center;
    background-color: rgb(0 0 0 / 30%);
    backdrop-filter: blur(20px);
}