.popup.popup_ward {
    background: rgba(0, 0, 0, 0.35);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999
}

.popup_ward .popup_content {
    width: 700px;
    position: relative;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #FFF;
    border-radius: 20px;
    max-width: 95%;
}

.popup_ward .popup_content .row_select{
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
}
.popup_ward .popup_content .row_select.flex_column {
    flex-direction: column;
    row-gap: 20px;
}

.popup_ward .popup_content .row_select .item_select{
    /* width: 355px;
    max-width: calc(50% - 20px); */
}

.popup_ward .popup_content .row_select .item_input{
    padding: 5px 10px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
}

.popup_ward .btn_close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    background: #ccc;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.popup_ward .popup_content .text {
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
    text-align: center;
    height: 24px;
}

.popup_ward .popup_content .box_button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.popup_ward .popup_content .box_button button {
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    border-radius: 25px;
    background: #4C5BD4;
    border: none;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
}

.box_show_map {
    width: 100%;
    height: calc(100% - 164px);
}   

.box_content_pp {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.box_item_select {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.red_star {
    color: red;
}
.title_item {
    font-size: 16px;
    line-height: 18px;
    text-align: left;
    float: left;
    width: 100%;
    margin: 0;
    font-family: Roboto-Medium, sans-serif;
    color: #616264;
}

@media only screen and (max-width: 600px) {
    .box_content_pp {
        flex-direction: column;
    }
    .popup_ward .popup_content .row_select {
        width: 100%;
        flex-direction: column;
    }
    .box_item_select {
        width: 100%;
    }
}