.rd-lgdf {
	--rd-lgdf-spinner-color: #2271b1;
}

.rd-lgdf-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rd-lgdf-button,
.rd-lgdf-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	border: 1px solid #d0d7de;
	padding: 10px 16px;
	background: #fff;
}

.rd-lgdf-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(0, 0, 0, 0.15);
	border-top-color: var(--rd-lgdf-spinner-color);
	border-radius: 50%;
	animation: rd-lgdf-spin 0.8s linear infinite;
}

.rd-lgdf.is-loading .rd-lgdf-spinner {
	display: inline-block;
}

.rd-lgdf-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
}

.rd-lgdf-empty {
	width: 100%;
	padding: 16px;
	text-align: center;
}

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