.p3dsp-notice {
	display: none;
	box-sizing: border-box;
	margin: 0 0 16px;
	padding: 12px 16px;
	border-left: 4px solid #2271b1;
	background: #f0f6fc;
	color: #1d2327;
}

.p3dsp-notice strong {
	display: block;
	margin-bottom: 4px;
}

.p3dsp-notice ul {
	margin: 0;
	padding-left: 20px;
}

.p3dsp-notice--success {
	border-left-color: #00a32a;
	background: #edfaef;
}

.p3dsp-notice--warning {
	border-left-color: #dba617;
	background: #fcf9e8;
}

.p3dsp-notice--error {
	border-left-color: #d63638;
	background: #fcf0f1;
}

#p3d-bulk-uploader.p3dsp-is-processing,
#p3d-container.p3dsp-is-processing {
	position: relative;
	opacity: 0.7;
	pointer-events: none;
}

#p3d-bulk-uploader.p3dsp-is-processing::after,
#p3d-container.p3dsp-is-processing::after {
	content: "";
	position: absolute;
	z-index: 20;
	top: 12px;
	right: 12px;
	width: 18px;
	height: 18px;
	border: 3px solid rgba(34, 113, 177, 0.25);
	border-top-color: #2271b1;
	border-radius: 50%;
	animation: p3dsp-spin 0.8s linear infinite;
}

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