.jo-simple-popup {
	align-items: center;
	background: rgba(0, 0, 0, 0.58);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	padding: 24px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999999;
}

.jo-simple-popup[hidden] {
	display: none;
}

.jo-simple-popup__box {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 12px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	color: #111;
	max-height: calc(100vh - 48px);
	max-width: min(var(--jo-popup-width, 520px), 100%);
	overflow: auto;
	padding: 28px;
	position: relative;
	width: 100%;
}

.jo-simple-popup__close {
	align-items: center;
	background: #111;
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 26px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 12px;
	top: 12px;
	width: 36px;
}

.jo-simple-popup__image {
	border-radius: 8px;
	display: block;
	height: auto;
	margin: 0 0 18px;
	max-width: 100%;
	width: 100%;
}

.jo-simple-popup__title {
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	line-height: 1.1;
	margin: 0 44px 12px 0;
}

.jo-simple-popup__body {
	font-size: 1rem;
	line-height: 1.55;
}

.jo-simple-popup__body p {
	margin: 0 0 1em;
}

.jo-simple-popup__button {
	background: #111;
	border-radius: 999px;
	color: #fff;
	display: inline-block;
	font-weight: 700;
	margin-top: 10px;
	padding: 12px 18px;
	text-decoration: none;
}

.jo-simple-popup__button:hover,
.jo-simple-popup__button:focus {
	background: #333;
	color: #fff;
}

@media (max-width: 700px) {
	.jo-simple-popup {
		align-items: flex-end;
		padding: 14px;
	}

	.jo-simple-popup__box {
		border-radius: 12px;
		max-height: calc(100vh - 28px);
		padding: 22px;
	}
}
