/** Comment Section */
.media-body::after{
	position: absolute;
	content: "";
	top: 70px;
	left: 20px;
	width: 2px;
	height: calc(100% - 75px);
	border-left: 2px solid #e5e5e5;
}
.hide-comment-replies{
	display: none;
}
/** Comment Section */

/** Rating section */
.rating{ margin-right:12px; }
@media (max-width: 320px) {
	.rating{ margin-right:6px; }
}
input[type=radio] {
	appearance: none;
	margin: 0 -3px;
	padding: 0;
}
input[type=radio] + label {
	background: white;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
}
input[type=radio] + label:hover {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
input[type=radio]:checked + label,
:has(~ input[type=radio]:checked + label) {
	background: #008080;
	color: white;
}
:has(~ input[type=radio]:hover + label),
input[type=radio] + label:hover {
	color: white;
	border: 1px solid #008080;
	background: #008080;
}
:has(~ input[type=radio] + label) {
	color: #171717;
	transition: all 0.3s ease-in-out;
}
/** Rating section */
