.eb-plan-container {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow: hidden;
}

.eb-plan-container svg {
    width: 100%;
    height: auto;
}

svg path {
    transition: all .5s ease-in-out;
}

path.eb-locked,
a.eb-locked {
    pointer-events: none !important;
    fill: gray !important;
    color: white !important;
}

h6 .eb-value{
    text-transform: lowercase !important;
}

path.lot {
    cursor: pointer !important;
    fill: transparent;
}

svg path.lot:hover {
    fill: black;
    opacity: 1;
}

svg path.active {
    fill: black;
}

.eb-pulse {
    position: absolute;
    height: 0px;
    width: 0px;
    border-radius: 50%;
    border: 0px;
    top: 27.8%;
    left: 21%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    text-decoration: none;
    /* border: 2px solid black; */
}

.eb-pulse:hover {
    /* border: 2px solid white; */
}



div.p-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: transparent;
    border-radius: 50%;
    color: black;
    transition: background-color .5s ease-in-out;
}

div.p-container:hover {
    color: white;
}

.eb-pulse::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.0);
    border-radius: 50%;
    /* border: 1px solid black; */
    /* animation: ripple 1.5s infinite ease-out; */
    z-index: -1;
}

div.p-container .eb-p-text {
    content: "";
    font-size: 0.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    height: max-content;
    line-height: 0;
}

.eb-pulse.active .eb-p-text {
    color: white;
}

a.eb-locked .eb-p-text {
    color: black !important;
    cursor:default;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .2;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.main-master-plan {
    width: 100%;
}

/* TOOLTIP */
.tooltip {
    position: absolute;
    width: max-content;
    display: flex;
    flex-direction: column;
    min-height: 100px;
    background-color: white;
    color: black;
    max-width: 300px;
    padding: 20px;
    border-radius: 1px;
    font-size: 14px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.8s ease;
    line-height: 1;
    text-align: justify;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.tooltip p,
.tooltip h4,
.tooltip h5,
.tooltip h6 {
    line-height: 1;
    margin: 0 0 10px 0;
    text-align: left !important;
    word-spacing: -5px !important;
}

.tooltip.active {
    opacity: 1 !important;
}

/*Bouton pour le master plan*/

.eb-filter {
    position: absolute;
    top: 5px;
    left: 5px;
    width: max-content;
    padding: 0 5px;
}

.eb-filter-btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 10px 0;
}

.eb-filter-btn-item {
    padding: 10px 18px;
    margin: 4px 0;
    background-color: white;
    border: 1px solid rgb(96, 96, 96);
    color: black;
    transition: all .1s ease-in-out;
    opacity: 0.8;
}

.eb-filter-btn-item:hover,
.eb-filter-btn-item.active {
    background-color: black;
    color: white;
}

.eb-filter-btn-item:hover {
    opacity: 1;
}