.c-comments-section {
  padding: 60px 0;
}

.c-comments {
  width: 100%;
}
.c-comments .comments-title {
  margin-bottom: 30px;
}
.c-comments .comments-title h3 {
  font-size: 24px;
  font-weight: 600;
  color: #252525;
  margin: 0;
}
.c-comments .comments-title .title-separator {
  height: 3px;
  background: linear-gradient(90deg, #0071dc, #ffc221);
  margin-top: 8px;
  border-radius: 2px;
}
.c-comments .comments-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-comments .comments-list > li {
  margin-bottom: 20px;
}
.c-comments .comments-list > li .comment {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
  transition: box-shadow 0.3s ease;
}
.c-comments .comments-list > li .comment:hover {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}
.c-comments .comments-list > li .comment .comment-content > div {
  display: flex;
  gap: 16px;
}
.c-comments .comments-list > li .comment .comment-content .comment-author-avatar {
  flex-shrink: 0;
}
.c-comments .comments-list > li .comment .comment-content .comment-author-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.c-comments .comments-list > li .comment .comment-content .comment-details {
  flex: 1;
  min-width: 0;
}
.c-comments .comments-list > li .comment .comment-content .comment-details .comment-action-buttons {
  float: right;
  margin-left: 10px;
  display: flex;
  gap: 8px;
}
.c-comments .comments-list > li .comment .comment-content .comment-details .comment-action-buttons a {
  font-size: 13px;
  color: #0071dc;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.c-comments .comments-list > li .comment .comment-content .comment-details .comment-action-buttons a:hover {
  color: #0056a3;
}
.c-comments .comments-list > li .comment .comment-content .comment-details .comment-action-buttons a .glyphicon {
  display: none;
}
.c-comments .comments-list > li .comment .comment-content .comment-details .comment-author-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.c-comments .comments-list > li .comment .comment-content .comment-details .comment-author-name span[itemprop=name] {
  font-weight: 600;
  font-size: 16px;
  color: #252525;
}
.c-comments .comments-list > li .comment .comment-content .comment-details .comment-author-name .comment-date {
  font-size: 13px;
  color: #888;
  text-decoration: none;
}
.c-comments .comments-list > li .comment .comment-content .comment-details .comment-body {
  font-size: 15px;
  line-height: 1.6;
  color: #444444;
  margin-top: 8px;
  word-wrap: break-word;
}
.c-comments .comments-list > li .comment .children {
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
}
.c-comments .comments-list > li .comment .children .comment {
  background: #f8f9fa;
  box-shadow: none;
  border-color: #e9ecef;
  padding: 20px;
}
.c-comments .comments-list > li .comment .children .comment .comment-author-avatar img {
  width: 40px;
  height: 40px;
}
.c-comments .comments-list > li .comment .children .comment .comment-details .comment-author-name span[itemprop=name] {
  font-size: 14px;
}
.c-comments .comments-list > li .comment .children .comment .comment-details .comment-body {
  font-size: 14px;
}
.c-comments .commented-stars {
  margin-top: 12px;
}
.c-comments .commented-stars .rating-group {
  display: inline-flex;
  gap: 2px;
}
.c-comments .commented-stars .rating__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.c-comments .commented-stars .rating__label {
  cursor: default;
  line-height: 1;
}
.c-comments .commented-stars .rating__icon--star {
  font-size: 18px;
  color: #ddd;
  transition: color 0.2s;
}
.c-comments .commented-stars ._icon-star-full {
  color: #ffc221;
}
.c-comments .comment-stars {
  margin-bottom: 16px;
}
.c-comments .comment-stars .rating-group {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.c-comments .comment-stars .rating__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.c-comments .comment-stars .rating__label {
  cursor: pointer;
  line-height: 1;
}
.c-comments .comment-stars .rating__label-disabled {
  cursor: default;
}
.c-comments .comment-stars .rating__icon--star {
  font-size: 24px;
  color: #ddd;
  transition: color 0.15s;
}
.c-comments .comment-stars ._icon-star-full {
  color: #ffc221;
}
.c-comments .comment-stars .rating__sign {
  margin-left: 12px;
  font-size: 14px;
  color: #888;
}
.c-comments .comment-form-container {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e9ecef;
}
.c-comments .comment-form-container .form-group {
  margin-bottom: 16px;
}
.c-comments .comment-form-container .form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: "Livvic", sans-serif;
  color: #444444;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.c-comments .comment-form-container .form-control:focus {
  border-color: #0071dc;
  box-shadow: 0 0 0 3px rgba(0, 113, 220, 0.1);
}
.c-comments .comment-form-container .form-control::placeholder {
  color: #aaa;
}
.c-comments .comment-form-container textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.c-comments .comment-form-container .help-block {
  font-size: 13px;
  color: #dc3545;
  margin-top: 4px;
}
.c-comments .comment-form-container .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.c-comments .comment-form-container .row .col-sm-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 8px;
  box-sizing: border-box;
}
.c-comments .comment-form-container .button-container {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.c-comments .comment-form-container .button-container .comment-submit {
  height: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Livvic", sans-serif;
  color: #fff;
  background: #0071dc;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.c-comments .comment-form-container .button-container .comment-submit:hover {
  background: #0056a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 113, 220, 0.25);
}
.c-comments .comment-form-container .button-container .comment-submit:active {
  transform: translateY(0);
}
.c-comments .comment-form-container .button-container #cancel-reply {
  background: transparent;
  color: #888;
  box-shadow: none;
}
.c-comments .comment-form-container .button-container #cancel-reply:hover {
  background: #f3f4f6;
  color: #444;
  transform: none;
  box-shadow: none;
}
.c-comments .comment-form-container .recaptcha-wrapper {
  min-height: 78px;
  margin-bottom: 16px;
}
.c-comments .comment-content .comment-form-container {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}
.c-comments .comment-content .comment-form-container .button-container .comment-submit {
  padding: 8px 24px;
  font-size: 14px;
}
.c-comments .pagination {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}
.c-comments .pagination li a, .c-comments .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  font-size: 14px;
  color: #444;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.c-comments .pagination li a:hover, .c-comments .pagination li span:hover {
  color: #0071dc;
  border-color: #0071dc;
}
.c-comments .pagination li.active a, .c-comments .pagination li.active span {
  color: #fff;
  background: #0071dc;
  border-color: #0071dc;
}
.c-comments .pagination li.disabled a, .c-comments .pagination li.disabled span {
  color: #ccc;
  cursor: not-allowed;
  background: #f9fafb;
}
.c-comments .pagination li.disabled a:hover, .c-comments .pagination li.disabled span:hover {
  color: #ccc;
  border-color: #e5e7eb;
}
.c-comments .rating-group-form-special-wrapper {
  display: none;
}
.c-comments .comment-form-container .rating-group-form-special-wrapper {
  display: block;
}

.theme-dark .c-comments-section {
  background-color: #0c243b !important;
}
.theme-dark .c-comments .comments-title h3 {
  color: #fff;
}
.theme-dark .c-comments .comments-list > li .comment {
  background: #1a2e44;
  border-color: rgba(255, 255, 255, 0.05);
}
.theme-dark .c-comments .comments-list > li .comment .comment-content .comment-details .comment-author-name span[itemprop=name] {
  color: #fff;
}
.theme-dark .c-comments .comments-list > li .comment .comment-content .comment-details .comment-author-name .comment-date {
  color: #8899aa;
}
.theme-dark .c-comments .comments-list > li .comment .comment-content .comment-details .comment-body {
  color: #ccd5e0;
}
.theme-dark .c-comments .comments-list > li .comment .comment-content .comment-details .comment-action-buttons a {
  color: #66b3ff;
}
.theme-dark .c-comments .comments-list > li .comment .children .comment {
  background: #15283c;
  border-color: rgba(255, 255, 255, 0.04);
}
.theme-dark .c-comments .comment-form-container {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .c-comments .comment-form-container .form-control {
  background: #1a2e44;
  border-color: rgba(255, 255, 255, 0.15);
  color: #ccd5e0;
}
.theme-dark .c-comments .comment-form-container .form-control:focus {
  border-color: #0071dc;
  box-shadow: 0 0 0 3px rgba(0, 113, 220, 0.2);
}
.theme-dark .c-comments .comment-form-container .form-control::placeholder {
  color: #667788;
}
.theme-dark .c-comments .comment-form-container .button-container #cancel-reply {
  color: #8899aa;
}
.theme-dark .c-comments .comment-form-container .button-container #cancel-reply:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ccd5e0;
}
.theme-dark .c-comments .comment-content .comment-form-container {
  border-top-color: rgba(255, 255, 255, 0.08);
}
.theme-dark .c-comments .pagination li a, .theme-dark .c-comments .pagination li span {
  background: #1a2e44;
  border-color: rgba(255, 255, 255, 0.1);
  color: #8899aa;
}
.theme-dark .c-comments .pagination li a:hover, .theme-dark .c-comments .pagination li span:hover {
  color: #66b3ff;
  border-color: #66b3ff;
}
.theme-dark .c-comments .pagination li.active a, .theme-dark .c-comments .pagination li.active span {
  color: #fff;
  background: #0071dc;
  border-color: #0071dc;
}
.theme-dark .c-comments .pagination li.disabled a, .theme-dark .c-comments .pagination li.disabled span {
  color: #556;
  background: #15283c;
}
.theme-dark .c-comments .pagination li.disabled a:hover, .theme-dark .c-comments .pagination li.disabled span:hover {
  color: #556;
  border-color: rgba(255, 255, 255, 0.05);
}
.theme-dark .c-comments .commented-stars ._icon-star-full {
  color: #ffc221;
}
.theme-dark .c-comments .comment-stars ._icon-star-full {
  color: #ffc221;
}
.theme-dark .c-comments .comment-stars .rating__sign {
  color: #8899aa;
}

@media (max-width: 767px) {
  .c-comments .comments-list > li .comment {
    padding: 16px;
  }
  .c-comments .comments-list > li .comment .comment-content > div {
    flex-direction: column;
    gap: 12px;
  }
  .c-comments .comments-list > li .comment .comment-content .comment-author-avatar img {
    width: 48px;
    height: 48px;
  }
  .c-comments .comments-list > li .comment .comment-content .comment-details .comment-action-buttons {
    float: none;
    margin-left: 0;
    margin-bottom: 8px;
  }
  .c-comments .comment-form-container .row .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*# sourceMappingURL=comments.css.map */
