.box-comment {
  margin-top: 48px;
  padding-top: 52px;
  border-top: 4px solid #bdbdbd;
  font-size: 14px;
  line-height: 22px;
}
.box-comment p span {
  font-weight: normal;
  display: inline-block;
}
.box-comment .form-box-comment {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.box-comment .form-box-comment textarea {
  width: 100%;
  min-height: 60px;
  border-radius: 8px;
  border: 1px solid #eee;
}
.box-comment .form-box-comment textarea:focus {
  border: 1px solid #c8a949;
  outline: none;
}
.box-comment .form-box-comment textarea {
  padding: 12px;
  font-size: 16px;
  resize: vertical;
  margin-bottom: 12px;
  box-sizing: border-box;
  color: #222;
  background: #fff;
}
.box-comment .form-box-comment textarea::-moz-placeholder {
  color: #999;
}
.box-comment .form-box-comment textarea::placeholder {
  color: #999;
}
.box-comment .form-box-comment textarea.comment-input {
  min-height: 60px;
  transition: height 0.3s ease;
}
.box-comment .form-box-comment textarea.comment-input.expanded {
  min-height: 120px;
}
.box-comment .form-box-comment .text-right {
  width: 100%;
  text-align: right !important;
}
.box-comment .form-box-comment .text-right .btn-form-box-comment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #007AFF;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.box-comment .form-box-comment .text-right .btn-form-box-comment:hover {
  background: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}
.box-comment .form-box-comment .text-right .btn-form-box-comment:hover svg {
  transform: translateX(3px);
}
.box-comment .form-box-comment .text-right .btn-form-box-comment:active {
  transform: translateY(0);
}
.box-comment .form-box-comment .text-right .btn-form-box-comment svg {
  display: inline-block;
  margin-left: 0;
  transition: transform 0.3s ease;
}
.box-comment .form-box-comment .text-right .btn-form-box-comment svg path {
  fill: white !important;
}
.box-comment .tab-content {
  margin-bottom: 48px;
}
@media screen and (max-width: 991px) {
  .box-comment {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.review .nav-tabs {
  list-style: none;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 48px;
  border-bottom: none;
}
.review .nav-tabs .nav-item {
  flex: unset;
}
.review .nav-tabs .nav-link {
  font-size: 22px;
  color: #222;
  border: none;
  background: none;
  padding: 0 0 8px 0;
  font-weight: 500;
  transition: color 0.2s;
}
.review .nav-tabs .nav-link.active {
  color: #1976d2;
  border-bottom: 3px solid #1976d2;
  font-weight: 700;
}
.review .review-item {
  display: flex;
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: none;
  width: 100%;
}
.review .review-item .image {
  font-size: 48px;
  flex-shrink: 0;
  margin-right: 20px;
}
.review .review-item .image img {
  height: 40px;
  width: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.review .review-item .content-reply {
  position: relative;
  flex: 1;
  font-size: 15px;
}
.review .review-item .content-reply .name {
  text-align: left;
  color: blueviolet;
}
.review .review-item .content-reply .desc {
  text-align: left;
  margin-bottom: 10px;
  font-size: 17px;
  color: #222;
}
.review .review-item .content-reply .actions {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.review .review-item .content-reply .actions a {
  color: #999999;
  transition: color 0.2s;
}
.review .review-item .content-reply .actions a:hover {
  color: #007aff;
}
.review .review-item .content-reply .actions a:hover svg path {
  fill: #007aff;
}
.review .review-item .content-reply .actions a.active {
  color: #0d6efd !important;
}
.review .review-item .content-reply .actions a.active svg path {
  fill: #0d6efd !important;
}
.review .review-item .content-reply .actions > div {
  margin-right: 12px;
  color: #999999;
}
.review .review-item .content-reply .reply-box {
  display: block;
  padding-left: 15px;
  border-left: 2px solid #eee;
  margin-bottom: 10px;
}
.review .review-item .content-reply .reply-box textarea {
  font-size: 16px;
  line-height: 22px;
  min-height: 70px;
  border-radius: 8px;
  border: 1px solid #eee;
  padding: 12px;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}
.review .review-item .content-reply .reply-box textarea:focus {
  border: 1px solid #c8a949;
  outline: none;
}
.review .review-item .content-reply .reply-box textarea.comment-reply-input {
  min-height: 70px;
  transition: height 0.3s ease;
}
.review .review-item .content-reply .reply-box textarea.comment-reply-input.expanded {
  min-height: 100px;
}
.review .review-item .content-reply .reply-box .text-right {
  text-align: right !important;
}
.review .review-item .content-reply .reply-box .text-right .btn-form-box-comment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #007AFF;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.review .review-item .content-reply .reply-box .text-right .btn-form-box-comment:hover {
  background: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}
.review .review-item .content-reply .reply-box .text-right .btn-form-box-comment:hover svg {
  transform: translateX(3px);
}
.review .review-item .content-reply .reply-box .text-right .btn-form-box-comment:active {
  transform: translateY(0);
}
.review .review-item .content-reply .reply-box .text-right .btn-form-box-comment svg {
  display: inline-block;
  margin-left: 0;
  transition: transform 0.3s ease;
}
.review .review-item .content-reply .reply-box .text-right .btn-form-box-comment svg path {
  fill: white !important;
}
.review .review-item .content-reply .view-reply {
  text-align: left;
}
.review .view-more-all {
  background: #ececec;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  padding: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reply-user {
  margin-top: 19px;
}
.reply-user .item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.reply-user .user-avatar img {
  font-size: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 20px;
  width: 40px;
  height: 40px;
}
.reply-user .user-data {
  color: #222222;
  font-size: 14px;
  flex: 1;
}
.reply-user .user-data .name {
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 3px;
  color: blueviolet;
}
.reply-user .user-data .text {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 11px;
  text-align: left;
}
.reply-user .user-data .user-actions {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.reply-user .user-data .user-actions a {
  line-height: 22px;
  font-size: 14px;
  color: #999999;
}
.reply-user .user-data .user-actions a:hover {
  color: #007aff;
}
.reply-user .user-data .user-actions a:hover svg path {
  fill: #007aff;
}
.reply-user .user-data .user-actions a.active {
  color: #0d6efd !important;
}
.reply-user .user-data .user-actions a.active svg path {
  fill: #0d6efd !important;
}
.reply-user .user-data .user-actions a:not(:last-child) {
  margin-right: 24px;
}
.reply-user .user-data .user-actions a svg {
  display: inline-block;
  margin-left: 0px;
}
