.comment-widgets {
    .comment-row {
        background: transparent;
  
        &:hover,
        &.active {
            background: rgba(0, 0, 0, 0.025);
        }
    }
  }
  
  .comment-text {
  
    &:hover .comment-footer,
    &.active .comment-footer {
        .action-icons {
            visibility: visible;
        }
    }
  }
  
  .comment-footer {
    .action-icons {
        visibility: hidden;
  
        a {
            color: var(--bs-secondary-color);
  
            &:hover,
            &.active {
                color: var(--bs-info);
            }
        }
    }
  }


.comment-widgets .comment-row:hover,
.comment-widgets .comment-row.active {
    background: rgba(0, 0, 0, 0.025);
}