/* START COMMENTS SECTION */

html.dark-mode .kol-pec-comments-sidebar,
html.light-mode .kol-pec-comments-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 400px;
	height: 100vh;
	z-index: 9997;
	transform: translateX(100%);
	transition: transform 0.3s ease-out;
	box-shadow: -2px 0 15px rgba(0, 0, 0, 0.3);
}

html.dark-mode .kol-pec-comments-sidebar.active,
html.light-mode .kol-pec-comments-sidebar.active {
	transform: translateX(0);
}

html.dark-mode .kol-pec-comments-sidebar {
	background-color: #1e1e1e;
	border-left: 1px solid #2a2a2a;
}

html.light-mode .kol-pec-comments-sidebar {
	background-color: #ffffff;
	border-left: 1px solid #e0e0e0;
}

html.dark-mode .kol-pec-modal-content,
html.light-mode .kol-pec-modal-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	z-index: 10000;
	background: transparent;
	border: none;
	max-width: none;
	max-height: none;
	border-radius: 0;
}

html.dark-mode .kol-pec-modal-header {
	padding: 16px 20px;
	border-bottom: 1px solid #2a2a2a;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	position: sticky;
	top: 0;
	z-index: 10001;
	background-color: #1e1e1e;
}

html.light-mode .kol-pec-modal-header {
	padding: 16px 20px;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	position: sticky;
	top: 0;
	z-index: 10001;
	background-color: #ffffff;
}

html.dark-mode .kol-pec-modal-title {
	color: #e0e0e0;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

html.light-mode .kol-pec-modal-title {
	color: #333333;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

html.dark-mode .kol-pec-modal-close {
	background: linear-gradient(135deg, #383838 0%, #343434 100%);
	border: 1px solid #282828;
	border-radius: 6px;
	color: #b2b2b2;
	font-size: 20px;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

html.light-mode .kol-pec-modal-close {
	background: linear-gradient(135deg, #e2e2e2 0%, #d4d4d4 100%);
	border: 1px solid #b0b0b0;
	border-radius: 6px;
	color: #666666;
	font-size: 20px;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

html.dark-mode .kol-pec-modal-close:hover {
	background: linear-gradient(135deg, #343434 0%, #2a2a2a 100%);
	color: #e0e0e0;
}

html.light-mode .kol-pec-modal-close:hover {
	background: linear-gradient(135deg, #d4d4d4 0%, #c4c4c4 100%);
	color: #1f2937;
}

html.dark-mode .kol-pec-modal-close:active,
html.light-mode .kol-pec-modal-close:active {
	transform: scale(0.92);
}

html.dark-mode .kol-pec-modal-scroll-container,
html.light-mode .kol-pec-modal-scroll-container {
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	-webkit-overflow-scrolling: touch;
}

html.dark-mode .kol-pec-product-info {
	padding: 20px;
	border-bottom: 1px solid #2a2a2a;
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: center;
	text-align: center;
	flex-shrink: 0;
}

html.light-mode .kol-pec-product-info {
	padding: 20px;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: center;
	text-align: center;
	flex-shrink: 0;
}

html.dark-mode .kol-pec-product-image,
html.light-mode .kol-pec-product-image {
	height: 180px;
	width: auto;
	border-radius: 4px;
	object-fit: cover;
	max-width: 100%;
}

html.dark-mode .kol-pec-product-name {
	color: #e0e0e0;
	font-size: 14px;
	font-weight: 600;
	margin: 12px 0 0 0;
	line-height: 1.4;
	word-break: break-word;
}

html.light-mode .kol-pec-product-name {
	color: #333333;
	font-size: 14px;
	font-weight: 600;
	margin: 12px 0 0 0;
	line-height: 1.4;
	word-break: break-word;
}

html.dark-mode .kol-pec-modal-body,
html.light-mode .kol-pec-modal-body {
	padding: 20px;
	flex: 1;
	overflow: visible;
}

html.dark-mode .kol-pec-comments-list,
html.light-mode .kol-pec-comments-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

html.dark-mode .kol-pec-comment {
	background-color: #1a1a1a;
	border-radius: 6px;
	padding: 15px;
	border: 1px solid #2a2a2a;
	scroll-margin-top: 20px;
}

html.light-mode .kol-pec-comment {
	background-color: #f9f9f9;
	border-radius: 6px;
	padding: 15px;
	border: 1px solid #e0e0e0;
	scroll-margin-top: 20px;
}

html.dark-mode .kol-pec-comment.replying-to,
html.light-mode .kol-pec-comment.replying-to {
	opacity: 0.5;
}

html.dark-mode .kol-pec-comment-header,
html.light-mode .kol-pec-comment-header {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
	align-items: flex-start;
}

html.dark-mode .kol-pec-comment-avatar,
html.light-mode .kol-pec-comment-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	flex-shrink: 0;
	object-fit: cover;
}

html.dark-mode .kol-pec-comment-info,
html.light-mode .kol-pec-comment-info {
	flex: 1;
}

html.dark-mode .kol-pec-comment-author {
	color: #e0e0e0;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s;
}

html.light-mode .kol-pec-comment-author {
	color: #333333;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s;
}

html.dark-mode .kol-pec-comment-author:hover {
	color: #4CAF50;
}

html.light-mode .kol-pec-comment-author:hover {
	color: #2e7d32;
}

html.dark-mode .kol-pec-comment-date {
	color: #888;
	font-size: 12px;
	margin-top: 2px;
}

html.light-mode .kol-pec-comment-date {
	color: #999999;
	font-size: 12px;
	margin-top: 2px;
}

html.dark-mode .kol-pec-comment-delete {
	display: inline-flex;
	width: fit-content;
	background: #383838;
	color: #fff;
	border: 1px solid #282828;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
	margin-left: auto;
	flex-shrink: 0;
}

html.light-mode .kol-pec-comment-delete {
	display: inline-flex;
	width: fit-content;
	background: #f0f0f0;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
	margin-left: auto;
	flex-shrink: 0;
}

html.dark-mode .kol-pec-comment-delete:hover {
	background: #343434;
}

html.light-mode .kol-pec-comment-delete:hover {
	background: #e0e0e0;
}

html.dark-mode .kol-pec-comment-delete:active,
html.light-mode .kol-pec-comment-delete:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-comment-content {
	color: #e0e0e0;
	font-size: 14px;
	line-height: 1.5;
	word-wrap: break-word;
	white-space: pre-wrap;
	margin-bottom: 12px;
}

html.light-mode .kol-pec-comment-content {
	color: #333333;
	font-size: 14px;
	line-height: 1.5;
	word-wrap: break-word;
	white-space: pre-wrap;
	margin-bottom: 12px;
}

html.dark-mode .kol-pec-comment-actions,
html.light-mode .kol-pec-comment-actions {
	display: flex;
	gap: 15px;
	font-size: 12px;
}

html.dark-mode .kol-pec-comment-emoji-picker,
html.light-mode .kol-pec-comment-emoji-picker {
	position: relative;
	display: inline-block;
}

html.dark-mode .kol-pec-emoji-trigger {
	background: none;
	border: none;
	color: #888;
	cursor: pointer;
	font-size: 16px;
	padding: 0;
	transition: color 0.2s;
}

html.light-mode .kol-pec-emoji-trigger {
	background: none;
	border: none;
	color: #999999;
	cursor: pointer;
	font-size: 16px;
	padding: 0;
	transition: color 0.2s;
}

html.dark-mode .kol-pec-emoji-trigger:hover {
	color: #e0e0e0;
}

html.light-mode .kol-pec-emoji-trigger:hover {
	color: #333333;
}

html.dark-mode .kol-pec-emoji-menu {
	display: none;
	position: absolute;
	background-color: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	padding: 8px;
	gap: 6px;
	grid-template-columns: repeat(6, 1fr);
	z-index: 10001;
	bottom: 100%;
	left: 0;
	min-width: 200px;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5);
}

html.light-mode .kol-pec-emoji-menu {
	display: none;
	position: absolute;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	padding: 8px;
	gap: 6px;
	grid-template-columns: repeat(6, 1fr);
	z-index: 10001;
	bottom: 100%;
	left: 0;
	min-width: 200px;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

html.dark-mode .kol-pec-emoji-menu.open,
html.light-mode .kol-pec-emoji-menu.open {
	display: grid;
}

html.dark-mode .kol-pec-emoji-option {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	padding: 4px;
	border-radius: 4px;
	transition: background-color 0.2s;
	text-align: center;
}

html.light-mode .kol-pec-emoji-option {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	padding: 4px;
	border-radius: 4px;
	transition: background-color 0.2s;
	text-align: center;
}

html.dark-mode .kol-pec-emoji-option:hover {
	background-color: #2a2a2a;
}

html.light-mode .kol-pec-emoji-option:hover {
	background-color: #f0f0f0;
}

html.dark-mode .kol-pec-comment-reaction-btn {
	background: none;
	border: none;
	color: #888;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.2s;
	padding: 0;
	font-size: 12px;
}

html.light-mode .kol-pec-comment-reaction-btn {
	background: none;
	border: none;
	color: #999999;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.2s;
	padding: 0;
	font-size: 12px;
}

html.dark-mode .kol-pec-comment-reaction-btn:hover {
	color: #e0e0e0;
}

html.light-mode .kol-pec-comment-reaction-btn:hover {
	color: #333333;
}

html.dark-mode .kol-pec-comment-reaction-btn.reacted {
	color: #4CAF50;
}

html.light-mode .kol-pec-comment-reaction-btn.reacted {
	color: #2e7d32;
}

html.dark-mode .kol-pec-comment-reply-btn {
	display: inline-flex;
	width: fit-content;
	background: #383838;
	color: #fff;
	border: 1px solid #282828;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
}

html.light-mode .kol-pec-comment-reply-btn {
	display: inline-flex;
	width: fit-content;
	background: #f0f0f0;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 11px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-pec-comment-reply-btn:hover {
	background: #343434;
}

html.light-mode .kol-pec-comment-reply-btn:hover {
	background: #e0e0e0;
}

html.dark-mode .kol-pec-comment-reply-btn:active,
html.light-mode .kol-pec-comment-reply-btn:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-replies-toggle {
	background: none;
	border: none;
	color: #4CAF50;
	cursor: pointer;
	font-size: 12px;
	padding: 0;
	margin-top: 8px;
	transition: color 0.2s;
}

html.light-mode .kol-pec-replies-toggle {
	background: none;
	border: none;
	color: #2e7d32;
	cursor: pointer;
	font-size: 12px;
	padding: 0;
	margin-top: 8px;
	transition: color 0.2s;
}

html.dark-mode .kol-pec-replies-toggle:hover {
	color: #56ab2f;
}

html.light-mode .kol-pec-replies-toggle:hover {
	color: #1b5e20;
}

html.dark-mode .kol-pec-replies-container {
	display: none;
	margin-top: 15px;
	padding-top: 15px;
	padding-left: 20px;
	border-top: 1px solid #2a2a2a;
	position: relative;
}

html.light-mode .kol-pec-replies-container {
	display: none;
	margin-top: 15px;
	padding-top: 15px;
	padding-left: 20px;
	border-top: 1px solid #e0e0e0;
	position: relative;
}

html.dark-mode .kol-pec-replies-container::before {
	content: '';
	position: absolute;
	left: 0;
	top: -15px;
	width: 20px;
	height: 15px;
	border: 2px solid #4CAF50;
	border-right: none;
	border-top: none;
	border-radius: 0 0 0 20px;
}

html.light-mode .kol-pec-replies-container::before {
	content: '';
	position: absolute;
	left: 0;
	top: -15px;
	width: 20px;
	height: 15px;
	border: 2px solid #2e7d32;
	border-right: none;
	border-top: none;
	border-radius: 0 0 0 20px;
}

html.dark-mode .kol-pec-replies-container.open,
html.light-mode .kol-pec-replies-container.open {
	display: block;
}

html.dark-mode .kol-pec-reply {
	background-color: #161616;
	border-radius: 4px;
	padding: 12px;
	margin-bottom: 10px;
	border-left: 3px solid #4CAF50;
	width: 95%;
}

html.light-mode .kol-pec-reply {
	background-color: #f5f5f5;
	border-radius: 4px;
	padding: 12px;
	margin-bottom: 10px;
	border-left: 3px solid #2e7d32;
	width: 95%;
}

html.dark-mode .kol-pec-reply-header,
html.light-mode .kol-pec-reply-header {
	display: flex;
	gap: 10px;
	margin-bottom: 8px;
	align-items: flex-start;
}

html.dark-mode .kol-pec-reply-avatar,
html.light-mode .kol-pec-reply-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

html.dark-mode .kol-pec-reply-info,
html.light-mode .kol-pec-reply-info {
	flex: 1;
}

html.dark-mode .kol-pec-reply-author {
	color: #e0e0e0;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.2s;
}

html.light-mode .kol-pec-reply-author {
	color: #333333;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.2s;
}

html.dark-mode .kol-pec-reply-author:hover {
	color: #4CAF50;
}

html.light-mode .kol-pec-reply-author:hover {
	color: #2e7d32;
}

html.dark-mode .kol-pec-reply-date {
	color: #888;
	font-size: 11px;
	margin-top: 2px;
}

html.light-mode .kol-pec-reply-date {
	color: #999999;
	font-size: 11px;
	margin-top: 2px;
}

html.dark-mode .kol-pec-reply-delete {
	display: inline-flex;
	width: fit-content;
	background: #383838;
	color: #fff;
	border: 1px solid #282828;
	border-radius: 6px;
	padding: 0 10px;
	height: 24px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 10px;
	transition: all 0.2s ease;
	margin-left: auto;
	flex-shrink: 0;
}

html.light-mode .kol-pec-reply-delete {
	display: inline-flex;
	width: fit-content;
	background: #f0f0f0;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 10px;
	height: 24px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 10px;
	transition: all 0.2s ease;
	margin-left: auto;
	flex-shrink: 0;
}

html.dark-mode .kol-pec-reply-delete:hover {
	background: #343434;
}

html.light-mode .kol-pec-reply-delete:hover {
	background: #e0e0e0;
}

html.dark-mode .kol-pec-reply-delete:active,
html.light-mode .kol-pec-reply-delete:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-reply-content {
	color: #e0e0e0;
	font-size: 13px;
	line-height: 1.4;
	word-wrap: break-word;
	white-space: pre-wrap;
	margin-bottom: 8px;
}

html.light-mode .kol-pec-reply-content {
	color: #333333;
	font-size: 13px;
	line-height: 1.4;
	word-wrap: break-word;
	white-space: pre-wrap;
	margin-bottom: 8px;
}

html.dark-mode .kol-pec-reply-actions,
html.light-mode .kol-pec-reply-actions {
	display: flex;
	gap: 10px;
	font-size: 11px;
	margin-top: 8px;
}

html.dark-mode .kol-pec-reply-emoji-picker,
html.light-mode .kol-pec-reply-emoji-picker {
	position: relative;
	display: inline-block;
}

html.dark-mode .kol-pec-reply-emoji-trigger {
	background: none;
	border: none;
	color: #888;
	cursor: pointer;
	font-size: 14px;
	padding: 0;
	transition: color 0.2s;
}

html.light-mode .kol-pec-reply-emoji-trigger {
	background: none;
	border: none;
	color: #999999;
	cursor: pointer;
	font-size: 14px;
	padding: 0;
	transition: color 0.2s;
}

html.dark-mode .kol-pec-reply-emoji-trigger:hover {
	color: #e0e0e0;
}

html.light-mode .kol-pec-reply-emoji-trigger:hover {
	color: #333333;
}

html.dark-mode .kol-pec-reply-emoji-menu {
	display: none;
	position: absolute;
	background-color: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	padding: 6px;
	gap: 4px;
	grid-template-columns: repeat(5, 1fr);
	z-index: 10001;
	bottom: 100%;
	left: 0;
	min-width: 150px;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5);
}

html.light-mode .kol-pec-reply-emoji-menu {
	display: none;
	position: absolute;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	padding: 6px;
	gap: 4px;
	grid-template-columns: repeat(5, 1fr);
	z-index: 10001;
	bottom: 100%;
	left: 0;
	min-width: 150px;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

html.dark-mode .kol-pec-reply-emoji-menu.open,
html.light-mode .kol-pec-reply-emoji-menu.open {
	display: grid;
}

html.dark-mode .kol-pec-reply-emoji-option {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	padding: 3px;
	border-radius: 3px;
	transition: background-color 0.2s;
	text-align: center;
}

html.light-mode .kol-pec-reply-emoji-option {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	padding: 3px;
	border-radius: 3px;
	transition: background-color 0.2s;
	text-align: center;
}

html.dark-mode .kol-pec-reply-emoji-option:hover {
	background-color: #2a2a2a;
}

html.light-mode .kol-pec-reply-emoji-option:hover {
	background-color: #f0f0f0;
}

html.dark-mode .kol-pec-reply-reaction-btn {
	background: none;
	border: none;
	color: #888;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: color 0.2s;
	padding: 0;
	font-size: 11px;
}

html.light-mode .kol-pec-reply-reaction-btn {
	background: none;
	border: none;
	color: #999999;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: color 0.2s;
	padding: 0;
	font-size: 11px;
}

html.dark-mode .kol-pec-reply-reaction-btn:hover {
	color: #e0e0e0;
}

html.light-mode .kol-pec-reply-reaction-btn:hover {
	color: #333333;
}

html.dark-mode .kol-pec-reply-reaction-btn.reacted {
	color: #4CAF50;
}

html.light-mode .kol-pec-reply-reaction-btn.reacted {
	color: #2e7d32;
}

html.dark-mode .kol-pec-no-comments,
html.dark-mode .kol-pec-comments-loading {
	text-align: center;
	color: #888;
	padding: 40px 20px;
	font-size: 14px;
}

html.light-mode .kol-pec-no-comments,
html.light-mode .kol-pec-comments-loading {
	text-align: center;
	color: #999999;
	padding: 40px 20px;
	font-size: 14px;
}

html.dark-mode .kol-pec-no-comments {
	scroll-margin-top: 20px;
}

html.light-mode .kol-pec-no-comments {
	scroll-margin-top: 20px;
}

html.dark-mode .kol-pec-modal-footer {
	padding: 20px;
	border-top: 1px solid #2a2a2a;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-shrink: 0;
}

html.light-mode .kol-pec-modal-footer {
	padding: 20px;
	border-top: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-shrink: 0;
}

html.dark-mode .kol-pec-reply-context {
	background-color: #161616;
	border-left: 2px solid #4CAF50;
	padding: 10px;
	border-radius: 4px;
	font-size: 12px;
	color: #e0e0e0;
	display: none;
}

html.light-mode .kol-pec-reply-context {
	background-color: #f5f5f5;
	border-left: 2px solid #2e7d32;
	padding: 10px;
	border-radius: 4px;
	font-size: 12px;
	color: #333333;
	display: none;
}

html.dark-mode .kol-pec-reply-context.active,
html.light-mode .kol-pec-reply-context.active {
	display: block;
}

html.dark-mode .kol-pec-reply-context-author {
	color: #4CAF50;
	font-weight: 600;
}

html.light-mode .kol-pec-reply-context-author {
	color: #2e7d32;
	font-weight: 600;
}

html.dark-mode .kol-pec-reply-context-preview {
	color: #aaa;
	font-size: 11px;
	margin-top: 4px;
	font-style: italic;
}

html.light-mode .kol-pec-reply-context-preview {
	color: #666666;
	font-size: 11px;
	margin-top: 4px;
	font-style: italic;
}

html.dark-mode .kol-pec-modal-form-wrapper,
html.light-mode .kol-pec-modal-form-wrapper {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

html.dark-mode .kol-pec-modal-form-avatar,
html.light-mode .kol-pec-modal-form-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	margin-top: 0;
}

html.dark-mode .kol-pec-reply-form {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #2a2a2a;
	position: relative;
	z-index: 10;
	pointer-events: auto;
}

html.light-mode .kol-pec-reply-form {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e0e0e0;
	position: relative;
	z-index: 10;
	pointer-events: auto;
}

html.dark-mode .kol-pec-reply-form-wrapper,
html.light-mode .kol-pec-reply-form-wrapper {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	pointer-events: auto;
}

html.dark-mode .kol-pec-reply-form-avatar,
html.light-mode .kol-pec-reply-form-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

html.dark-mode .kol-pec-reply-form-content,
html.light-mode .kol-pec-reply-form-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	pointer-events: auto;
}

html.dark-mode .kol-pec-reply-form-buttons,
html.light-mode .kol-pec-reply-form-buttons {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 11px;
	pointer-events: auto;
}

html.dark-mode .kol-pec-comment-form,
html.light-mode .kol-pec-comment-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

html.dark-mode .kol-pec-comment-textarea {
	width: 100%;
	padding: 12px;
	background-color: #1a1a1a;
	border: 1px solid #4CAF50;
	border-radius: 4px;
	color: #e0e0e0;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	min-height: 120px;
	max-height: 300px;
	box-sizing: border-box;
}

html.light-mode .kol-pec-comment-textarea {
	width: 100%;
	padding: 12px;
	background-color: #ffffff;
	border: 1px solid #2e7d32;
	border-radius: 4px;
	color: #333333;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	min-height: 120px;
	max-height: 300px;
	box-sizing: border-box;
}

html.dark-mode .kol-pec-comment-textarea::placeholder {
	color: #999999;
}

html.light-mode .kol-pec-comment-textarea::placeholder {
	color: #cccccc;
}

html.dark-mode .kol-pec-comment-textarea:focus {
	outline: none;
	border-color: #56ab2f;
	background-color: #161616;
}

html.light-mode .kol-pec-comment-textarea:focus {
	outline: none;
	border-color: #1b5e20;
	background-color: #f9f9f9;
}

html.dark-mode .kol-pec-reply-textarea {
	width: 100%;
	padding: 10px;
	background-color: #1a1a1a;
	border: 1px solid #4CAF50;
	border-radius: 4px;
	color: #e0e0e0;
	font-family: inherit;
	font-size: 13px;
	resize: vertical;
	min-height: 80px;
	max-height: 200px;
	box-sizing: border-box;
}

html.light-mode .kol-pec-reply-textarea {
	width: 100%;
	padding: 10px;
	background-color: #ffffff;
	border: 1px solid #2e7d32;
	border-radius: 4px;
	color: #333333;
	font-family: inherit;
	font-size: 13px;
	resize: vertical;
	min-height: 80px;
	max-height: 200px;
	box-sizing: border-box;
}

html.dark-mode .kol-pec-reply-textarea::placeholder {
	color: #999999;
}

html.light-mode .kol-pec-reply-textarea::placeholder {
	color: #cccccc;
}

html.dark-mode .kol-pec-reply-textarea:focus {
	outline: none;
	border-color: #56ab2f;
	background-color: #161616;
}

html.light-mode .kol-pec-reply-textarea:focus {
	outline: none;
	border-color: #1b5e20;
	background-color: #f9f9f9;
}

html.dark-mode .kol-pec-comment-buttons,
html.light-mode .kol-pec-comment-buttons {
	display: flex;
	gap: 10px;
	align-items: center;
}

html.dark-mode .kol-pec-comment-submit {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #56ab2f 0%, #3a6b1f 100%);
	color: #e0e0e0;
	border: 2px solid #2e5a1e;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

html.light-mode .kol-pec-comment-submit {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
	color: #ffffff;
	border: 2px solid #1b5e20;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-pec-comment-submit:hover {
	background: linear-gradient(135deg, #5fbf38 0%, #3f7825 100%);
}

html.light-mode .kol-pec-comment-submit:hover {
	background: linear-gradient(135deg, #56ab2f 0%, #1b5e20 100%);
}

html.dark-mode .kol-pec-comment-submit:active,
html.light-mode .kol-pec-comment-submit:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-comment-submit:disabled,
html.light-mode .kol-pec-comment-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

html.dark-mode .kol-pec-comment-char-count {
	font-size: 12px;
	color: #888;
}

html.light-mode .kol-pec-comment-char-count {
	font-size: 12px;
	color: #999999;
}

html.dark-mode .kol-pec-reply-submit {
	display: inline-flex;
	background: linear-gradient(135deg, #56ab2f 0%, #3a6b1f 100%);
	color: #e0e0e0;
	border: 2px solid #2e5a1e;
	border-radius: 4px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 12px;
	transition: all 0.2s ease;
	pointer-events: auto;
}

html.light-mode .kol-pec-reply-submit {
	display: inline-flex;
	background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
	color: #ffffff;
	border: 2px solid #1b5e20;
	border-radius: 4px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 12px;
	transition: all 0.2s ease;
	pointer-events: auto;
}

html.dark-mode .kol-pec-reply-submit:hover {
	background: linear-gradient(135deg, #5fbf38 0%, #3f7825 100%);
}

html.light-mode .kol-pec-reply-submit:hover {
	background: linear-gradient(135deg, #56ab2f 0%, #1b5e20 100%);
}

html.dark-mode .kol-pec-reply-submit:active,
html.light-mode .kol-pec-reply-submit:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-reply-cancel {
	display: inline-flex;
	background: #383838;
	color: #e0e0e0;
	border: 1px solid #282828;
	border-radius: 4px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 12px;
	transition: all 0.2s ease;
	pointer-events: auto;
}

html.light-mode .kol-pec-reply-cancel {
	display: inline-flex;
	background: #f0f0f0;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	padding: 0 12px;
	height: 28px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 12px;
	transition: all 0.2s ease;
	pointer-events: auto;
}

html.dark-mode .kol-pec-reply-cancel:hover {
	background: #343434;
}

html.light-mode .kol-pec-reply-cancel:hover {
	background: #e0e0e0;
}

html.dark-mode .kol-pec-reply-cancel:active,
html.light-mode .kol-pec-reply-cancel:active {
	transform: scale(0.98);
}

html.dark-mode .kol-pec-reply-char-count {
	color: #888;
	font-size: 10px;
}

html.light-mode .kol-pec-reply-char-count {
	color: #999999;
	font-size: 10px;
}

html.dark-mode .kol-pec-login-prompt {
	background-color: #1a1a1a;
	border-radius: 6px;
	padding: 20px;
	text-align: center;
	border: 1px solid #2a2a2a;
}

html.light-mode .kol-pec-login-prompt {
	background-color: #f9f9f9;
	border-radius: 6px;
	padding: 20px;
	text-align: center;
	border: 1px solid #e0e0e0;
}

html.dark-mode .kol-pec-login-prompt-text {
	color: #e0e0e0;
	font-size: 14px;
	margin: 0 0 15px 0;
}

html.light-mode .kol-pec-login-prompt-text {
	color: #333333;
	font-size: 14px;
	margin: 0 0 15px 0;
}

html.dark-mode .kol-pec-login-btn {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #56ab2f 0%, #3a6b1f 100%);
	color: #e0e0e0;
	border: 2px solid #2e5a1e;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
	text-decoration: none;
}

html.light-mode .kol-pec-login-btn {
	display: inline-flex;
	width: fit-content;
	background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
	color: #ffffff;
	border: 2px solid #1b5e20;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
	text-decoration: none;
}

html.dark-mode .kol-pec-login-btn:hover {
	background: linear-gradient(135deg, #5fbf38 0%, #3f7825 100%);
	text-decoration: none;
}

html.light-mode .kol-pec-login-btn:hover {
	background: linear-gradient(135deg, #56ab2f 0%, #1b5e20 100%);
	text-decoration: none;
}

html.dark-mode .kol-pec-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #2a2a2a;
}

html.light-mode .kol-pec-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

html.dark-mode .kol-pec-pagination-btn {
	background: #383838;
	color: #e0e0e0;
	border: 1px solid #282828;
	border-radius: 4px;
	padding: 6px 12px;
	cursor: pointer;
	font-size: 12px;
	transition: all 0.2s;
}

html.light-mode .kol-pec-pagination-btn {
	background: #f0f0f0;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	padding: 6px 12px;
	cursor: pointer;
	font-size: 12px;
	transition: all 0.2s;
}

html.dark-mode .kol-pec-pagination-btn:hover:not(:disabled) {
	background: #343434;
}

html.light-mode .kol-pec-pagination-btn:hover:not(:disabled) {
	background: #e0e0e0;
}

html.dark-mode .kol-pec-pagination-btn:disabled,
html.light-mode .kol-pec-pagination-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

html.dark-mode .kol-pec-pagination-info {
	color: #888;
	font-size: 12px;
	display: flex;
	align-items: center;
}

html.light-mode .kol-pec-pagination-info {
	color: #999999;
	font-size: 12px;
	display: flex;
	align-items: center;
}

html.dark-mode .kol-pec-leave-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 10001;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

html.light-mode .kol-pec-leave-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 10001;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

html.dark-mode .kol-pec-leave-modal.active,
html.light-mode .kol-pec-leave-modal.active {
	display: flex;
}

html.dark-mode .kol-pec-leave-modal-content {
	background-color: #1e1e1e;
	border-radius: 8px;
	padding: 30px;
	max-width: 400px;
	border: 1px solid #2a2a2a;
	text-align: center;
	z-index: 10002;
}

html.light-mode .kol-pec-leave-modal-content {
	background-color: #ffffff;
	border-radius: 8px;
	padding: 30px;
	max-width: 400px;
	border: 1px solid #e0e0e0;
	text-align: center;
	z-index: 10002;
}

html.dark-mode .kol-pec-leave-modal-title {
	color: #e0e0e0;
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 15px 0;
}

html.light-mode .kol-pec-leave-modal-title {
	color: #333333;
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 15px 0;
}

html.dark-mode .kol-pec-leave-modal-text {
	color: #aaa;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 25px;
}

html.light-mode .kol-pec-leave-modal-text {
	color: #666666;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 25px;
}

html.dark-mode .kol-pec-leave-modal-buttons,
html.light-mode .kol-pec-leave-modal-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
}

html.dark-mode .kol-pec-leave-stay-btn {
	display: inline-flex;
	background: #383838;
	color: #e0e0e0;
	border: 1px solid #282828;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

html.light-mode .kol-pec-leave-stay-btn {
	display: inline-flex;
	background: #f0f0f0;
	color: #333333;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-pec-leave-stay-btn:hover {
	background: #343434;
}

html.light-mode .kol-pec-leave-stay-btn:hover {
	background: #e0e0e0;
}

html.dark-mode .kol-pec-leave-btn {
	display: inline-flex;
	background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
	color: #fff;
	border: 2px solid #a71010;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

html.light-mode .kol-pec-leave-btn {
	display: inline-flex;
	background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
	color: #fff;
	border: 2px solid #a71010;
	border-radius: 6px;
	padding: 0 20px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

html.dark-mode .kol-pec-leave-btn:hover {
	background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

html.light-mode .kol-pec-leave-btn:hover {
	background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

@media (max-width: 768px) {
	html.dark-mode .kol-pec-comments-sidebar,
	html.light-mode .kol-pec-comments-sidebar {
		width: 100%;
	}
}

/* END COMMENTS SECTION */
