.confirmation_popup 
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width:  100vw;
    background-color:rgba(192,192,192,0.5);
    z-index: 1000;
    position: fixed;
    top: 0px;
    left: 0px;

    visibility: hidden;
}

.confirmation_popup > div 
{
    background-color: black;
    color: var(--shadow);
    width: 40%;
    min-width: 390px;
}
 
.confirmation_popup .popup_header
{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light_gray);
}

.confirmation_popup .popup_header h3
{ padding: 0px 45px 0px 45px; }

.confirmation_popup .popup_header img
{ 
    cursor: pointer; 
    border-left: 1px solid var(--light_gray);
    padding: 10px;
}

.confirmation_popup .popup_header *,
.confirmation_popup .popup_body *
{ margin: 0px; }








.confirmation_popup .popup_body
{ padding: 45px; }

.confirmation_popup .popup_body .p_body_top
{ margin-bottom: 45px; }

.confirmation_popup .popup_body .p_body_top > div
{ display: inline-block; }

.confirmation_popup .popup_body .p_body_top img
{ margin-right: 45px; }

.confirmation_popup .popup_body .p_body_top h3
{ 
    /* visibility: hidden; */
    /* display: none; */
}

.confirmation_popup .popup_body .p_body_top p
{ font-weight: normal; }

.popup_flex_container .popup_body .p_body_bottom
{ text-align: left !important; }