#modal-underlay {
	position: fixed; left: 0; z-index: 2;
	display: block; height: 100%; width: 100%;
	
	background-color: rgba(0,0,0,.3);
	backdrop-filter: blur(5px);
	
	opacity: 0;
	pointer-events: none;
}
@media (min-width: 600.01px) { #modal-underlay { top: var(--wp-admin--admin-bar--height, 0px); } }
@media (max-width: 600px)	 {
	.static #modal-underlay {
		top: var(--wp-admin--admin-bar--height, 0px);
		height: calc(100% - var(--wp-admin--admin-bar--height, 0px));
	}
	.scroll #modal-underlay {
		top: 0px;
		height: 100%;
	}
}
.loaded #modal-underlay { transition: opacity .4s ease-out; }

.reflection-form-response #modal-underlay,
body[class*='open'] #modal-underlay {
    opacity: 1;
	pointer-events: auto;
}