/*
	Theme Name: Clearplus
	Description: Clearplus Theme
	Author: Yesheng Hu
  	Template: hello-elementor
	Version: 1.0.0
	Requires at least: 4.7
	Tested up to: 5.9
	Requires PHP: 5.6
*/

.find-container {
	display: flex;
}

.select-loader {
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-top: 4px solid var( --e-global-color-primary );
	border-radius: 50%;
	width: 24px;
	height: 24px;
	animation: spin 1s linear infinite;
	margin: 0 auto;
	position: absolute;
    right: 30px;
    top: 8px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}