/*review.css*/
.inner{
  width: 1240px;
  margin: 0 auto;
  position: relative;
}
.review-box {
  box-sizing: border-box;
  padding: 80px 0 60px 0;
  background-color: #fff;
  min-width: 1440px;
}
.review-wrap {
  position: relative;
  margin: auto;
}
.review-wrap .title-wrap{
  padding-bottom: 156px;
}
.review-wrap .title-wrap > h2 {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 50px;
  line-height: 50px;
}

.review-wrap .title-wrap > p {
  margin-top: 15px;
  text-align: left;
  color: #a9adb4;
  font-weight: 400;
  font-size: 18px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -1px;
}
#review *{
  font-family: 'Pretendard';
}
/* 추천 리뷰 */

.best-review-wrap h3{
	color: #303841;
	padding-bottom: 32px;
  font-family: 'Pretendard';
  font-size: 30px;
  font-weight: 700;
  line-height: 140%; /* 42px */
}
.best-review-box{
	padding:80px 40px;
	background-color: #F4F6FA;
}
.best-review-box .inner{

}
.best-review-box .best-review-inner{
  overflow: hidden;
  position: relative;
}
.best-review-wrap ul{
	display: flex;
	transition: transform 0.5s ease;
	align-items: stretch;
	justify-content: space-between;
	gap:16px;
}
.best-review-wrap li{
	background-color: #fff;
	border-radius: 8px;
	text-align: left;
	box-sizing: border-box;
	width: 520px;
	padding:40px;
  flex-shrink: 0; 
}
.best-review-wrap .arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.best-review-wrap .prev {
  left: -60px;
  background:url('https://images.carvazo.com/carvazo/common/pagination/icon_arrow_prev.svg') center center / 33px 33px no-repeat;
}
.best-review-wrap .next {
  right: -60px;
  background:url('https://images.carvazo.com/carvazo/common/pagination/icon_arrow_next.svg') center center / 33px 33px no-repeat ;
  
}
.best-review-wrap .prev:disabled,
.best-review-wrap .next:disabled{
  pointer-events: none;
}
.best-review-wrap .prev:disabled{
  background:url('https://images.carvazo.com/carvazo/common/pagination/icon_arrow_prev_disabled.svg') center center / 33px 33px no-repeat;
}
.best-review-wrap .next:disabled{
  background:url('https://images.carvazo.com/carvazo/common/pagination/icon_arrow_next_disabled.svg') center center / 33px 33px no-repeat ;
}
.best-review-wrap .star-wrap{
	margin-bottom: 16px;
	height: 20px;
	width: auto;
}
.best-review-wrap .star-wrap img{
	height: 100%;
	width: auto;
}
.best-review-wrap .car-model{
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 140%;
	padding:0;
	color: #303841;
	word-break: keep-all;
}
.best-review-wrap .comment{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	color:#303841;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-clamp: 4;
	-webkit-line-clamp: 4;
	margin-bottom: 16px;
}
.best-review-wrap button {
	display: block;
	text-decoration: underline;
	color: #878C95;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 15px;
}
.best-review-wrap .img-wrap{
	margin:0 0 16px;
	width: 180px;
	height: 135px;
}
.best-review-wrap .img-wrap img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.best-review-wrap .name{
	font-size: 14px;
	font-weight: 500;
	color:#878C95;
  line-height: 1.4;
}
/* !추천 리뷰 */
/* 별점비율 */
.rating-wrap{
  margin-top: 60px;
}

.rating-wrap .rating-title {
  box-sizing: border-box;
  padding-bottom: 20px;
  font-size: 0;
}

.rating-wrap .rating-title span {
  color:#303841;
  font-size: 30px;
  font-weight: 700;
  line-height: 140%; /* 42px */
}

.rating-wrap .rating-title .rating-count {
  color: #00CC83;
  margin-left: 4px;
}

.rating-wrap .rating-box {
  
}

.rating-wrap .rating-box ul {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.rating-wrap .rating-box ul:last-child {
  margin-bottom: 0;
}

.rating-wrap .rating-star li {
}

.rating-wrap .rating-star img {
  display: inline-block;
  height: 20px;
}

.rating-wrap .rating-bar {

}
.rating-wrap .rating-img{
  height: 20px;
}
.rating-wrap .rating-img img{
  height: 100%;
}
.rating-wrap .rating-bar .line-bar {
  position: relative;
  width: 230px;
  height: 10px;
  border-radius: 2px;
  background-color: #E2E5E9;
  overflow: hidden;
}
.rating-wrap ul:first-of-type .active-bar{
  background: #00CC83;
}
.rating-wrap .rating-bar .active-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #ABAFB8;
}
.rating-wrap .rating-count span{
  display: inline-block;
  width: 60px;
  margin-left: 24px;
  color: #ABAFB8;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
}
.rating-wrap ul:first-of-type .rating-count span{
  font-weight: 600;
  color: #101820;
}
/* !별점비율 */

.review-wrap .category-wrap {
  margin-top: 60px;
  box-sizing: border-box;  
  padding:0 24px;
  border: 1px solid #dee1e4;
  border-radius: 6px;
  font-size: 0;
  height: 52px;
  line-height: 52px;
 }
.review-wrap .category-wrap button {
  box-sizing: border-box;
  padding-left: 16px;
  margin-right: 25px;
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  letter-spacing: -1px;
  color: #a9adb4;
  height: 52px;
  line-height: 52px;
}
.review-wrap .category-wrap button:first-of-type{
  /* padding-left: 0; */
}
.review-wrap .category-wrap button:last-child {
  margin-right: 0;
}

.review-wrap .category-wrap .active {
  background: url("/CARVAZO_IMG/web_main/review/check_icon.svg") top 21px left 0
  no-repeat;
  color: #101820;
}

.review-wrap .category-wrap .active button {
  color: #101820;
  font-weight: 500;
}

.contents-wrap {

}
.review-ul {
  margin-top: 60px;
  font-size: 0;
  column-count: 2;
  gap: 40px 60px;
}

.review-ul > li {
  margin-bottom: 40px;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  padding: 40px;
  width: 100%;
  box-shadow: 1px 3px 10px 0px rgba(44, 44, 44, 0.10);
  border-radius: 15px;
}

/* .review-ul > li:nth-child(2n-1) {
  margin-right: 60px;
} */

.top-lines {
}
.top-lines .star-wrap {
	box-sizing: border-box;
	width: auto;
}

.top-lines .star-wrap > ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.top-lines .star-wrap > ul > li {
	width: 20px;
	height: 20px;
}

.top-lines .star-wrap img {
  height:100%;
}

.top-lines .star-wrap > span {
	display: block;
	float: left;
	margin-left: 4px;
	height: 100%;
	line-height: 15px;
	font-size: 12px;
	color: #626974;
	letter-spacing: -0.5px;
}
.car-model {
  padding: 10px 0 16px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #101820;
	word-break: keep-all;
}
.review-info{
	padding-left:14px;
	position: relative;
}
.review-info::before{
	content:'';
	width: 4px;
	height: 100%;
	border-radius: 2px;
	background-color: #eceff2;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}
.review-info li{
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: flex-start;
	position: relative;
	margin-bottom: 4px;
}
.review-info li:last-of-type{
	margin-bottom: 0;
}
.review-info .review-info-title{
	width: 70px;
	line-height: 1.6;
	color: #878C95;
	font-size: 16px;
	font-weight: 500;
}
.review-info .review-info-content{
	font-size: 16px;
	line-height: 1.6;
	font-weight: 500;
	color: #101820;
	text-align: left;
}
.review-info .mc-name a{
	position: relative;
}
.review-info .mc-name a::after{
	content:'';
	width: 12px;
	height: 12px;
	background: url('https://images.carvazo.com/carvazo/review/icon_arrow.svg');
	display: inline-block;
	position: relative;
	top: 0px;
	left: 2px;
}
.top-lines .date-recent {
	color: #ff786e;
}


.review-con {
}

.contents-top {
	font-size: 0;
}


.contents-top .car-reserv-date {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	font-size: 12px;
	font-family: 'Kaleko205-Book', 'Noto Sans KR';
	color: #626974;
}

.action-share{
	width: 100%;
	height: 56px;
	line-height: 56px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	box-sizing: border-box;
	color:#878C95;
	border:1px solid #878C95;
	border-radius: 6px;
	margin-top: 10px;
  cursor: pointer;
}
.action-share::before{
	content:'';
	width: 24px;
	height: 24px;
	background: url('https://images.carvazo.com/carvazo/review/icon_share.svg') no-repeat center center / contain;
	display: inline-block;
	position: relative;
	top: 7px;
	left: -4px;
}
.review-con .review-text {
	margin-top:16px;
}

.review-con .review-text .comment-wrap{
	position: relative;
}
.review-con .review-text .comment{
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-clamp: 8;
	-webkit-line-clamp: 8;
  text-align: left;
}

.review-con .review-text button{
	display: block;
	text-decoration: underline;
	color: #878C95;
	font-size: 16px;
	font-weight: 500;
	margin-top: 16px;
}
.name-date-wrap{
	margin-top: 16px;
}
.name-date-wrap div{
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	color:#878C95;
	position: relative;
}
.name-date-wrap .name::after{
	content:'';
	width: 2px;
	height: 2px;
	background-color: #878c95;
	border-radius: 50%;
	display: inline-block;
	margin: 0 4px;
	position: relative;
	top: -3px;
}
.text-more {
	font-size: 14px;
	font-weight: 500;
	text-decoration: underline;
	color:#878c95;
}

.reply-more {
	font-family: 'Kaleko205-Book';
	font-size: 12px;
}

.car-img {
	margin-top: 15px;
	width: 100%;
	height: 150px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.reply-box {
	margin-top: 30px;
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	background-color: #F6F8FA;
	border-radius: 8px;
	position: relative;
}
.reply-box::before{
	content:'';
	display: block;
	width: 0;
	height: 0;
	border-top : 11px solid transparent;
	border-left: 9px solid #F6F8FA;
	border-right: 9px solid transparent;
	border-bottom: 11px solid #F6F8FA;
	position: absolute;
	top: -17px;
	left: 0;
}
.reply-box .mc-img-name-wrap{
	display: flex;
	align-items: center;
	gap:8px;
}
.reply-box .mc-img{
	width: 28px;
	height: 28px;
	border-radius: 50%;
	overflow: hidden;
}
.reply-box .mc-img img{
	width:100%;
}
.reply-box .mc-name {
	width: 100%;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: -0.5px;
}

.reply-text {
	margin-top: 8px;
}

.reply-text p {
	font-size: 14px;
	font-weight: 300;
	line-height: 160%;
	letter-spacing: -0.5px;
}

.img-wrap {
	margin-top: 16px;
  width: 180px;
  height: 135px;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
}
.review-tag-wrap{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 16px;
}
.review-tag-wrap .review-tag,
.review-tag-wrap .review-tag-more{
	padding: 0 6px;
	height: 28px;
	line-height: 28px;
	border-radius: 4px;
	background: var(--color-neutral-100, #EDF4FC);
	color: var(--Color-Text-black, #11151C);
	font-size: var(--font-size-xs, 13px);
	font-weight: 500;
}
.review-tag-wrap .review-tag.not-buy{
	color: #F94862;
	background: #FFECF1;
}
.review-tag-wrap .review-tag.buy{
	color: #1589D6;
	background: #E4F7FF;
}
.review-tag-wrap .review-tag.na{
	display: none;
}
.review-tag-wrap .review-tag.nego{
	color: #009579;
	background-color: #E4FBEF;
}
.review-tag-wrap .review-tag-more{
	color: #717D8E;
}
.fancybox-infobar,
.fancybox-button.fancybox-button--play {
  display: none;
}
/* mechanic-btn-wrap */
.mechanic-btn-wrap{
  border-top:1px solid #DFE1E4;
  padding-top:16px;
}
.mechanic-btn-wrap a{
  display: block;
  height: 48px;
  line-height:48px;
  text-align: center;
  color:#fff;
  background:#0FAE6F;
  border-radius:8px;
  font-weight: 700;
  font-size: 16px;
}
/* !mechanic-btn-wrap */

#dummy .category-wrap {
  width: 100%;
  height: 45px;
}

/**
*  PAGE NAVIGATOR
*/
.page-wrap {
  text-align: center;
  padding-top: 80px;
}

.paginate {
	font-size: 0;
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 8px;
}

.paginate li,
.paginate span {
	display: inline-block;
	vertical-align: top;
}

.paginate li a,
.paginate span a {
	box-sizing: border-box;
	border-right: 0;
	display: block;
	width: 32px;
  height: 32px;
  line-height: 32px;
	font-family: 'Pretendard';
	color: #626974;
	font-size: 14px;
	text-align: center;
  font-weight: 400;
  border-radius: 4px;
}

.paginate .page-arrow{
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.paginate .page-arrow.prev-label a{
  background:url('https://images.carvazo.com/carvazo/common/pagination/icon_arrow_prev.svg') center center / auto no-repeat;
}
.paginate .page-arrow.next-label a{
  background:url('https://images.carvazo.com/carvazo/common/pagination/icon_arrow_next.svg') center center / auto no-repeat ;
}
.paginate .page-arrow.prev-label a.disabled{
  background:url('https://images.carvazo.com/carvazo/common/pagination/icon_arrow_prev_disabled.svg') center center / auto no-repeat;
	pointer-events: none;
}
.paginate .page-arrow.next-label a.disabled{
  background:url('https://images.carvazo.com/carvazo/common/pagination/icon_arrow_next_disabled.svg') center center / auto no-repeat ;
	pointer-events: none;
}
.paginate .page-arrow a {
	padding: 0;
	width: 100%;
  height: 100%;
}

.paginate .active a{
	background:#00CC83;
  color:#fff;
  font-weight: 700;
	pointer-events: none;
}


/**
*  End Of PAGE NAVIGATOR
*/
.modal-bg{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:998;
	background: #333;
	opacity: 0.4;

}

.detail-view{
	position:fixed;
  width: 640px;
	height: 65%;
	z-index:999;
	top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  background:#fff;
	border-radius: 8px;
  padding:20px 40px 40px;
	overflow: hidden;
}
.detail-view .review-contents-wrap{
  height: 100%;
}
.detail-view .review-header{
  text-align:right;
	margin-bottom: 10px;
}
.detail-view .review-header .close-btn{
  width: 48px;
  height: 48px;
}
.detail-view .review-header .close-btn img{
  width: 20px;
  height: 20px;
  margin: auto;
}
.detail-view .review-con{
  display: block;
  position: relative;
  overflow: auto;
	height: calc(100% - 120px);
}
/* 전체 스크롤바 너비 설정 */
.detail-view .review-con::-webkit-scrollbar {
	width: 8px;
}

/* 스크롤바 트랙 설정 */
.detail-view .review-con::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

/* 스크롤바 핸들 설정 */
.detail-view .review-con::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 4px;
}

/* 스크롤바 핸들에 마우스를 올렸을 때 */
.detail-view .review-con::-webkit-scrollbar-thumb:hover {
	background: #555;
}
.detail-view .img-wrap {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.detail-view .img-wrap img {
  width: 100%;
}
.detail-view .origin{
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  color: #101820;
  text-align: left;
  word-break: keep-all;
}
.detail-dummy{
}
.detail-dummy .review-section,
.detail-dummy .reply-section,
.detail-dummy .mechanic-section{
	background-color: #dee1e4;
	animation: dummy-ani 2s infinite;
}



/* dummy-box */
.dummy-bg {
  background-color: #dee1e4;
	animation: dummy-ani 2s infinite;
}

.dummy-box {
  position: relative;
  overflow: hidden;
}

.dummy-box::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 2.5s infinite;
}


@keyframes shine {
	from {
		left: 0;
	}
	to {
		left: 90%;
	}
}

.rating-dummy {
	height: 148px;
}

.category-dummy {
	margin-top: 30px;
	height: 34px;
}

.dummy-box .top-dummy {
	width: 100%;
	height: 15px;
}


.dummy-box .star{
  width: 130px;
  height: 20px;
  margin-bottom: 10px;
}

.dummy-box .car-model{
	width: 100%;
  height: 25px;
  margin-bottom: 16px;
}

.dummy-box .info {
  width: 100%;
  height: 85px;
  margin-bottom: 16px;
}
.dummy-box .review-con{
  width:100%;
  height: 300px;
}
/* !dummy-box */