.oai-fic-widget {
	position: relative;
	width: 100%;
}
.oai-fic-source {
	display: none !important;
}
.oai-fic-stage {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.oai-fic-page {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	pointer-events: none;
}
.oai-fic-page.is-active,
.oai-fic-page.is-fading {
	visibility: visible;
}
.oai-fic-page.is-active {
	opacity: 1;
	z-index: 2;
	pointer-events: auto;
}
.oai-fic-page.is-fading {
	z-index: 1;
}
.oai-fic-grid {
	display: grid;
	grid-template-columns: repeat(var(--oai-fic-columns, 1), minmax(0, 1fr));
	gap: var(--oai-fic-gap, 24px);
}
.oai-fic-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.oai-fic-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.oai-fic-icon svg {
	display: block;
}
.oai-fic-text {
	width: 100%;
}
