.pb-box{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-height: 15ch;
	min-width: 60ch;
	max-height: calc(100vh - 7rem);
	max-width: calc(100vw - 7rem);
	overflow-y: auto;
	z-index: 999;
	border-radius: 0.2rem;
	box-shadow: 0.5rem 0.5rem 1.5rem rgba(0, 0, 0, 0.1), 0 0 0 100vw rgba(0, 0, 0, 0.5);
}
.pb-box-close{
	position: absolute;
	top: 2rem;
	right: 2rem;
	z-index: 1;
	fill: currentColor;
	transition: opacity 0.2s ease;
	cursor: pointer;
}
.pb-box-close:hover,
.pb-box-close:focus{
	opacity: 0.8;
}

.pb-box-content *:first-child{
	margin-top: 0 !important;
}
.pb-box-content *:last-child{
	margin-bottom: 0 !important;
}
