#commentform .form-submit.rvts-review-submit-feedback__control {
	position: relative;
}

#commentform .rvts-review-submit-feedback__button {
	color: transparent !important;
	cursor: wait;
}

#commentform .rvts-review-submit-feedback__indicator {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55em;
	color: var(--bs-white, #fff);
	font: inherit;
	font-weight: 600;
	line-height: 1;
	pointer-events: none;
}

#commentform .rvts-review-submit-feedback__spinner {
	width: 1em;
	height: 1em;
	box-sizing: border-box;
	border: 0.16em solid rgba(255, 255, 255, 0.45);
	border-top-color: currentColor;
	border-radius: 50%;
	animation: rvts-review-submit-feedback-spin 0.75s linear infinite;
}

@keyframes rvts-review-submit-feedback-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	#commentform .rvts-review-submit-feedback__spinner {
		animation: none;
	}
}
