.boxForm_map[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}
.boxForm_map[data-title]:after {
    content: attr(data-title);
    color: red;
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px #c8ccd1;
    border: 1px solid #c8ccd1;
    padding: 10px;
    margin: 0;
}
.boxForm_map[data-title] {
    position: relative;
}
.popup.popup_map {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}
.popup_map .container_pp {
    margin: 30px auto;
    width: 800px;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
}
.popup_map .header_pp {
    width: 100%;
    background: #025351;
    border-radius: 5px 5px 0 0;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.popup_map .title_pp {
    font-size: 20px;
    line-height: 24px;
    color: #FFF;
    margin: 0;
    padding: 0;
    font-weight: 600;
}
.popup_map .btn_close {
    border: none;
    background: transparent;
    margin: 0;
    padding: 0;
}
.popup_map .close_pp {
    cursor: pointer;
    width: 15px;
    height: 15px;
}
.popup_map .content_pp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: unset;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: unset;
    transform: unset;
}
.popup_map .box_input_location {
    height: 45px;
    width: 100%;
}
.popup_map .box_input_location input {
    height: 45px;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    margin: 0;
    padding: 0 15px;
    width: 100%;
    font-size: 16px;
    line-height: 19px;
}
.popup_map .box_autocomplete {
    overflow: auto;
    padding-right: 10px;
    width: 100%;
    max-height: 400px;
    min-height: 350px;
}
.popup_map .box_autocomplete .list_autocomplete {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.popup_map .box_autocomplete .row_item_df {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    padding: 0;
}
.popup_map .box_show_map {
    width: 100%;
    height: 350px;
}
.popup_map .popup_content .box_button {
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup_map .popup_content .box_button .btn_yes {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    border-radius: 5px;
    background: #025351;
    border: none;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
.popup_map .box_autocomplete .row_item {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    padding: 10px 0px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
.popup_map .form_update_addr_uv {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.popup_map .box_form_addr {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.popup_map .box_form_addr .form_group {
    width: calc(100% / 3 - 10px);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.popup_map .title_select_pp {
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
}
.popup_map .cl_red {
    color: #FF0000;
}
.popup_map .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    background-color: #eee;
    cursor: default;
}
.select2-container--open {
    z-index: 99999999;
}
.popup_map .select2-container {
    font-size: 12px;
    border: 1px solid rgba(177, 177, 177, 1);
    border-radius: 5px;
}
.popup_map .select2-container .select2-selection--single {
    display: flex !important;
    align-items: center;
    min-height: 41px !important;
    height: 42px !important;
    border: none;
}
.popup_map .select2-container .select2-selection--single .select2-selection__rendered {
    display: block !important;
    font-size: 15px;
    color: #444;
    line-height: 28px;
}
.popup_map .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px !important;
    top: 0 !important;
    bottom: 0;
    margin: auto;
}
@media screen and (max-width: 600px) {
    .popup_map .box_form_addr .form_group {
        width: 100%;
    }
}