.cjam-pfp-viewer {
	position: relative;
	width: 100%;
	min-height: 80px;
}

.cjam-pfp-pages {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.cjam-pfp-page {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.cjam-pfp-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 80px;
	color: #646970;
	font-size: 13px;
	text-align: center;
}

.cjam-pfp-viewer.is-ready .cjam-pfp-loading,
.cjam-pfp-viewer.has-error .cjam-pfp-loading {
	display: none;
}

.cjam-pfp-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(0, 0, 0, .15);
	border-top-color: #1677d2;
	border-radius: 50%;
	animation: cjam-pfp-spin .7s linear infinite;
}

.cjam-pfp-error {
	display: none;
	margin: 0;
	padding: 14px;
	background: #f6f7f7;
	color: #50575e;
	font-size: 13px;
	text-align: center;
}

.cjam-pfp-viewer.has-error .cjam-pfp-error {
	display: block;
}

.cjam-pfp-unavailable {
	padding: 16px;
	border: 1px dashed #c3c4c7;
	background: #f6f7f7;
	color: #50575e;
	text-align: center;
}

@keyframes cjam-pfp-spin {
	to { transform: rotate(360deg); }
}
