@charset "utf-8";

/******************************
// 실시간 견적현황
******************************/
.estimate_btn {
	width: 100%;
	height: 110px;
	margin-top: 30px;
	background: linear-gradient(to right, #0faed0 0%, #5caffd 50%, #afd1fe 100%);
	border-radius: 10px;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.16);
	font-size: 25px;
	font-weight: bold;
	color: #fff;
}

.estimate_btn .plus {
	display: inline-block;
	position: relative;
	top: 6px;
	width: 30px;
	height: 30px;
	margin-left: 12px;
	background: #000;
	border-radius: 50%;
}

.estimate_btn .plus::before,
.estimate_btn .plus::after {
	position: absolute;
	background: #fff;
	content: "";
}

.estimate_btn .plus::before {
	top: 14.5px;
	left: 2.5px;
	width: 25px;
	height: 1px;
}

.estimate_btn .plus::after {
	top: 2.5px;
	left: 14.5px;
	width: 1px;
	height: 25px;
}

@media screen and (max-width: 500px) {
	.estimate_btn {
		height: 22vw;
		margin-top: 6vw;
		border-radius: 2vw;
		box-shadow: 0px 0.4vw 2.4vw rgba(0, 0, 0, 0.16);
		font-size: 5vw;
	}

	.estimate_btn .plus {
		top: 1.2vw;
		width: 6vw;
		height: 6vw;
		margin-left: 2.4vw;
	}

	.estimate_btn .plus::before {
		top: 3vw;
		left: 0.5vw;
		width: 5vw;
	}

	.estimate_btn .plus::after {
		top: 0.5vw;
		left: 3vw;
		height: 5vw;
	}
}

.estimate_list {
	margin-top:20px;
}

.estimate_list > li {
	display: flex;
	height: 195px;
	align-items: center;
}

.estimate_list > li:not(:last-child) {
	border-bottom: 1px solid #e2e2e3;
}

.estimate_list > li .thumb {
	width: 130px;
	height: 130px;
	border-radius: 15px;
	box-shadow: 10px 10px 15px rgba(15, 41, 107, 0.12);
}

.estimate_list > li .info {
	position: relative;
	margin-left: 30px;
	width: calc(100% - 160px);
}

.estimate_list > li .info .pd_name {
	display: inline-block;
	width: 100%;
	margin-bottom: 25px;
	font-weight: bold;
}

.estimate_list > li .info .options {}

.estimate_list > li .info .options .condition {
	width: 25px;
}

.estimate_list > li .info .options .contents {
	display: inline-block;
	padding: 0 12px;
	margin-bottom: 3px;
	border-radius: 2.5px;
	font-size: 14px;
	line-height: 23px;
	background:#fff;
}

.estimate_list > li .info .timer {
	display: inline-block;
	width: 100%;
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #017bff;
}

@media screen and (max-width: 500px) {
	.estimate_list > li {
		height: 39vw;
	}

	.estimate_list > li .thumb {
		width: 26vw;
		height: 26vw;
		border-radius: 3vw;
		box-shadow: 2vw 2vw 3vw rgba(15, 41, 107, 0.12);
	}

	.estimate_list > li .info {
		margin-left: 6vw;
		width: calc(100% - 32vw);
	}

	.estimate_list > li .info .pd_name {
		margin-bottom: 5vw;
	}

	.estimate_list > li .info .options .condition {
		width: 5vw;
	}

	.estimate_list > li .info .options .contents {
		padding: 0 2.4vw;
		border-radius: 0.5vw;
		font-size: 2.8vw;
		line-height: 4.6vw;
	}

	.estimate_list > li .info .timer {
		margin-top: 2vw;
		font-size: 3.2vw;
	}
}


/******************************
// 마이페이지 - 메뉴
******************************/
.mypage_btn {
	width: 100%;
	height: 120px;
	margin-top: 50px;
	padding: 0 25px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.75) url('/images/r_arrow_icon.png') no-repeat center right 20px / 15px;
	font-weight: 600;
	text-align: left;
	color: #000;
}

.mypage_btn.partner {
	display: flex;
	align-items: center;
}

.mypage_btn.partner .profile_img {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	overflow: none;
}

.mypage_btn.partner .profile_info {
	margin-left: 15px;
}

.mypage_btn .name {
	display: block;
	margin-bottom: 5px;
	font-size: 27px;
	letter-spacing: 0.25em;
}

.mypage_btn .title {
	font-size: 18px;
	color: #8F8F8F;
}

.mypage_menu {
	margin-top: 35px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.75);
	padding: 0 20px;
}

.mypage_menu > li:not(:last-child) {
	border-bottom: 1px solid #B5B5B5;
}

.mypage_menu > li > button {
	width: 100%;
	height: 80px;
	background: url('/images/r_arrow_icon.png') no-repeat center right / 15px;
	font-size: 22px;
	font-weight: 500;
	text-align: left;
	color: #000;
}

@media screen and (max-width: 500px) {
	.mypage_btn {
		height: 24vw;
		margin-top: 10vw;
		padding: 0 5vw;
		border-radius: 3vw;
		background-position: center right 4vw;
		background-size: 3vw;
	}
	
	.mypage_btn.partner .profile_img {
		width: 15vw;
		height: 15vw;
	}

	.mypage_btn.partner .profile_info {
		margin-left: 3vw;
	}

	.mypage_btn .name {
		margin-bottom: 1vw;
		font-size: 5.4vw;
	}

	.mypage_btn .title {
		font-size: 3.6vw;
	}

	.mypage_menu {
		margin-top: 7vw;
		border-radius: 3vw;
		padding: 0 4vw;
	}

	.mypage_menu > li > button {
		height: 16vw;
		background-size: 3vw;
		font-size: 4.4vw;
	}
}


/******************************
// 마이페이지 - 상세
******************************/
.mypage_detail {
	margin-top: 50px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.75);
	padding: 0 20px;
}

.mypage_detail > li {
	display: flex;
	height: 80px;
	align-items: center;
	justify-content: space-between;
	font-size: 22px;
}

.mypage_detail > li:not(:last-child) {
	border-bottom: 1px solid #B5B5B5;
}

.mypage_detail > li .title {
	font-weight: 500;
}

.mypage_detail > li .content {
	font-weight: 300;
	color: #8F8F8F;
}

.mypage_btn_box {
	margin-top: 70px;
}

.mypage_btn_box > button {
	margin-bottom: 25px;
}

@media screen and (max-width: 500px) {
	.mypage_detail {
		margin-top: 10vw;
		border-radius: 3vw;
		padding: 0 4vw;
	}

	.mypage_detail > li {
		height: 16vw;
		font-size: 4.4vw;
	}

	.mypage_btn_box {
		margin-top: 14vw;
	}

	.mypage_btn_box > button {
		margin-bottom: 5vw;
	}
}


/******************************
// 나의 견적 - 상태
******************************/
.status_box {
	margin-top: 32px;
	margin-bottom: 33px;
}

.status_box > button {
	float: left;
	width: 95px;
	height: 75px;
	text-align: center;
	background: #40a3fc;
	border-radius: 5px;
	opacity: 0.5;
	color: #000;
}

.status_box.col-6 > button {
	width: 65px;
	height: 65px;
}

.status_box > button:not(:last-child) {
	margin-right: 20px;
}

.status_box.col-6 > button:not(:last-child) {
	margin-right: 10px;
}

.status_box > button.on {
	opacity: 1;
}

.status_box > button .num {
	display: block;
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: bold;
}

.status_box > button .title {
	font-size: 18px;
	font-weight: 500;
}

.status_box.col-6 > button .title {
	font-size: 15px;
}

@media screen and (max-width: 500px) {
	.status_box {
		margin-top: 6.4vw;
		margin-bottom: 6.6vw;
	}

	.status_box > button {
		width: 19vw;
		height: 15vw;
		border-radius: 1vw;
	}
	
	.status_box.col-6 > button {
		width: 13vw;
		height: 13vw;
	}

	.status_box > button:not(:last-child) {
		margin-right: 3.9vw;
	}
	
	.status_box.col-6 > button:not(:last-child) {
		margin-right: 2.0vw;
	}

	.status_box > button .num {
		margin-bottom: 1vw;
		font-size: 4vw;
	}

	.status_box > button .title {
		font-size: 3.6vw;
	}
	
	.status_box.col-6 > button .title {
		font-size: 3.3vw;
	}
}


/******************************
// 나의 견적 - 받은 견적 리스트
******************************/
.estimate_title_box {
	margin-top: 50px;
	text-align: center;
}

.estimate_title_box .big {
	position: relative;
	left: 4px;
	font-size: 27px;
	font-weight: 800;
	z-index: 9;
}

.estimate_title_box .big::after {
	display: inline-block;
	position: relative;
	top: 13px;
	right: 8px;
	width: 58px;
	height: 58px;
	background: url('/images/estimate_icon01.png') no-repeat center center / contain;
	content: "";
}

.estimate_title_box .small {
	margin-top: 15px;
	font-size: 20px;
	font-weight: 500;
}

.estimate_expire_box {
	display: flex;
	width: 100%;
	height: 60px;
	margin-top: 30px;
	margin-bottom: 60px;
	background: #000;
	border-radius: 8px;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: bold;
}

.estimate_expire_box .title {
	color: #fff;
}

.estimate_expire_box .time {
	margin-left: 25px;
	color: #E74C3C;
}

.estimate_price_list {
	margin-top: 50px;
}

.estimate_price_list > li {
	width: 100%;
	margin-bottom: 35px;
	background: #FBEFF1;
	border: 1px solid #EAD8D8;
	border-radius: 8px;
}

.estimate_price_list > li .price_top {
	display: flex;
	height: 60px;
	padding: 0 20px;
	border-bottom: 1px solid #BEBEBE;
	justify-content: space-between;
	align-items: center;
}

.estimate_price_list > li .price_top .title {}

.estimate_price_list > li .price_top .price {
	font-size: 27px;
	font-weight: bold;
}

.estimate_price_list > li .price_detail {
	display: flex;
	align-items: center;
	padding: 25px 20px 15px;
}

.estimate_price_list > li .price_detail .thumb {
	width: 100px;
	height: 100px;
}

.estimate_price_list > li .price_detail .p_name {
	margin-left: 26px;
	font-size: 25px;
	font-weight: 500;
}

.estimate_price_list > li .estimate_btn_box {
	padding: 0 20px 25px;
}

.estimate_price_list > li .estimate_btn_box > button {}

.estimate_price_list > li .estimate_btn_box > button:not(:last-child) {
	margin-bottom: 15px;
}

@media screen and (max-width: 500px) {
	.estimate_title_box {
		margin-top: 10vw;
	}

	.estimate_title_box .big {
		left: 0.8vw;
		font-size: 5.5vw;
	}

	.estimate_title_box .big::after {
		top: 2.6vw;
		right: 1.6vw;
		width: 11.6vw;
		height: 11.6vw;
	}

	.estimate_title_box .small {
		margin-top: 3vw;
		font-size: 4vw;
	}

	.estimate_expire_box {
		height: 12vw;
		margin-top: 6vw;
		margin-bottom: 12vw;
		border-radius: 1.6vw;
		font-size: 4vw;
	}

	.estimate_expire_box .time {
		margin-left: 5vw;
	}

	.estimate_price_list {
		margin-top: 10vw;
	}

	.estimate_price_list > li {
		margin-bottom: 7vw;
		border-radius: 1.6vw;
	}

	.estimate_price_list > li .price_top {
		height: 12vw;
		padding: 0 4vw;
	}

	.estimate_price_list > li .price_top .price {
		font-size: 5.4vw;
	}

	.estimate_price_list > li .price_detail {
		padding: 5vw 4vw 3vw;
	}

	.estimate_price_list > li .price_detail .thumb {
		width: 20vw;
		height: 20vw;
	}

	.estimate_price_list > li .price_detail .p_name {
		margin-left: 5.2vw;
		font-size: 5vw;
	}

	.estimate_price_list > li .estimate_btn_box {
		padding: 0 4vw 5vw;
	}

	.estimate_price_list > li .estimate_btn_box > button:not(:last-child) {
		margin-bottom: 3vw;
	}
}


/******************************
// 나의 견적 - 견적서 작성하기
******************************/
/* 메시지 영역 */
.estimate_message {
	display: inline-block;
	position: relative;
	margin-top: 100px;
	font-size: 20px;
	color: #B5B5B5;
}

.estimate_message .img {
	position: absolute;
	bottom: 0;
	right: -35px;
	width: 35px;
}

/* 그래프 영역 */
.estimate_graph {
	height: 20px;
	margin-top: 22px;
	background: #F2F3F7;
}

.estimate_graph .percent {
	width: 39px;
	padding-right: 5px;
	background: #F8CACA;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: bold;
	text-align: right;
}

/* 폼 영역 */
.form_area {
	margin-top: 30px;
}

.form_title {
	height: 90px;
	margin-bottom: 30px;
	font-size: 27px;
	font-weight: 800;
	line-height: 1.7;
}

.form_area2 {
	margin-top: 30px;
}

.form_area2 .form_title {
	height: auto;
	margin-bottom: 22px;
}

.input_box {}

.input_box .default_btn {
	margin-bottom: 12px;
}

.input_box .default_input {
	width: 100%;
	height: 60px;
	border: none;
	text-align: center;
	border-radius: 8px;
	font-size: 20px;
}

.estimate_btn_box2 {
	float:left;
	width: 100%;
	margin-top:30px;
	margin-bottom:30px;
	/* padding: 0 30px; */
	box-sizing: border-box;
	text-align:center;
}

/* 상품 컨디션 영역 */
.condition_slt {
	background: #FBEFF1;
	border: 1px solid #EAD8D8;
	border-radius: 8px;
	overflow: hidden;
}

.condition_slt > li {
	display: flex;
	align-items: center;
	padding: 17px 25px;
}

.condition_slt > li.on {
	background: #E1C7D5;
}

.condition_slt > li:not(:last-child) {
	border-bottom: 1px solid #BEBEBE;
}

.condition_slt > li .icon {}

.condition_slt > li .icon > img {
	width: 50px;
	margin-right: 22px;
}

/* 상품 사진 영역 */
.preview_area {
	float:left;
	width:90%;
	max-height:400px;
	overflow-y:auto;
	margin:30px 0 0 5%;
	
	/* 아이폰/모바일 부드러운 스크롤 */
    -webkit-overflow-scrolling: touch;
    
    /* 스크롤바 숨기기 (선택 사항) */
    scrollbar-width: none; /* Firefox */
}

.preview_area .image_btn {
	float:left;
	display: flex;
	flex: 0 0 auto;
	width: calc(48% - 2px);
	height: 200px;
	margin-bottom:15px;
	border: 1px solid #707070;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.preview_area .image_btn .plus {
	position: relative;
	width: 37px;
	height: 37px;
	border-radius: 50%;
	background: #EEEEEE;
}

.preview_area .image_btn .plus::before,
.preview_area .image_btn .plus::after {
	position: absolute;
	background: #707070;
	content: "";
}

.preview_area .image_btn .plus::before {
	top: 17.5px;
	left: 8px;
	width: 20px;
	height: 1px;
}

.preview_area .image_btn .plus::after {
	top: 8px;
	left: 17.5px;
	width: 1px;
	height: 20px;
}

.preview_area .image_btn .condition {}

/* .preview_area > img {
	flex: 0 0 auto;
	float: left;
	width: 130px;
	height: 130px;
	margin-left: 15px;
	object-fit: cover;
} */

.preview_area .img_box {
	float:left;
	position: relative;
	flex: 0 0 auto;
	width: calc(48% - 2px);
	height: 200px;
	margin-right:4%; /* 기존 썸네일 간격 유지 */
	margin-bottom:15px;
	box-sizing: border-box;
	border: 1px solid #707070; /* 기존 테두리 질감 유지(선택) */
}

.preview_area .img_box:first-child, .preview_area .img_box:nth-child(even){
	float:right;
	margin-right: 0;
}

.preview_area .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.preview_area .img_box .remove_btn {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	border: none;
	border-radius: 50%;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 14px;
	line-height: 22px;
	cursor: pointer;
}

.image_noti {
	margin-top: 7px;
	font-weight: 300;
	color: #E74C3C;
}

.image_info {
	margin-top: 40px;
	padding: 25px 17px;
	background: #F2F2F2;
	border: 1px solid #EAD8D8;
	border-radius: 8px;
	line-height: 1.95;
	color: #666666;
}


/* 구성품 영역 */
.content_slt {
	background: #FBEFF1;
	border: 1px solid #EAD8D8;
	border-radius: 8px;
	overflow: hidden;
}

.content_slt > li {
	padding: 23px 0;
	font-size: 25px;
	font-weight: 600;
	text-align: center;
}

.content_slt > li.on {
	background: #E1C7D5 url('/images/check_icon.png') no-repeat center left 110px / 40px;
}

.content_slt > li:not(:last-child) {
	border-bottom: 1px solid #BEBEBE;
}


/* 견적 완료 화면 */
.estimate_complete {
	margin-top: 110px;
	font-size: 27px;
	font-weight: 800;
	line-height: 1.7;
	background: url('/images/speech_icon.png') no-repeat top 10px right 25px / 92px;
}

.estimate_complete2{
	padding:15px;
}


@media screen and (max-width: 500px) {
	.estimate_message {
		position: relative;
		/* margin-top: 20vw; */
		padding-right: 8vw;
		margin-top: 10%;
		font-size: 4vw;
		white-space: nowrap;
	}

	.estimate_message .img {
		position: absolute;
		top: -1.7vw;
		right: 0;
		width: 7vw;
	}

	.estimate_graph {
		height: 4vw;
		/* margin-top: 4.5vw; */
		margin-top: 5%;
	}

	.estimate_graph .percent {
		width: 7.8vw;
		padding-right: 1vw;
		font-size: 3.2vw;
	}
	
	.form_area {
		/* margin-top: 22vw; */
		margin-top: 13%;
	}

	.form_title {
		height: 18vw;
		margin-bottom: 6vw;
		font-size: 5.5vw;
	}

	.form_area2 {
		margin-top: 6vw;
	}

	.form_area2 .form_title {
		margin-bottom: 2.5vw;
	}

	.input_box .default_btn {
		margin-bottom: 2.4vw;
	}

	.input_box .default_input {
		height: 12vw;
		border-radius: 1.6vw;
		font-size: 4vw;
	}

	.estimate_btn_box2 {
		/* bottom: 6vw; */
		bottom: 20%;
		/* padding: 0 6vw; */
	}
	
	.condition_slt {
		border-radius: 1.6vw;
	}

	.condition_slt > li {
		/* padding: 3.5vw 5vw; */
		padding: 3% 5vw;
	}

	.condition_slt > li .icon > img {
		width: 10vw;
		margin-right: 4.5vw;
	}
	
	
	.preview_area {
	}

	.preview_area .image_btn {
		width: 48%;
		height: 40vw;
	}

	.preview_area .image_btn .plus {
		width: 7.5vw;
		height: 7.5vw;
	}

	.preview_area .image_btn .plus::before {
		top: 3.5vw;
		left: 1.6vw;
		width: 4vw;
	}

	.preview_area .image_btn .plus::after {
		top: 1.6vw;
		left: 3.5vw;
		height: 4vw;
	}

	/* .preview_area > img {
		width: 26vw;
		height: 26vw;
		margin-left: 3vw;
	} */
	
	.preview_area .img_box {
		width: 48%;
		height: 40vw;
		margin-right: 4%; /* 기존 썸네일 간격 유지 */
	}
	
	.preview_area .img_box:nth-child(even){
		margin-right: 0vw;
	}
	
	.preview_area .img_box .remove_btn {
		top: 1vw;
		right: 1vw;
		width: 4.4vw;
		height: 4.4vw;
		font-size: 2.8vw;
		line-height: 4.4vw;
	}

	.image_noti {
		margin-top: 1.5vw;
		font-size: 3.6vw;
	}

	.image_info {
		/* margin-top: 8vw; */
		margin-top: 3%;
		/* padding: 5vw 3.4vw; */
		padding: 2% 3.4vw;
		border-radius: 1.6vw;
		font-size: 3.6vw;
	}
	
	.content_slt {
		border-radius: 1.6vw;
	}

	.content_slt > li {
		/* padding: 4.7vw 0; */
		padding: 4% 0;
		font-size: 4.4vw;
	}

	.content_slt > li.on {
		background-position: center left 22vw;
		background-size: 8vw;
	}
	
	.estimate_complete {
		margin-top: 22vw;
		font-size: 5.5vw;
		background-position: top 2vw right 3vw;
		background-size: 18.4vw;
	}
}


/******************************
// 팝업 레이어
******************************/
#popup_layer {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
}

#popup_layer .popup_box {
	display: none;
	position: absolute;
	top: 50%;
	left: 6%;
	width: 88%;
	max-height: 500px;
	transform: translateY(-50%);
	border-radius: 15px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.35);
	box-sizing: border-box;
}

#popup_layer .popup_header,
#popup_layer .popup_footer {
	display: flex;
	height: 80px;
	align-items: center;
	justify-content: center;
	background: #fff;
	font-size: 25px;
	background: rgba(255, 255, 255, 0.75);
}

#popup_layer .popup_header {
	font-weight: 800;
	box-shadow: 10px 10px 15px rgba(15, 41, 107, 0.12);
}

#popup_layer .popup_footer {
	font-weight: bold;
}

#popup_layer .popup_footer .popup_btn {
	width: 100px;
	height: 50px;
	border-radius: 5px;
	background: #F8CACA;
	font-size: 20px;
	font-weight: bold;
}

#popup_layer .popup_content {
	height: 340px;
	overflow-y: auto;
}

.popup_brand_list {
	padding: 0 20px;
}

.popup_brand_list > li {
	display: flex;
	height: 75px;
	padding-left: 75px;
	align-items: center;
}

.popup_brand_list > li:not(:last-child) {
	border-bottom: 1px solid #BEBEBE;
}

.popup_brand_list > li .logo {}

.popup_brand_list > li .logo > img {
	width: 65px;
}

.popup_brand_list > li .name {
	margin-left: 30px;
	font-size: 25px;
	font-weight: 700;
}

@media screen and (max-width: 500px) {
	#popup_layer .popup_box {
		max-height: 100vw;
		border-radius: 3vw;
		box-shadow: 2vw 2vw 2vw rgba(255, 255, 255, 0.35);
	}

	#popup_layer .popup_header,
	#popup_layer .popup_footer {
		height: 16vw;
		font-size: 5vw;
	}

	#popup_layer .popup_header {
		box-shadow: 2vw 2vw 3vw rgba(15, 41, 107, 0.12);
	}

	#popup_layer .popup_footer .popup_btn {
		width: 20vw;
		height: 10vw;
		border-radius: 1vw;
		font-size: 4vw;
	}

	#popup_layer .popup_content {
		height: 68vw;
	}

	.popup_brand_list {
		padding: 0 4vw;
	}

	.popup_brand_list > li {
		height: 15vw;
		padding-left: 15vw;
	}

	.popup_brand_list > li .logo > img {
		width: 13vw;
	}

	.popup_brand_list > li .name {
		margin-left: 6vw;
		font-size: 5vw;
	}
}



/******************************
// 업체용 로그인
******************************/
.login_area {
	padding-top: 200px;
	text-align: center;
}

.login_area .login_logo {
	width: 240px;
}

.login_area .login_box {
	width: 88%;
	margin: 0 auto;
	margin-top: 100px;
}

.login_area .login_box .default_input {
	width: 100%;
	height: 60px;
	margin-bottom: 10px;
	padding: 0 16px;
	border: 1px solid #4A3D44;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 20px;
}

.login_area .login_box .default_btn {
	margin-top: 23px;
}

@media screen and (max-width: 500px) {
	.login_area {
		padding-top: 40vw;
	}

	.login_area .login_logo {
		width: 48vw;
	}

	.login_area .login_box {
		margin-top: 20vw;
	}

	.login_area .login_box .default_input {
		height: 12vw;
		margin-bottom: 2vw;
		padding: 0 3.2vw;
		border-radius: 1.6vw;
		font-size: 4vw;
	}

	.login_area .login_box .default_btn {
		margin-top: 4.6vw;
	}
}


/******************************
// 업체용 홈
******************************/
.main_title {
	margin-top: 50px;
	font-size: 18px;
	font-weight: bold;
}

@media screen and (max-width: 500px) {
	.main_title {
		margin-top: 10vw;
		font-size: 3.6vw;
	}
}


/******************************
// 업체용 견적서 작성 화면
******************************/
/* 이미지 슬라이드 영역 */
.estimate_imgs {
	width: 200px;
	margin: 0 auto;
	margin-top: 35px;
}

.estimate_imgs .img {
	width: 200px;
	height: 200px;
}

.dots {
	position: absolute;
	top: 210px;
	left: 0;
	width: 100%;
	text-align: center;
}

.dots  li {
	display: inline-block;
	width: 7.5px;
	height: 7.5px;
	margin: 0 2.5px;
	background: #fff;
	border-radius: 50%;
}

.dots  li.slick-active {
	background: #000;
}

.dots  li > button {
	font-size: 0;
}

@media screen and (max-width: 500px) {
	.estimate_imgs {
		width: 40vw;
		margin-top: 7vw;
	}

	.estimate_imgs .img {
		width: 40vw;
		height: 40vw;
	}

	.dots {
		top: 42vw;
	}

	.dots  li {
		width: 1.5vw;
		height: 1.5vw;
		margin: 0 0.5vw;
	}
}


/* 작성 폼 영역 */
.estimate_form {
	margin-top: 50px;
	padding-bottom: 70px;
	border-bottom: 3px dashed #F8CACA;
}

.estimate_form.no_border {
	border: 0;
	padding: 0;
}

.estimate_form .item {
	margin-bottom: 30px;
}

.estimate_form .item > label {
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}

.estimate_form .item > label + .default_input {
	width: 100%;
	height: 60px;
	padding: 0 16px;
	border: 1px solid #4A3D44;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 20px;
}

.estimate_form .item > label + .default_input:focus {
	outline: none;
	box-shadow: none;
}

.estimate_form .item .default_textarea {
	width:100%;
	height:250px;
	border: 1px solid #4A3D44;
	border-radius: 8px;
	padding: 10px;
}

@media screen and (max-width: 500px) {
	.estimate_form {
		margin-top: 10vw;
		padding-bottom: 14vw;
		border-bottom: 2px dashed #F8CACA;
	}

	.estimate_form .item {
		margin-bottom: 6vw;
	}

	.estimate_form .item > label {
		margin-bottom: 2vw;
		font-size: 3.6vw;
	}

	.estimate_form .item > label + .default_input {
		height: 12vw;
		padding: 0 3.2vw;
		border-radius: 1.6vw;
		font-size: 4vw;
	}
	
	.estimate_form .item .default_textarea {
		height:50vw;
		border-radius: 1.6vw;
		padding: 2vw;
	}
}


/* 견적 금액 입력/노출 영역 */
.estimate_price_box {
	margin-top: 60px;
	margin-bottom: 150px;
}

.estimate_price_box .estimate_price_txt {
	position: relative;
	font-size: 27px;
	font-weight: 800;
	text-align: center;
	line-height: 1.7;
	z-index: 0;
}

.estimate_price_box .estimate_price_txt.party::after {
	position: absolute;
	top: -50px;
	left: 0;
	width: 440px;
	height: 150px;
	background: url('/images/bottom_txt_bg.png') no-repeat center top / cover;
	content: "";
	z-index: -1;
}

.estimate_price_box .estimate_price_txt > img {
	width: 50px;
	margin-bottom: 10px;
}

.estimate_price_detail {
	margin-top: 50px;
}

.estimate_price_detail > li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.estimate_price_detail > li:not(:last-child) {
	margin-bottom: 35px;
}

.estimate_price_detail > li .title {}

.estimate_price_detail > li .price {
	font-size: 27px;
	font-weight: bold;
}

.estimate_price_box .input_box {
	margin-top: 55px;
}

.estimate_price_box .input_box .default_input {
	margin-bottom: 13px;
}

.estimate_price_box .input_box .default_input[readonly] {
	font-size: 27px;
	font-weight: bold;
}

.estimate_price_box .input_box .default_input[readonly]:focus {
	outline: none;
}

.estimate_price_box .input_box .default_btn {}

@media screen and (max-width: 500px) {
	.estimate_price_box {
		margin-top: 12vw;
		margin-bottom: 30vw;
	}

	.estimate_price_box .estimate_price_txt {
		font-size: 5.4vw;
	}
	
	.estimate_price_box .estimate_price_txt.party::after {
		top: -10vw;
		width: 88vw;
		height: 30vw;
	}

	.estimate_price_box .estimate_price_txt > img {
		width: 10vw;
		margin-bottom: 2vw;
	}
	
	.estimate_price_detail {
		margin-top: 10vw;
	}
	
	.estimate_price_detail > li:not(:last-child) {
		margin-bottom: 7vw;
	}

	.estimate_price_detail > li .price {
		font-size: 5.5vw;
	}

	.estimate_price_box .input_box {
		margin-top: 11vw;
	}

	.estimate_price_box .input_box .default_input {
		margin-bottom: 2.7vw;
	}
	
	.estimate_price_box .input_box .default_input[readonly] {
		font-size: 5.5vw;
	}

}


/******************************
// 업체 - 내 정보 관리
******************************/
.mypage_form {}

.mypage_form .item {
	margin-top: 25px;
}

.mypage_form .item label {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
}

.mypage_form .item .image_btn {
	display: flex;
	width: 130px;
	height: 130px;
	align-items: center;
	justify-content: center;
	border: 1px solid #707070;
}

.mypage_form .item .image_btn .plus {
	position: relative;
	width: 37px;
	height: 37px;
	border-radius: 50%;
	background: #EEEEEE;
}

.mypage_form .item .image_btn .plus::before,
.mypage_form .item .image_btn .plus::after {
	position: absolute;
	background: #707070;
	content: "";
}

.mypage_form .item .image_btn .plus::before {
	top: 17.5px;
	left: 8px;
	width: 20px;
	height: 1px;
}

.mypage_form .item .image_btn .plus::after {
	top: 8px;
	left: 17.5px;
	width: 1px;
	height: 20px;
}

.mypage_form .item .image_btn {
	position: relative;
	flex: 0 0 auto;
	width: 130px;
	height: 130px;
	box-sizing: border-box;
	border: 1px solid #707070; /* 기존 테두리 질감 유지(선택) */
}

.mypage_form .item .image_btn:last-child {
	margin-right: 30px;
}

.mypage_form .item .image_btn img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
	z-index: 1;
}

.mypage_form .item .image_btn .remove_btn {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 22px;
	height: 22px;
	border: none;
	border-radius: 50%;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 14px;
	line-height: 22px;
	cursor: pointer;
	z-index: 9;
}

.mypage_form .item .default_input {
	width: 100%;
	height: 60px;
	border: 1px solid #4A3D44;
	border-radius: 8px;
	font-size: 20px;
	color: #8F8F8F;
}

.mypage_form .item .default_textarea {
	width:100%;
	height:300px;
	border: 1px solid #4A3D44;
	border-radius: 8px;
	padding: 10px;
}

.mypage_form .item .default_input.with_btn {
	width: calc(100% - 109px);
	margin-right: 4px;
}

.mypage_form .item .default_file {
	display: none;
}

.mypage_form .item .addr_btn {
	position: relative;
	top: 2px;
	width: 100px;
	height: 60px;
	background: #F8CACA;
	border-radius: 8px;
	font-size: 20px;
	font-weight: bold;
	color: #000;
}

.mypage_form .item .file_box {
	display: flex;
	align-items: center;
}

.mypage_form .item .file_box .file_btn {
	width: 150px;
	height: 60px;
	border-radius: 8px;
	background: #000;
	font-size: 22px;
	font-weight: bold;
	color: #fff;
}

.mypage_form .item .file_box .file_name {
	margin-left: 15px;
	color: #E74C3C;
}

@media screen and (max-width: 500px) {
	.mypage_form .item {
		margin-top: 5vw;
	}

	.mypage_form .item label {
		margin-bottom: 2vw;
	}

	.mypage_form .item .image_btn {
		width: 26vw;
		height: 26vw;
	}

	.mypage_form .item .image_btn .plus {
		width: 7.5vw;
		height: 7.5vw;
	}

	.mypage_form .item .image_btn .plus::before {
		top: 3.5vw;
		left: 1.6vw;
		width: 4vw;
	}

	.mypage_form .item .image_btn .plus::after {
		top: 1.6vw;
		left: 3.5vw;
		height: 4vw;
	}
	
	.mypage_form .item .image_btn {
		width: 26vw;
		height: 26vw;
	}
	
	.mypage_form .item .image_btn:last-child {
		margin-right: 6vw;
	}
	
	.mypage_form .item .image_btn .remove_btn {
		top: 1vw;
		right: 1vw;
		width: 4.4vw;
		height: 4.4vw;
		font-size: 2.8vw;
		line-height: 4.4vw;
	}

	.mypage_form .item .default_input {
		height: 12vw;
		border-radius: 1.6vw;
		font-size: 4vw;
	}
	
	.mypage_form .item .default_textarea {
		height:60vw;
		border-radius: 1.6vw;
		font-size: 4vw;
	}

	.mypage_form .item .default_input.with_btn {
		width: calc(100% - 22vw);
		margin-right: 0.5vw;
	}

	.mypage_form .item .addr_btn {
		width: 20vw;
		height: 12vw;
		border-radius: 1.6vw;
		font-size: 4vw;
	}

	.mypage_form .item .file_box .file_btn {
		width: 30vw;
		height: 12vw;
		border-radius: 1.6vw;
		font-size: 4.4vw;
	}

	.mypage_form .item .file_box .file_name {
		margin-left: 3vw;
	}
}


/******************************
// 유저용 상품 등록 추가 css
******************************/
#form_area {}

#form_area .item {
	position: relative;
	width: 440px;
	margin: 0 30px;
}

@media screen and (max-width: 500px) {
	#form_area .item {
		width: 88vw;
		margin: 0 6vw;
	}
}


.estimate_btn_box2 .home_btn {
	display:none;
}

.estimate_btn_box2 .form_save2{
	width:45%;
	margin-bottom:30px;
	text-align:center;
}

.estimate_btn_box2 .form_save3{
	background:#999
}

/*
본인인증 후 알림창
*/

.toast_msg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60%;
	max-width: 300px;
	transform: translate(-50%, -50%);
	background: #000;
	color: #F8CACA;
	padding: 15px 25px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	display: none; /* jQuery로 show/hide */
	z-index: 9999;
}



/* 2025-12-26 추가 */
#intro_img {
	position: absolute;
	top: calc(50% - 100px);
	left: calc(50% - 100px);
	width: 200px;
	z-index: 999999;
}

#intro_img img{
	width:100%;
}

.main_video_btn {
	position: absolute;
	top: 110px;
}

.main_video_btn.prev {
	left: 80px;
}

.main_video_btn.next {
	right: 80px;
}

@media screen and (max-width: 500px) {
	.main_video_btn {
		top: 22vw;
		width: 10vw;
	}
	
	.main_video_btn.prev {
		left: 18vw;
	}
	
	.main_video_btn.next {
		right: 18vw;
	}
}


/* 2025-12-27 추가 */
#content2.image_detail_area {
	background: #000;
}

.image_detail_box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.image_detail {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateY(-50%);
}

.image_detail .item img {
	max-width: 100%;
}

.image_detail .swiper-button-next,
.image_detail .swiper-button-prev {
	width: 50px;
	height: 50px;
	color: transparent;
	background: none;
}

.image_detail .swiper-button-next::after,
.image_detail .swiper-button-prev::after {
	display: none;
}


.estimate_agree_box {}

.estimate_agree_box .default_checkbox {
	display: block;
	margin-bottom: 15px;
	line-height: 1.45;
}

@media screen and (max-width: 500px) {
	.estimate_agree_box .default_checkbox {
		margin-bottom: 3vw;
	}
	.estimate_agree_box .default_checkbox label {
		font-size: 3.6vw;
	}
}


/* 2025-12-31 추가 */
.estimate_list > li {
	position: relative;
	height: auto;
	padding: 15px 0;
	/* align-items: flex-start; */
}

.estimate_list > li.done {
	padding-bottom: 100px;
}

.estimate_list > li .thumb {
	position: relative;
}

.estimate_list > li .info .new_estimate {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 11px;
	border-radius: 5px;
	background: #F8CACA;
	font-size: 16px;
	font-weight: bold;
}

.status_box > button {
	position: relative;
}

.new::after {
	position: absolute;
	top: -15px;
	right: -10px;
	width: 35px;
	height: 35px;
	background: url('/images/alarm_icon.png') no-repeat center center / contain;
	content: "";
	z-index: 9;
}

.default_btn.sns_btn {
	box-shadow: none;
	font-weight: normal;
}

.default_btn.sns_btn.kakao_btn {
	background: #FAE100;
}

.default_btn.sns_btn.naver_btn {
	background: #2DB400;
	color: #fff;
}

.default_btn.sns_btn > img {}

.default_btn.sns_btn > span {
	position: relative;
	top: 3px;
	margin-left: 10px;
}

@media screen and (max-width: 500px) {
	.estimate_list > li {
		padding: 3vw 0;
	}
	
	.estimate_list > li.done {
		padding-bottom: 20vw;
	}
	
	.estimate_list > li .info .new_estimate {
		margin-top: 2vw;
		padding: 2vw 2.3vw;
		border-radius: 1vw;
		font-size: 3.2vw;
	}
	
	.new::after {
		top: -3vw;
		right: -2vw;
		width: 7vw;
		height: 7vw;
	}
	
	.default_btn.sns_btn > img {
		width: 7vw;
	}
	
	.default_btn.sns_btn > span {
		top: 0.6vw;
		margin-left: 2vw;
	}
}




/* 2026-01-07 추가 */
.user_info {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.user_info .name {
	margin-right: 30px;
}

.user_info .name > span {
	font-size: 27px;
}

.user_info .tel {
	font-size: 27px;
}

@media screen and (max-width: 500px) {
	.user_info {
		padding: 6vw 0;
	}
	
	.user_info .name {
		margin-right: 4vw;
	}
	
	.user_info .name > span {
		font-size: 5.4vw;
	}
	
	.user_info .tel {
		font-size: 5.4vw;
	}
}




/* 이벤트 */
.event_list {}

.event_list > li {
	display: flex;
	align-items: center;
	padding: 30px 0;
	border-bottom: 1px solid #8F8F8F;
}

.event_list > li .thumb {
	width: 125px;
	height: 125px;
	background-color: #C1C1C1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.event_list > li .info {
	width: calc(100% - 145px);
	margin-left: 20px;
}

.event_list > li .info .title {
	display: inline-block;
	margin-bottom: 7px;
	font-weight: 600;
}

.event_list > li .info .content {
	height: 65px;
}

.event_list > li .info .date {
	float: right;
	font-size: 14px;
	font-weight: 300;
	color: #8F8F8F;
}


@media screen and (max-width: 500px) {
	.event_list > li {
		padding: 6vw 0;
		font-size: 3.6vw;
	}
	
	.event_list > li .thumb {
		width: 25vw;
		height: 25vw;
	}
	
	.event_list > li .info {
		width: calc(100% - 29vw);
		margin-left: 4vw;
	}
	
	.event_list > li .info .title {
		margin-bottom: 1.4vw;
	}
	
	.event_list > li .info .content {
		height: 13vw;
	}
	
	.event_list > li .info .date {
		font-size: 2.8vw;
	}
}


/* 상세보기 화면 */
.default_view {
	padding-top: 50px;
}

.default_view .view_head {
	border-bottom: 1px solid #8F8F8F;
}

.default_view .view_head .title {
	margin-bottom: 35px;
	font-weight: 700;
}

.default_view .view_head .date {
	float: right;
	margin-bottom: 15px;
	font-size: 14px;
	color: #8F8F8F;
}

.default_view .view_body {
	margin-top: 50px;
}

.default_view .view_body .view_slide_box {
	position: relative;
}

.default_view .view_body .view_slide_box .view_slide {
	width: 200px;
	margin: 0 auto;
}

.default_view .view_body .view_slide_box .view_slide .item {
	width: 200px;
	height: 200px;
	background-color: #C1C1C1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.default_view .view_body .view_slide_box .dots {
	position: absolute;
	top: 180px;
	left: 0;
	width: 100%;
}

.default_view .view_body .view_content {
	margin-top: 50px;
	line-height: 1.5;
}

.default_view .view_body .view_answer {
	margin-top: 50px;
	padding: 25px;
	border-radius: 8px;
	background: #FBEFF1;
	border: 1px solid #EAD8D8;
	line-height: 1.5;
}

.default_view .view_body img {
	max-width: 100%;
}

.default_view .view_btn {
	margin-top: 50px;
}

.default_view .view_btn > button {}

@media screen and (max-width: 500px) {
	.default_view {
		padding-top: 10vw;
	}
	
	.default_view .view_head .title {
		margin-bottom: 7vw;
		font-size: 3.6vw;
	}
	
	.default_view .view_head .date {
		margin-bottom: 3vw;
		font-size: 2.8vw;
	}
	
	.default_view .view_body {
		margin-top: 10vw;
	}
	
	.default_view .view_body .view_slide_box .view_slide {
		width: 40vw;
	}
	
	.default_view .view_body .view_slide_box .view_slide .item {
		width: 40vw;
		height: 40vw;
	}
	
	.default_view .view_body .view_slide_box .dots {
		top: 36vw;
	}
	
	.default_view .view_body .view_content {
		margin-top: 10vw;
		font-size: 3.6vw;
	}
	
	.default_view .view_body .view_answer {
		margin-top: 10vw;
		padding: 5vw;
		border-radius: 1.6vw;
		font-size: 3.6vw;
	}
	
	.default_view .view_btn {
		margin-top: 10vw;
	}
}


/* 리스트 기본 디자인 */
.default_list {}

.default_list > li {
	padding: 30px 0;
	border-bottom: 1px solid #8F8F8F;
}

.default_list > li .title {
	display: inline-block;
	width: 100%;
	margin-bottom: 15px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.default_list > li .content {
	height: 35px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.default_list > li .date {
	float: right;
	font-size: 14px;
	font-weight: 300;
	color: #8F8F8F;
}


@media screen and (max-width: 500px) {
	.default_list > li {
		padding: 6vw 0;
		font-size: 3.6vw;
	}
	
	.default_list > li .title {
		margin-bottom: 3vw;
	}
	
	.default_list > li .content {
		height: 7vw;
	}
	
	.default_list > li .date {
		font-size: 2.8vw;
	}
}


/* 1:1 문의 리스트 */
.inquiry_list {}

.inquiry_list > li {
	position: relative;
	padding: 30px 0;
	border-bottom: 1px solid #8F8F8F;
}

.inquiry_list > li .title {
	display: inline-block;
	width: calc(100% - 100px);
	margin-bottom: 15px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.inquiry_list > li .content {
	height: 35px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.inquiry_list > li .date {
	float: right;
	font-size: 14px;
	font-weight: 300;
	color: #8F8F8F;
}

.inquiry_list > li .state {
	display: block;
	position: absolute;
	top: 23px;
	right: 0;
	width: 95px;
	line-height: 35px;
	border-radius: 2.5px;
	font-weight: bold;
	text-align: center;
}

.inquiry_list > li .state.ready {
	background: #F4C0C0;
}

.inquiry_list > li .state.done {
	background: #000;
	color: #fff;
}


@media screen and (max-width: 500px) {
	.inquiry_list > li {
		padding: 6vw 0;
		font-size: 3.6vw;
	}
	
	.inquiry_list > li .title {
		margin-bottom: 3vw;
	}
	
	.inquiry_list > li .content {
		height: 7vw;
	}
	
	.inquiry_list > li .date {
		font-size: 2.8vw;
	}
	
	.inquiry_list > li .state {
		top: 4.6vw;
		width: 19vw;
		line-height: 7vw;
		border-radius: 0.5vw;
	}
}



/* 2026-01-20 홈 화면에 푸터 내용 추가 */
.comp_info {
	position: relative;
	top: 30px;
	padding: 20px 0;
	background: #f4f4f4;
	text-align: center;
}

.comp_info span {
	font-size: 0.7em;
	line-height: 1.45;
	color: #666;
}

@media screen and (max-width: 500px) {
	.comp_info {
		top: 6vw;
		padding: 4vw 0;
	}
}


/* 후기 관련 css 추가 */
.star_box {}

.star_box .star_score {
	display: none;
}

.star_box .star {
	float: left;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url('/images/star_off.png');
}


.popup_content2 {
	display: flex;
	height: 210px;
	align-items: center;
	justify-content: center;
}

.popup_content2 > p {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.55;
}

.popup_content2 > p > b {
	font-size: 24px;
	font-weight: 600;
}

#popup_layer .popup_footer2 {
	height: 60px;
}

.popup_footer2 .popup_btn2 {
	width: 50%;
	height: 60px;
	font-size: 20px;
	font-weight: 500;
}

.popup_footer2 .popup_btn2.gray_btn2 {
	background: #C1C1C1;
	color: #fff;
}

.popup_footer2 .popup_btn2.pink_btn2 {
	background: #F8CACA;
	color: #000;
}

@media screen and (max-width: 500px) {
	.star_box .star {
		width: 8vw;
		height: 8vw;
	}
	
	
	.popup_content2 {
		height: 42vw;
	}
	
	.popup_content2 > p {
		font-size: 4.4vw;
	}
	
	.popup_content2 > p > b {
		font-size: 4.8vw;
	}
	
	#popup_layer .popup_footer2 {
		height: 12vw;
	}
	
	.popup_footer2 .popup_btn2 {
		height: 12vw;
		font-size: 4vw;
	}
}


.review_search_area {
	margin: 65px 0;
}

.search_input {
	width: 100%;
	height: 60px;
	padding: 0 15px !important;
	border-radius: 8px;
	border: 1px solid #4A3D44;
	margin-top: 15px;
}

.search_input.search_select {}

.search_input.search_text {}

.search_input.search_submit {
	border-radius: 5px;
	border-color: #40a3fc;
	background: #40a3fc;
	color:#fff;
}

.review_list_area {}

.review_list_area .review_sort_box {
	text-align: right;
}

.review_list_area .review_sort_box > a {
	font-size: 20px;
	margin-left: 15px;
}

.review_list_area .review_sort_box > a.on {
	font-weight: 600;
}

.review_list_area .review_list {
	margin-top: 20px;
	border-top: 2px solid #000000;
}

.review_list_area .review_list > li {
	position: relative;
	padding: 25px 0;
	border-bottom: 1px solid #8F8F8F;
}

.review_list_area .review_list > li .info_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.review_list_area .review_list > li .info_box .thumb {
	width: 125px;
	height: 125px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.review_list_area .review_list > li .info_box .info {
	width: calc(100% - 145px);
}

.review_list_area .review_list > li .info_box .info .name {
	display: block;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.review_list_area .review_list > li .info_box .info .price {
	display: block;
	margin: 12px 0;
}

.review_list_area .review_list > li .info_box .info .star_box {
	margin-bottom: 10px;
}

.review_list_area .review_list > li .info_box .info .star_box .star {
	width: 27px;
	height: 27px;
}

.review_list_area .review_list > li .info_box .info .star_box .star.on {
	background-image: url('/images/star_on.png');
}

.review_list_area .review_list > li .info_box .info .date {
	font-size: 14px;
	font-weight: 300;
	color: #8F8F8F;
}

.review_list_area .review_list > li .content {
	margin-top: 25px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	max-height: 4.5em;
}

.review_list_area .review_list > li .more {
	position: absolute;
	bottom: 30px;
	right: 0;
	font-size: 14px;
	color: #8F8F8F;
}

.review_btn {
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	height: 60px;
	border-radius: 5px;
	font-size: 20px;
}

.review_btn.pink {
	background: #F8CACA;
}

.review_btn.gray {
	background: #EEEEEE;
	color: #8F8F8F;
}

@media screen and (max-width: 500px) {
	.review_search_area {
		margin: 13vw 0;
	}
	
	.search_input {
		height: 12vw;
		padding: 0 3vw !important;
		border-radius: 1.6vw;
		margin-top: 3vw;
	}
	
	.search_input.search_submit {
		border-radius: 1vw;
	}
	
	.review_list_area .review_sort_box > a {
		font-size: 4vw;
		margin-left: 3vw;
	}
	
	.review_list_area .review_list {
		margin-top: 4vw;
	}
	
	.review_list_area .review_list > li {
		padding: 5vw 0;
	}
	
	.review_list_area .review_list > li .info_box .thumb {
		width: 25vw;
		height: 25vw;
	}
	
	.review_list_area .review_list > li .info_box .info {
		width: calc(100% - 29vw);
	}
	
	.review_list_area .review_list > li .info_box .info .price {
		margin: 2.4vw 0;
	}
	
	.review_list_area .review_list > li .info_box .info .star_box {
		margin-bottom: 2vw;
	}
	
	.review_list_area .review_list > li .info_box .info .star_box .star {
		width: 5.4vw;
		height: 5.4vw;
	}
	
	.review_list_area .review_list > li .info_box .info .date {
		font-size: 2.8vw;
	}
	
	.review_list_area .review_list > li .content {
		margin-top: 5vw;
	}
	
	.review_list_area .review_list > li .more {
		bottom: 6vw;
		font-size: 2.8vw;
	}
}


/* 정산 관련 css 추가 */
.search_filter_box {
	display: flex;
	margin-top: 15px;
	align-items: center;
	gap: 5px;
}

.date_input_group {
	display: flex;
	width: 360px;
	height: 50px;
	padding: 0 10px;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #DEDEDE;
	border-radius: 6px;
	background-color: #fff;
	box-sizing: border-box;
}

.date_item {
	display: flex;
	align-items: center;
}

/* input date 기본 스타일 조정 */
.date_input {
	border: none;
	outline: none;
	font-size: 16px; /* 이미지 느낌을 위해 조절 */
	font-family: inherit;
	color: #333;
	background: transparent;
	cursor: pointer;
	position: relative;
}

/* 브라우저 기본 달력 아이콘 스타일링 (크롬/엣지용) */
.date_input::-webkit-calendar-picker-indicator {
	cursor: pointer;
	padding: 2px;
}

.dash {
	margin: 0 10px;
	color: #333;
	font-size: 16px;
}

.search_submit_btn {
	width: 75px;
	height: 50px;
	background-color: #F8C3C3; /* 이미지의 분홍색 */
	border: none;
	border-radius: 6px;
	color: #333;
	font-size: 20px;
	cursor: pointer;
	font-weight: 500;
}

.search_submit_btn:hover {
	background-color: #f1adad;
}

.date_input {
	border: none;
	font-size: 16px;
	color: #333;
	width: 140px;
	text-align: center;
}

/* 포인트 영역 */
.point_status_area {
	margin-top: 25px;
}

.total_point_box {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.total_point_box .label {
	font-size: 18px;
	font-weight: 600;
}

.total_point_box .point_val {
	font-size: 27px;
	font-weight: 700;
	color: #F8C3C3; /* 이미지의 분홍색 포인트 컬러 */
}

.total_point_box .point_val small {
	color: #000;
}

.request_btn {
	width: 100%;
	height: 60px;
	background-color: #F8C3C3;
	border: none;
	border-radius: 8px;
	color: #333;
	font-size: 20px;
	font-weight: 500;
	margin-top: 15px;
	cursor: pointer;
}

/* 리스트 영역 */
.settle_list_area {
	margin-top: 30px;
	border-top: 1px solid #333;
}

.settle_list li {
	padding: 20px 0;
	border-bottom: 1px solid #DEDEDE;
}

.list_info_top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 17px;
}

.list_info_top .date {
	color: #999;
	font-size: 16px;
}

.list_info_top .type {
	color: #333;
	font-size: 18px;
}

.list_info_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.badge {
	padding: 7px 9px;
	border-radius: 3px;
	font-size: 18px;
}

.badge.wait {
	background-color: #222;
	color: #fff;
}

.amount {
	font-size: 18px;
	font-weight: 600;
	flex: 1;
	text-align: right;
}

.amount.plus { color: #3A68F9 !important; } /* 입금/충전 파란색 */
.amount.minus { color: #F84444 !important; } /* 차감 빨간색 */

/* 정산 리스트 전용 스타일 추가 */
.settle_list li {
	padding: 30px 0; /* 이미지처럼 상하 간격을 넓게 조정 */
}

.prod_name {
	text-align: left;
	flex: 1;
	margin-left: 50px; /* 날짜와 상품명 사이 간격 */
	line-height: 1.4;
	font-weight: 500 !important;
	word-break: keep-all; /* 단어 단위로 줄바꿈 */
}

.settle_list .list_info_bottom .amount {
	font-size: 18px;
	font-weight: 600;
	color: #000; /* 정산 금액은 검은색 */
}

/* 모바일 대응 (500px 이하) */
@media screen and (max-width: 500px) {
	.prod_name {
		margin-left: 8vw;
		font-size: 3.6vw;
	}
	
	.settle_list .list_info_bottom .amount {
		font-size: 4.5vw;
		margin-top: -2vw;
	}
}

@media screen and (max-width: 500px) {
	.search_filter_box {
		margin-top: 3vw;
		gap: 1vw;
	}
	
	.date_input_group {
		width: 72vw;
		height: 10vw;
		padding: 0 2vw;
		border-radius: 1.2vw;
	}
	
	.date_input {
		font-size: 3.2vw;
	}
	
	.dash {
		margin: 0 2vw;
		font-size: 3.2vw;
	}
	
	.search_submit_btn {
		width: 15vw;
		height: 10vw;
		border-radius: 1.2vw;
		font-size: 4vw;
	}
	
	.date_input {
		font-size: 3.6vw;
		width: 28vw;
	}
	
	/* 포인트 영역 */
	.point_status_area {
		margin-top: 5vw;
	}
	
	.total_point_box .label {
		font-size: 3.6vw;
	}
	
	.total_point_box .point_val {
		font-size: 5.4vw;
	}
	
	.request_btn {
		height: 12vw;
		border-radius: 1.6vw;
		font-size: 4vw;
		margin-top: 3vw;
	}
	
	/* 리스트 영역 */
	.settle_list_area {
		margin-top: 6vw;
	}
	
	.settle_list li {
		padding: 4vw 0;
	}
	
	.list_info_top {
		margin-bottom: 6.4vw;
	}
	
	.list_info_top .date {
		font-size: 3.2vw;
	}
	
	.list_info_top .type {
		font-size: 3.6vw;
	}
	
	.badge {
		padding: 1.4vw 1.8vw;
		border-radius: 0.5vw;
		font-size: 3.6vw;
	}
	
	.amount {
		font-size: 3.6vw;
	}
	
	.settle_list li {
		padding: 6vw 0; /* 이미지처럼 상하 간격을 넓게 조정 */
	}
	
	.prod_name {
		margin-left: 10vw; /* 날짜와 상품명 사이 간격 */
	}
	
	.settle_list .list_info_bottom .amount {
		font-size: 3.6vw;
	}
}


/* 충전 팝업 css 추가 */
#point_request {
	padding: 30px 20px;
	text-align: center;
}

#point_request .popup_header {
	height: auto;
	margin-bottom: 30px;
	box-shadow: none;
	font-size: 24px;
	font-weight: 700;
}

#point_request .popup_content {
	height: auto;
	overflow: visible;
}

.request_input_box {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #DEDEDE;
	border-radius: 10px;
	padding: 10px 15px;
	margin-bottom: 25px;
	background: #fff;
}

.req_input {
	width: 80%;
	border: none;
	outline: none;
	font-size: 20px;
	text-align: left;
}

.req_input::placeholder {
	color: #ccc;
	font-size: 18px;
}

.request_input_box .unit {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-left: 10px;
}

.popup_btn_submit {
	width: 100%;
	height: 60px;
	background-color: #F8C3C3; /* 요청하기 분홍색 */
	border: none;
	border-radius: 10px;
	color: #333;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
}

.popup_close_btn {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 30px;
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
}

@media screen and (max-width: 500px) {
	#point_request {
		padding: 6vw 4vw;
	}
	
	#point_request .popup_header {
		margin-bottom: 6vw;
		font-size: 4.8vw;
	}
	
	.request_input_box {
		border-radius: 2vw;
		padding: 2vw 3vw;
		margin-bottom: 5vw;
	}
	
	.req_input {
		font-size: 4vw;
	}
	
	.req_input::placeholder {
		font-size: 3.6vw;
	}
	
	.request_input_box .unit {
		font-size: 4.8vw;
		margin-left: 2vw;
	}
	
	.popup_btn_submit {
		height: 12vw;
		border-radius: 2vw;
		font-size: 4vw;
	}
	
	.popup_close_btn {
		top: 3vw;
		right: 4vw;
		font-size: 6vw;
	}	
}




/******************************************************

	2026년 4월 12일 추가
	디자인 리뉴얼에 의한 추가입니다.

*******************************************************/

.product_write_list{
	float:left;
	width:90%;
	margin:40px 0 0 5%;
}

.product_write_list li{
	position:relative;
	float:left;
	width:100%;
	margin-bottom:15px;
	border:1px solid #f2f2f2;
	border-radius:12px;
	-webkit-border-radius:12px;
	-moz-border-radius:12px;
	box-shadow:0 0 10px rgba(0, 0, 0, .05);
}

.product_write_list li dl{
	float:left;
	width:calc(100% - 30px);
	margin:15px 15px;
}

,product_write_list li dl dt, .product_write_list li dl dd{
	float:left;
	width:100%;
}

.product_write_list li dl dt{
	font-size:12px;
	color:#333;
}

.product_write_list li dl dd{
	font-size:20px;
	font-weight:700;
	margin-top:10px;
}

.product_write_list li dl dd.textbox{
	display:none;
}

.product_write_list li dl dd.textbox input[type=text]{
	width:100%;
	height:40px;
	background:#e6f2ff;
	border:1px solid #027bff;
	color:#027bff;
	font-size:15px;
	border-radius:8px;
	-webkit-border-radius:8px;
	-moz-border-radius:8px;
}

.product_write_list li dl dd.textbox input[type=text]::placeholder{
	color:#97c9ff;
}

.product_write_list li .btn{
	position:absolute;
	right:15px;
	top:20px;
}

.product_write_list li .btn button{
	width:80px;
	height:40px;
	background:#e6f2ff;
	color:#017bff;
	font-size:16px;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
}

.product_write_list li .btn button.active{
	background:#f1f1f1;
	color:#a9abad;
}

.product_write_btn{
	float:left;
	width:90%;
	margin:30px 0 0 5%;
}

.product_write_btn button{
	width:100%;
	height:60px;
	background:#027bff;
	color:#fff;
	font-size:20px;
	font-weight:700;
	border-radius:15px;
	-webkit-border-radius:15px;
	-moz-border-radius:15px;
}

@media screen and (max-width:500px){
	.product_write_list li dl dd{
		font-size:4vw;
	}
	
	.product_write_list li .btn button{
		width:60px;
		height:35px;
	}
}

.black_bg_layer{
	display:none;
	position:fixed;
	width:100%;
	height:100%;
	z-index:9999;
	background:rgba(0, 0, 0, .4);
}

.layer_product_option_area{
	position:absolute;
	bottom:0;
	left:calc(50% - 235px);
	width:430px;
	padding:40px 20px 0;
	border-radius:30px 30px 0 0;
	background:#fff;
	
	/* 핵심: 화면 아래로 밀어두기 */
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}


/* 레이어가 활성화되었을 때 상태 */
.layer_product_option_area.active {
    transform: translateY(0);
}

@media screen and (max-width:500px){
	.layer_product_option_area{
		left:5%;
		width:calc(90% - 30px);
		padding:20px 15px 0;
	}
}

.layer_small_title{
	float:left;
	width:100%;
	font-size:12px;
}

.layer_big_title{
	float:left;
	width:100%;
	margin-top:5px;
	font-size:20px;
	font-weight:700;
}

.layer_brand_list{
	float:left;
	width:100%;
	height:400px;
	margin-top:30px;
	overflow-y:auto;
}

.layer_brand_list li{
	float:left;
	width:48%;
	padding:15px 0;
	margin-bottom:15px;
	background:#f1f1f1;
	border:1px solid #f1f1f1;
	border-radius:15px;
	-webkit-border-radius:15px;
	-moz-border-radius:15px;
}

.layer_brand_list li:nth-child(even){
	float:right;
}

.layer_brand_list li:hover, .layer_brand_list li.over{
	background:#e6f2ff;
	border:1px solid #027bff;
}

.layer_brand_list li dl, .layer_brand_list li dl dt, .layer_brand_list li dl dd{
	float:left;
	width:100%;
	text-align:center;
}

.layer_brand_list li dl dd{
	width:100%;
}

.layer_brand_list li:nth-child(1) dl dd{
	height:80px;
	background:url("/images/brand_logo_chanel.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(2) dl dd{
	height:80px;
	background:url("/images/brand_logo_hermes.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(3) dl dd{
	height:80px;
	background:url("/images/brand_logo_lv.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(4) dl dd{
	height:80px;
	background:url("/images/brand_logo_gucci.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(5) dl dd{
	height:80px;
	background:url("/images/brand_logo_dior.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(6) dl dd{
	height:80px;
	background:url("/images/brand_logo_prada.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(7) dl dd{
	height:80px;
	background:url("/images/brand_logo_fendy.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(8) dl dd{
	height:80px;
	background:url("/images/brand_logo_celine.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(9) dl dd{
	height:80px;
	background:url("/images/brand_logo_bottega.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(10) dl dd{
	height:80px;
	background:url("/images/brand_logo_balenciaga.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(11) dl dd{
	height:80px;
	background:url("/images/brand_logo_versace.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(12) dl dd{
	height:80px;
	background:url("/images/brand_logo_givenchy.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(13) dl dd{
	height:80px;
	background:url("/images/brand_logo_saintlaurent.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(14) dl dd{
	height:80px;
	background:url("/images/brand_logo_valentino.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(15) dl dd{
	height:80px;
	background:url("/images/brand_logo_versace.png") no-repeat center center / contain;
}

.layer_brand_list li:nth-child(16) dl dd{
	height:80px;
	background:url("/images/brand_logo_goyard.png") no-repeat center center / contain;
}




.layer_brand_list li.over:nth-child(1) dl dd, .layer_brand_list li:hover:nth-child(1) dl dd{
	height:80px;
	background:url("/images/brand_logo_chanel_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(2) dl dd, .layer_brand_list li:hover:nth-child(2) dl dd{
	height:80px;
	background:url("/images/brand_logo_hermes_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(3) dl dd, .layer_brand_list li:hover:nth-child(3) dl dd{
	height:80px;
	background:url("/images/brand_logo_lv_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(4) dl dd, .layer_brand_list li:hover:nth-child(4) dl dd{
	height:80px;
	background:url("/images/brand_logo_gucci_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(5) dl dd, .layer_brand_list li:hover:nth-child(5) dl dd{
	height:80px;
	background:url("/images/brand_logo_dior_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(6) dl dd, .layer_brand_list li:hover:nth-child(6) dl dd{
	height:80px;
	background:url("/images/brand_logo_prada_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(7) dl dd, .layer_brand_list li:hover:nth-child(7) dl dd{
	height:80px;
	background:url("/images/brand_logo_fendy_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(8) dl dd, .layer_brand_list li:hover:nth-child(8) dl dd{
	height:80px;
	background:url("/images/brand_logo_celine_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(9) dl dd, .layer_brand_list li:hover:nth-child(9) dl dd{
	height:80px;
	background:url("/images/brand_logo_bottega_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(10) dl dd, .layer_brand_list li:hover:nth-child(10) dl dd{
	height:80px;
	background:url("/images/brand_logo_balenciaga_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(11) dl dd, .layer_brand_list li:hover:nth-child(11) dl dd{
	height:80px;
	background:url("/images/brand_logo_versace_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(12) dl dd, .layer_brand_list li:hover:nth-child(12) dl dd{
	height:80px;
	background:url("/images/brand_logo_givenchy_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(13) dl dd, .layer_brand_list li:hover:nth-child(13) dl dd{
	height:80px;
	background:url("/images/brand_logo_saintlaurent_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(14) dl dd, .layer_brand_list li:hover:nth-child(14) dl dd{
	height:80px;
	background:url("/images/brand_logo_valentino_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(15) dl dd, .layer_brand_list li:hover:nth-child(15) dl dd{
	height:80px;
	background:url("/images/brand_logo_versace_ov.png") no-repeat center center / contain;
}

.layer_brand_list li.over:nth-child(16) dl dd, .layer_brand_list li:hover:nth-child(16) dl dd{
	height:80px;
	background:url("/images/brand_logo_goyard_ov.png") no-repeat center center / contain;
}

.layer_brand_list li dl dt{
	margin-top:10px;
	font-weight:500;
}

.layer_brand_list li.over dl dt, .layer_brand_list li:hover dl dt{
	color:#027bff;
}

.layer_product_input{
	float:left;
	width:100%;
	margin-top:15px;
}

.layer_product_input input[type=text]{
	width:calc(100% - 2px);
	height:45px;
	border:1px solid #ddd;
	background:#f1f1f1;
	border-radius:15px;
	-webkit-border-radius:15px;
	-moz-border-radius:15px;
}

.layer_btn_area{
	float:left;
	width:100%;
	margin-top:15px;
}

.layer_btn_area.popup{
	width:90%;
	margin:80px 0 0 5%;
}

.layer_btn_area.popup2{
	width:90%;
	margin:30px 0 0 5%;
}

.layer_btn_area button{
	width:100%;
	height:50px;
	background:#027bff;
	color:#fff;
	font-size:18px;
	font-weight:700;
	border-radius:15px;
	-webkit-border-radius:15px;
	-moz-border-radius:15px;
}

.layer_close_btn_area{
	float:left;
	width:100%;
	margin:15px 0 20px;
}

.layer_close_btn_area.popup{
	width:90%;
	margin:15px 0 0 5%;
}

.layer_close_btn_area button{
	width:100%;
	height:50px;
	background:#fff;
	color:#000;
}

.layer_item_list{
	float:left;
	width:100%;
	margin-top:20px;
}

.layer_item_list li{
	float:left;
	width:48%;
	height:60px;
	margin-top:10px;
	border-radius:15px;
	-webmit-border-radius:15px;
	-moz-border-radius:15px;
	background:#f1f1f1;
	border:1px solid #ddd;
	cursor:pointer;
	display:flex;
	justify-content: center; /* 가로 방향 가운데 정렬 */
    align-items: center;     /* 세로 방향 가운데 정렬 */
}

.layer_item_list li:nth-child(even){
	float:right;
}

.layer_item_list li:nth-child(1), .layer_item_list li:nth-child(2){
	margin-top:0;
}

.layer_item_list li:hover, .layer_item_list li.over{
	background:#e6f2ff;
	border:1px solid #027bff;
	color:#027bff;
	font-weight:700;
}

.popup_image_area{
	float:left;
	width:100%;
}

.popup_image_area img{
	width:100%;
}

.layer_condition_list{
	float:left;
	width:100%;
	margin-top:20px;
}

.layer_condition_list li{
	float:left;
	width:48%;
	padding:20px 0;
	margin-top:10px;
	border-radius:15px;
	-webmit-border-radius:15px;
	-moz-border-radius:15px;
	background:#f1f1f1;
	border:1px solid #ddd;
	cursor:pointer;
}

.layer_condition_list li:hover, .layer_condition_list li.over{
	background:#e6f2ff;
	border:1px solid #027bff;
	color:#027bff;
	font-weight:700;
}

.layer_condition_list li:nth-child(even){
	float:right;
}

.layer_condition_list li:nth-child(1), .layer_condition_list li:nth-child(2){
	margin-top:0;
}

.layer_condition_list li dl, .layer_condition_list li dl dt, .layer_condition_list li dl dd{
	float:left;
	width:100%;
	text-align:center;
}

.layer_condition_list li dl dd.img{
	width:100%;
	height:60px;
}


.layer_condition_list li:nth-child(1) dl dd.img{
	background:url("/images/grade_item_icon01.png") no-repeat;
	background-size:60px 60px;
	background-position:center center;
}

.layer_condition_list li:nth-child(2) dl dd.img{
	background:url("/images/grade_item_icon02.png") no-repeat;
	background-size:60px 60px;
	background-position:center center;
}

.layer_condition_list li:nth-child(3) dl dd.img{
	background:url("/images/grade_item_icon03.png") no-repeat;
	background-size:60px 60px;
	background-position:center center;
}

.layer_condition_list li:nth-child(4) dl dd.img{
	background:url("/images/grade_item_icon04.png") no-repeat;
	background-size:60px 60px;
	background-position:center center;
}

.layer_condition_list li:nth-child(1):hover dl dd.img, .layer_condition_list li:nth-child(1).over dl dd.img{
	background:url("/images/grade_item_icon01_ov.png") no-repeat;
	background-size:60px 60px;
	background-position:center center;
}

.layer_condition_list li:nth-child(2):hover dl dd.img, .layer_condition_list li:nth-child(2).over dl dd.img{
	background:url("/images/grade_item_icon02_ov.png") no-repeat;
	background-size:60px 60px;
	background-position:center center;
}

.layer_condition_list li:nth-child(3):hover dl dd.img, .layer_condition_list li:nth-child(3).over dl dd.img{
	background:url("/images/grade_item_icon03_ov.png") no-repeat;
	background-size:60px 60px;
	background-position:center center;
}

.layer_condition_list li:nth-child(4):hover dl dd.img, .layer_condition_list li:nth-child(4).over dl dd.img{
	background:url("/images/grade_item_icon04_ov.png") no-repeat;
	background-size:60px 60px;
	background-position:center center;
}

.layer_condition_list li dl dd.stxt{
	margin-top:5px;
	font-size:13px;
}

.layer_condition_list li dl dt{
	font-size:18px;
	font-weight:700;
}

@media screen and (max-width:500px){
	.layer_condition_list li dl dd.stxt{
		margin-top:5px;
		font-size:3vw;
	}

	.layer_condition_list li dl dt{
		font-size:4.5vw;
		font-weight:700;
	}
}

.layer_tabs_list{
	float:left;
	width:100%;
	margin-top:20px;
}

.layer_tabs_list li{
	float:left;
	width:48%;
	padding:15px 0;
	margin-top:10px;
	font-weight:700;
	font-size:18px;
	border-radius:15px;
	-webmit-border-radius:15px;
	-moz-border-radius:15px;
	background:#e0e0e0;
	border:1px solid #e0e0e0;
	cursor:pointer;
	text-align:center;
}

.layer_tabs_list li.over, .layer_tabs_list li:hover{
	background:#e6f2ff;
	border:1px solid #027bff;
	color:#027bff;
}

.layer_tabs_list li:nth-child(even){
	float:right;
}

.layer_tabs_list li:nth-child(1), .layer_tabs_list li:nth-child(2){
	margin-top:0;
}

.layer_tabs_list li dl, .layer_tabs_list li dl dt, .layer_tabs_list li dl dd{
	float:left;
	width:100%;
	text-align:center;
}

.layer_tabs_list li dl dt{
	font-size:18px;
	font-weight:700;
}

@media screen and (max-width:500px){
	.layer_tabs_list li dl dd.stxt{
		margin-top:5px;
		font-size:3vw;
	}

	.layer_tabs_list li dl dt{
		font-size:4.5vw;
		font-weight:700;
	}
}

.layer_agreement_list{
	float:left;
	width:100%;
	margin-top:20px;
}

.layer_agreement_list li{
	float:left;
	width:100%;
	margin-bottom:15px;
}

.layer_agreement_list li dl{
	float:left;
	width:100%;
}

.layer_agreement_list li dl dt{
	float:left;
	width:30px;
}

.layer_agreement_list li dl dd{
	float:right;
	width:calc(100% - 30px);
}

/* 1. 실제 체크박스는 화면에서 숨김 */
.agree_check {
    display: none;
}

/* 2. 체크박스를 대체할 라벨 스타일 */
.custom-checkbox {
    display: inline-block;
    width: 20px; /* 이미지 크기에 맞게 조절 */
    height: 20px;
    cursor: pointer;
    background-image: url('/images/ico_uncheck.png'); /* 기본 이미지 */
	background-size:100% 100%;
}

/* 3. 체크되었을 때의 스타일 */
.agree_check:checked + .custom-checkbox {
    background-image: url('/images/ico_checked.png'); /* 체크된 이미지 */
}