@charset "utf-8";

/******************************
// 실시간 견적현황
******************************/
.estimate_btn {
	width: 100%;
	height: 110px;
	margin-top: 30px;
	background: linear-gradient(to right, #FBE0E0 0%, #F8CACA 50%, #F2BBBB 100%);
	border-radius: 10px;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.16);
	font-size: 25px;
	font-weight: bold;
	color: #000;
}

.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 {}

.estimate_list > li {
	display: flex;
	height: 195px;
	align-items: center;
}

.estimate_list > li:not(:last-child) {
	border-bottom: 1px solid #BEBEBE;
}

.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: 1px solid #F8CACA;
	border-radius: 2.5px;
	font-size: 14px;
	line-height: 23px;
}

.estimate_list > li .info .timer {
	display: inline-block;
	width: 100%;
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #E74C3C;
}

@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: #F8CACA;
	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: 110px;
}

.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 {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	/* padding: 0 30px; */
	box-sizing: border-box;
}

/* 상품 컨디션 영역 */
.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 {
	width: calc(100% + 30px);
	height: 130px;
	overflow-x: auto;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	-webkit-overflow-scrolling: touch;	/* iOS 부드러운 스크롤 */
}

.preview_area .image_btn {
	display: flex;
	flex: 0 0 auto;
	width: 130px;
	height: 130px;
	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 {
	position: relative;
	flex: 0 0 auto;
	width: 130px;
	height: 130px;
	margin-left: 15px; /* 기존 썸네일 간격 유지 */
	box-sizing: border-box;
	border: 1px solid #707070; /* 기존 테두리 질감 유지(선택) */
}

.preview_area .img_box:last-child {
	margin-right: 30px;
}

.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;
}


@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 {
		width: calc(100% + 6vw);
		height: 26vw;
	}

	.preview_area .image_btn {
		width: 26vw;
		height: 26vw;
	}

	.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: 26vw;
		height: 26vw;
		margin-left: 3vw; /* 기존 썸네일 간격 유지 */
	}
	
	.preview_area .img_box:last-child {
		margin-right: 6vw;
	}
	
	.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);
}

#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 .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;
}

@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_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;
	height: 620px;
	margin: 0 30px;
}

@media screen and (max-width: 500px) {
	#form_area .item {
		width: 88vw;
		height: 68vh;
		margin: 0 6vw;
	}
}


.estimate_btn_box2 .home_btn {
	display:none;
}

/*
본인인증 후 알림창
*/

.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: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
}

.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 {
	height: auto;
	padding: 15px 0;
	/* align-items: flex-start; */
}

.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 .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;
	}
}