.popup-external-link {
	align-items: center;
	justify-content: center;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	top: 0;
	left: 0;
}
.popup-external-link__wrap {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	background-color: var(--wp--preset--color--white);
	text-align: center;
	max-width: 520px;
	margin: 10vh auto;
	border-radius: 16px;
	padding: 24px 24px 20px;
}
@media (min-width: 768px) {
	.popup-external-link__wrap {
		width: 36.5rem;
	}
}
.popup-external-link__img {
	margin-bottom: 1.25rem;
}
.popup-external-link__img svg {
	width: 3.867rem;
	height: 3.867rem;
}
@media (min-width: 768px) {
	.popup-external-link__img svg {
		width: 3.625rem;
		height: 3.625rem;
	}
}
.popup-external-link__title {
	font-family:
			IBM Plex Sans,
			sans-serif;
	margin-bottom: 0.125rem !important;
	max-width: 22.5rem;
}
.popup-external-link__desc {
	color: #17161c;
}
.popup-external-link__btns {
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	white-space: nowrap;
	flex-flow: column;
	grid-template-rows: auto;
	grid-template-columns: 1fr 1fr;
	grid-auto-columns: 1fr;
	justify-content: flex-start;
	place-items: center stretch;
	width: 100%;
	display: flex;
	margin-top: 2rem;
	align-items: stretch;
}
@media (min-width: 768px) {
	.popup-external-link__btns {
		white-space: nowrap;
		flex-flow: wrap;
		display: grid;
	}
}
.popup-external-link__btns #age-no:not(:hover) {
	background: #f3f2f7;
}
#popup-external-link {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.6);
}
#popup-external-link.is-open {
	display: flex;
}
body.external-popup-open {
	overflow: hidden;
}
