.dg-situacion-pdf--loading {
	cursor: wait;
	opacity: 0.72;
	pointer-events: none;
}

.dgspdf-is-loading,
.dgspdf-is-loading body {
	cursor: wait;
}

.dgspdf-overlay {
	align-items: center;
	background: rgba(8, 27, 45, 0.38);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	padding: 24px;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease;
	z-index: 2147483000;
}

.dgspdf-overlay[aria-hidden="false"] {
	opacity: 1;
	pointer-events: auto;
}

.dgspdf-overlay__panel {
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(0, 113, 143, 0.18);
	border-radius: 8px;
	box-shadow: 0 20px 54px rgba(1, 35, 54, 0.22);
	color: #073655;
	display: flex;
	flex-direction: column;
	max-width: 360px;
	padding: 28px 30px;
	text-align: center;
	width: min(100%, 360px);
}

.dgspdf-overlay__spinner {
	animation: dgspdf-spin 850ms linear infinite;
	border: 3px solid rgba(0, 170, 190, 0.2);
	border-radius: 50%;
	border-top-color: #00a9bd;
	display: block;
	height: 42px;
	margin-bottom: 16px;
	width: 42px;
}

.dgspdf-overlay__title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 7px;
}

.dgspdf-overlay__text {
	color: #496778;
	display: block;
	font-size: 14px;
	line-height: 1.45;
}

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