/* mypage css */
/* header */
* {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
	.wp_member {
		margin-top: 30px;
	}
	.wp_member * {
		font-family: 'Noto Sans KR',serif;
		font-size: 12px;
	}
	/* hamburger toggle */
	.wp_mp_toggle {
		cursor: pointer;
		height: 30px;
		left: 15px;
		position: absolute;	/* absolute,fixed */
		top: 15px;
		width: 30px;
		z-index: 2;
	}
	.wp_mp_toggle:hover {
		opacity: 0.8;
	}
	.wp_mp_toggle .wp_mp_toggle_bar,
	.wp_mp_toggle .wp_mp_toggle_bar::after,
	.wp_mp_toggle .wp_mp_toggle_bar::before {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		background: #121212;
		content: '';
		height: 2px;
		transition: all .5s;
		width: 100%;
	}
	.wp_mp_toggle .wp_mp_toggle_bar {
		margin-top: 0;
	}
	.wp_mp_toggle .wp_mp_toggle_bar::after {
		margin-top: 8px;
	}
	.wp_mp_toggle .wp_mp_toggle_bar::before {
		margin-top: -8px;
	}
	.wp_mp_toggle.wp_mp_toggle_on .wp_mp_toggle_bar {
		background: transparent;
	}
	.wp_mp_toggle.wp_mp_toggle_on .wp_mp_toggle_bar::after, .wp_mp_toggle.wp_mp_toggle_on .wp_mp_toggle_bar::before {
		background: #121212;
		margin-top: 0;
	}
	.wp_mp_toggle.wp_mp_toggle_on .wp_mp_toggle_bar::after {
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.wp_mp_toggle.wp_mp_toggle_on .wp_mp_toggle_bar::before {
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	
	/* pc & mo_menu */
	.wp_mp_header {
		display: -webkit-box;
		display: flex;
		transition: left .3s;
	}
	.wp_mp_header input {
		position: absolute;
		opacity: 0;
		z-index: -1;
	}
	.wp_mp_header .wp_mp_col {
		-webkit-box-flex: 1;
		flex: 1;
	}
	.wp_mp_header .wp_mp_col:last-child {
		margin-left: 0em;
	}

	/* Accordion styles */
	.wp_mp_header .wp_mp_tabs_wrap {
		border-radius: 0px;
		overflow: hidden;
		/* box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5); */
		border: 1px solid #ccc;
	}
	.wp_mp_header .wp_mp_tab {
		width: 100%;
		color: #121212;
		overflow: hidden;
	}
	.wp_mp_header .wp_mp_tab.wp_mp_nav_bd {
		border-bottom: 1px solid #ccc;
	}
	.wp_mp_header .wp_mp_tab_label {
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		padding: 1em;
		background: #f5f5f5;	/* #2c3e50 */
		font-weight: normal;
		font-size: 12px;
		cursor: pointer;
		margin: 0;
		/* Icon */
	}
	.wp_mp_header .wp_mp_tab_label:hover {
		background: #ddd;	/* #1a252f */
	}
	.wp_mp_header .wp_mp_tab_label::after {
		content: "\276F";
		width: 1em;
		height: 1em;
		text-align: center;
		-webkit-transition: all 0.35s;
		transition: all 0.3s;
	}
	.wp_mp_header .wp_mp_tab_content {
		max-height: 0;
		padding: 0 1em;
		color: #2c3e50;
		background: white;
		-webkit-transition: all 0.35s;
		transition: all 0.3s;
	}
	.wp_mp_header .tab-close {
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: end;
		justify-content: flex-end;
		padding: 10px;
		font-size: 12px;
		background: #2c3e50;
		cursor: pointer;
	}
	.wp_mp_header .tab-close:hover {
		background: #1a252f;
	}
	.wp_mp_header input:checked + .wp_mp_tab_label {
		background: #ddd;	/* #1a252f */
	}
	.wp_mp_header input:checked + .wp_mp_tab_label::after {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.wp_mp_header input:checked ~ .wp_mp_tab_content {
		max-height: 100vh;
		padding: 1em;
	}
	.wp_mp_header .wp_mp_tab_content ul {
		margin: 0;
		padding: 0;
	}
	.wp_mp_header .wp_mp_tab_content ul li {
		list-style: none;
		font-size: 12px;
		padding: 10px 15px;
		border-bottom: 1px dotted #ddd;
	}
	.wp_mp_header .wp_mp_tab_content ul li a {
		color: #333;
		text-decoration: none;
		transition: all 0.3s;
	}
	.wp_mp_header .wp_mp_tab_content ul li a:hover {
		color: #aaa;
	}
	
	
	@media (min-width: 992px){
		#wp_mp_wrap {width: 100%; margin-left: auto;margin-right: auto;}
		#wp_mp_wrap .wp_container {margin-left: 0;margin-right: 0;}
		.wp_mp_toggle {display: none;}
		.wp_mp_header {margin-top: 30px;margin-bottom: 30px;}
	}
	@media (max-width: 991px){		
		.wp_mp_toggle.wp_mp_toggle_on {z-index: 10000;}
		
		.wp_mp_header {position: absolute;left: -100%;padding-top: 50px;}		/* absolute,fixed */
		.wp_mp_header.wp_mp_toggle_on {left: 0;z-index: 9999;width: 60%;}
		.wp_mo_pdt30 {padding-top: 30px;}
	}
	@media (max-width: 768px){
		.wp_mp_header.wp_mp_toggle_on {left: 0;z-index: 9999;width: 80%;}
	}



/* 적립금/쿠폰수량 */
	.wp_mp_profile_wrap {border: 1px solid #ddd;margin-bottom: 30px;}
	.wp_mp_profile_wrap * {font-size: 12px;}
	.wp_mp_welcome {background-color: #f5f5f5;color: #121212;font-size: 12px;padding: 15px;text-align: left;}
	.wp_mp_had_wrap {padding: 20px 15px;text-align: center;font-size: 12px;}
	.wp_mp_had_wrap + .wp_mp_had_wrap:before {content:"";border-left: 1px solid #ddd;}
	.wp_mp_had_wrap .wp_point_color {font-size: 18px;color: #f00;font-weight: 500;padding: 0 5px;}


/* 주문/배송조회 */
	.wp_mp_order_wrap {margin-bottom: 50px;}
	.wp_mp_order_wrap * {font-size: 12px;}
	.wp_mp_order_wrap .wp_mp_p {color: #121212;font-size: 12px;padding: 10px;text-align: left;}
	.wp_mp_order_wrap .wp_mp_p.wp_mp_p_tit {color: #121212;font-size: 15px;font-weight: 500;}
	.wp_mp_order_wrap .wp_order_tit_wrap {overflow: hidden;}
	.wp_mp_order_wrap .wp_order_tit_wrap .wp_cp_tit_div {padding: 65px 20px 15px;border-right: 1px solid #aaa;background-color: #333;float: left;color: #fff;position: relative;}
	.wp_mp_order_wrap .wp_order_tit_wrap .wp_cp_tit_div:last-child {border: none;}
	.wp_mp_order_wrap .wp_order_title01 {width: 20%;}
	.wp_mp_order_wrap .wp_order_title02 {width: 20%;}
	.wp_mp_order_wrap .wp_order_title03 {width: 20%;}
	.wp_mp_order_wrap .wp_order_title04 {width: 20%;}
	.wp_mp_order_wrap .wp_order_title05 {width: 20%;}
	/* .wp_mp_order_wrap .wp_order_title06 {width: 15%;} */

	.wp_mp_order_wrap .wp_order_tit_wrap .wp_cp_tit_apsol {position: absolute;top: 15px;color: #aaa;font-size: 12px;}
	.wp_mp_order_wrap .wp_order_tit_wrap .wp_cp_tit_txt_l {font-size: 20px;color: #fff;display: block;}
	.wp_mp_order_wrap .wp_order_tit_wrap .wp_cp_tit_txt_l > em {font-size: 20px;display: block;text-align: right;font-style: normal;}
	.wp_mp_order_wrap .wp_order_tit_wrap .wp_cp_tit_txt_r {color: #fff;padding: 8px 20px 7px;position: absolute;right: 0;right: 26px;bottom: 24px; width: auto; font-weight: 300; line-height: 17px; text-align: center;border: 1px solid #6d6d6d;border-radius: 20px;}

	@media (max-width: 1000px){
		/* .wp_mp_order_wrap .wp_order_title01 {width: 100%;border-bottom: 1px solid #aaa;display: none;} */
		.wp_mp_order_wrap .wp_order_title01 {width: 33.33%;border-bottom: 1px solid #aaa;}
		.wp_mp_order_wrap .wp_order_title02 {width: 33.33%;border-bottom: 1px solid #aaa;}
		.wp_mp_order_wrap .wp_order_title03 {width: 33.33%;border-bottom: 1px solid #aaa;}
		.wp_mp_order_wrap .wp_order_title04 {width: 50%;}
		.wp_mp_order_wrap .wp_order_title05 {width: 50%;}

		.wp_mp_order_wrap .wp_order_tit_wrap .wp_cp_tit_txt_l,.wp_mp_order_wrap .wp_order_tit_wrap .wp_cp_tit_txt_l > em {font-size: 20px;}
	}



/* shop_basket & wishlist */
	.wp_mp_wish_wrap {margin-bottom: 50px;}
	.wp_mp_wish_wrap * {font-size: 12px;}
	.wp_mp_wish_wrap .wp_mp_p {color: #121212;font-size: 12px;padding: 10px;text-align: left;}
	.wp_mp_wish_wrap .wp_mp_p.wp_mp_p_tit {color: #121212;font-size: 15px;font-weight: 500;}
	.wp_mp_wish_wrap .wp_list_none_p {font-size: inherit;padding:50px 20px;text-align: center;}
		
	.wp_mp_wish_wrap .wp_bdb_1 {border-bottom: 1px solid #aaa;}
	.wp_mp_wish_wrap .list_li {font-size: 12px;letter-spacing: -0.2px; display: inline-block;margin-top: 0px;margin-bottom: 0px;transition: all 0.5s ease-in-out;vertical-align: top; padding: 0 !important;float: none !important;border-top: 1px dashed #ddd;}
	.wp_mp_wish_wrap .list_li:nth-child(1) {border-top: none;}
	.wp_mp_wish_wrap .list_li:nth-child(2) {border-top: none;}
	.wp_mp_wish_wrap .list_li a {display: flex; align-items: center;}
	.wp_mp_wish_wrap .list_li .wp_mp_left {padding: 10px;}
	.wp_mp_wish_wrap .list_li .wp_mp_left .wp_shop_frame { position: relative; padding-top: 99%; overflow: hidden;/* border: 1px solid #ddd; */}
	/*
		== wp_shop_frame 비율 ==
		1:1 : padding-top: 100%; ratio
		2:1 : padding-top: 50%
		1:2 : padding-top: 200%
		4:3 : padding-top: 75%
		16:9 : padding-top: 56.25%
	*/
	.wp_mp_wish_wrap .list_li .wp_mp_left .wp_shop_frame img {position: absolute; top: 0; left: 0; right: 0; bottom: 0; max-width: 100%; height: auto; margin: auto 0;}
	.wp_mp_wish_wrap .list_li .wp_mp_right .wp_shop_tit {padding: 5px 9px 5px 10px;}
	
	.wp_mp_wish_wrap .wp_shop_tit {font-weight: bold;color: #121212;font-size: 1.3em;margin-bottom: 0;/* text-decoration: underline; */}
	.wp_mp_wish_wrap .brand {padding-top: 00px;width: 100%;}
	.wp_mp_wish_wrap .discount {padding-top: 10px;}
	.wp_mp_wish_wrap .discount .sell {display: block;color: #aaa; padding-top:0;}
	.wp_mp_wish_wrap .discount .sell .num {text-decoration:line-through;}
	.wp_mp_wish_wrap .discount .sale {display: block;color: #ff4800;padding-top: 0;}
	.wp_mp_wish_wrap .notdiscount .sell {display: block;color: #121212;}
	.wp_mp_wish_wrap .price .soldout * {color: #aaa;text-decoration:line-through;cursor:default;}

	.wp_mp_wish_wrap .sale .num, .wp_mp_wish_wrap .sale .price, .wp_mp_wish_wrap .notdiscount .num {font-weight: 600;}
	.wp_mp_wish_wrap .unit {display: inline;}
	.wp_mp_wish_wrap .wp_shop_frame > img {width: 100%;}
	.wp_mp_wish_wrap .info {padding: 0 10px 10px;color: #5d5d5d;}

	.wp_mp_wish_wrap .list_li:hover a, .wp_mp_wish_wrap .list_li.hover a {background-color: #f8f8f8;}
	
	.wp_mp_wish_wrap .wp_container #wp_skin01 .wp_pager a {font-size: 20px;}
	@media (max-width: 768px){
		.wp_mp_wish_wrap .list_li:nth-child(2) {border-top: 1px dashed #ddd;}
		.wp_mp_wish_wrap .wp_shop .list_li {transition: all 0s ease-in-out;}
		.wp_mp_wish_wrap .wp_container #wp_skin01 .wp_pager a {font-size: 20px;}
	}

	@media (max-width: 640px){
		.wp_mp_wish_wrap .wp_shop .list_li .wp_mp_left {padding:0;}
	}
	
	/* 아이콘 */
	.wp_mp_wish_wrap .prd_icon { position:absolute; top:100%; left:0; margin-top:-25px;}
	.wp_mp_wish_wrap .prd_icon:after { display:block; clear:both; content:"";}
	.wp_mp_wish_wrap .prd_icon span { display:inline-block; float:left; border-radius:0; border:0; padding:0; font-size:0; font-weight:500; color:#fff; text-align:center; vertical-align:top; text-transform:uppercase; }
	.wp_mp_wish_wrap .prd_icon span:first-of-type { margin-left:0;}

	/* 아이콘종류 */
	.wp_mp_wish_wrap .prd_icon .coupon { background:#808080;}
	.wp_mp_wish_wrap .prd_icon .best { background:#515151;}
	.wp_mp_wish_wrap .prd_icon .new { background:#020202;}
	.wp_mp_wish_wrap .prd_icon .sale { background:#e1a35e;}
	.wp_mp_wish_wrap .prd_icon .soldout { padding:0 8px; width:auto; font-size:12px; background:#d4d4d4;}
	@media screen and (min-width:541px) {
		.wp_mp_wish_wrap .prd_icon span { width:25px; height:25px; line-height:25px;}
		.wp_mp_wish_wrap .prd_icon span:first-letter {font-size:12px;}
	}
	@media screen and (max-width:540px) {
		.wp_mp_wish_wrap .prd_icon span {width:26px; height:26px; line-height:26px;}
		.wp_mp_wish_wrap .prd_icon span:first-letter {font-size:12px;}
	}



/* 내가 쓴 글(상품문의/상품후기) */
	.wp_mp_board_wrap {margin-bottom: 50px;}
	.wp_mp_board_wrap * {font-size: 12px;}
	.wp_mp_board_wrap .wp_mp_p {color: #121212;font-size: 12px;padding: 10px;text-align: left;}
	.wp_mp_board_wrap .wp_mp_p.wp_mp_p_tit {color: #121212;font-size: 15px;font-weight: 500;}
	.wp_mp_board_wrap .wp_ellipsis {overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
	.wp_mp_board_wrap .wp_bdb_1 {border-bottom: 1px solid #aaa;}
	.wp_mp_board_wrap .wp_board_li a {display: inline-block;padding: 0px;margin: 0;text-decoration: none;width: 100%;color: #121212;}
	.wp_mp_board_wrap .wp_board_li .wp_reply_ok {background-color: #666;margin-right: 5px;padding: 1px 3px;color: #fff;font-size: 12px;border: 1px solid #666;}
	.wp_mp_board_wrap .wp_board_li .wp_reply_wait {background-color: #fff;margin-right: 5px;padding: 1px 3px;color: #121212;font-size: 12px;border: 1px solid #666;}
	.wp_mp_board_wrap .wp_board_li .wp_reply_repair {background-color: #ddd;margin-right: 5px;padding: 1px 3px;color: #121212;font-size: 12px;border: 1px solid #666;}

	.wp_mp_board_wrap .wp_board_li:hover {background-color: #f8f8f8;}
	.wp_mp_board_wrap .wp_board_li p {padding: 10px 0;}
	.wp_mp_board_wrap .wp_board_li + .wp_board_li {border-top: 1px dashed #ddd;}
	.wp_mp_board_wrap .wp_half_wrap .wp_board_li:last-child {border-bottom: 1px solid #aaa;}
	@media (min-width: 992px) {
		.wp_mp_board_wrap .wp_half_wrap:nth-child(1) {padding-left: 0;}
		.wp_mp_board_wrap .wp_half_wrap:nth-child(2) {padding-right: 0;}
	}
	@media (max-width: 991px) {
		.wp_mp_board_wrap .wp_half_wrap {padding: 0;margin-bottom: 30px;border-bottom: 1px solid #ddd;}
	}



