.external-link-modal {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: rgba(255, 255, 255, .5);
	backdrop-filter: blur(2px);
}
.external-link-modal.show {
	display: block;
}
.external-link-content {
	max-width: 600px;
	border-radius: 6px;
	margin: 30px auto;
	padding: 23px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, .5);
	color: #222;
}
.external-link-content button {
	display: inline-block;
	border-radius: 6px;
	border: 0;
	background-color: #222;
	color: #fff;
	padding: 10px 20px;
	margin: 12px;
	transition: all .2s;
	font-size: 18px;
}
.external-link-content button:hover {
	background-color: #666;
}