/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License 3.0 (AFL-3.0)
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to https://devdocs.prestashop.com/ for more information.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
 */

/**
 *  Product comments CSS
 */

.btn-comment,
.btn-comment-inverse {
  height: 36px;
  border-radius: 2px;
  background-color: #6b868f;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
  padding: 8px;
}
.btn-comment:hover {
  background-color: #3c4d52;
}

.btn-comment-inverse {
  background-color: #ffffff;
  color: #363a41;
  border: 1px solid #979797;
}
.btn-comment-inverse:hover {
  background-color: #6b868f;
  border: 1px solid #6b868f;
  color: #ffffff;
}

.btn-comment-big {
  padding: 13px 16px;
  height: 45px;
}

.btn-comment-huge {
  padding: 13px 28px;
  height: 45px;
}

.link-comment {
  color: #232323;
}

.link-comment:hover,
.link-comment:active {
  text-decoration: underline;
  color: #232323;
}

/**
 * Additional product infos
 */

/**
 *  Post comment modal
 */
.product-comment-modal .modal-header {
  border: none;
  padding: 30px 30px 15px;
}

.product-comment-modal .modal-body {
  padding: 15px 30px 30px;
}

.product-comment-modal .modal-header .h2 {
  float: left;
  font-size: 20px;
}

.product-comment-modal .modal-dialog {
  width: calc(100% - 30px);
  max-width: 774px;
}

body.product-comment-modal-open .modal-backdrop {
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 1040 !important;
  background-color: rgba(33, 48, 56, 0.9) !important;
  opacity: 0.55 !important;
}

body.product-comment-modal-open,
body.product-comment-modal-open .js-header-top,
body.product-comment-modal-open .product-comment-modal {
  padding-right: 0 !important;
}

body.product-comment-modal-open.modal-open {
  overflow-y: scroll !important;
}

.product-comment-modal {
  z-index: 1050;
}

.product-comment-modal .modal-dialog .h3 {
  font-size: 14px;
}

.product-comment-modal .modal-dialog .product-flag {
  display: none;
}

.product-comment-modal .modal-dialog .product-cover,
.product-comment-modal .modal-dialog .product-cover img {
  width: 99px;
  height: 99px;
}

.product-comment-modal label.form-label {
  font-size: 16px;
  margin: 10px 0;
}

.product-comment-modal .form-label__hint {
  color: #777;
  font-size: 0.82em;
  font-weight: 400;
  margin-left: 0.35rem;
}

.product-comment-modal input {
  width: 100%;
  height: 44px;
  border: 1px solid #bfbfbf;
  padding: 0 10px;
}

.product-comment-modal textarea {
  width: 100%;
  min-height: 80px;
  border: 1px solid #bfbfbf;
  margin-bottom: 10px;
  padding: 10px 10px;
}

.product-comment-modal .btn-comment,
.product-comment-modal .btn-comment-inverse {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
}

.product-comment-modal .required {
  font-size: 12px;
  margin-left: 5px;
}

.product-comment-modal .post-comment-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.product-comment-modal .post-comment-buttons .btn-comment {
  margin-left: 15px;
}

#product-comment-posted-modal .post-comment-buttons,
#product-comment-post-error .post-comment-buttons,
#update-comment-usefulness-post-error .post-comment-buttons {
  margin-top: 30px;
}

/**
 *  Star component
 */

.star-content {
  --amrl-star-size: 20px;
  --amrl-star-gap: 3px;
  margin: 0 0 0 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--amrl-star-gap);
}

.small-stars .star-content {
  --amrl-star-size: 16px;
  --amrl-star-gap: 2px;
}

.star-slot {
  --fill-percent: 0%;
  position: relative;
  display: block;
  width: var(--amrl-star-size);
  min-width: var(--amrl-star-size);
  max-width: var(--amrl-star-size);
  height: var(--amrl-star-size);
  flex: 0 0 var(--amrl-star-size);
  padding: 0;
  border: 0;
  background: none;
}

.star-slot::before,
.star-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  -webkit-mask: url(../img/star_fill_gray.svg) center / contain no-repeat;
  mask: url(../img/star_fill_gray.svg) center / contain no-repeat;
}

.star-slot::before {
  background-color: #c9d1d8;
}

.star-slot::after {
  background-color: #ff3a00;
  -webkit-mask: url(../img/star_fill_orange.svg) center / contain no-repeat;
  mask: url(../img/star_fill_orange.svg) center / contain no-repeat;
  -webkit-clip-path: inset(0 calc(100% - var(--fill-percent)) 0 0);
  clip-path: inset(0 calc(100% - var(--fill-percent)) 0 0);
}

button.star-slot {
  cursor: pointer;
}

button.star-slot:focus-visible {
  outline: 2px solid #ff3a00;
  outline-offset: 2px;
  border-radius: 4px;
}

.grade-stars {
  position: relative;
  height: 20px;
  min-width: 120px;
  display: inline-block;
}

.grade-stars.small-stars {
  min-width: 100px;
}

.grade-stars .star-content {
  position: absolute;
  top: 3px;
  left: 0;
}

.criterion-rating .grade-stars .star-content {
  top: 0;
}

#post-product-comment-modal .criterion-rating {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid transparent;
  border-radius: 4px;
}

#post-product-comment-modal .criterion-rating label {
  color: #363a41;
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}

#post-product-comment-modal .criterion-rating-error .criterion-rating {
  border-color: #d93a4a;
  background-color: rgba(217, 58, 74, 0.08);
}

#ratingNotChosen {
  margin: 0.5rem 0 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(217, 58, 74, 0.35);
  border-radius: 4px;
  background-color: rgba(217, 58, 74, 0.1);
  color: #a61f2d;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

#post-product-comment-form input.error,
#post-product-comment-form textarea.error {
  background-color: #f2dede;
  border: solid 1px #ebcccc;
}

#post-product-comment-form input.valid,
#post-product-comment-form textarea.valid {
  border: solid 1px #d0e9c6;
}

/**
 *  Product comments list
 */

#product-comments-list .btn-comment {
  margin: 0 auto;
  display: block;
}

#empty-product-comment {
  text-align: center;
}

/*
** Quickview style
*/

.product-quickview-review {
  display: flex;
  flex-direction: row;
}

.product-quickview-review .grade-stars .star-content {
  margin: 0 0 0 0;
  top: 0;
}

/*
** Product list override
*/

/*
** Legacy FO flag positioning kept for thumbnail badges.
*/
#products
  .product-miniature
  .thumbnail-container.has-reviews
  .discount-amount.online-only,
#products
  .product-miniature
  .thumbnail-container.has-reviews
  .discount-percentage.online-only,
#products
  .product-miniature
  .thumbnail-container.has-reviews
  .on-sale.online-only,
#products
  .product-miniature
  .thumbnail-container.has-reviews
  .online-only.online-only,
#products .product-miniature .thumbnail-container.has-reviews .pack.online-only,
#products
  .product-miniature
  .thumbnail-container.has-reviews
  .product-flags
  .new.online-only,
.featured-products
  .product-miniature
  .thumbnail-container.has-reviews
  .discount-amount.online-only,
.featured-products
  .product-miniature
  .thumbnail-container.has-reviews
  .discount-percentage.online-only,
.featured-products
  .product-miniature
  .thumbnail-container.has-reviews
  .on-sale.online-only,
.featured-products
  .product-miniature
  .thumbnail-container.has-reviews
  .online-only.online-only,
.featured-products
  .product-miniature
  .thumbnail-container.has-reviews
  .pack.online-only,
.featured-products
  .product-miniature
  .thumbnail-container.has-reviews
  .product-flags
  .new.online-only,
.product-accessories
  .product-miniature
  .thumbnail-container.has-reviews
  .discount-amount.online-only,
.product-accessories
  .product-miniature
  .thumbnail-container.has-reviews
  .discount-percentage.online-only,
.product-accessories
  .product-miniature
  .thumbnail-container.has-reviews
  .on-sale.online-only,
.product-accessories
  .product-miniature
  .thumbnail-container.has-reviews
  .online-only.online-only,
.product-accessories
  .product-miniature
  .thumbnail-container.has-reviews
  .pack.online-only,
.product-accessories
  .product-miniature
  .thumbnail-container.has-reviews
  .product-flags
  .new.online-only {
  top: 11.5rem;
}

#product-comments-list-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

#product-comments-list-pagination {
  height: auto;
  margin: 0 auto;
}

#product-comments-list-pagination ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

#product-comments-list-pagination ul li span {
  min-width: 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--amrl-reviews-text);
  border-radius: 0.9rem;
  background: transparent;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

#product-comments-list-pagination ul li span.prev,
#product-comments-list-pagination ul li span.next {
  min-width: 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--amrl-reviews-text);
  border-radius: 999px;
}

#product-comments-list-pagination ul li:not(.active):not(.disabled) span:hover {
  background: rgba(17, 73, 112, 0.08);
  transform: translateY(-1px);
}

#product-comments-list-pagination ul li.disabled span {
  opacity: 0.3;
  cursor: not-allowed;
}

#product-comments-list-pagination ul li.active span {
  color: #fff;
  background: var(--amrl-reviews-primary);
  box-shadow: 0 10px 24px rgba(255, 58, 0, 0.28);
  cursor: default;
}

#product-comments-list-pagination ul li.hidden {
  display: none;
}

:root {
  --amrl-reviews-primary: #ff3a00;
  --amrl-reviews-primary-dark: #d63300;
  --amrl-reviews-secondary: #114970;
  --amrl-reviews-positive: #114970;
  --amrl-reviews-negative: #d93a4a;
  --amrl-reviews-text: #213038;
  --amrl-reviews-muted: rgba(33, 48, 56, 0.65);
  --amrl-reviews-border: rgba(33, 48, 56, 0.14);
}

.amrl-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.amrl-icon path,
.amrl-icon line,
.amrl-icon polyline,
.amrl-icon polygon,
.amrl-icon rect,
.amrl-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amrl-icon--sm {
  width: 1rem;
  height: 1rem;
}

.amrl-icon--md {
  width: 1.25rem;
  height: 1.25rem;
}

.amrl-icon--lg {
  width: 1.5rem;
  height: 1.5rem;
}

.btn-comment {
  background-color: var(--amrl-reviews-primary);
  border: 1px solid var(--amrl-reviews-primary);
  color: #fff;
}

.btn-comment:hover,
.btn-comment:focus,
.btn-comment:active,
.btn-comment:active:focus,
.btn-comment:not(:disabled):not(.disabled):active {
  background-color: var(--amrl-reviews-primary-dark);
  border-color: var(--amrl-reviews-primary-dark);
  color: #fff !important;
  text-decoration: none;
}

.btn-comment:hover .amrl-icon,
.btn-comment:focus .amrl-icon,
.btn-comment:active .amrl-icon {
  color: #fff;
  stroke: currentColor;
}

.btn-comment-inverse {
  border-color: var(--amrl-reviews-border);
  color: var(--amrl-reviews-text);
}

.btn-comment-inverse:hover {
  background-color: var(--amrl-reviews-text);
  border-color: var(--amrl-reviews-text);
}

#product-comments-list-header {
  margin: 1.5rem 0;
  padding: 0;
  color: var(--amrl-reviews-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

#product-comments-list-header .comments-nb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amrl-reviews-text);
  font-size: 1.5rem;
  font-weight: 700;
}

#product-comments-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-comment-list-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--amrl-reviews-border);
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(17, 73, 112, 0.04);
}

.product-comment-list-item .comment-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-comment-list-item.is-pending-validation {
  border-color: rgba(255, 58, 0, 0.32);
  background-color: rgba(255, 58, 0, 0.035);
}

.product-comment-list-item .comment-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.35rem;
}

.product-comment-list-item .comment-content .h4 {
  height: auto;
  margin: 0;
  color: var(--amrl-reviews-text);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-comment-list-item .comment-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.product-comment-list-item .comment-status--pending {
  color: #8a2a00;
  background-color: rgba(255, 58, 0, 0.12);
}

.product-comment-list-item .comment-status--owner {
  color: var(--amrl-reviews-primary);
  background-color: rgba(255, 58, 0, 0.1);
}

.product-comment-list-item .comment-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 0.12rem;
}

.product-comment-list-item .comment-meta .grade-stars {
  display: block;
  width: fit-content;
  min-width: fit-content;
  max-width: max-content;
  height: auto;
  flex: none;
  margin-right: 0.18rem;
}

.product-comment-list-item .comment-meta .grade-stars .star-content {
  --amrl-star-size: 12px;
  --amrl-star-gap: 0px;
  margin: 0;
  top: 0;
  position: static;
}

.product-comment-list-item .comment-content .comment-published {
  margin: 0;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: var(--amrl-reviews-muted);
  font-size: 0.84rem;
  line-height: 1.2;
}

.product-comment-list-item .comment-content .comment-published-date,
.product-comment-list-item .comment-content .comment-published-author {
  white-space: nowrap;
}

.product-comment-list-item .comment-content p,
.product-comment-list-item .comment-content .comment-text {
  color: var(--amrl-reviews-text);
  font-size: 1rem;
  line-height: 1.6;
  word-break: break-word;
  white-space: pre-wrap;
}

.product-comment-list-item .comment-content .comment-text {
  margin: 0;
  text-align: justify;
}

.product-comment-list-item .comment-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.9rem;
  padding-top: 0;
}

.product-comment-list-item.is-pending-validation .comment-buttons {
  justify-content: flex-end;
}

.product-comment-list-item .comment-secondary-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.product-comment-list-item .comment-action--delete {
  color: #c94b45;
}

.product-comment-list-item .comment-action--delete:hover,
.product-comment-list-item .comment-action--delete:focus {
  color: #a63b36;
}

.product-comment-list-item .comment-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.product-comment-list-item .comment-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--amrl-reviews-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.product-comment-list-item .comment-action:hover {
  color: var(--amrl-reviews-secondary);
  text-decoration: none;
}

.product-comment-list-item .comment-action.is-selected {
  color: var(--amrl-reviews-secondary);
}

.product-comment-list-item .comment-content .comment-buttons a.comment-action.is-selected {
  color: var(--amrl-reviews-secondary);
}

.product-comment-list-item .comment-content .comment-buttons a.js-useful-review.is-selected {
  color: var(--amrl-reviews-positive);
}

.product-comment-list-item .comment-content .comment-buttons a.js-not-useful-review.is-selected {
  color: var(--amrl-reviews-negative);
}

.product-comment-list-item .comment-content .comment-buttons a.comment-action.is-selected .amrl-icon,
.product-comment-list-item .comment-content .comment-buttons a.comment-action.is-selected span {
  color: inherit;
}

.product-comment-list-item .comment-action.is-voting .amrl-icon {
  transform-origin: center;
  animation: amrl-review-vote-pop 0.35s ease-out;
}

.product-comment-list-item .comment-action.is-voting {
  animation: amrl-review-vote-bounce 0.35s ease-out;
}

#product-comments-list-header .amrl-icon,
.product-comments-additional-info .amrl-icon,
.product-comment-list-item .comment-action .amrl-icon,
.btn-comment .amrl-icon,
.btn-comment-inverse .amrl-icon {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#product-comments-list-header .comments-note,
.product-comments-additional-info .comments-note {
  display: inline-flex;
  align-items: center;
}

@keyframes amrl-review-vote-pop {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.28);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes amrl-review-vote-bounce {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

.product-comments-additional-info {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 14px;
  font-weight: 300;
}

.product-comments-additional-info .comments-note {
  margin-right: 30px;
  margin-bottom: 0;
}

.product-comments-additional-info .additional-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.product-comments-additional-info .link-comment,
.product-comments-additional-info .btn-comment {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product-comments-additional-info .link-comment.post-product-comment {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

.product-comments-additional-info .link-comment {
  color: var(--amrl-reviews-text);
}

#product-comments-target,
#product-comments-list-header {
  scroll-margin-top: 7rem;
}

.page-content--module-amrl_reviews-reviews .card {
  border: 1px solid var(--amrl-reviews-border);
}

.amrl-reviews-account .table {
  margin-bottom: 0;
}

.amrl-reviews-account .table th:nth-child(2),
.amrl-reviews-account .table td:nth-child(2) {
  white-space: nowrap;
}

.amrl-reviews-account .table th:last-child,
.amrl-reviews-account .table td:last-child {
  width: 1%;
  white-space: nowrap;
  padding-right: 1.5rem;
}

.amrl-reviews-account .table td .font-weight-bold,
.amrl-reviews-account .table td .text-muted,
.amrl-reviews-account .table th .font-weight-bold,
.amrl-reviews-account .table th .text-muted {
  overflow-wrap: anywhere;
}

.amrl-reviews-account .amrl-reviews-account__view-review {
  background-color: var(--amrl-reviews-secondary);
  border-color: var(--amrl-reviews-secondary);
}

.amrl-reviews-account .amrl-reviews-account__view-review:hover,
.amrl-reviews-account .amrl-reviews-account__view-review:focus,
.amrl-reviews-account .amrl-reviews-account__view-review:active {
  background-color: #0d3a59;
  border-color: #0d3a59;
}

.product-miniature__thumb {
  position: relative;
}

.product-list-reviews {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0.75rem;
  left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: flex-start;
  width: auto;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  visibility: hidden;
}

.product-list-reviews .grade-stars {
  display: block;
  min-width: auto;
  width: auto;
  height: 16px;
}

.product-list-reviews .grade-stars .star-content {
  position: static;
  margin-left: 0;
  top: 0;
}

.thumbnail-container.has-reviews:hover .highlighted-informations,
.thumbnail-container.has-reviews:focus .highlighted-informations,
.thumbnail-container.has-reviews:hover .highlighted-informations.no-variants,
.thumbnail-container.has-reviews:focus .highlighted-informations.no-variants {
  height: auto !important;
}

.thumbnail-container.has-reviews:hover .highlighted-informations .variant-links,
.thumbnail-container.has-reviews:focus .highlighted-informations .variant-links {
  min-height: 0 !important;
}

#product-comments-list-footer .post-product-comment {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 767.98px) {
  #product-comments-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-comment-list-item {
    padding: 1.25rem;
  }

  .product-comment-list-item .comment-title-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-comment-list-item .comment-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    margin-bottom: 0.45rem;
  }

  .product-comment-list-item .comment-meta .grade-stars {
    margin-right: 0;
  }

  .product-comment-list-item .comment-content .comment-published {
    display: block;
    width: auto;
    align-self: flex-start;
    text-align: left;
    line-height: 1.25;
  }

  #product-comments-list-header {
    align-items: flex-start;
  }
}

#post-product-comment-modal .modal-header {
  position: relative;
  padding-right: 50px;
}

#post-product-comment-modal .close {
  position: absolute;
  top: 10px;
  right: 10px;

  width: 32px;
  height: 32px;

  padding: 0;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
}
