.post-reactions {
	display: flex;
	justify-content: center;
	gap: 5px;
	padding: 5px 12px;
	border-radius: 50px;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	margin-top: 20px;
}

@media (min-width: 1024px) {
	.post-reactions {
		gap: 14px;
		padding: 10px 25px;
	}
}

@media (min-width: 1024px) {
	.post-reactions .reaction {
		width: 50px;
		height: 50px;

	}
}

.post-reactions .reaction {
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	background: #f5f5f5;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.25s;
}

.post-reactions .reaction:hover {
	/*background: #ffecec;*/
	transform: scale(1.1);
}

.post-reactions .reaction.active {
	/*background: #ffe6eb;*/
	transform: scale(1.1);
}

.post-reactions .reaction .count {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #f44336;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.reaction-toast {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: #333;
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 14px;
	opacity: 0.95;
	z-index: 9999;
	display: none;
}


.post-reactions-loader {
	font-size: 14px;
	color: #666;
	text-align: center;
	padding: 10px;
}