.person_input_list {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.submit {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.area {
    position: relative;
    width: 500px;
    height: 500px;
    border: 1px solid #000;
}

.area_click {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    flex-direction: column;
    gap: 5px;
    /* overflow: hidden; */
    z-index: 1;
}

.area_person {
    width: 50px;
    height: 50px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.area_person span {
    margin-bottom: -2rem;
    white-space: nowrap;
}
.data_person_input input {
    cursor: not-allowed;
}
.edit {
    background-color: green
}

.marker_person {
    position: absolute;
    display: flex;
    justify-content: center;
    align-self: baseline;
    margin-left: auto;
    right: 0;
    outline: 1px solid #eee;
}
.marker_person::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 1px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: red;
}
.marker_person > span {
    position: absolute;
    top: 105%;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.418);
    display: flex;
    align-self: baseline;
    margin-top: auto;
    color: white;
    font-size: 1.2vmin;
    white-space: nowrap;
}
.person--hide {
    display: none;
}


.area_click__items {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;

}
.marker_person .form_popup{

    position: absolute;
    top: 150%;
    padding: 0;
    z-index: 5;
    min-width: 150px;
    font-size: 12rem;
    /* background: rgb(235, 235, 235); */
}

.marker_person .list_pesron_item:hover {
    cursor: pointer;
    background: rgb(151, 151, 151);
}
.marker_person .list_pesron_item span {
    display: block;
}
/* .list_pesron__innser button{
    background: rgb(174, 174, 174);
} */
/* .list_pesron { */
    /* margin-top:12px;  */
    /* gap:2px;
    flex-direction:column;
    background: #fff;
    height: auto;
    max-height: 150px;
    min-width: 150px;
    overflow-y: scroll;

}
.list_pesron_item {
    font-size: 10rem;
    padding: 5px 10px;
}
.list_pesron_item:hover {
    background: rgb(174, 174, 174);
} */