@charset "UTF-8";
/*  상품후기 게시판 페이지 스타일 파일입니다. */
.board-reviews img {
  object-fit: contain !important;
}
.board-reviews__tabs {
  width: 100%;
}
.board-reviews__tabs li {
  flex: 1 0 auto;
}
.board-reviews__tabs button {
  width: 100%;
  padding: 10px;
}
.board-reviews .search-field {
  padding: 20px 0;
  border-bottom: 2px solid var(--color-base-black);
}
.board-reviews .search-field__select-box {
  width: 120px;
}
.board-reviews__extra-info__select-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 20px;
}
.board-reviews__extra-info__select {
  width: calc((100% - 8px) / 2);
}
.board-reviews__extra-info__selected-tags-wrapper {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.board-reviews__extra-info__tag-container {
  padding: 8px 36px 8px 20px;
  background-color: var(--color-point);
  border-radius: 15px;
  width: fit-content;
  display: flex;
  gap: 1vw;
  position: relative;
}
.board-reviews__extra-info__tag-value-name {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: var(--color-base-white);
}
.board-reviews__extra-info__tag-remove-btn {
  position: absolute;
  top: 8px;
  right: 20px;
  width: 14px;
  height: 14px;
  min-width: 0;
  padding: 0;
  border: none;
  color: black;
  background-color: var(--background-color);
  cursor: pointer;
  z-index: 15;
}
.board-reviews__extra-info__tag-remove-btn:before, .board-reviews__extra-info__tag-remove-btn:after {
  position: absolute;
  top: 0px;
  right: 6px;
  width: 1px;
  height: 14px;
  background-color: var(--color-base-white);
  content: " ";
}
.board-reviews__extra-info__tag-remove-btn:before {
  transform: rotate(45deg);
}
.board-reviews__extra-info__tag-remove-btn:after {
  transform: rotate(-45deg);
}
.board-reviews-list__search-container {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.board-reviews-list__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.board-reviews-list__item {
  width: calc(50% - 5px);
  border: 1px solid var(--gray200);
  margin: 10px 0;
}
.board-reviews-list__item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--color-base-black);
}
.board-reviews-list__reviewed-item {
  width: calc(50% - 5px);
  border: 1px solid var(--gray200);
  margin: 10px 0;
}
.board-reviews-list__reviewed-item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
  color: var(--color-base-black);
}
.board-reviews-item__best-post {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}
.board-reviews-item__product-review-info {
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  font-size: 12px;
}
.board-reviews-item__product-review-info .product-review-info__product-name {
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  font-weight: 500;
}
.board-reviews-item__product-review-info .product-review-info__review-count {
  color: var(--gray500);
}
.board-reviews-item__product-info {
  flex: none;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.board-reviews-item__product-info img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray200);
}
.board-reviews-item__top {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--gray200);
}
.board-reviews-item__top-img {
  aspect-ratio: 1/1;
  position: relative;
  display: block;
  overflow: hidden;
}
.board-reviews-item__top-img img {
  width: 100%;
  height: 100%;
  display: inline-flex;
}
.board-reviews-item__top-img-cnt {
  font-weight: 700;
  position: absolute;
  display: inline-block;
  right: 0;
  bottom: 0;
  background-color: var(--color-base-navy);
  width: 26px;
  height: 26px;
  color: var(--color-base-white);
  text-align: center;
  vertical-align: middle;
  padding: 3px;
}
.board-reviews-item__container {
  padding: 16px 10px;
}
.board-reviews-item__container section {
  text-align: left;
  padding: 10px 0;
}
.board-reviews-item__content {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  padding-bottom: 10px;
  max-height: 48px;
  padding: 10px;
}
.board-reviews-item__write-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 10px;
}
.board-reviews-item__write span + span::before {
  content: "|";
  color: var(--gray200);
}
.board-reviews-item__bottom {
  flex: none;
  height: 80px;
}
.board-reviews-item__extra-info {
  height: 44px;
}
.board-reviews-item__extra-info__tags-wrapper {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin: 10px;
  white-space: nowrap;
  overflow: auto;
}
.board-reviews-item__extra-info__tag-container {
  padding: 5px 20px;
  border: 1px solid var(--color-point);
  border-radius: 15px;
  width: fit-content;
  display: flex;
  gap: 1vw;
  position: relative;
  background-color: var(--color-base-white);
}
.board-reviews-item__extra-info__tag-value-name {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: var(--color-point);
}
.board-reviews .product-review-info__item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 4px;
}
.board-reviews .skeleton__wrap {
  padding-inline: 0;
}

.board-reviewed-item__top-img {
  aspect-ratio: 1/1;
  position: relative;
  display: block;
  overflow: hidden;
}
.board-reviewed-item__top-img img {
  width: 100%;
  height: 100%;
  display: inline-flex;
  object-fit: contain;
}
.board-reviewed-item__product-review-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
.board-reviewed-item__content .product-review-info__product-name {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  font-size: 12px;
  font-weight: 500;
}
.board-reviewed-item__content .product-review-info__product-price {
  font-size: 14px;
  font-weight: 700;
}
.board-reviewed-item__content .product-review-info__info {
  color: var(--gray500);
}
.board-reviewed-item__content .product-review-info__item .star svg {
  width: 15px;
  height: 15px;
}
.board-reviewed-item__reviews {
  flex: none;
  padding: 10px;
}
.board-reviewed-item__reviews img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray200);
}
.board-reviewed-item__reviews .reviews-item {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 0;
  width: 100%;
  border-top: 1px solid var(--gray200);
}
.board-reviewed-item__reviews .reviews-item img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray200);
}
.board-reviewed-item__reviews .reviews-item__content {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray600);
}
.board-reviewed-item__reviews .reviews-item__content-text {
  white-space: pre-line;
}
