@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

.parent_popup {
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.376);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_center {
    height: auto;
    width: 500px;
    background-color: white;
    border-radius: 30px;
    padding:20px 30px 30px 30px;
}

.header_popup {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_popup>img {
    width: 100px;
}

.header_popup button img {
    width: 12px;
}

.header_popup button {
    height: 30px;
    width: 30px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: rgba(218, 47, 48, 1);
}

.popup_center>h1 {
    font-size: 24px;
    margin-top: 10px;
    font-weight: 700 !important;
}

.popup_center>p {
    font-size: 15px;
    margin-top: 10px;
}

.person_info_popup {
    height: 50px;
    width: 100%;
    margin-top: 10px;
    display: flex;
}

.left_info {
    height: auto;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:0 10px 0 0;
}

.left_info img {
    width:18px;
}

.right_info {
    height: 100%;
    width: max-content;
}

.right_info b {
    font-size:12px;
}
.right_info p {
    font-size:15px;
}

.right_info p span {
    text-decoration: underline;
}