﻿
.modalDivPopUp {
    position: fixed;  
    top: 0; 
    left: 0; 
    width: 100%;  
    height: 100%;  
    z-index: 10;
    background-color: rgba(0,0,0, 0.4);
    opacity:0;
    pointer-events: none;

    transition: transform 0.5s cubic-bezier(0.465, 0.183, 0.153, 0.946) 0s, opacity 0.5s cubic-bezier(0.465, 0.183, 0.153, 0.946) 0s;
}

    .modalDivPopUp.visible {
        opacity:1;
        pointer-events: fill;
    }


.PopPup {
    z-index: 15;
    position: fixed;
    padding: 25px 25px 50px;
    min-height:150px;
    width:350px;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
    background: none repeat scroll 0% 0% #FFF;
}
