/* modal */
/* apply structure and blur on container */
.modal-open>section  { filter: blur(10px); }
.modal { display:table;  width:100%; height:100%; }
.modal .modal-dialog { display:table-cell; text-align:center; vertical-align:middle; }
.modal .modal-content { display:inline-block; text-align:left; width:100%; max-width:800px; background-color:#f1ebf0; max-height:95vh; overflow:auto;}
.modal-header { border-bottom:none; }
.modal-header svg { color:#333; float: right; font-size:150%;} /* close button */
.modal-body { position:static;}
.modal-footer { border-top:none; }
@media (max-width:767px) {
	.modal-content { height:100vh; overflow:auto; border-radius:0; border:0;}
}
/* modal full */
.modal.full .modal-content { width:100%; max-width:100vw; height:100vh; }
