.cw-bvpbi-container {
	position: relative;
	width: 100%;
	min-height: 400px;
	background: #f9f9f9;
	border-radius: 4px;
	overflow: hidden;
}

.cw-bvpbi-container iframe {
	border: none;
	width: 100%;
	height: 100%;
}

.cw-bvpbi-loading {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 15px;
	color: #555;
	background: #f9f9f9;
	z-index: 5;
}

.cw-bvpbi-spinner {
	display: inline-block;
	width: 22px;
	height: 22px;
	border: 3px solid #ddd;
	border-top-color: #3b82f6;
	border-radius: 50%;
	animation: cw-bvpbi-spin 0.7s linear infinite;
}

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