.popup-flash-container{
    text-align: center; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    right: 0; 
    top: 0; 
    bottom: 0; 
    margin: 0; 
    padding: 0 15px; 
    display: table; 
    background-color: rgba(255,255,255,0.7); 
    width: 100%; 
    height: 100%;
}
.popup-flash-outer{
    display: table-cell;
    vertical-align: middle;
}
.popup-flash{
    color: black;  
    background-color: white; 
    padding: 5px; 
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);    
    display: inline-block;  
    position: relative;
}
.popup-flash .button-close{
    width: 16px; 
    height: 16px; 
    background-color: black; 
    border-radius: 50%; 
    color: white !important; 
    position: absolute; 
    right: 15px; 
    top: 15px; 
    cursor: pointer;     
    line-height: 16px;
    font-size: 12px;
    text-align: center;
}
.popup-flash .button-close:hover{opacity: 0.8;}
.popup-flash .popup-flash-inner{padding: 30px 20px; border: 1px solid black;}
.popup-flash .content{text-align: center;}
.popup-flash .content > *{display: inline-block; vertical-align: middle;}
.popup-flash .content i{color: black; margin-right: 15px; font-size: 50px;}
.popup-flash .content .text{text-align: left;}
.popup-flash .content .text .title{font-weight: 500; font-size: 13pt;}
.popup-flash .content .text .subtitle{font-size: 12pt !important;}
.popup-flash.success .content i{color: green;}
.popup-flash.error .content i{color: red;}

@media(min-width: 480px){
    .popup-flash .content .text .title{font-size: 18pt;}
    .popup-flash .content .text .subtitle{font-size: 16pt !important;}
}