.portal_popup{
    position:fixed;
    z-index:99;
    background:rgba(0,0,0,0.5);
    
    top:0;
    left:0;
    width:100%;
    height:100vh;
    
    display:flex;
    justify-content:center;
    align-items:center;
}

.portal_popup__card{
    width:300px;
    background:white;
    padding:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.portal_popup__message{
    font-size:18px;
    text-align:center;
    font-family:Arial;
    padding-bottom:20px;
    margin-bottom:20px;
    border-bottom:1px solid #ccc;    
}
.portal_popup__buttons{
    display:flex;
}
.portal_popup__buttons-flex_end{
    justify-content:flex-end;
}
.portal_popup__buttons-space_between{
    justify-content:space-between;
}
.portal_popup__button{
    width:120px;
    border:0;
    background:rgb(30,170,50);
    color:white;
    text-align:center;
    padding:8px 0;
    font-size:16px;
    font-family:Arial;
    transition:background 0.3s;
    cursor:pointer;
}
.portal_popup__button:hover{
    background:rgb(5,140,30);
}

.portal_popup__button-danger{
    background:rgb(210,30,30);
}
.portal_popup__button-danger:hover{
    background:rgb(250,30,30);
}