/* 响应式样式优化 */
@media (min-width: 992px) {
	#sortForm {
		justify-content: flex-end;
		width: 100%;
	}

	.search-sort-container {
		flex-wrap: nowrap !important;
	}
}

@media (max-width: 768px) {
	.search-box {
		width: 100%;
		max-width: 100% !important;
	}

	.sort-box {
		margin-top: 10px;
		width: 100%;
		justify-content: flex-start;
	}

	.category-tabs .nav-link {
		padding: 0.5rem 0.75rem;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.form-select-sm {
		width: 90px;
	}

	.search-box .input-group {
		width: 100%;
	}

	.language-selector {
		margin-right: 10px;
	}

	.language-selector .dropdown-toggle {
		min-width: 100px;
		padding: 0.4rem 1rem;
		font-size: 14px;
	}

	.language-selector .dropdown-menu {
		min-width: 100px !important;
	}

	.language-selector .dropdown-item {
		padding: 0.5rem 0.75rem;
		font-size: 14px;
	}

	.category-tabs .nav-item {
		margin-bottom: 8px;
	}

	.category-tabs .nav-link {
		padding: 0.4rem 0.6rem;
		font-size: 13px;
	}
}

/* 商品卡片样式 */
.product-card {
	transition: all 0.3s ease;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	background: #fff;
	border: none;
	height: 450px;
	/* 固定卡片高度，强制对齐 */
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 25px rgba(71, 118, 230, 0.15);
}

.product-image {
	height: 180px;
	/* 统一图片高度 */
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f8f9fa;
	position: relative;
	flex-shrink: 0;
	/* 防止图片被压缩 */
}

.product-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent);
	z-index: 1;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	max-width: 100%;
	/* 确保图片不超出容器 */
	max-height: 180px;
	/* 图片最大高度 */
}

.product-card:hover .product-image img {
	transform: scale(1.08);
}

.card-body {
	padding: 1.25rem;
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.card-title {
	font-size: 1.15rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.75rem;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	height: 2.6rem;
	text-align: left;
}

.product-description {
	font-size: 0.9rem;
	color: #666;
	max-height: 4.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 1rem;
	flex-grow: 1;
	text-align: left;
}

.price-tag {
	font-size: 1.3rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ff4757, #ff6b81);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	text-align: left;
}

.card-footer {
	padding: 0.75rem 1.25rem 1.25rem;
	border-top: none !important;
	margin-top: auto;
	/* 确保footer在底部 */
	flex-shrink: 0;
	/* 防止footer被压缩 */
}

.btn-primary {
	padding: 0.7rem 1.5rem;
	border-radius: 50px;
	font-weight: 500;
	letter-spacing: 0.3px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(71, 118, 230, 0.2);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
	transform: translateX(-100%);
	transition: all 0.3s ease;
}

.btn-primary:hover::before {
	transform: translateX(0);
}

.badge {
	padding: 0.5em 0.8em;
	font-weight: 500;
	border-radius: 30px;
	font-size: 0.75rem;
}

.badge.bg-success {
	background: linear-gradient(135deg, #2ecc71, #27ae60) !important;
	box-shadow: 0 3px 5px rgba(46, 204, 113, 0.2);
}

.badge.bg-danger {
	background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
	box-shadow: 0 3px 5px rgba(231, 76, 60, 0.2);
}

/* 添加折扣标签样式 */
.discount-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: linear-gradient(135deg, #ff6b6b, #ee5253);
	color: white;
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 2;
	box-shadow: 0 3px 8px rgba(238, 82, 83, 0.3);
}

/* 添加热门商品标记 */
.hot-product-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: linear-gradient(135deg, #ffa502, #ff7f50);
	color: white;
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 2;
	display: flex;
	align-items: center;
	box-shadow: 0 3px 8px rgba(255, 165, 2, 0.3);
}

.hot-product-badge svg {
	margin-right: 3px;
}

/* 库存标签样式优化 */
.stock-status {
	display: flex;
	align-items: center;
	justify-content: center;
}

.stock-status svg {
	margin-right: 3px;
}

/* 响应式布局优化 */
@media (max-width: 768px) {
	.product-card {
		margin-bottom: 20px;
	}

	.card-title {
		font-size: 1.05rem;
		height: 2.4rem;
	}

	.price-tag {
		font-size: 1.2rem;
	}
}

@media (max-width: 576px) {
	.product-image {
		height: 180px;
	}
}

/* 添加页面滚动时商品列表动画效果 */
.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 商品页占位图动画 */
@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}

	100% {
		background-position: 1000px 0;
	}
}

.placeholder-loading {
	position: relative;
	overflow: hidden;
	background: #f6f7f8;
}

.placeholder-loading::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
	animation: shimmer 2s infinite;
	transform: translateX(-100%);
}

/* 悬停效果增强 */
.product-card .card-hidden-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 15px;
	color: white;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 0;
	z-index: 2;
}

.product-card:hover .card-hidden-info {
	transform: translateY(0);
	opacity: 1;
}

/* 按钮点击波纹效果 */
.btn-ripple {
	position: relative;
	overflow: hidden;
}

.btn-ripple:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
	background-repeat: no-repeat;
	background-position: 50%;
	transform: scale(10, 10);
	opacity: 0;
	transition: transform 0.5s, opacity 0.8s;
}

.btn-ripple:active:after {
	transform: scale(0, 0);
	opacity: 0.3;
	transition: 0s;
}

/* 售罄效果增强 */
.out-of-stock .btn-secondary {
	background: linear-gradient(to right, #e0e0e0, #f5f5f5, #e0e0e0);
	background-size: 200% auto;
	transition: all 0.3s ease;
	animation: pulse-bg 2s ease infinite;
}

@keyframes pulse-bg {
	0% {
		background-position: 0% center;
	}

	50% {
		background-position: 100% center;
	}

	100% {
		background-position: 0% center;
	}
}

/* 价格震动动画 */
.price-tag {
	display: inline-block;
	position: relative;
}

.product-card:hover .price-tag {
	animation: price-shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

@keyframes price-shake {

	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%,
	80% {
		transform: translate3d(1px, 0, 0);
	}

	30%,
	50%,
	70% {
		transform: translate3d(-2px, 0, 0);
	}

	40%,
	60% {
		transform: translate3d(2px, 0, 0);
	}
}

/* 波纹效果样式 */
.ripple-effect {
	position: absolute;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	animation: ripple 0.6s linear;
	transform: scale(0);
	pointer-events: none;
}

@keyframes ripple {
	to {
		transform: scale(3);
		opacity: 0;
	}
}

/* 分页隔距控制 */
.product-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	padding: 15px 0;
}

@media (max-width: 767px) {
	.product-grid-container {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 15px;
	}
}

@media (max-width: 576px) {
	.product-grid-container {
		display: block;
	}

	.product-card {
		margin-bottom: 20px;
	}
}

.card {
	transition: all 0.3s ease;
	border-radius: 8px;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 搜索和排序区域样式 */
.input-group .btn-primary {
	z-index: 0;
}

.alert.alert-info {
	border-radius: 6px;
}

/* 设置搜索区域的样式 */
.search-box {
	flex-grow: 1;
}

.search-box .form-control {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	height: 38px;
	padding-left: 15px;
	box-shadow: none;
	border: 1px solid #e0e0e0;
}

.search-box .btn-primary {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	height: 38px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	background-color: #4776E6;
	border-color: #4776E6;
}

/* 设置排序区域的样式 */
.sort-box {
	white-space: nowrap;
}

.sort-box .form-select-sm {
	height: 38px;
	padding: 0.375rem 2rem 0.375rem 0.75rem;
	border: 1px solid #e0e0e0;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
	color: #555;
	font-size: 0.875rem;
	background-position: right 0.75rem center;
}

.form-select:focus {
	box-shadow: none;
	border-color: #86b7fe;
}

.search-sort-container {
	padding-bottom: 12px;
	border-bottom: 1px solid #f0f0f0;
}

/* 搜索框样式优化 */
.input-group {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
}

.form-control:focus {
	box-shadow: none;
	border-color: #86b7fe;
}

/* 产品计数样式 */
.count-text {
	color: #999;
	font-size: 0.9rem;
}

/* 按钮悬停效果 */
.btn-primary:hover {
	background-color: #3a67d2;
	border-color: #3a67d2;
}

/* 分类导航样式 */
.categories-container {
	margin-top: 1.5rem;
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 1.5rem;
	position: relative;
}

/* 滚动阴影效果 */
.categories-container.show-shadow-left::before,
.categories-container.show-shadow-right::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 15px;
	width: 30px;
	z-index: 2;
	pointer-events: none;
}

.categories-container.show-shadow-left::before {
	left: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.categories-container.show-shadow-right::after {
	right: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.category-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE/Edge */
	white-space: nowrap;
	padding-bottom: 5px;
}

.category-tabs::-webkit-scrollbar {
	display: none;
	/* Chrome/Safari/Opera */
}

.category-tabs .nav-item {
	margin-right: 0;
	display: inline-block;
	flex-shrink: 0;
}

.category-tabs .nav-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 1.2rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: #666;
	text-decoration: none;
	background-color: #f8f9fa;
	border-radius: 40px;
	transition: all 0.3s ease;
	border: 1px solid #eaeaea;
	white-space: nowrap;
}

.category-tabs .nav-link:hover {
	background-color: #f0f0f0;
	color: #4776E6;
	transform: translateY(-2px);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.category-tabs .nav-link.active {
	background-color: #4776E6;
	color: white;
	border-color: #4776E6;
	box-shadow: 0 2px 10px rgba(71, 118, 230, 0.2);
}

.category-tabs .nav-link .icon {
	margin-right: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.category-tabs .nav-link:hover .icon {
	transform: scale(1.1);
}

.category-tabs .category-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 6px;
	background-color: rgba(0, 0, 0, 0.05);
	color: inherit;
	font-size: 0.75rem;
	border-radius: 10px;
	padding: 0.1rem 0.4rem;
	min-width: 18px;
	height: 18px;
	transition: all 0.3s ease;
}

.category-tabs .nav-link.active .category-count {
	background-color: rgba(255, 255, 255, 0.2);
	color: white;
}

.category-title {
	font-size: 1rem;
	color: #666;
	margin-bottom: 0.75rem;
	font-weight: 500;
}

/* 语言选择器样式 */
.language-selector {
	margin-right: 15px;
	position: relative;
	z-index: 1030;
	/* 确保下拉菜单不被其他元素覆盖 */
}

.language-selector .dropdown-toggle {
	border-radius: 30px;
	padding: 0.5rem 1.5rem;
	font-weight: 500;
	min-width: 120px;
	text-align: center;
	background-color: #fff;
	color: #333;
	border: none;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.language-selector .dropdown-toggle::after {
	margin-left: 8px;
	vertical-align: middle;
	color: #666;
}

.language-selector .dropdown-menu {
	min-width: 120px !important;
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border: none;
	padding: 0;
	margin-top: 0.5rem;
	overflow: hidden;
	position: absolute;
	left: 0;
	right: auto;
	transform: none !important;
	top: 100% !important;
}

.language-selector .dropdown-item {
	cursor: pointer;
	transition: all 0.2s ease;
	margin: 0;
	border-radius: 0;
	padding: 0.7rem 1rem;
	text-align: center;
	font-size: 16px;
}

.language-selector .dropdown-item:first-child {
	background-color: #f0f7ff;
}

.language-selector .dropdown-item.active {
	color: #4776E6;
	font-weight: 500;
}

.language-selector .dropdown-item:hover:not(.active) {
	background-color: #f8f9fa;
}

/* 底部样式 */
footer {
	background-color: #f8f9fa;
	border-top: 1px solid #e7e7e7;
	font-size: 0.9rem;
	color: #6c757d;
}

footer p {
	margin-bottom: 0.25rem;
}

footer a {
	color: #6c757d;
	text-decoration: none;
}

footer a:hover {
	color: #495057;
	text-decoration: underline;
}

.footer-links a {
	margin-left: 15px;
}

.footer-links a:first-child {
	margin-left: 0;
}

@media (max-width: 768px) {
	.categories-container {
		margin-top: 1.2rem;
		padding-bottom: 1.2rem;
	}

	.category-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 10px;
		margin-bottom: -5px;
	}

	.category-tabs .nav-link {
		padding: 0.5rem 0.9rem;
		font-size: 0.85rem;
	}

	.category-title {
		font-size: 0.9rem;
		margin-bottom: 0.6rem;
	}
}

@media (max-width: 576px) {
	.category-tabs .nav-link {
		padding: 0.4rem 0.75rem;
		font-size: 0.8rem;
	}

	.category-tabs .nav-link .icon svg {
		width: 14px;
		height: 14px;
	}

	.category-tabs .category-count {
		min-width: 16px;
		height: 16px;
		font-size: 0.7rem;
		padding: 0.05rem 0.35rem;
	}
}

.empty-state-container {
	padding: 4rem 1rem;
	background: linear-gradient(to bottom, #f9fafc, #f0f2f5);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(230, 234, 240, 0.8);
	overflow: hidden;
	position: relative;
}

.empty-state-container::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.05));
	border-radius: 50%;
	top: -150px;
	right: -150px;
}

.empty-state-container::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 92, 0, 0.03));
	border-radius: 50%;
	bottom: -100px;
	left: -100px;
}

.empty-icon {
	animation: float 4s ease-in-out infinite;
	position: relative;
	z-index: 2;
}

.empty-icon svg {
	filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
	transition: all 0.3s ease;
}

.empty-icon svg:hover {
	transform: scale(1.1);
	fill: #4776E6;
}

.empty-icon::before,
.empty-icon::after {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: rgba(71, 118, 230, 0.2);
	z-index: -1;
}

.empty-icon::before {
	top: 20px;
	left: 10px;
	animation: pulse 2s ease-in-out infinite alternate;
}

.empty-icon::after {
	bottom: 10px;
	right: 20px;
	animation: pulse 2s ease-in-out 1s infinite alternate;
}

@keyframes float {
	0% {
		transform: translateY(0px) rotate(0deg);
	}

	25% {
		transform: translateY(-10px) rotate(-2deg);
	}

	50% {
		transform: translateY(0px) rotate(0deg);
	}

	75% {
		transform: translateY(-5px) rotate(2deg);
	}

	100% {
		transform: translateY(0px) rotate(0deg);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}

	100% {
		transform: scale(1.5);
		opacity: 0.2;
	}
}

.empty-state h3 {
	animation: fadeInUp 0.8s ease-out;
	color: #4a5568;
	font-weight: 600;
	position: relative;
	display: inline-block;
}

.empty-state h3::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #4776E6, #8E54E9);
	transform: translateX(-50%);
	border-radius: 2px;
	opacity: 0;
	animation: fadeIn 1.5s ease-out forwards 0.5s;
}

.empty-state p {
	animation: fadeInUp 1s ease-out 0.3s;
	animation-fill-mode: both;
	max-width: 500px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #718096;
}

.empty-state .btn {
	animation: fadeInUp 1.2s ease-out 0.6s;
	animation-fill-mode: both;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	padding: 0.8rem 2rem;
	border-radius: 50px;
	font-weight: 500;
	letter-spacing: 0.5px;
	box-shadow: 0 5px 15px rgba(71, 118, 230, 0.2);
	background: linear-gradient(135deg, #4776E6, #8E54E9);
	border: none;
}

.empty-state .btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(71, 118, 230, 0.3);
}

.empty-state .btn:active {
	transform: translateY(-2px);
}

.empty-state .btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: all 0.6s;
}

.empty-state .btn:hover::before {
	left: 100%;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* 添加装饰元素 */
.empty-state-container .decoration {
	position: absolute;
	pointer-events: none;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards 1s;
}

.empty-state-container .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.empty-state-container .dot-1 {
	top: 20%;
	left: 10%;
	background-color: rgba(71, 118, 230, 0.3);
	animation: float 3s ease-in-out infinite;
}

.empty-state-container .dot-2 {
	top: 70%;
	left: 20%;
	background-color: rgba(142, 84, 233, 0.3);
	animation: float 4s ease-in-out 1s infinite;
}

.empty-state-container .dot-3 {
	top: 30%;
	right: 15%;
	background-color: rgba(255, 107, 107, 0.3);
	animation: float 5s ease-in-out 0.5s infinite;
}

.empty-state-container .dot-4 {
	bottom: 20%;
	right: 10%;
	background-color: rgba(66, 153, 225, 0.3);
	animation: float 4.5s ease-in-out 1.5s infinite;
}

.empty-state-container .circle {
	border-radius: 50%;
	border: 2px dashed rgba(71, 118, 230, 0.15);
	position: absolute;
}

.empty-state-container .circle-1 {
	width: 100px;
	height: 100px;
	top: -50px;
	left: 20%;
	animation: spin 30s linear infinite;
}

.empty-state-container .circle-2 {
	width: 150px;
	height: 150px;
	bottom: -70px;
	right: 30%;
	animation: spin 20s linear infinite reverse;
}

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

	to {
		transform: rotate(360deg);
	}
}