/* Custom styles for WP editor changes */
body.modal-open {
	overflow: hidden;
	position: relative;
}
body .modal-overlay {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	opacity: 0;
	background-color: rgba(0,0,0,0.6);
	z-index: -1;
	transition: opacity 250ms;
}
body.modal-open .modal-overlay {
	opacity: 1;
	z-index: 1000;
}

.bio-modal {
	position: fixed;
	left: 0;
	right: 0;
	background: #fff;
	margin: 0 auto;
	z-index: 1000;
	border-radius: 4px;
}

.bio-modal .close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 14px;
}
