.modal {
    position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 1;
    overflow: auto;
    
	background-color: #FFF;
	
	opacity: 0; 
    pointer-events: none;
	
	isolation: isolate;
}
.loaded .modal {
	transition: opacity .4s ease-out;
}