@charset "UTF-8";
/*  상품후기 게시판 페이지 스타일 파일입니다. */
.board-reviews img {
  /* object-fit: contain !important; */
  object-fit: cover !important;
}
.board-reviews .tab {
  width: 100%;
}
.board-reviews .tab li {
  width: 100%;
}
.board-reviews .tab li .tab__btn {
  width: 100%;
  padding:0 10px 20px;
  margin-top:60px;
}
.board-reviews__extra-info__select-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  padding: 20px 0;
}
.board-reviews__extra-info__select {
  width: calc((100% - 40px) / 6);
}
.board-reviews__extra-info__selected-tags-wrapper {
  display: flex;
  gap: 8px;
  margin: 8px 0 20px 0;
  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 {
  border-top: 2px solid var(--color-base-black);
}
.board-reviews-list__search-container {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.board-reviews-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.board-reviews-list__item {
  cursor: pointer;
  width: calc(25% - 15px);
  border: 1px solid #e5e5e5;
  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);
  padding: 0 20px;
}
.board-reviews-list__reviewed-item {
  cursor: pointer;
  width: calc(25% - 15px);
  border: 1px solid #e5e5e5;
  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__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: 400;
  font-size:14px;
}
.board-reviews-item__product-review-info .product-review-info__review-count {
  font-size: 12px;
  color: #000;
}
.board-reviews-item__product-info {
  height: 100px;
  /* padding: 20px; */
  border-top:1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 20px;
}
.board-reviews-item__product-info img {
  width: 50px;
  height: 50px;
  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;
  max-height:220px;
}
.board-reviews-item__top-img img {
  width: 100%;
  height: 100%;
  display: inline-flex;
}
.board-reviews-item__top-img-cnt {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  padding: 14px;
  position: absolute;
  display: inline-block;
  right: 0;
  bottom: 0;
  background-color: var(--color-base-navy);
  width: 40px;
  height: 40px;
  color: var(--color-base-white);
  text-align: center;
  vertical-align: middle;
}
.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;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
  height: 65px;
  padding:20px;
}
.board-reviews-item__content-text {
  white-space: pre-line;
}
.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-item__write-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 10px 20px 20px;
}
.board-reviews-item__writer {
  font-size: 14px;
  font-weight: 500;
}
.board-reviews-item__bottom {
  flex: none;
  height: 80px;
}
.board-reviews .pagination {
  margin-top: 40px;
}

.board-review-search-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
.board-review-search-field__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 30px 0;
  border-bottom: 1px solid var(--color-base-black);
}
.board-review-search-field__top .board-reviews__title {
  font-size: 18px;
  font-weight: 600;
  line-height:1
}
.board-review-search-field .sort-selector__select-btn {
  color: #000;
  background-color: transparent;
  font-size:14px;
  gap:0;
  min-width: auto;
}
.sort-selector__button-box{display: flex; gap:34px;}
.board-review-search-field .sort-selector__select-btn.is-active {
  position: relative;
  font-weight: 600;
  color: #3a42ff;
}
.board-review-search-field .sort-selector__select-btn.is-active::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -3px;
    height: 1px;
    background-color: #3a42ff;
}
.board-review-search-field .search-field__select-box {
  width: 140px;
}

.board-reviewed-item__top-img {
  /* aspect-ratio: 1/1; */
  position: relative;
  display: block;
  overflow: hidden;
  max-height:220px;
}
.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: 20px;
}
.board-reviewed-item__product-review-info > div{
    display: flex;
    align-items: center;
    gap: 10px;
}
.board-reviewed-item__product-review-info > div > p{
  display: flex;
  align-items: center;
}
.board-reviewed-item__content .product-review-info__product-price-unit{
  font-size:14px;
}
.product-review-info__info-box{
display: flex;
align-items: center;
gap:5px;
}
.product-review-info__info-box .star{
  height:20px;
}
.board-reviewed-item__content .product-review-info__product-name {
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  font-size: 14px;
  font-weight: 500;
}
.board-reviewed-item__content .product-review-info__product-price {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.board-reviewed-item__content .product-review-info__product-price-unit {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}
.board-reviewed-item__content .product-review-info__info {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: var(--gray500);
}
.board-reviewed-item__content .product-review-info__review-count {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
}
.board-reviewed-item__reviews {
  flex: none;
  padding: 0px 20px 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;
}

.search-field__text-input input{font-size:16px;}
.select::after { content:''; position: absolute; right: 16px; top: 35%; width: 8px; height: 8px; border-top: 1px solid #999; border-right: 1px solid #999; transform: rotate(135deg); background: none; } 


