@charset "utf-8";

/*
 * Copyright    :    benefitall.co.kr
 * SOLUTION     :    HYSSENCE 3.0 PLUS
 * File         :    skin.css
 * SUMMARY      :    스킨 디자인(메인)
 */

/* 본 소스는 모두 비올의 지적 재산이며, 이에 대해 무단도용 및 수정 재배포/재편집등을 절대 금하며 적발 시 법적 대응을 할 것임을 경고합니다. */


.coding_refresh {position:fixed; right:0; top:50%; z-index:100000}
.coding_refresh .refresh {display:flex; justify-content:center; align-items:center; flex-direction:column; background:red; color:#fff; border:0; font-size:11px; text-align:center; width:30px; height:30px; color:#fff;}
.coding_refresh .close {display:flex; justify-content:center; align-items:center; flex-direction:column; background:black; color:#fff; border:0; font-size:11px; text-align:center; width:30px; height:30px; color:#fff;}
.coding_refresh.if_close {display:none;}

html.if_flatform_ios {}
html.if_flatform_android {}
html.if_flatform_web {}

html.if_flatform_web .if_web_hide {display:none;}
html.if_flatform_ios .if_app_hide {display:none;}
html.if_flatform_android .if_app_hide {display:none;}




/* 공통 디자인 요소 -------------------------------------------------------------------------------------------------------------------------------- */
:root {
	--font-title:'TheJamsil';

    --color-blue:#1931ff;
    --color-blue-rgba:25, 49, 255;
    --color-purple:#7263ff;
	--color-purple-rgba:114, 99, 255;
    --color-red:#ff2c2c;
    --color-red-rgba:255, 44, 44;
    --color-yellow:#ffd500;
	--color-gradient:linear-gradient(107deg, rgb(114, 99, 255) -4%, rgb(25, 49, 255) 93%);

	--black-dark:#222;
	--black-mid:#414141;
	--black-gray:#828282;

	--gray:#c4c4c4;
	--gray-clear:#dedede;
	--gray-mid:#ececec;
	--gray-light:#f3f3f3;
	--gray-white:#f9f9f9;

	--gap:15px;
	--gap-opp:-15px;
	--gap-wide:30px;

	--motion-cubic:cubic-bezier(0.19, 1, 0.22, 1);
}


/* 레이아웃 구성 ======================================== */
.FlexNone {flex:none}
.FlexScroll {flex:1; overflow-x:hidden; overflow-y:auto; box-sizing:border-box; padding:20px var(--gap) 110px;}
.FlexScroll.type_nogap {padding-left:0px; padding-right:0px; padding-top:0px;}
.FlexWrap {display:flex; justify-content:flex-start; align-items:stretch; flex-direction:column; overflow:hidden; flex:1}

html.if_flatform_ios .FlexScroll {padding-bottom:170px;}
html.if_hide_fix .FlexScroll {padding-bottom:var(--gap-wide);}




/* 페이지타이틀 ========================================= */
.sc_PageTitle {position:relative; box-sizing:border-box; height:70px; display:flex; justify-content:stretch; align-items:center; flex-direction:row;}
.sc_PageTitle .center {text-align:center; display:flex; justify-content:center; align-items:center; flex-direction:row; height:100%; color:#000; font-size:20px; font-weight:700; line-height:1; gap:3px; color:#000; flex:1}
.sc_PageTitle .center {padding:0 var(--gap);}
.sc_PageTitle .center> em {color:var(--color-blue); font-weight:600;}
.sc_PageTitle .side {display:flex; justify-content:center; align-items:center; flex-direction:column; position:absolute; top:0; height:100%;}
.sc_PageTitle .side.left {left:0}
.sc_PageTitle .side.right {right:0}
.sc_PageTitle .btn {padding:0 var(--gap); display:flex; justify-content:center; align-items:center; flex-direction:column; height:100%;}
.sc_PageTitle .btn:before {content:""; background-size:auto 13px !important; background-repeat:no-repeat !important; background-position:center center; width:13px; height:13px;}
.sc_PageTitle .btn_back:before {background-image:url('../images/arrow_left_outline.svg');}
.sc_PageTitle .btn_close:before {background-image:url('../images/ic_close.svg');}
.sc_PageTitle .btn_find:before {background-image:url('../images/ic_find.svg'); background-size:100% !important; width:18px; height:18px;}
.sc_PageTitle .btn_wish:before {background-image: url('../images/btn_wish.svg');background-size:100% !important; width:20px; height:20px; opacity:0.2;}
.sc_PageTitle .btn_wish.hit:before {filter: invert(35%) sepia(56%) saturate(5958%) hue-rotate(346deg) brightness(104%) contrast(100%); opacity:1;}
.sc_PageTitle .btn_myset:before {background-image: url('../images/ic_myset.svg');background-size:100% !important; width:25px; height:30px;}
.sc_PageTitle .btn_write:before {background-image: url('../images/ic_write.svg');background-size:100% !important; width:18px; height:30px;}

.sc_PageTitle .process {display:flex; flex-direction:row; justify-content:center; align-items:center; margin-left:15px; gap:2px; z-index:0}
.sc_PageTitle .process .num {width:18px; height:18px; display:flex; justify-content: center; align-items: center; flex-direction:column; position:relative;}
.sc_PageTitle .process .num .dot {width:6px; height:6px; border-radius:100px; position:relative; background:var(--gray-clear); z-index:2}
.sc_PageTitle .process .num:after {content:""; width:100%; height:100%; background:var(--color-blue); border-radius:100px; z-index:1; position:absolute; left:0; top:0; display:none;}
.sc_PageTitle .process .num:after {animation:mv_process_dot 0.8s ease infinite; -webkit-animation:mv_process_dot 0.8s ease infinite; transform:scale(0);}
.sc_PageTitle .process .num.hit .dot {background:var(--color-blue);}
.sc_PageTitle .process .num.hit:after {display:block;}
@-webkit-keyframes mv_process_dot {
    0% {transform:scale(0);}
    90% {transform:scale(1.1);}
	100% {transform:scale(1.2); opacity:0;}
}
@keyframes mv_process_dot {
    0% {transform:scale(0);}
    90% {transform:scale(1.1);}
	100% {transform:scale(1.2); opacity:0;}
}

.sc_PageTitle.type_border {border-bottom:1px solid var(--gray-light);}
.sc_PageTitle.type_left .center {text-align:left; justify-content:flex-start; flex:none}
.sc_PageTitle.type_left .side+ .center {padding-left:0px;}
.sc_PageTitle.type_left .side.left {position:static;}
.sc_PageTitle.type_white .center {color:#fff;}
.sc_PageTitle.type_white .btn:before {filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(233deg) brightness(106%) contrast(102%);}

html.if_flatform_ios .sc_PageTitle {margin-top:env(safe-area-inset-top);}







/* 페이지메뉴 ========================================= */
.sc_PageNavi {border-top:1px solid var(--gray-light);}
.sc_PageNavi .tab_menu {display:flex; justify-content:center; align-items:center; flex-direction:row;}
.sc_PageNavi .tab_menu li {flex:1; background:var(--gray-light);}
.sc_PageNavi .tab_menu .tab {display:flex; justify-content:center; align-items:center; flex-direction:column; color:var(--black-gray); font-size:14px; font-weight:600; height:50px;}
.sc_PageNavi .tab_menu li.hit .tab {background:#fff; color:#000;}




/* 하단 고정메뉴 ======================================== */
.sc_Fix {position:fixed; left:0; bottom:0; width:100%; z-index:300; background:rgba(0,0,0,0.9); border-radius:30px 30px 0 0; -webkit-backdrop-filter: blur(50px);  backdrop-filter: blur(50px);}
.sc_Fix li {list-style:none; flex:1;}
.sc_Fix ul {display:flex; justify-content:center; align-items:center; flex-direction:row; padding:0 5px;}
.sc_Fix .btn {height:75px; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity:0.4; box-sizing:border-box;}
.sc_Fix .btn .picto {display:inline-flex; justify-content: center; align-items: center; flex-direction:column; position:relative; width:24px; height:24px; margin-top:3px;}
.sc_Fix .btn .picto img {height:22px; position:relative; z-index:2; display:block; vertical-align:middle}
.sc_Fix .btn .picto:before {content:"";  width:2px; height:2px; border-radius:2px; position:absolute; left:50%; top:50%; opacity:0; transform:scale(0); -webkit-transform:scale(0); margin-left:-1px;}
.sc_Fix .btn .picto:before {box-shadow: 12px 0px 0 0 #fff, 7.4px 9.4px 0 0 #fff, -2.6px 11.6px 0 0 #fff, -10.8px 5.2px 0 0 #fff, -10.8px -5.2px 0 0 #fff, -2.6px -11.6px 0 0 #fff, 7.4px -9.4px 0 0 #fff;}
.sc_Fix .btn .menu {font-size:12px; color:#fff; line-height:1; margin-top:10px; font-weight:600;}
.sc_Fix li.hit .btn {opacity:1}
.sc_Fix li.hit .btn .picto:before {animation:mv_fix_hit 0.8s ease; -webkit-animation:mv_fix_hit 0.8s ease; animation-fill-mode:forwards; -webkit-animation-fill-mode:forwards}
.sc_Fix li.hit .btn .picto img {animation:mv_fix_hit_icon 0.4s ease; -webkit-animation:mv_fix_hit_icon 0.4s ease; animation-fill-mode:forwards; -webkit-animation-fill-mode:forwards}

@-webkit-keyframes mv_fix_hit_icon {
    0% {transform:scale(1.0); -webkit-transform:scale(1.0);}
    30% {transform:scale(0.6); -webkit-transform:scale(0.6);}
	70% {transform:scale(1.2); -webkit-transform:scale(1.2);}
	100% {transform:scale(1.0); -webkit-transform:scale(1.0);}
}
@keyframes mv_fix_hit_icon {
    0% {transform:scale(1.0); -webkit-transform:scale(1.0);}
    30% {transform:scale(0.6); -webkit-transform:scale(0.6);}
	70% {transform:scale(1.2); -webkit-transform:scale(1.2);}
	100% {transform:scale(1.0); -webkit-transform:scale(1.0);}
}
@-webkit-keyframes mv_fix_hit {
    0% {opacity:0; transform:scale(0); -webkit-transform:scale(0.1);}
    30% {opacity:1; transform:scale(1.5); -webkit-transform:scale(1.5);}
	100% {opacity:0; transform:scale(1.7); -webkit-transform:scale(1.7);}
}
@keyframes mv_fix_hit {
    0% {opacity:0; transform:scale(0); -webkit-transform:scale(0.1);}
    30% {opacity:1; transform:scale(1.5); -webkit-transform:scale(1.5);}
	100% {opacity:0; transform:scale(1.7); -webkit-transform:scale(1.7);}
}

html.if_hide_fix .sc_Fix {display:none;}
html.if_flatform_ios .sc_Fix {padding-bottom:env(safe-area-inset-bottom);}
html.if_flatform_ios .sc_Fix .btn {padding-top:5px;}






/* 우측 fly ======================================== */
.sc_Fly {position:fixed; right:10px; bottom:80px; z-index:150; display:flex; justify-content:center; align-items:center; flex-direction:column; gap:10px; display:none;}
.sc_Fly.if_scroll {}
.sc_Fly .go_top {width:40px; height:40px; border:0.8px solid #ccc; border-radius:100px; box-sizing:border-box;}
.sc_Fly .go_top {transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; z-index: 1; background:#fff url('../images/c_img/ic_gotop.svg') center center no-repeat;}
.sc_Fly .go_top {background-size:12px; backdrop-filter: blur(1px); -webkit-backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.7);}
html.if_hide_fix .sc_Fly {display:none;}




/* 그룹 타이틀 ======================================== */
.sc_GroupTit {font-weight:600; margin-bottom:15px; display: flex; flex-direction: row; justify-content:flex-start; align-items: center; flex-wrap:wrap; gap:5px}
.sc_GroupTit .tit {font-size:17px; color:#000; font-weight:700; line-height: 1;}
.sc_GroupTit .sub_txt {font-size:12px; color:#aaa; font-weight:400;}
.sc_GroupTit .sub_txt strong {color:var(--color-red); font-weight:600;}
.sc_GroupTit .sub_txt em {color:#000; font-weight:600;}
.sc_GroupTit .btn_more {font-weight:500; font-size:13px; color:#000; height:20px; display:flex; justify-content: center; align-items: center; flex-direction:column; margin-left:auto}
.sc_GroupTit .btn_more {opacity: 0.4; filter: alpha(opacity=60); -ms-filter:alpha(opacity=60); line-height:1;}
.sc_GroupTit .btn_more strong {background:transparent url('../images/arrow_right_outline.svg') right center no-repeat; background-size:5px 10px !important; padding-right:10px; line-height:1;}




/* 모달창 ========================================= */
.sy_Modal {position:fixed; left:0; top:0; width:100%; height:100%; display:flex; justify-content:center; align-items:stretch; flex-direction:column; box-sizing:border-box; z-index:500; padding:30px; visibility:hidden}
.sy_Modal .wrapping {position:relative; z-index:2; background:#fff; border-radius:30px; transform:translateY(100%); transition:all 900ms var(--motion-cubic); max-height:100%; box-sizing:border-box; border-radius:40px;}
.sy_Modal .wrapping {max-height:100%; display:flex; justify-content:center; align-items:stretch; flex-direction:column; overflow:hidden;}
.sy_Modal .bg {position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.6); z-index:1; opacity:0; transition:all 0.3s ease-out; -webkit-transition:all 0.3s ease-out;}
.sy_Modal .confirm {padding:40px var(--gap-wide); flex:1; overflow-y:auto;}
.sy_Modal .modal_title {flex:none; text-align:center; padding-top:30px; color:#000; font-weight:700; font-size:19px;}
.sy_Modal .comment {text-align:center;}
.sy_Modal .comment .first_tx {color:#000; font-weight:700; font-size:19px;}
.sy_Modal .comment .first_tx strong {color:var(--color-red);}
.sy_Modal .comment .second_tx {color:var(--black-gray); font-size:14px; margin-top:10px; line-height:1.4;}
.sy_Modal .comment .special_info {color:var(--color-red); margin-top:5px; font-weight:600;}
.sy_Modal .quiz_form {}
.sy_Modal .quiz_form dl+ dl {margin-top:20px;}
.sy_Modal .quiz_form dt {display:flex; justify-content:flex-start; align-items:flex-start; flex-direction:row; font-weight:600; color:#000; font-size:15px; gap:5px; line-height:1.4;}
.sy_Modal .quiz_form dt strong {flex:none; color:var(--color-blue); font-weight:700;}
.sy_Modal .quiz_form dd {margin-top:8px;}

.sy_Modal .attend_rule {margin:var(--gap-wide) 0;}
.sy_Modal .attend_rule .about_event {margin:0 var(--gap-wide); margin-top:0px;}

.sy_Modal .about_event {margin-top:15px; background:var(--gray-light); border-radius:15px; padding:var(--gap); flex:1; color:#000;}
.sy_Modal .about_event dl {display:flex; justify-content:flex-start; align-items:center; flex-direction:row; }
.sy_Modal .about_event dl+ dl {margin-top:5px;}
.sy_Modal .about_event dt {width:70px; opacity:0.35;}
.sy_Modal .about_event dd {flex:1; font-weight:500;}
.sy_Modal .about_event.type_cash {background:rgba(var(--color-red-rgba),0.1); color:var(--color-red);}

.sy_Modal .condition_list {margin-top:20px; overflow-x:auto;}
.sy_Modal .condition_list ul {display:flex; justify-content:flex-start; align-items:center; flex-direction:row; width:max-content; padding:0 var(--gap-wide); gap:10px}
.sy_Modal .condition_list li {display:flex; justify-content:stretch; align-items:stretch; flex-direction:column; width:100px; text-align:center;}
.sy_Modal .condition_list .total_day {border:1px solid var(--gray-mid); border-radius:10px; color:#000; height:40px; display:flex; justify-content:center; align-items:center; flex-direction:column; font-weight:600; font-size:14px;}
.sy_Modal .condition_list .benefit {display:flex; justify-content:center; align-items:center; flex-direction:column; gap:5px; background:rgba(var(--color-blue-rgba),0.1); height:70px; border-radius:10px;}
.sy_Modal .condition_list .benefit {border:1px dashed var(--color-blue); box-sizing:border-box; margin-top:-1px;}
.sy_Modal .condition_list .benefit .date {font-size:12px; color:var(--color-blue); opacity:0.7;}

.sy_Modal .c_btnbox.type_fix {padding:var(--gap-wide);}

.sy_Modal.type_downup {padding:0px; padding-top:70px; justify-content:flex-end;}
.sy_Modal.type_downup .wrapping {border-bottom-left-radius:0; border-bottom-right-radius:0;}
.sy_Modal.if_open {visibility:visible}
.sy_Modal.if_open .bg {opacity:1;}
.sy_Modal.if_open .wrapping {transform:translateY(0);}






/* 풀레이어 ========================================= */
.sy_LayerPop {position:fixed; right:0; top:0; width:100%; height:100%; z-index:500; background:#fff; display:flex; justify-content:stretch; align-items:stretch; flex-direction:column; box-sizing:border-box; overflow:hidden;}
.sy_LayerPop {transform:translateX(100%); transition:all 900ms var(--motion-cubic)}
.sy_LayerPop .wrapping {flex:1; overflow-y:auto; padding:var(--gap)}
.sy_LayerPop .additional {color:var(--color-red); margin-bottom:15px;}
.sy_LayerPop .sc_PageTitle {flex:none}
.sy_LayerPop.if_open {transform:translateX(0);}
.if_open_layer .sy_LayerPop {transform:translateX(0);} /* 약관에서 */







/* 폼요소 ======================================== */
.sc_FormPage {}
.sc_FormPage .form_dl {position:relative;}
.sc_FormPage .form_dl+ .form_dl {margin-top:15px;}
.sc_FormPage .form_dl+ .form_set {margin-top:15px;}
.sc_FormPage .form_set+ .form_dl {margin-top:15px;}
.sc_FormPage .form_dl+ .sc_GroupTit {margin-top:30px;}
.sc_FormPage .form_set+ .sc_GroupTit {margin-top:30px;}
.sc_FormPage .form_set+ .form_set {margin-top:15px;}
.sc_FormPage .c_btnbox.type_small {margin-top:20px;}

.sc_FormPage .form_dt {position:absolute; left:var(--gap); top:0; height:55px; display:flex; justify-content:center; align-items:flex-start; flex-direction:column; z-index:3; pointer-events:none;}
.sc_FormPage .form_dt .tit {font-size:12px; color:var(--black-mid); font-weight:500; position:relative;}
.sc_FormPage .form_dd {color:#000;}
.sc_FormPage input.input_design {padding-left:80px;}

.sc_FormPage .form_set dl.form_dl {margin-top:0px !important;}
.sc_FormPage .form_set dl.form_dl:first-of-type input.input_design {border-bottom-left-radius:0px; border-bottom-right-radius:0px;}
.sc_FormPage .form_set dl.form_dl:last-of-type input.input_design {border-top-left-radius:0px; border-top-right-radius:0px; margin-top:-1px;}
.sc_FormPage .form_set dl.form_dl:last-of-type .c_labelbox {border-top-left-radius:0px; border-top-right-radius:0px; margin-top:-1px;}
.sc_FormPage .form_set dl.form_dl:first-of-type .c_labelbox {border-bottom-left-radius:0px; border-bottom-right-radius:0px;}
.sc_FormPage .form_set dl.form_dl.this_set_other input.input_design {border-radius:0px; margin-top:-1px;}

.sc_FormPage .with_btn {display: flex; flex-direction:row; justify-content: flex-start; align-items: center; gap:5px; position:relative;}
.sc_FormPage .with_btn * {flex:1}
.sc_FormPage .with_btn .c_btn {position:absolute; right:10px; top:50%; transform:translateY(-50%); z-index:5; width:70px; height:30px; border-radius:100px; color:var(--color-blue); }
.sc_FormPage .with_btn .c_btn {background:rgba(var(--color-blue-rgba),0.1) !important; font-size:12px;}

.sc_FormPage .tip_txt {font-size:11px; color:var(--black-gray); line-height: 1.3; text-align:left; margin:5px 0 0 5px;}
.sc_FormPage .tip_txt strong {color:var(--color-red); font-weight:600;}
.sc_FormPage .tip_txt em {color:#000; font-weight:600;}
.sc_FormPage .tip_txt a {text-decoration:underline; font-weight:500;}

.sc_FormPage .c_labelbox {padding-left:80px; height:55px; border-radius:10px; border:1px solid var(--gray-mid);}
.sc_FormPage *+ .text_design {margin-top:10px;}

.sc_FormPage .cart_list {margin-bottom:20px;}
.sc_FormPage .cart_list .ul {}
.sc_FormPage .cart_list .li+ .li {padding-top:15px; border-top:2px solid #f2f2f2;}

.sc_FormPage .cart_item {display:flex; justify-content: flex-start; align-items: flex-start; flex-direction:row; gap:10px}
.sc_FormPage .cart_item dt {width:80px; display:flex; justify-content:center; align-items:center; flex-direction:column; fleX:none}
.sc_FormPage .cart_item dd {flex:1; }
.sc_FormPage .cart_item .top_name {display:flex; justify-content:flex-start; align-items:center; flex-direction:row}
.sc_FormPage .cart_item .c_btnbox {margin:0px;}
.sc_FormPage .cart_item .thumb {border-radius:10px; overflow:hidden;}
.sc_FormPage .cart_item .thumb img {width:100%;}
.sc_FormPage .cart_item .item_name {flex: 1; color:#000; font-size:14px; font-weight:600; line-height: 1.4;}
.sc_FormPage .cart_item .option_list {margin-top:10px;}
.sc_FormPage .cart_item .option_list li {display:flex; flex-direction:row; justify-content: center; align-items:flex-start; flex-wrap:wrap; padding:10px 0; border-top:1px dashed #e5e5e5; gap:10px 30px;}
.sc_FormPage .cart_item .this_ticket {margin-left:auto; justify-content:flex-end !important}
.sc_FormPage .cart_item .opt_ctrl {width: 100%; padding-top: 0; box-sizing: border-box; display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; gap:5px;}
.sc_FormPage .cart_item .opt_ctrl div {display:flex; justify-content:flex-start; align-items: center; flex-direction:row; gap:5px; flex-wrap:wrap}
.sc_FormPage .cart_item .opt_ctrl .limit_day {color:var(--color-red);}
.sc_FormPage .cart_item .opt_ctrl .c_tag {width:63px; padding:0px !important;}
.sc_FormPage .cart_item .opt_name {color:#999; line-height:1.35; box-sizing: border-box; font-weight:500; flex:1; display:flex; justify-content: flex-start; align-items: flex-start; flex-direction:column; flex-wrap:wrap; gap:5px}
.sc_FormPage .cart_item .opt_name strong {display:inline; word-wrap:break-word; word-break:keep-all; white-space:normal;}
.sc_FormPage .cart_item .opt_name .date {color: #0065e3; box-sizing: border-box; position: relative; padding-right:10px; background:transparent url('../images/c_img/ic_date.svg') left center no-repeat;}
.sc_FormPage .cart_item .opt_name .date {background-size:12px; padding-left:17px; white-space:nowrap}
.sc_FormPage .cart_item .opt_name .ess_tx {font-weight:500; display: none; margin-right:5px;}
.sc_FormPage .cart_item .opt_name .ess_tx.add {color:#48A1E5; display: inline;}
.sc_FormPage .cart_item .opt_price {margin-left: auto; display: flex; flex-direction: row; justify-content: flex-end; align-items: center; gap:10px}
.sc_FormPage .cart_item .opt_price .price {font-weight:600; font-size:13px; color:#000; text-align:right; white-space:nowrap}
.sc_FormPage .cart_item .opt_price .btn_delete {width:30px; height:30px; background:transparent url('../images/c_img/ic_delete.svg') center center no-repeat; background-size:13px; border:1px solid #e5e5e5; box-sizing:border-box;}

.sc_FormPage .cart_item .option_total {display:flex; justify-content: flex-start; align-items: flex-end; flex-direction:column; border-top:1px dashed #e5e5e5; padding-top:10px; gap:8px}
.sc_FormPage .cart_item .option_total ul {display:flex; justify-content: flex-end; align-items: center; flex-direction:row; flex-wrap:wrap; gap:8px 10px;}
.sc_FormPage .cart_item .option_total li {display:flex; justify-content: flex-end; align-items: center; flex-direction:row; gap:5px; font-size:13px; line-height:1; color:#333; white-space:nowrap}
.sc_FormPage .cart_item .option_total .opt {color:#888;}
.sc_FormPage .cart_item .option_total .value { display: flex; flex-direction: row; justify-content: flex-start; align-items: center; font-weight:600; gap:5px}
.sc_FormPage .cart_item .option_total .value strong {color:#e10000; font-weight:500;}

.sc_FormPage .cart_sum {display:flex; justify-content: stretch; align-items: stretch; flex-direction:column; gap:10px; margin-top:20px; background:var(--gray-white); padding:var(--gap); border-radius:15px;}
.sc_FormPage .cart_sum .total_number {font-size:14px; font-weight:600; color:#000; display:flex; justify-content: flex-start; align-items: center; flex-direction:row; gap:3px; margin-bottom:10px; height:20px;}
.sc_FormPage .cart_sum .total_number {background:transparent url('../images/c_img/ic_cart.svg') left center no-repeat; padding-left:20px; background-size:15px 15px;}
.sc_FormPage .cart_sum dl {display:flex; justify-content: space-between; align-items: center; flex-direction:row; gap:5px}
.sc_FormPage .cart_sum dl * {font-size:14px; color:#000; line-height:1; font-weight:600;}
.sc_FormPage .cart_sum dt {font-weight:500;}
.sc_FormPage .cart_sum dd strong {font-weight:700;}
.sc_FormPage .cart_sum .this_last {border-top:2px dashed #eee; padding-top:10px; margin-top:10px;}
.sc_FormPage .cart_sum .this_last * {color:var(--color-blue);}
.sc_FormPage .cart_sum .this_last dd * {font-size:1.3em;}

.sc_FormPage .order_info {margin-top:-20px; box-sizing:border-box; padding:var(--gap); border-radius:10px; background:rgba(var(--color-blue-rgba),0.1); margin-bottom:15px;}
.sc_FormPage .order_info .order_num {font-size:16px; font-weight:700; text-align:center; color:#000;}
.sc_FormPage .order_info .order_date {font-size:13px; text-align:center; color:#888;}



.sc_FormPage .upload_box {display:flex; justify-content: stretch; align-items: stretch; flex-direction:column;}
.sc_FormPage .upload_box .label_photo {background:#f5f5f5; border:1px solid #e5e5e5; overflow:hidden; position:relative; padding:0 15px; height:45px; box-sizing:border-box; border-radius:5px;}
.sc_FormPage .upload_box .upper_txt {font-size: 13px; color:#333; height: 100%; display: flex; flex-direction: row; justify-content: flex-start; align-items: center;}
.sc_FormPage .upload_box .upper_txt {background:transparent url('../images/c_img/ic_photo.svg') right center no-repeat; background-size:22px auto !important;}
.sc_FormPage .upload_box .input_photo {display: none;}
.sc_FormPage .upload_box .preview {margin-top:5px; display: flex; flex-direction: column; justify-content: center; align-items: center;}
.sc_FormPage .upload_box .preview img {max-width:100%; max-height:500px}

.sc_FormPage .open_box {background: #f5f5f5; padding:15px; display:flex; justify-content: stretch; align-items: stretch; flex-direction:column; display: none; margin-top:10px;}
.sc_FormPage .open_box .text_design {font-size:12px; color:#888;}
.sc_FormPage .open_box .tip_txt {margin-top:5px;}
.sc_FormPage .if_open_box .open_box {display: flex;}
.sc_FormPage .if_open_box .form_tit .btn_open {opacity: 1; filter: alpha(opacity=100); -ms-filter: alpha(opacity=100); transform: rotate(180deg);}

.sc_FormPage .user_info_box {padding: 15px; box-sizing: border-box; margin-top: 10px; background: #fff; border:1px solid #e5e5e5;}
.sc_FormPage .user_info_box dl {box-sizing: border-box; display:flex; justify-content: flex-start; align-items: flex-start; flex-direction:row;}
.sc_FormPage .user_info_box dl+ dl {margin-top:10px; border-top:1px dashed #f2f2f2; padding-top:10px;}
.sc_FormPage .user_info_box dt,
.sc_FormPage .user_info_box dd {font-size: 12px; line-height: 1.3;}
.sc_FormPage .user_info_box dt {color: #333; font-weight: 500; width:50px; font-weight:600;}
.sc_FormPage .user_info_box dd {word-wrap:break-word; word-break:keep-all; white-space:normal; color: #888; flex:1}

.sc_FormPage .other {}
.sc_FormPage .input_file_box {background:#fff; border:1px solid #e5e5e5; position:relative; height:45px; width:100%; overflow:hidden; background:#f5f5f5; border-radius:5px; box-sizing:border-box;}
.sc_FormPage .input_file_box .fakeFileTxt {float:left; width:100%; color:#333; font-size: 13px; text-indent:15px; border:0; height:100%; opacity: 1; filter: alpha(opacity=100); -ms-filter:alpha(opacity=100);}

.sc_FormPage .input_file_box .fakeFileTxt {padding-right:40px; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; display: -webkit-box;}
.sc_FormPage .input_file_box .fileDiv {width:100%; height:100%; overflow: hidden; position:absolute; left:0; top:0;}
.sc_FormPage .input_file_box .buttonImg {width:50px; height:100%; position: absolute; top:0; right:15px; font-size:0px; border:0;}
.sc_FormPage .input_file_box .buttonImg {background:transparent url('../images/c_img/ic_attach.svg') right center no-repeat; background-size:18px !important;}
.sc_FormPage .input_file_box .realFile {position:absolute; right:0px; top:0px; width:100%; font-size:13px; height:100%; cursor:pointer !important; box-sizing:border-box; }
.sc_FormPage .input_file_box .realFile {opacity:0; filter: alpha(opacity=0); -ms-filter: "alpha(opacity=0)"; -khtml-opacity: 0; -moz-opacity: 0;}
.sc_FormPage .input_file_box.type_photo .buttonImg {background:transparent url('../images/c_img/ic_photo.svg') right center no-repeat;}

.sc_FormPage .upload_list {}
.sc_FormPage .upload_list .upload-file {display: flex; flex-direction: row; justify-content: flex-start; align-items: center; gap: 10px;}
.sc_FormPage .photo_preview {display:flex; justify-content: center; align-items: center; flex-direction:column; overflow:hidden;}
.sc_FormPage .photo_preview img {max-width:100%; max-height:500px; margin-top:5px;}
.sc_FormPage .attach_box {overflow:hidden; display: flex; flex-direction:column; justify-content: stretch; align-items: stretch; gap:5px}
.sc_FormPage .attach_box .duplicate {display:flex; justify-content: center; align-items: stretch; flex-direction:row; gap:5px}
.sc_FormPage .attach_box .add_btn_box {display:flex; justify-content: stretch; align-items: stretch; flex-direction:column;}
.sc_FormPage .attach_box .file_btn {width: 60px; box-sizing: border-box; font-size: 12px; color:#999; line-height: 1; font-weight:600; flex:1; border-radius:5px;}
.sc_FormPage .attach_box .file_btn {background: #fff; border: 1px solid #ccc; display: flex; flex-direction: row; justify-content: center; align-items: center;;}
.sc_FormPage .attach_box .file_btn.exec-addfile {border-color:#333; color: #333;}
.sc_FormPage .bank_box {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; flex-wrap:wrap; gap:5px}
.sc_FormPage .bank_box .c_select {flex:1}
.sc_FormPage .bank_box .input_design {width:120px; margin:0px !important;}
.sc_FormPage .bank_box .input_design:last-of-type {width:100%;}
.sc_FormPage .mine {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; gap:5px; margin-bottom:5px;}
.sc_FormPage .mine .txt {color:#000; font-weight:500; font-size:13px; line-height:1; border-radius:100px;  padding:0 10px; height:30px; background:#f5f5f5;}
.sc_FormPage .mine .txt {display:flex; justify-content: center; align-items: center; flex-direction:row; gap:5px}
.sc_FormPage .mine .txt em {color:#e10000;}
.sc_FormPage .mine .txt .num {color:#0065e3;}

/* 마이페이지 */
.sc_FormPage.this_mypage .form_dl {display:flex; justify-content:flex-start; align-items:center; flex-direction:row; border-bottom:1px solid var(--gray-light); padding:10px 0; margin:0px !important;}
.sc_FormPage.this_mypage .form_dt {position:static; height:auto; width:90px; padding-right:10px; box-sizing:border-box; }
.sc_FormPage.this_mypage .form_dt .tit {color:var(--gray);}
.sc_FormPage.this_mypage .form_dd {color:#000; font-weight:500;}

/* 간단폼 */
.sc_FormPage.this_simple .form_dt {display:none;}
.sc_FormPage.this_simple .form_dd {display:flex; justify-content:stretch; align-items:stretch; flex-direction:column;}
.sc_FormPage.this_simple input.input_design {padding-left:var(--gap);}






/* 앱 업데이트 팝업 ========================================= */
.p_Update {position:fixed; left:0; top:0; width:100%; height:100%; z-index:10000; display:flex; justify-content:center; align-items:center; flex-direction:column; box-sizing:border-box;}
.p_Update {transition:all 500ms var(--motion-cubic);}
.p_Update .bg_close {position:fixed; left:0; top:0; z-index:1; background:rgba(0,0,0,0.85); width:100%; height:100%; backdrop-filter:blur(5px); -webkit-backdrop-filter:blur(5px);}
.p_Update .wrapping {position:relative; z-index:2; width:270px; box-sizing:border-box; display:flex; flex-direction:column; justify-content:flex-start; align-items:stretch;}
.p_Update .wrapping {transition:all 500ms var(--motion-cubic);}
.p_Update .contents {display:flex; flex-direction:column; justify-content:flex-start; align-items:stretch; padding:40px 10px 35px; background:#fff; text-align:center; border-radius:15px 15px 0 0;}
.p_Update .contents .logo {font-size:0;}
.p_Update .contents .logo img {height:22px;}
.p_Update .contents .comment {}
.p_Update .contents .comment dt {font-family:'TheJamsil'; font-size:15px; font-weight:500; line-height:1.33; color:#000;}
.p_Update .contents .comment dd {margin-top:10px; color:#6a747f; line-height:1.38;}
.p_Update .next_time {position:absolute; left:0; bottom:70px; width:100%; display:flex; justify-content:center; align-items:center; flex-direction:column; z-index:2}
.p_Update .next_time .btn_next {display:inline-flex; flex-direction:row; justify-content:center; align-items:center; height:30px; padding:0 20px;}
.p_Update .next_time .btn_next strong {font-size:14px; color:#fff; text-decoration:underline; text-underline-offset:3px;}
.p_Update .app_download {border-radius:0 0 15px 15px; overflow:hidden;}
.p_Update .app_download .btn_down {display:flex; flex-direction:row; justify-content:center; align-items:center; height:60px; background:var(--color-blue); }
.p_Update .app_download .btn_down strong {padding-left:22px; background:url('../images/btn_app_down.svg') no-repeat left center; background-size:15px; font-size:15px; font-weight:600; color:#fff; white-space:nowrap;}
.p_Update.if_close {opacity:0; filter:alpha(opacity=0); -ms-filter:alpha(opacity=0); visibility:hidden;}
.p_Update.if_close .wrapping {transform:scale(0.8);}





/* 로그인화면 배너 ========================================= */
.p_IndexAd {text-align:center; margin-bottom:30px; padding:0px;}
.p_IndexAd .rolling_wrap {overflow:hidden; margin-top:20px;}
.p_IndexAd .rolling_box {overflow:hidden;}
.p_IndexAd .one_banner {position:relative; overflow:hidden; display:flex; justify-content:center; align-items:center; flex-direction:column;}
.p_IndexAd .one_banner img {max-width:100%; height:230px;}
.p_IndexAd .one_banner .comment {font-family:var(--font-title); font-size:22px; font-weight:500; letter-spacing:-1px; margin-top:20px; padding:0 var(--gap); color:#000;}
.p_IndexAd .one_banner .additional {color:#c4c4c4; font-weight:500; font-size:14px; margin-top:5px; padding:0 var(--gap);}
.p_IndexAd .rolling_icon {display:flex; justify-content:center; align-items:center; flex-direction:row; gap:5px; margin-top:20px;}
.p_IndexAd .rolling_icon .icon {width:5px; height:5px; background:#dedede; border-radius:100px; transition:all 0.2s ease-out; -webkit-transition:all 0.2s ease-out;}
.p_IndexAd .rolling_icon .icon.active {background:#222; width:20px;}

html.if_flatform_ios .p_IndexAd {padding-top:env(safe-area-inset-top)}




/* 로그인 ======================================== */
.p_Login {padding:var(--gap-wide); padding-top:0px; margin-top:auto;}
.p_Login .form_wrap {}
.p_Login .form_list {padding-bottom:20px;}
.p_Login .form_list input.input_design {height:60px;}
.p_Login .form_list li:nth-of-type(1) input.input_design {border-bottom-left-radius:0px; border-bottom-right-radius:0px;}
.p_Login .form_list li:nth-child(n+2) input.input_design {border-top-left-radius:0px; border-top-right-radius:0px;}
.p_Login .form_list li:nth-child(n+2) {margin-top:-1px;}
.p_Login .form_list li.this_not_form {display:flex; justify-content:space-between; align-items:center; flex-direction:row; margin-top:5px;}
.p_Login .btn_wrap {display:flex; justify-content:center; align-items:center; flex-direction:row; gap:1px}
.p_Login .btn_wrap .btn_txt {font-size:13px; color:var(--black-mid); font-weight:500; display:flex; justify-content:center; align-items:center; flex-direction:row}
.p_Login .btn_wrap .btn_txt+ .btn_txt:before {content:""; background:var(--gray-clear); width:1px; height:11px; margin:0 10px;}

html.if_flatform_ios .p_Login {padding-bottom:env(safe-area-inset-bottom)}




/* SNS로그인 ======================================== */
.p_SNSLogin {margin-bottom:20px;}
.p_SNSLogin ul {display: flex; flex-direction: row; justify-content: center; align-items: center; gap:10px}
.p_SNSLogin .btn {display: flex; flex-direction: row; justify-content: center; align-items: center; width: 45px; height: 45px; border:0.8px solid transparent; border-radius: 100px; box-sizing: border-box; position:relative;}
.p_SNSLogin .btn .txt {font-weight:500; font-size:14px;}
.p_SNSLogin .btn .icon {width: 18px; height: 18px; background-repeat: no-repeat !important; background-size: 18px auto !important; background-position: center center !important;}
.p_SNSLogin .btn.kakao {background: #ffeb00; border-color: #ffeb00;}
.p_SNSLogin .btn.kakao .txt {color:#3b1e1e;}
.p_SNSLogin .btn.kakao .icon {background-image: url('../images/c_img/logo_kakao.svg');}
.p_SNSLogin .btn.naver {background: #36ac36; border-color: #36ac36;}
.p_SNSLogin .btn.naver .txt {color: #fff;}
.p_SNSLogin .btn.naver .icon {background-image: url('../images/c_img/logo_naver.svg'); width: 16px; height: 16px;}
.p_SNSLogin .btn.facebook {background: #3b5998; border-color: #3b5998;}
.p_SNSLogin .btn.facebook .tx {color: #fff;}
.p_SNSLogin .btn.facebook .icon {background-image: url('../images/c_img/logo_facebook.svg');}
.p_SNSLogin .btn.apple {background: #000; border-color: #000;}
.p_SNSLogin .btn.apple .txt {color: #fff;}
.p_SNSLogin .btn.apple .icon {background-image: url('../images/c_img/logo_apple.svg');}
.p_SNSLogin .btn.google {border-color:#ddd;}
.p_SNSLogin .btn.google .icon {background-image:url('../images/c_img/logo_google.svg');}
.p_SNSLogin .btn.google .txt {color: #000;}

.p_SNSLogin .comment {display:flex; justify-content:center; align-items:center; flex-direction:column; margin-bottom:20px;}
.p_SNSLogin .comment .bubble {background:var(--gray-clear); border-radius:100px; color:#000; font-size:13px; font-weight:600; height:32px; position:relative; padding:0 15px;}
.p_SNSLogin .comment .bubble {display:flex; justify-content:center; align-items:center; flex-direction:column;}
.p_SNSLogin .comment .bubble:before {content:""; background:transparent url('../images/ic_bubble_edge.svg') center center no-repeat; width:18px; height:10px; position:absolute; left:18px; bottom:-9px;}
.p_SNSLogin .comment .bubble:before {filter: invert(99%) sepia(0%) saturate(201%) hue-rotate(170deg) brightness(90%) contrast(96%);}

.p_SNSLogin.type_join {margin-bottom:30px;}
.p_SNSLogin.type_join ul {flex-direction:column;}
.p_SNSLogin.type_join .btn {width:250px; justify-content:flex-start;}
.p_SNSLogin.type_join .btn .icon {width:60px;}
.p_SNSLogin.type_join .btn:after {content:""; width:5px; height:8px; background:transparent url('../images/arrow_right_outline.svg') center center no-repeat; position:absolute; right:15px; top:50%; transform:translateY(-50%);}
.p_SNSLogin.type_join .btn:after {background-size:5px;}
.p_SNSLogin.type_join .btn.apple:after {filter: invert(98%) sepia(0%) saturate(7488%) hue-rotate(226deg) brightness(102%) contrast(99%);}
.p_SNSLogin.type_join .btn.facebook:after {filter: invert(98%) sepia(0%) saturate(7488%) hue-rotate(226deg) brightness(102%) contrast(99%);}

.p_SNSLogin.type_inside ul {justify-content: flex-start;}
.p_SNSLogin.type_inside .btn {opacity: 0.5; filter:grayscale(100%);-webkit-filter:grayscale(100%);}
.p_SNSLogin.type_inside .hit .btn {opacity: 1; filter:grayscale(0);-webkit-filter:grayscale(0);}




/* 로그인 정보찾기 ======================================== */
.p_FindInfo {}
.p_FindInfo .comment {text-align:center; margin-bottom:20px;}
.p_FindInfo .comment dt {color:#000; font-size:17px; font-weight:600; line-height:1.45;}
.p_FindInfo .comment dd {margin-top:5px; color:var(--gray);}
.p_FindInfo .comment dd.highlight {color:var(--color-red);}
.p_FindInfo .form_list {padding:var(--gap-wide);}
.p_FindInfo .form_list input.input_design {height:60px;}
.p_FindInfo .form_list li:nth-of-type(1) input.input_design {border-bottom-left-radius:0px; border-bottom-right-radius:0px;}
.p_FindInfo .form_list li:nth-child(n+2) input.input_design {border-top-left-radius:0px; border-top-right-radius:0px;}
.p_FindInfo .form_list li:nth-child(n+2) {margin-top:-1px;}
.p_FindInfo .form_list li:only-of-type input.input_design {border-radius:10px !important;}
.p_FindInfo .form_list ul+ ul {margin-top:15px;}
.p_FindInfo .c_btnbox {padding:var(--gap-wide);}
.p_FindInfo .c_labelbox {margin-bottom:10px;}




/* 약관동의 ========================================= */
.p_AgreeCheck {}
.p_AgreeCheck .FlexScroll {padding:30px; display:flex; justify-content:flex-start; align-items:stretch; flex-direction:column;}
.p_AgreeCheck .check_list {}
.p_AgreeCheck .check_list li {padding:3px 0; display:flex; justify-content:flex-start; align-items:center; flex-direction:row;}
.p_AgreeCheck .check_list ul.this_allcheck {border-bottom:1px solid var(--gray-mid); padding-bottom:10px; margin-bottom:10px;}
.p_AgreeCheck .check_list ul.this_allcheck .c_label {display:flex; flex:1}
.p_AgreeCheck .check_list ul.this_allcheck .c_label .tx {color:#000; font-weight:600; font-size:15px;}
.p_AgreeCheck .check_list ul.this_essential .c_label strong {color:var(--color-red);}
.p_AgreeCheck .btn_view {width:30px; height:30px; margin-left:auto; background:transparent url('../images/arrow_right_outline.svg') right 5px center no-repeat; background-size:6px;}
.p_AgreeCheck .p_SNSLogin {flex:1}
.p_AgreeCheck .info_field {margin-top:15px; background:var(--gray-light); padding:15px; border-radius:5px;}
.p_AgreeCheck .info_field dl+ dl {margin-top:10px; padding-top:10px; border-top:1px solid var(--gray-clear);}
.p_AgreeCheck .info_field dt {color:#000; font-weight:600; font-size:14px;}





/* 완료화면 ========================================= */
.P_Complete {display:flex; justify-content:center; align-items:center; flex-direction:column; text-align:center;}
.P_Complete img {width:100%; max-width:200px}
.P_Complete dl {margin-top:30px;}
.P_Complete dt {color:#000; font-family:var(--font-title); font-size:19px; font-weight:600; line-height:1.5;}
.P_Complete dt strong {color:var(--color-red);}
.P_Complete dd {font-size:14px; margin-top:10px; color:var(--black-gray);}






/* 상품 카테고리 ======================================== */
.p_Category {margin:0 var(--gap-opp); background:#fff; z-index:100;}
.p_Category .swipe_box {display:inline-block; max-width:100%; box-sizing:border-box; margin-right:var(--gap);}
.p_Category .swipe_box ul {display: flex; flex-direction: row; justify-content: center; align-items: flex-start; flex-wrap: wrap; gap:5px; width:max-content; padding:0 var(--gap); }
.p_Category .swipe_box li {box-sizing:border-box;}
.p_Category .ctg_box {overflow:hidden; margin-top:15px;}
.p_Category .ctg {height:35px; padding:0 14px; box-sizing: border-box; display: flex; flex-direction: row; justify-content: center; align-items: center;}
.p_Category .ctg {font-size:14px; color:var(--black-gray); font-weight:600; background:var(--gray-light); border-radius:100px;}
.p_Category .ctg1_box {margin-top:0px;}
.p_Category .ctg3 {background:#fff; border:1px solid var(--gray-mid);}
.p_Category li.hit .ctg1 {background:var(--color-blue); color: #fff; border-color:var(--black-dark);}
.p_Category li.hit .ctg2 {background:var(--black-dark); color: #fff; border-color:var(--black-dark);}
.p_Category li.hit .ctg3 {background:#fff; color:var(--black-dark); border-color:var(--black-dark);}




/* 카테고리별 배너 ======================================== */
.p_Subimg {margin:0 var(--gap-opp); margin-bottom:15px;}
.p_Subimg a {display: flex; flex-direction: row; justify-content: center; align-items: center;}
.p_Subimg img {max-width: 100%;}





/* 상품검색 ========================================= */
.p_ShopFind {position:fixed; left:0; bottom:0; height:100%; width:100%; box-sizing:border-box; z-index:500; background:#fff; visibility:hidden; transform:translateX(100%);}
.p_ShopFind {transition:transform 500ms var(--motion-cubic);}
.p_ShopFind .search_form {display:flex; justify-content:center; align-items:center; flex-direction:row; padding:var(--gap); padding-right:0px;}
.p_ShopFind .search_form input.input_design {border-radius:100px; padding:0 20px; transition-property:box-shadow, border;}
.p_ShopFind .search_form .btn_search {width:60px; height:100%; position:absolute; right:0; top:0; background:transparent url('../images/ic_find.svg') center center no-repeat; background-size:18px; z-index:3}
.p_ShopFind .search_form input.input_design:focus+ .btn_search {filter: invert(35%) sepia(76%) saturate(2064%) hue-rotate(229deg) brightness(101%) contrast(101%);}
.p_ShopFind .search_form .with_form {flex:1; position:relative;}
.p_ShopFind .search_form .btn_close {padding:0 var(--gap); display:flex; justify-content:center; align-items:center; flex-direction:column; height:100%; }
.p_ShopFind .search_form .btn_close:before {content:""; background:transparent url('../images/ic_close.svg') center center no-repeat; width:13px; height:13px;}
.p_ShopFind .keyword_list {display:flex; justify-content:center; align-items:center; flex-direction:row; flex-wrap:wrap; padding:var(--gap); gap:8px 5px}
.p_ShopFind .keyword_list .link {border-radius:100px; display:flex; justify-content:center; align-items:center; flex-direction:column; height:26px; border:1px solid var(--gray-light); font-size:12px; padding:0 12px;}
.p_ShopFind .keyword_list .link {background:var(--gray-white)}

.p_ShopFind.if_search_open {visibility:visible; transform:translateX(0);}
html.if_flatform_ios .search_form {margin-top:env(safe-area-inset-top);}






/* 나의캐시 ========================================= */
.p_MyCash {margin:0 var(--gap); background:var(--color-blue); border-radius:15px; display:flex; justify-content:space-between; align-items:center; flex-direction:row; padding:20px; color:#fff;}
.p_MyCash .date .today {opacity:0.5; font-size:12px; line-height:1;}
.p_MyCash .date .comment {font-size:15px; margin-top:5px; line-height:1; font-weight:500;}
.p_MyCash .c_cash strong {font-size:26px; color:#fff;}
.p_MyCash .c_cash:before {width:22px; height:22px; filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(233deg) brightness(106%) contrast(102%); margin-right:2px;}






/* 목록 컨트롤러 ======================================== */
.p_ListCtrl {margin-top:20px; margin-bottom:20px;}
.p_ListCtrl .inner_wrap {display: flex; flex-direction: row; justify-content:flex-end; align-items:center; border-bottom:1px solid #000; padding-bottom:10px; margin-bottom:10px; gap:5px}
.p_ListCtrl .total {font-size:17px; color:#000; font-weight:600; margin-right:auto;}
.p_ListCtrl .only_mycash {display:flex; justify-content:flex-end; align-items:center; flex-direction:row; gap:6px;}
.p_ListCtrl .only_mycash> strong {color:var(--black-dark); font-weight:500; font-size:14px;}
.p_ListCtrl .range_box {position: relative; width: 120px;}
.p_ListCtrl .range_box .btn_ctrl {width: 100%; height: 35px; display: flex; flex-direction: row; justify-content: space-between; align-items: center; border-radius:10px;}
.p_ListCtrl .range_box .btn_ctrl {border: 1px solid #e5e5e5; padding: 0 15px; box-sizing: border-box; transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out;}
.p_ListCtrl .range_box .btn_ctrl .tx {font-size:13px; color:#000; font-weight: 500; white-space: nowrap;}
.p_ListCtrl .range_box .btn_ctrl .ic {width: 10px; height: 10px; background: transparent url('../images/c_img/arrow_down.svg') center center no-repeat;}
.p_ListCtrl .range_box .btn_ctrl .ic {background-size: 10px 6px !important; margin-left: 10px; transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out;}
.p_ListCtrl .range_open {position: absolute; right: 0; top: 34px; width: 100%; }
.p_ListCtrl .range_open { z-index: 200; transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; height:0px; overflow:hidden;}
.p_ListCtrl .range_open ul {padding: 10px 0; box-sizing: border-box; background: #fff; border: 1px solid #e5e5e5; height:220px; border-radius:10px;}
.p_ListCtrl .range_open .opt {width: 100%; font-size: 13px; color: #999; padding: 10px 15px; box-sizing: border-box; white-space: nowrap; line-height: 1;}
.p_ListCtrl .range_open .hit .opt {color: #000;}
.p_ListCtrl .if_open_range.range_box .btn_ctrl .ic {transform: rotate(180deg);}
.p_ListCtrl .if_open_range .range_open {height:220px;}
.p_ListCtrl .btn_filter {display:flex; justify-content: center; align-items: stretch; flex-direction:row; height:35px; display:none; font-weight:500; border:1px solid #e5e5e5; padding:0 15px; border-radius:10px; box-sizing:border-box;}
.p_ListCtrl .btn_filter strong {font-size:13px; background:transparent url('../images/c_img/ic_search_filter.svg') right center no-repeat; background-size:16px; color:#222; padding-right:22px; line-height:1;}
.p_ListCtrl .btn_filter strong {display:flex; justify-content: center; align-items: center; flex-direction:column;}

.p_ListCtrl.if_search .btn_filter {display:flex}




/* 리워드 미션목록 ======================================== */
.p_MissionList {}
.p_MissionList ul {display:grid; grid-template-columns:repeat(2, 1fr); gap:30px 15px}

.Mission_box {overflow:hidden; position:relative;}
.Mission_box .thumb {position:relative; border-radius:20px; overflow:hidden;}
.Mission_box .thumb img {width:100%; display:block; vertical-align:middle}
.Mission_box .info {margin-top:8px;}
.Mission_box .mission {font-size:14px; color:#000; font-weight:500; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical; display:-webkit-box; line-height:1.4;}
.Mission_box .state_tag {position:absolute; left:0; top:0; width:100%; height:100%; display:flex; justify-content:center; align-items:center; flex-direction:column; box-sizing:border-box; padding:5px;}
.Mission_box .state_tag:after {content:""; width:100%; height:100%; background:#000; border-radius:20px; position:absolute; left:0; top:0; z-index:1; opacity:0.9;}
/* .Mission_box .state_tag:after {backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);} */
.Mission_box .state_tag> * {position:relative; z-index:2}
.Mission_box .state_tag .timer {color:#000; text-align:center; display:flex; justify-content:center; align-items:center; flex-direction:column; margin-bottom:5px; gap:2px;}
.Mission_box .state_tag .timer em {opacity:0.6; font-size:12px; font-weight:600;}
.Mission_box .state_tag .timer strong {font-weight:700;}
.Mission_box .state_tag .comment {color:#fff; font-family:var(--font-title); font-size:19px; font-weight:500; flex:1; display:flex; justify-content:center; align-items:center; flex-direction:column;}
.Mission_box .state_tag .comment:before {content:""; width:40px; height:40px; background-position:center center; background-size:40px; background-repeat:no-repeat; margin-bottom:10px;}
.Mission_box .state_tag .comment em {font-size:11px; margin-top:5px; opacity:0.5; font-weight:400;}
.Mission_box .state_tag.end_today:after {background:#00a8ff;}
.Mission_box .state_tag.end_today .comment:before {background-image:url('../images/mission_state_all.svg?v=1');}
.Mission_box .state_tag.end_day:after {background:#ff6600;}
.Mission_box .state_tag.end_day .comment:before {background-image:url('../images/mission_state_day.svg?v=1');}
.Mission_box .state_tag.end_night:after {background:#9c46ff;}
.Mission_box .state_tag.end_night .comment:before {background-image:url('../images/mission_state_night.svg?v=1');}
.Mission_box .state_tag.end_all:after {background:var(--gray-clear);}
.Mission_box .state_tag.end_all .comment {color:#000;}
.Mission_box .state_tag.end_all .comment:before {display:none;}
.Mission_box .c_cash {margin-top:5px;}





/* 리워드미션 베스트 ======================================== */
.p_MissionBest {background-image:linear-gradient(145deg, var(--color-purple) 2%, var(--color-blue) 102%); margin:0 var(--gap-opp); margin-top:-20px; overflow:hidden; border-bottom-left-radius:60px; position:relative; padding-bottom:20px;}
.p_MissionBest .sc_PageTitle {margin-top:0px !important}
.p_MissionBest .visual {position:absolute; right:-140px; top:-120px;width:100%; height:100%; z-index:1; width:400px;}
.p_MissionBest .visual img {width:100%;}
.p_MissionBest> * {position:relative; z-indeX:2}
.p_MissionBest .have_cash {padding:0 var(--gap); color:#fff;}
.p_MissionBest .have_cash * {font-family:var(--font-title);}
.p_MissionBest .have_cash strong {margin-left:0px;}
.p_MissionBest .have_cash .myname {font-size:15px; margin-bottom:5px; opacity:0.5}
.p_MissionBest .have_cash .c_cash strong {color:#fff; font-size:40px; font-weight:400;}
.p_MissionBest .have_cash .c_cash:before {display:none;}
.p_MissionBest .have_cash .possible {font-size:15px; font-weight:300; margin-top:15px;}
.p_MissionBest .high_list {margin-top:20px;}
.p_MissionBest .high_list .p_MissionList {overflow-x:auto;}
.p_MissionBest .high_list .p_MissionList ul {display:flex; justify-content:center; align-items:center; flex-direction:row; width:max-content; gap:10px; padding:0 20px;}
.p_MissionBest .high_list .p_MissionList li {width:100px;}
.p_MissionBest .high_list .Mission_box {border-radius:100px; overflow:hidden;}
.p_MissionBest .high_list .Mission_box .info {display:none;}
.p_MissionBest .high_list .Mission_box .state_tag {display:none;}

html.if_flatform_ios .p_MissionBest {padding-top:env(safe-area-inset-top);}
html.if_flatform_ios .p_MissionBest .visual {top:-60px}



/* 리워드미션 상세 ======================================== */
.p_RewardView {padding-bottom:0px !important;}
.p_RewardView .product_info {display:flex; justify-content:center; align-items:center; flex-direction:column; margin-top:-20px;}
.p_RewardView .product_info .thumb {width:300px; overflow:hidden; border-radius:20px;}
.p_RewardView .product_info .thumb img {width:100%;}
.p_RewardView .product_info .mission {color:#000; font-weight:600; font-size:15px; margin-top:10px; text-align:center; padding:0 var(--gap-wide);}
.p_RewardView .product_info .mission {overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp:2; -webkit-box-orient:vertical; display:-webkit-box;}

.p_RewardView .rurn_list {display:flex; justify-content:center; align-items:stretch; flex-direction:row; padding:30px var(--gap); gap:10px; border-bottom:8px solid var(--gray-light); margin:0 var(--gap-opp);}
.p_RewardView .one_turn {flex:1; border-radius:10px; box-sizing:border-box; position:relative; padding-top:18px;}
.p_RewardView .one_turn:only-of-type {flex:none; width:50%;}
.p_RewardView .one_turn .turn_off {position:absolute; left:-1px; bottom:-1px; width:100%; height:calc(100% - 18px); z-index:10; backdrop-filter:blur(1px); -webkit-backdrop-filter:blur(1px); background-color:rgba(000, 000, 000, 0.7);}
.p_RewardView .one_turn .turn_off {display:flex; justify-content:center; align-items:center; flex-direction:column; color:#fff; font-weight:500; font-size:18px; font-family:var(--font-title); border-radius:10px;}
.p_RewardView .one_turn .turn_off {border:0.8px solid var(--black-dark);}
.p_RewardView .one_turn .turn_off strong {transform:rotate(-25deg); -webkit-transform:rotate(-25deg);}
.p_RewardView .one_turn dl {border-radius:10px; overflow:hidden; border:0.8px solid var(--color-blue);}
.p_RewardView .one_turn dt {padding:18px 10px 12px; display:flex; justify-content:space-between; align-items:center; flex-direction:row}
.p_RewardView .one_turn dd {background:rgba(var(--color-blue-rgba),0.07); padding:10px; color:var(--black-dark); font-weight:500; }
.p_RewardView .one_turn dd strong {background:transparent url('../images/ic_reward_clock.svg') left center no-repeat;background-size:13px; padding-left:18px;}
.p_RewardView .one_turn .c_cash strong {font-size:17px;}
.p_RewardView .one_turn .bubble {position:absolute; left:0; top:0; border-radius:100px; background:var(--color-blue); color:#fff; display:flex; justify-content:center; align-items:center; flex-direction:column; height:26px;}
.p_RewardView .one_turn .bubble {font-size:12px; font-weight:600; width:70px; box-sizing:border-box; line-height:1; z-index:11}
.p_RewardView .one_turn .bubble:before {content:""; background:transparent url('../images/ic_bubble_edge.svg') center center no-repeat; width:13px; height:10px; position:absolute; left:16px; bottom:-7px;}
.p_RewardView .one_turn .bubble:before {background-size:100%; filter: invert(15%) sepia(97%) saturate(6484%) hue-rotate(241deg) brightness(98%) contrast(106%);}
.p_RewardView .one_turn .state {font-weight:700; color:var(--color-blue); font-size:14px;}
.p_RewardView .one_turn.if_yet {filter:grayscale(100%);-webkit-filter:grayscale(100%); opacity:0.3;}
.p_RewardView .one_turn.if_end {border-color:transparent;}
.p_RewardView .one_turn.if_end dd strong {padding-left:0px; background:none;}

.p_RewardView .mission_step {margin-top:40px;}
.p_RewardView .one_step {display:flex; justify-content:center; align-items:flex-start; flex-direction:row; padding-bottom:40px; position:relative; overflow:hidden;}
.p_RewardView .one_step .progress {width: 2px; height:100%; position:absolute; left:15px; top:0;}
.p_RewardView .one_step .progress {-webkit-mask: linear-gradient(180deg,#474bff 70%,#0000 0) top/100% 7px; background: linear-gradient(#474bff 0 0) top/100% 0 no-repeat var(--gray);}
@keyframes mv_step_line {
    100% {background-size: 100% 120%;}
}
.p_RewardView .one_step> * {position:relative; z-index:2}
.p_RewardView .one_step .number {width:32px; height:32px; display:flex; justify-content:center; align-items:center; flex-direction:column; background:var(--gray); border-radius:100px; color:#fff;}
.p_RewardView .one_step .number {font-family:var(--font-title); font-size:16px;}
.p_RewardView .one_step .wrapping {flex:1;}
.p_RewardView .one_step .step_title {margin-left:10px; height:36px; display:flex; justify-content:center; align-items:flex-start; flex-direction:column; position:relative;}
.p_RewardView .one_step .step_title .eng {font-size:11px; opacity:0.3; font-weight:600; line-height:1;}
.p_RewardView .one_step .step_title .kor {color:#000; font-size:20px; font-weight:500; margin-top:3px; line-height:1; font-family:var(--font-title); position:relative;}
.p_RewardView .one_step .btn_fold {position:absolute; right:0; bottom:0; width:30px; height:30px; background:transparent url('../images/arrow_down_outline.svg') center center no-repeat;}
.p_RewardView .one_step .btn_fold {transition:all 0.2s ease-out; -webkit-transition:all 0.2s ease-out; background-size:12px;}
.p_RewardView .one_step .required {margin-bottom:15px; display:flex; justify-content:center; align-items:flex-start; flex-direction:column; background:var(--gray-light); border-radius:15px; padding:var(--gap);}
.p_RewardView .one_step .required dt {font-weight:600; font-size:16px; color:#000; word-wrap:break-word; word-break:keep-all; white-space:normal; line-height:1.4;}
.p_RewardView .one_step .required dd {color:var(--black-gray); line-height:1.4; margin-top:5px; word-wrap:break-word; word-break:keep-all; white-space:normal;}
.p_RewardView .one_step .phone_ip {margin-top:10px; border: solid 0.8px rgba(255, 44, 44, 0.3);  background-color: rgba(255, 44, 44, 0.07); color:var(--color-red); font-size:14px;}
.p_RewardView .one_step .phone_ip {display:flex; justify-content:center; align-items:center; flex-direction:column; height:32px; padding:0 15px; border-radius:100px; box-sizing:border-box; font-weight:600;}
.p_RewardView .one_step.step_3 {padding-bottom:80px;}
.p_RewardView .one_step .open_content {margin-top:15px; display:none;}

.p_RewardView .one_step.if_open_step .open_content {display:block;}
.p_RewardView .one_step.if_open_step .btn_fold {transform:rotate(180deg); -webkit-transform:rotate(180deg);}

.p_RewardView .one_step.if_active .open_content {display:block;}
.p_RewardView .one_step.if_active .number {background:var(--color-blue);}
.p_RewardView .one_step.if_active .step_title .kor {color:var(--color-blue);}
.p_RewardView .one_step.if_active .progress {animation:mv_step_line 2s infinite steps(100);}
.p_RewardView .one_step.if_active .btn_fold {display:none;}

.p_RewardView .one_step.if_pass .step_title .kor {padding-right:10px;}
.p_RewardView .one_step.if_pass .step_title .kor:before {content:""; width:100%; height:7px; position:absolute; left:0; top:50%; transform:translateY(-50%); mix-blend-mode: multiply;}
.p_RewardView .one_step.if_pass .step_title .kor:before {background:var(--color-yellow)}
.p_RewardView .one_step.if_pass .step_title .kor:after {content:"통과"; font-weight:300; color:var(--gray); margin-left:5px;}




/* 출석체크 ======================================== */
.p_Attend {}
.p_Attend .c_none .gtxt:before {background:transparent url('../images/picto_attend_none.svg') center center no-repeat; opacity:1;}
.p_Attend .c_btnbox {padding-bottom:75px !important; background:var(--gray-light); border-radius:30px 30px 0 0;}
.p_Attend .c_btnbox ul {padding-bottom:20px;}
.p_Attend .c_btnbox .c_btn.color.line {background:#fff !important;}
.p_Attend .year_box {text-align:center; flex:none; padding:0 var(--gap)}
.p_Attend .year_box .inner_tie {display:inline-flex; justify-content: center; align-items: center; flex-direction:row;}
.p_Attend .year_box .year {font-size:18px; font-weight:700; color:#000; line-height:1; width:120px;}
.p_Attend .year_box .prevnext {display:flex; justify-content: center; align-items: center; flex-direction:column; width:40px; height:30px; background-position:center center; background-size:10px !important;}
.p_Attend .year_box .prevnext {background:transparent url('../images/ic_arrow_right_fill.svg') center center no-repeat;}
.p_Attend .year_box .prevnext.prev {transform:rotate(180deg); -webkit-transform:rotate(180deg);}
.p_Attend .calendar_box {flex:1; margin-top:10px; display:flex; justify-content:stretch; align-items:stretch; flex-direction:column; padding:0 var(--gap); margin-bottom:10px; gap:10px}
.p_Attend .calendar_box ul {display:flex; justify-content:stretch; align-items: stretch; flex-direction:row;}
.p_Attend .calendar_box li {flex:1; text-align:center; line-height:1; display:flex; justify-content:flex-start; align-items: center; flex-direction:column; position:relative;}
.p_Attend .calendar_box .week {}
.p_Attend .calendar_box .week li {font-weight:600; color:var(--gray); }
.p_Attend .calendar_box .days {flex:1;}
.p_Attend .calendar_box .days strong {color:#000; font-weight:500; font-size:16px;}
.p_Attend .calendar_box .days li:after {content:""; width:34px; height:34px; background:transparent url('../images/ic_attend_off.svg') center center no-repeat; margin-top:5px; opacity:0.07; background-size:100%;}
.p_Attend .calendar_box li.today strong {color:var(--color-blue); font-weight:700;}
.p_Attend .calendar_box li.today:before {content:"TODAY"; position:absolute; left:50%; top:50px; background:var(--color-blue); color:#fff; font-size:10px; width:40px; padding:3px; border-radius:100px;}
.p_Attend .calendar_box li.today:before {transform:translateX(-50%); font-weight:700;}
.p_Attend .calendar_box li.no:after {display:none;}
.p_Attend .calendar_box li.hit:after {background-image:url('../images/ic_attend_on.svg'); opacity:1;}
.p_Attend .addtend_result {margin:30px 0 15px 0; display:flex; justify-content:space-between; align-items:center; flex-direction:row; padding:0 5px;}
.p_Attend .addtend_result .myscore {font-family:var(--font-title); font-size:20px; color:#000; font-weight:500;}
.p_Attend .addtend_result .myscore strong {color:var(--color-red);}

html.if_flatform_ios .p_Attend .c_btnbox ul {margin-bottom:env(safe-area-inset-bottom);}







/* 상품 박스 ======================================== */
.item_box {}
.item_box .info .item_icon {padding-top:10px;}
.item_box .info .item_icon .type_normal {display:none;}
.item_box .thumb .item_icon .type_auto {display:none;}
.item_box .thumb .item_icon div {gap:0}

.item_box .thumb {position:relative; overflow:hidden; border-radius:15px;}
.item_box .thumb .img {display: flex; flex-direction: row; justify-content: center; align-items: center; }
.item_box .thumb .img img {width: 100%;}
.item_box .thumb .ov_img {display:none;}
.item_box .thumb .item_icon {position: absolute; left: 0; top: 0; z-index: 2; transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; margin-top:0;}
.item_box .thumb .item_icon img {margin-top:0;}
.item_box .thumb .item_icon span {margin-top:0px;}

.item_box .ranking {position: absolute; left: 0; top: 0; min-width: 35px; height: 35px; background: #000; display: flex; flex-direction: row; justify-content: center; align-items: center;}
.item_box .ranking {font-size: 15px; color: #fff; font-weight: 500; line-height: 1; z-index: 5; padding:0 7px; box-sizing:border-box;}

.item_box .soldout {position:absolute; left:0; top:0; background:rgba(255, 255, 255, 0.7);; width:100%; height:100%; z-index:2; font-size:1.1em; text-align:center;}
.item_box .soldout {display: flex; flex-direction:column; align-items: center; justify-content: center; font-weight: 600; color:#000;}
.item_box.if_soldout .thumb .btn_multi {display: none;}
.item_box.if_soldout .thumb .item_icon {display: none;}

.item_box .info {padding-top:10px; box-sizing:border-box; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; font-size:15px;}
.item_box .info .item_name {overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp:1; -webkit-box-orient: vertical; display: -webkit-box; color:#000; line-height:1.3; font-weight:600; font-size:12px;}
.item_box .info .sub_name {overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; display: -webkit-box; color:#999; margin-top:5px; font-size:0.85em;}
.item_box .price {margin-top:8px; line-height: 1; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap:3px 5px; font-size:17px;}
.item_box .price> div {font-weight: 700;}
.item_box .price .before {display:none;}
.item_box .price .before .won {color:#aaa; position:relative; padding:0 1px; font-weight: 500; font-size:0.9em;}
.item_box .price .before .won:before {content:""; position:absolute; left:0; top:50%; width:100%; height:1px; background:#aaa; margin-top: -1px;}
.item_box .price .percent {color:var(--color-red);}
.item_box .c_cash strong {color:#000;}
.item_box .c_cash:before {filter:none}


/* 상품 아이콘 ======================================== */
.item_icon {display: flex; flex-direction: row; justify-content: flex-start; align-items: flex-start; flex-wrap: wrap;}
.item_icon div {display: flex; flex-direction: row; justify-content: flex-start; align-items: flex-start; flex-wrap: wrap; gap:1px}
.item_icon img {height: 19px; margin-top: 1px;}
.item_icon span {height:19px; padding:0 4px; margin-top: 1px; font-size:0.7em; font-weight:700; cursor:default; letter-spacing:0px;}
.item_icon span {display:flex; justify-content: center; align-items: center; flex-direction:column; box-sizing:border-box; border:1px solid #000; background:#fff; color:#000;}


/* 상품 타이머 ======================================== */
.item_timer {display:flex; flex-direction:row; justify-content:flex-start; align-items:center; margin-bottom:10px; color:#e10000; gap:2px; letter-spacing:0px; }
.item_timer .clock {position:relative; width:18px; height:18px; background:#e10000; border-radius:100px; margin-right:5px; flex:none}
.item_timer .clock .bar {position:absolute; left:0; top:0; width:100%; height:100%; z-index:1; animation: mv_timer 1.5s linear infinite both; -webkit-animation: mv_timer 1.5s linear infinite both;}
.item_timer .clock .bar.hour:before {content:''; position:absolute; left:50%; bottom:50%; width:2px; height:6px; margin-left:-1px; margin-bottom:-1px; background:#fff;}
.item_timer .clock .bar.minute {animation-duration:3s; -webkit-animation-duration:3s;}
.item_timer .clock .bar.minute:before {content:''; position:absolute; left:50%; top:50%; width:6px; height:2px; margin-left:-1px; margin-top:-1px; background:#fff;}
.item_timer strong {font-weight:700; white-space:nowrap}
.item_timer em {}
.item_timer em.last {margin-right:0; font-weight:500;}
.item_timer.if_timeout {filter:grayscale(100%);-webkit-filter:grayscale(100%); opacity:0.5; filter:alpha(opacity=50); -ms-filter:alpha(opacity=50);}
.item_timer.if_timeout .clock .bar {animation:none; opacity:0.5; filter:alpha(opacity=50); -ms-filter:alpha(opacity=50);}

@-webkit-keyframes mv_timer {
    0% {transform: rotate(0); transform-origin: center;}
    100% {transform: rotate(360deg); transform-origin: center;}
}
@keyframes mv_timer {
    0% {transform: rotate(0); transform-origin: center;}
    100% {transform: rotate(360deg); transform-origin: center;}
}





/* 상품목록(기본 박스형) ======================================== */
.item_list {position:relative;}
.item_list ul {display:grid; gap:30px 10px; grid-template-columns: repeat(2, 1fr);}
.item_list li {box-sizing:border-box; position:relative}
.rolling_wrap .rolling_box .item_list ul {display:flex; justify-content: flex-start; align-items: flex-start; flex-direction:row; gap:0;}
.rolling_wrap .rolling_box .item_list {margin-left:-15px;}
.rolling_wrap .rolling_box .item_list li {padding-left:15px;}





/* 카테고리 베스트 ======================================== */
.p_Best {margin-top:30px;}
.p_Best .item_box .item_icon {display:none;}
.p_Best .item_box .item_icon .type_normal {display:flex}
.p_Best .best_tit {display: flex; flex-direction: row; justify-content: space-between; align-items: center;}
.p_Best .best_tit .tit {font-size: 25px; color: #000; font-weight:700; line-height: 1;}
.p_Best .rolling_wrap {overflow: hidden; margin-top:15px;}
.p_Best .item_box .thumb .upper_icon {display: none;}
.p_Best .rolling_ctrl {margin-left: auto; display: flex; flex-direction: row; justify-content: flex-end; align-items: center;}
.p_Best .rolling_ctrl.if_hide {display:none;}
.p_Best .rolling_ctrl.if_show {display:flex;}
.p_Best .rolling_ctrl .prevnext {width:20px; height:20px; border-radius: 5px; background-repeat: no-repeat !important; background-position: center !important;}
.p_Best .rolling_ctrl .prevnext {background-size: 6px auto !important; box-sizing: border-box; transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out;}
.p_Best .rolling_ctrl .prevnext.prev {background-image: url('../images/c_img/arrow_left.svg');}
.p_Best .rolling_ctrl .prevnext.next {background-image: url('../images/c_img/arrow_right.svg');}
.p_Best .rolling_ctrl .pagi {font-size: 14px; font-weight: 700; color: #000; width:50px; display:flex; justify-content: center; align-items: center; flex-direction:row}
.p_Best .rolling_ctrl .pagi em {margin: 0 2px; opacity: 0.3; filter: alpha(opacity=30); -ms-filter: alpha(opacity=30);}
.p_Best .rolling_ctrl .pagi strong {opacity: 0.3; filter: alpha(opacity=30); -ms-filter: alpha(opacity=30);}
.p_Best .rolling_ctrl .pagi strong.active {opacity: 1; filter: alpha(opacity=100); -ms-filter: alpha(opacity=100);}





/* 통합검색 ======================================== */
.p_CombSearch {}
.p_CombSearch .result_word {color:#000; font-weight:600; font-size:17px; margin-top:10px; text-align:center; word-wrap:break-word; word-break:keep-all; white-space:normal;}
.p_CombSearch .result_word strong {color:#e10000;}
.p_CombSearch .FlexScroll {padding-top:0px;}
.p_CombSearch .find_form {background:var(--gray-light); padding:var(--gap);}
.p_CombSearch .find_form input.input_design {border-radius:100px; padding:0 20px; transition-property:box-shadow, border;}
.p_CombSearch .find_form .btn_search {width:60px; height:100%; position:absolute; right:0; top:0; background:transparent url('../images/ic_find.svg') center center no-repeat; background-size:18px; z-index:3}
.p_CombSearch .find_form input.input_design:focus+ .btn_search {filter: invert(35%) sepia(76%) saturate(2064%) hue-rotate(229deg) brightness(101%) contrast(101%);}
.p_CombSearch .find_form .with_form {flex:1; position:relative;}






/* 상세 탑(사진+정보 묶음) ======================================== */
.p_Vtop {}

/* 상세 사진 ======================================== */
.p_Vphoto {}
.p_Vphoto .big_photo {position: relative;}
.p_Vphoto .big_photo .rolling_wrap {overflow:hidden;}
.p_Vphoto .big_photo .thumb {overflow:hidden; display:flex; flex-direction:row; justify-content:center; align-items:center; width:100%;}
.p_Vphoto .big_photo .thumb img {width:100%;}
.p_Vphoto .rolling_ctrl {position: absolute; left: 50%; bottom: 10px; z-index: 20; width:80px; height:26px; margin-left:-40px;}
.p_Vphoto .rolling_ctrl {display:flex; flex-direction: row; justify-content: space-between; align-items: space-around; }
.p_Vphoto .rolling_ctrl {background: rgba(0, 0, 0, 0.6); border-radius: 100px; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.p_Vphoto .rolling_ctrl .prevnext {width: 26px; border-radius: 5px; background-repeat: no-repeat !important; background-position: center !important;}
.p_Vphoto .rolling_ctrl .prevnext {background-size: auto 8px !important; box-sizing: border-box;}
.p_Vphoto .rolling_ctrl .prevnext.prev {background-image: url('../images/c_img/arrow_left_white.svg');}
.p_Vphoto .rolling_ctrl .prevnext.next {background-image: url('../images/c_img/arrow_right_white.svg');}
.p_Vphoto .rolling_ctrl .pagi {font-size: 13px; font-weight: 500; color: #999; display:flex; justify-content: center; align-items: center; flex-direction:row; flex:1}
.p_Vphoto .rolling_ctrl em {margin: 0 2px;}
.p_Vphoto .rolling_ctrl strong.active {color:#fff;}



/* 상세 해시태그 ======================================== */
.p_Vhashtag {padding:var(--gap); border-bottom:1px solid var(--gray-light);}
.p_Vhashtag .swip_box {}
.p_Vhashtag .swip_box ul {display: flex; flex-direction: row; justify-content: center; align-items: flex-start; flex-wrap: wrap; gap:5px}
.p_Vhashtag .tag {border-radius:100px; box-sizing: border-box; padding: 0 10px; height: 28px; font-size: 12px; color: #666; font-weight: 500; box-sizing:border-box;}
.p_Vhashtag .tag {display:flex; flex-direction: row; justify-content: center; align-items: center; background:#f5f5f5; border:1px solid #f5f5f5;}



/* 상세 정보(상품이름/가격/혜택) ======================================== */
.p_Vname {display:flex; justify-content: center; align-items: flex-start; flex-direction:column; padding:var(--gap);}
.p_Vname .brand {font-size: 14px; color: #0065e3; font-weight: 500; margin-bottom: 10px;}
.p_Vname .item_icon {margin-bottom: 5px; display:flex; justify-content: flex-start; align-items: center; flex-direction:row; gap:5px}
.p_Vname .item_name {}
.p_Vname .item_name dt {font-size: 25px; color: #000; font-weight: 700; line-height: 1.3;}
.p_Vname .item_name dd {font-size: 15px; color: #999; line-height: 1.4; margin-top: 5px;}
.p_Vname .item_price {margin-top:10px; font-size:25px; line-height: 1; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start;}
.p_Vname .item_price .before {position: relative; font-size: 0.65em; color: #aaa; padding: 0 2px; box-sizing: border-box; margin-bottom:5px;}
.p_Vname .item_price .before:before {content:''; width:100%; height:1px; position:absolute; left:0; top:50%; background:#aaa; z-index:1; margin-top:-1px;}
.p_Vname .item_price .price_in {display: flex; flex-direction: row; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap:5px; font-size:25px;}
.p_Vname .item_price .c_cash strong {font-size:25px;}
.p_Vname .item_price .c_cash:before {width:20px; height:20px;}
.p_Vname .item_price .percent {color:var(--color-red); font-weight:600;}
.p_Vname .benefit {margin-top: 10px; display: flex; flex-direction: row; justify-content: flex-start; align-items: flex-start; flex-wrap: wrap; gap:3px 5px;}
.p_Vname .benefit li+ li:before {content:'/'; color:#ccc; font-weight:500; margin-right:5px;}
.p_Vname .benefit .tx {font-size: 14px; color: #222; font-weight: 600;}
.p_Vname .benefit .mb_add .tx {color: #0065e3;}



/* 상세 정보(입력) ======================================== */
.p_Vinfo {border-top: 1px solid #f2f2f2; padding-top:15px; margin-top:15px; box-sizing:border-box; padding:var(--gap); padding-bottom:0px;}
.p_Vinfo dl {display: flex; flex-direction: row; justify-content: flex-start; align-items: flex-start; }
.p_Vinfo dl+ dl {margin-top:10px;}
.p_Vinfo dt,
.p_Vinfo dd {font-size: 13px; line-height: 1.3;}
.p_Vinfo dt {width: 80px; color: #666;}
.p_Vinfo dd {flex: 1; color: #333; word-wrap:break-word; word-break:keep-all; white-space:normal; display:flex; justify-content: flex-start; align-items: center; flex-direction:row; flex-wrap:wrap}
.p_Vinfo .multi {position:relative; line-height:1;}
.p_Vinfo .multi+ .multi {margin-left:10px; padding-left:10px;}
.p_Vinfo .multi+ .multi:before {content:""; width:1px; height:10px; background:#ddd; position:absolute; left:0; top:50%; transform:translateY(-50%);}
.p_Vinfo .multi strong {color:#e10000; font-weight:500;}
.p_Vinfo .btn_view {color:#000; text-decoration:underline; margin-bottom:3px;}
.p_Vinfo .btn_place {color:#000; background:transparent url('../images/c_img/view_place.svg') right center no-repeat; background-size:10px 10px; padding-right:12px;}
.p_Vinfo .delivery_fee {display: flex; flex-direction: row; justify-content: flex-start; align-items: flex-start; flex-wrap: wrap; width:100%;}
.p_Vinfo .delivery_fee+ .delivery_fee {margin-top:3px;}




/* 상세 달력 ======================================== */
.p_Vcalendar {margin-bottom:15px; padding-bottom:15px; border-bottom:1px solid #f2f2f2;}
.p_Vcalendar .month_box {display: flex; flex-direction: row; justify-content: center; align-items: center;}
.p_Vcalendar .month_box .btn {width: 30px; height: 30px; background-repeat: no-repeat !important; background-position: center !important; background-size: 6px auto !important; border-radius:3px;}
.p_Vcalendar .month_box .btn.if_no {pointer-events:none; opacity: 0.3; filter: alpha(opacity=30); -ms-filter:alpha(opacity=30);}
.p_Vcalendar .month_box .btn.prev {background-image: url('../images/c_img/arrow_left.svg');}
.p_Vcalendar .month_box .btn.next {background-image: url('../images/c_img/arrow_right.svg');}
.p_Vcalendar .month_box strong {font-size: 22px; color: #000; font-weight: 700; width: 110px; text-align: center; white-space: nowrap;}
.p_Vcalendar .calendar {box-sizing: border-box; margin-top: 15px;}
.p_Vcalendar .calendar ul {display: flex; flex-direction: row; justify-content: flex-start; align-items: center;}
.p_Vcalendar .calendar li {flex: 1;  line-height: 1; text-align:center;}
.p_Vcalendar .calendar li:first-of-type .day strong {color: #ff6060;}
.p_Vcalendar .calendar li:last-of-type .day strong {color: #5e89ff;}
.p_Vcalendar .week li {font-size: 12px; font-weight: 700; color: #333; margin-bottom:5px;}
.p_Vcalendar .week li:first-of-type {color: #e10000;}
.p_Vcalendar .week li:last-of-type {color: #235eff;}
.p_Vcalendar .day {display: flex; flex-direction: row; justify-content: center; align-items: center; position:relative; padding:5px;}
.p_Vcalendar .day strong {width: 30px; height: 30px; display: flex; flex-direction: row; justify-content: center; align-items: center;}
.p_Vcalendar .day strong {border-radius: 100px; box-sizing: border-box; font-size: 15px; color: #333; font-weight: 600; padding-top:1px;}
.p_Vcalendar .no .day {pointer-events: none !important; }
.p_Vcalendar .no .day strong { opacity: 0.3; filter: alpha(opacity=30); -ms-filter: alpha(opacity=30); position:relative;}
.p_Vcalendar .no .day strong:after {content:""; width:1px; height:60%; background:#333; position:absolute; left:50%; top:50%; mix-blend-mode: multiply}
.p_Vcalendar .no .day strong:after {transform: rotate(45deg); -webkit-transform: rotate(45deg); margin-top:-30%; }
.p_Vcalendar .today .day strong {border: 1px solid #000;}
.p_Vcalendar .today .day strong:after {display:none;}
.p_Vcalendar .hit .day strong {background: #000 !important; color: #fff !important; border:0;}
.p_Vcalendar .hit .day:before {display:none;}




/* 상세 탭 + 컨텐츠영역 ======================================== */
.p_Vconts {padding:0 var(--gap); margin-top:15px}
.p_Vconts .tab_title {display:flex; justify-content:flex-start; align-items: center; flex-direction:row; margin-bottom:10px;}
.p_Vconts .tab_title strong {color:#000; font-size:18px; font-weight:600;}
.p_Vconts .tab_title .btn_ctrl {margin-left:auto; width:30px; height:30px; background:transparent url('../images/arrow_down_outline.svg') center center no-repeat;}
.p_Vconts .tab_title .btn_ctrl {transition:all 0.2s ease-out; -webkit-transition:all 0.2s ease-out; background-size:12px;}
.p_Vconts.view_conts_detail {border-top:8px solid var(--gray-light); padding-top:20px; margin-top:30px}

.p_Vconts .tab_open {display:none;}
.p_Vconts .tab_open.this_fold {height:500px; overflow:hidden; position:relative;}
.p_Vconts .tab_open.this_fold .fold_ctrl {display:flex;}
.p_Vconts .tab_open.this_fold.if_unfold {height:auto !important;}
.p_Vconts .tab_open.this_fold.if_unfold .fold_ctrl {display:none;}
.p_Vconts .fold_ctrl {position:absolute; left:0; bottom:0; width:100%; height:100px; display:flex; justify-content: center; align-items: flex-end; flex-direction:row; padding-bottom:20px; display:none; }
.p_Vconts .fold_ctrl {background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);}
.p_Vconts .fold_ctrl .btn_ctrl {border:1px solid #333; height:45px; color:#333; font-weight:500; margin:0 auto; border-radius:100px; background:#fff; box-shadow:0 0 5px rgba(0,0,0,0.1);}
.p_Vconts .fold_ctrl .btn_ctrl {display:flex; justify-content: center; align-items: center; flex-direction:column; flex:1; max-width:250px; font-size:13px;}
.p_Vconts .fold_ctrl .btn_ctrl strong {background:transparent url('../images/c_img/arrow_down.svg') right 1px center no-repeat; background-size:10px 8px; padding-right:15px;}

.p_Vconts .sub_tit {margin-bottom:10px; display: flex; flex-direction: column; justify-content: center; align-items:flex-start;}
.p_Vconts .sub_tit .tit {font-size:14px; color:#222; font-weight:700; line-height: 1;}
.p_Vconts .sub_tit .add {font-size:12px; color:#999; margin-top:5px;}

.p_Vconts .notify {margin-top:15px;}
.p_Vconts .notify .table {border:1px solid #f2f2f2; box-sizing: border-box;}
.p_Vconts .notify .table dl {display: flex; flex-direction: row; justify-content: flex-start; align-content: stretch; align-items: stretch; font-size:12px;}
.p_Vconts .notify .table dl+ dl {border-top: 1px solid #f2f2f2; box-sizing: border-box;}
.p_Vconts .notify .table dt,
.p_Vconts .notify .table dd {padding:10px; box-sizing: border-box; line-height: 1.4; display: flex; flex-direction: row; justify-content: flex-start; align-items: center;}
.p_Vconts .notify .table dt {background: #f9f9f9; width: 100px; color: #666;}
.p_Vconts .notify .table dd {flex: 1; color: #333;}
.p_Vconts .notify .txt_box {border:1px solid #f2f2f2; box-sizing: border-box; padding:15px; line-height:1.35; font-size:13px;}

.p_Vconts .place_info {margin-top:30px;}
.p_Vconts .place_info .map_box {height:400px; box-sizing:border-box; border:1px solid #e5e5e5; background:#fff;}
.p_Vconts .place_info .info_box {margin-top:15px; display:flex; justify-content: center; align-items: flex-start; flex-direction:column; flex-wrap:wrap; gap:5px}
.p_Vconts .place_info .info_box .place_name {color:#000; font-weight:700; font-size:16px; margin-bottom:5px;}
.p_Vconts .place_info .info_box dl {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; font-size:13px; gap:10px}
.p_Vconts .place_info .info_box dt {color:#999; }
.p_Vconts .place_info .info_box dd {color:#333; font-weight:500;}

.p_Vconts.if_open .tab_open {display:block;}
.p_Vconts.if_open .tab_title .btn_ctrl {transform:rotate(180deg); -webkit-transform:rotate(180deg);}







/* 떠다니는옵션  ======================================== */
.p_Vfix {box-sizing: border-box; z-index:500; visibility:hidden; padding-top:70px; position: fixed; left:0; bottom:0; width:100%; height:100%; }
.p_Vfix {display:flex; justify-content:flex-end; align-items:stretch; flex-direction:column;}
.p_Vfix .bg_close {position:absolute; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.6); z-index:1; opacity: 0; transition:all 0.2s ease-out; -webkit-transition:all 0.2s ease-out;}
.p_Vfix .btn_close {height:20px; width:100%; display: flex; flex-direction: row; justify-content: center; align-items: flex-start; z-index:2; border-radius:30px 30px 0 0;}
.p_Vfix .btn_close {backdrop-filter: blur(1px); -webkit-backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.8); margin-bottom:10px;}
.p_Vfix .btn_close:before {content:""; width:50px; height:5px; border-radius:100px; background:#e5e5e5;}
.p_Vfix .c_btnbox {padding:0px; padding-top:var(--gap) !important;}

.p_Vfix .wrapping {box-sizing:border-box; background: #fff; position: relative; overflow:hidden; padding:var(--gap); z-index:2; max-height:100%; transform:translateY(100%);}
.p_Vfix .wrapping {border-radius: 30px 30px 0 0; z-index: 2; transition:all 900ms var(--motion-cubic); display:flex; justify-content:flex-start; align-items:stretch; flex-direction:column;}
.p_Vfix .wrapping .inner_scroll {flex:1; overflow-y:auto; z-index:3; position:relative;}

.p_Vfix .price_total {margin-top:var(--gap); padding:0 10px;}
.p_Vfix .price_total dl {display:flex; justify-content:flex-start; align-items:center; flex-direction:row; color:#000; gap:5px; }
.p_Vfix .price_total dl+ dl {margin-top:5px;}
.p_Vfix .price_total dd {font-weight:600; font-size:15px; flex:1; text-align:right}
.p_Vfix .price_total dt strong {color:var(--black-gray);}
.p_Vfix .price_total dl.this_delivery dd {color:#23B200}

.p_Vfix.if_open_fix {visibility:visible}
.p_Vfix.if_open_fix .bg_close {opacity:1;}
.p_Vfix.if_open_fix .wrapping {transform:translateY(0);}







/* 상세 옵션 ======================================== */
.p_Vopt {}
.p_Vopt .this_option {}
.p_Vopt .this_option dl {display: flex; flex-direction:column; justify-content: flex-start; align-items: stretch; box-sizing: border-box; }
.p_Vopt .this_option dl+ dl {margin-top: 15px; padding-top: 15px; border-top: 1px solid #f2f2f2;}
.p_Vopt .this_option dt {display:none;}
.p_Vopt .this_option dd {flex: 1;}
.p_Vopt .this_option dd> * {margin-top: 10px;}
.p_Vopt .this_option dd> *:first-of-type {margin-top: 0 !important;}

.p_Vopt .counter_box {display:flex; flex-direction: row; justify-content: flex-start; align-items: stretch; height: 50px; border: 1px solid #e5e5e5; box-sizing: border-box; border-radius:100px; padding:4px;}
.p_Vopt .counter_box .updown_input {text-align: center; font-size: 17px; color: #000; font-weight: 600; cursor: default; flex:1; width:100%;}
.p_Vopt .counter_box a {width: 40px; height: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; border-radius:100px;}
.p_Vopt .counter_box a {transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out;}
.p_Vopt .counter_box .shape {position:relative; width: 12px; height: 12px;}
.p_Vopt .counter_box .shape:before {content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 2px; background: #000; margin-top: -1px;}
.p_Vopt .counter_box .shape:after {content: ''; position: absolute; left: 50%; top: 0; width: 2px; height: 100%; background: #000; margin-left: -1px;}
.p_Vopt .counter_box .btn_down.if_no {pointer-events: none !important; opacity: 0.2; filter: alpha(opacity=20); -ms-filter: alpha(opacity=20);}
.p_Vopt .counter_box .btn_down .shape:after {display:none;}

.p_Vopt .opt_dropbox {position:relative;}
.p_Vopt .opt_dropbox .opt_tx {height: 45px; padding:0 15px; cursor:pointer; color:#666; font-weight:500; box-sizing:border-box; border:1px solid #e5e5e5;}
.p_Vopt .opt_dropbox .opt_tx {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; font-size: 13px; }
.p_Vopt .opt_dropbox .opt_tx strong {flex:1; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; display: -webkit-box; color:var(--black-dark); font-weight:600;}
.p_Vopt .opt_dropbox .opt_tx em.opt_price {color:#000; font-weight:600; margin-left:5px; }
.p_Vopt .opt_dropbox .opt_tx em.opt_remain {color:#999; margin-left:10px; }
.p_Vopt .opt_dropbox .opt_tx.this_selected {border-radius:5px; padding-right:40px;}
.p_Vopt .opt_dropbox .arrow {width:15px; height:15px; position:absolute; right:15px; top:15px; background: url('../images/c_img/arrow_down.svg') center center no-repeat; background-size: 11px 8px !important;}
.p_Vopt .opt_dropbox .arrow {transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; pointer-events:none;}
.p_Vopt .opt_dropbox.before {pointer-events:none; }
.p_Vopt .opt_dropbox.before .arrow {opacity: 0.2; filter: alpha(opacity=20); -ms-filter:alpha(opacity=20);}
.p_Vopt .opt_dropbox.before .opt_tx {color:#999; background:#f5f5f5;}
.p_Vopt .opt_dropbox.if_open_opt .arrow {transform: rotate(180deg); -webkit-transform: rotate(180deg);  z-index:10}
.p_Vopt .opt_dropbox.if_open_opt .opt_tx.this_selected {border-color:#000; border-radius:5px 5px 0 0; border-bottom-color:transparent; color:#000;}
.p_Vopt .opt_dropbox.if_open_opt .opt_list {display:block;}

.p_Vopt .opt_other { background:#f9f9f9;}
.p_Vopt .opt_other ul { padding:15px; padding-top:0px;}
.p_Vopt .opt_other li+ li {margin-top:5px;}
.p_Vopt .opt_other label {position:relative;}
.p_Vopt .opt_other label input {position:absolute; left:0; top:0; opacity: 0; filter: alpha(opacity=0); -ms-filter:alpha(opacity=0);}
.p_Vopt .opt_other label .tx {height:45px; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; border:1px solid #eee; border-radius:5px;}
.p_Vopt .opt_other label .tx {background:#fff; color:#666; font-size: 13px; box-sizing:border-box; padding:0 10px;}
.p_Vopt .opt_other label .tx strong {display: block; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; flex: 1;}
.p_Vopt .opt_other label .tx em.opt_price { color:#000; font-weight:600; margin-left:5px;}
.p_Vopt .opt_other label .tx em.opt_remain {color:#999; margin-left:10px;}
.p_Vopt .opt_other label .shape {width:25px; height:25px; background-repeat:no-repeat; background-size:100% !important; background-position: center !important; margin-right:5px;}
.p_Vopt .opt_other label .shape {border-radius:3px; box-sizing:border-box; overflow: hidden; position: relative;}
.p_Vopt .opt_other label .shape:before {content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; border: 1px solid rgba(0, 0, 0, 0.1);}
.p_Vopt .opt_other label .shape:before {border-radius: 3px; box-sizing: border-box; z-index: 1;}
.p_Vopt .opt_other label .price {width: 90px; margin-left: auto; text-align: right; color: #222; white-space: nowrap;}
.p_Vopt .opt_other label input:checked+ .tx {border-color:#000; color: #000;}
.p_Vopt .opt_other label input:checked+ .tx .shape:before {border: 2px solid #000;}
.p_Vopt .opt_other label.soldout {pointer-events: none;}
.p_Vopt .opt_other label.soldout .tx strong,
.p_Vopt .opt_other label.soldout .tx em {color:#ccc;}
.p_Vopt .opt_other label.soldout .tx em.opt_price {font-weight:400 !important;}
.p_Vopt .opt_other label.soldout .shape {opacity: 0.2; filter: alpha(opacity=20); -ms-filter:alpha(opacity=20);}
.p_Vopt .opt_other {border:1px solid #e5e5e5; border-radius:5px;}
.p_Vopt .opt_other .this_opt_tit {display: flex; flex-direction: row; justify-content: flex-start; align-items: center; height:45px; padding:0 15px; font-weight:500; font-size: 13px;}
.p_Vopt .opt_other .this_opt_tit {color:#000;}
.p_Vopt .opt_other.before .this_opt_tit {color:#666; }
.p_Vopt .opt_other.before {pointer-events:none;}

.p_Vopt .this_volume {display:flex; justify-content: stretch; align-items: stretch; flex-direction:row;}
.p_Vopt .this_volume dt {width: 80px; font-size: 13px; color: #333; line-height: 1; font-weight:600; display:flex; justify-content: center; align-items: flex-start; flex-direction:column; display:none;}
.p_Vopt .this_volume dd {flex:1}

.p_Vopt .type_result {margin-top:10px; box-sizing: border-box; background:#f9f9f9;}
.p_Vopt .type_result dl {display:flex; justify-content: stretch; align-items: stretch; flex-direction:column; padding:10px;}
.p_Vopt .type_result dl+ dl {border-top: 1px dashed #ddd;}
.p_Vopt .type_result dt {width: auto; height: auto; color: #666; line-height: 1.4; font-size:13px; font-weight:500;}
.p_Vopt .type_result dd {display:flex; justify-content: flex-start; align-items:center; flex-direction:row; margin-top:10px;}
.p_Vopt .type_result .add_tag {color: #999; margin-right: 10px; white-space: nowrap;}
.p_Vopt .type_result .date {color: #0065e3; box-sizing: border-box; position: relative; background:transparent url('../images/c_img/ic_date.svg') left center no-repeat; display:block; margin-bottom:3px;}
.p_Vopt .type_result .date {background-size:12px; padding-left:17px; white-space:nowrap}
.p_Vopt .type_result .price {font-size: 14px; color: #000; font-weight: 600; margin-left: auto; display:flex; justify-content: center; align-items: center; flex-direction:row;}
.p_Vopt .type_result .btn_delete {width:25px; height:25px; background: transparent url('../images/c_img/item_del.svg') right center no-repeat; background-size: 19px auto !important;}
.p_Vopt .type_result .counter_box {width: 110px; background: #fff; height: 36px; border-radius:3px;}
.p_Vopt .type_result .counter_box a {width: 26px; border-radius:3px;}
.p_Vopt .type_result .counter_box .updown_input {font-size:14px;}

.p_Vopt .opt_dropbox .opt_list {position:fixed; top:0; left:0; width:100%; background:#fff; z-index:300; box-sizing:border-box; border-radius:30px 30px 0 0; overflow:hidden; transform:translateY(100%); height:1000px; max-height:100%; visibility:hidden}
.p_Vopt .opt_dropbox .opt_list {transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; display:flex !important; justify-content: stretch; align-items: stretch; flex-direction:column;}
.p_Vopt .opt_dropbox .opt_list .c_scroll_v {overflow-x:hidden; overflow-y:auto; flex:1}
.p_Vopt .opt_dropbox .opt_list .opt_tx {border-left:0; border-right:0; border-top:0; border-color:#f2f2f2; padding:0px var(--gap);}
.p_Vopt .opt_dropbox .opt_list .opt_tx.soldout {pointer-events:none;}
.p_Vopt .opt_dropbox .opt_list .opt_tx.soldout strong,
.p_Vopt .opt_dropbox .opt_list .opt_tx.soldout em {color:#ccc;}
.p_Vopt .opt_dropbox .opt_list .opt_tx.soldout em.opt_price {font-weight:400 !important;}
.p_Vopt .opt_dropbox .opt_list a.opt_tx:last-of-type {border-bottom:0;}
.p_Vopt .opt_dropbox .opt_list div.opt_tx {border-top:0; background:#fff !important; padding-bottom:1px;  height:50px; font-weight:600; font-size:15px;}
.p_Vopt .opt_dropbox .opt_list div.opt_tx {margin-top:10px; background:transparent url('../images/c_img/ic_close.svg') right 15px center no-repeat !important; background-size:12px !important; }
.p_Vopt .opt_dropbox .opt_list div.opt_tx strong {color:#000 !important; }
.p_Vopt .opt_dropbox .opt_tx.this_selected {border-color:#e5e5e5 !important; border-radius:5px !important;}

.p_Vopt .opt_dropbox.if_open_opt .opt_list {transform:translateY(0); visibility:visible}

html.if_flatform_ios .p_Vopt .opt_dropbox .opt_list .c_scroll_v {padding-bottom:env(safe-area-inset-bottom);}







/* 마이페이지 메인 ======================================== */
.p_MyPage {}
.p_MyPage .summary_color {margin:-20px var(--gap-opp) 0; background:var(--color-purple); padding-bottom:var(--gap-wide); border-radius:0 0 0 50px;}
.p_MyPage .summary_color .sc_PageTitle {margin-top:0px !important;}
.p_MyPage .sc_GroupTit {margin-top:30px; border-bottom:1px solid var(--black-dark); padding-bottom:10px;}

.p_MyPage .myinfo {margin:0 var(--gap-wide); overflow:hidden; color:#fff;}
.p_MyPage .myinfo dl {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; gap:10px;}
.p_MyPage .myinfo dt {flex:none;}
.p_MyPage .myinfo dd {flex:1}
.p_MyPage .myinfo .level_name {opacity:0.5; margin-bottom:3px;}
.p_MyPage .myinfo .name {font-size:17px; font-weight:600;}
.p_MyPage .myinfo .level_img {width:50px; height:50px; display:flex; justify-content: center; align-items: center; flex-direction:column; overflow:hidden; border-radius:100px; }
.p_MyPage .myinfo .level_img img {width:100%; height:100%;}

.p_MyPage .mycash {margin:0 var(--gap-wide); margin-top:20px; background:rgba(0,0,0,0.4);; border-radius:20px; padding:20px; color:#fff;}
.p_MyPage .mycash dl {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; gap:10px;}
.p_MyPage .mycash dt {flex:none; opacity:0.5;}
.p_MyPage .mycash dd {flex:1; text-align:right; font-weight:500; font-size:14px;}
.p_MyPage .mycash dl+ dl {border-top:1px dashed rgba(255,255,255,0.15); margin-top:5px; padding-top:5px;}
.p_MyPage .mycash .mine {margin-bottom:10px;}
.p_MyPage .mycash .c_cash strong {font-size:20px; color:#fff;}
.p_MyPage .mycash .c_cash:before {width:22px; height:22px; filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(233deg) brightness(106%) contrast(102%); margin-right:2px;}

.p_MyPage .go_link {margin:0 var(--gap-opp); padding:var(--gap-wide) 0; border-bottom:8px solid var(--gray-light);}
.p_MyPage .go_link ul {display:flex; justify-content:center; align-items:center; flex-direction:row;}
.p_MyPage .go_link li {flex:1; box-sizing:border-box;}
.p_MyPage .go_link li+ li {border-left:1px solid var(--gray-light);}
.p_MyPage .go_link .btn_go {display:flex; justify-content:center; align-items:center; flex-direction:column; gap:10px;}
.p_MyPage .go_link .btn_go strong {color:#000; font-weight:500;}
.p_MyPage .go_link .btn_go img {height:24px;}
.p_MyPage .referral_wrap {width: 100%; display:flex; justify-content: center; margin-top: var(--gap-wide);}
.p_MyPage .referral_wrap .referral_inputs input[type=text] { border-radius: 5px; border: 1px solid #eee; padding: 10px; margin-right:5px;}
.p_MyPage .referral_wrap .referral_inputs input[type=button]{ border-radius: 5px; background-color: var(--color-purple); color: #fff; width: 40px; height: 35px;}

html.if_flatform_ios .p_MyPage .summary_color {padding-top:env(safe-area-inset-top);}





/* 마이리스트 공통 ======================================== */
.c_my_list {}
.c_my_list li {border-bottom: 1px solid #f2f2f2; position:relative; gap:10px; padding-bottom:var(--gap); display:flex; justify-content:center; align-items:center; flex-direction:row; flex-wrap;wrap}
.c_my_list li+ li {padding-top:var(--gap);}
.c_my_list .area_conts {display:flex; justify-content: center; align-items: flex-start; flex-direction:column; gap:5px; flex:1}
.c_my_list .area_state {display:flex; justify-content:center; align-items:flex-end; flex-direction:column; gap:5px}
.c_my_list .conts_wrap {display:flex; justify-content: center; align-items: flex-start; flex-direction:column; gap:5px; flex:1}
.c_my_list .tit {color:#000; font-weight:500; position:relative; font-size:14px; word-wrap:break-word; word-break:keep-all; white-space:normal;}
.c_my_list .date {color:var(--gray); font-size:0.9em; font-weight:500; line-height:1; display:flex; justify-content:flex-start; align-items:flex-start; flex-direction:column; gap:3px}
.c_my_list .date.action {color:var(--color-blue); opacity:0.4;}

.c_my_list .thumb {display:flex; justify-content: center; align-items: center; flex-direction:column; width:70px; overflow:hidden; position:relative; border-radius:10px;}
.c_my_list .thumb:before {content:""; width:100%; height:100%; position:absolute; left:0; top:0; background:rgba(0,0,0,0.05);}
.c_my_list .thumb img {width:100%;}

.c_my_list .price {font-weight:600; font-size:18px; color:var(--color-blue); line-height:1;}
.c_my_list .price:before {content:"+";}
.c_my_list li.if_minus .price {color:var(--color-red);}
.c_my_list li.if_minus .price:before {display:none;}
.c_my_list li.if_wait .price {}
.c_my_list .state_tx {font-size:0.9em; font-weight:600; color:var(--gray); line-height:1;}
.c_my_list .order_num {font-size:14px; color:#e10000; font-weight:700; position:relative;}
.c_my_list .order_num:before {content:""; width:100%; height:7px; background:#e10000; opacity: 0.2; filter: alpha(opacity=20); -ms-filter:alpha(opacity=20); position:absolute; left:0; bottom:0;}

.c_my_list .delivery {color:#00b108;}
.c_my_list .c_btn {z-index:11}

.c_my_list.type_cash li:before {content:""; width:30px; height:30px; background:var(--color-blue); border-radius:100px; opacity:0.1; margin-bottom:auto;}
.c_my_list.type_cash li:after {content:""; width:30px; height:30px; background:transparent url('../images/letter_c.svg') center center no-repeat; background-size:12px; position:absolute; left:0; top:0;}
.c_my_list.type_cash li:after {filter: invert(13%) sepia(75%) saturate(5904%) hue-rotate(239deg) brightness(105%) contrast(111%);}
.c_my_list.type_cash li.if_minus:after {filter: invert(20%) sepia(58%) saturate(5508%) hue-rotate(8deg) brightness(108%) contrast(104%);}
.c_my_list.type_cash li.if_minus:before {background:var(--color-red);}
.c_my_list.type_cash li+ li:after {top:15px}

.c_my_list.type_cash li.if_minus .date.action {color:var(--color-red);}



/* 찜한상품 ======================================== */
.c_my_wish {}
.c_my_wish ul {display:grid; grid-template-columns:repeat(3, 1fr); gap:20px 10px}
.c_my_wish li {display:flex; justify-content: stretch; align-items: stretch; flex-direction:column; gap:5px}
.c_my_wish .thumb {position: relative; box-sizing: border-box; overflow: hidden; border-radius:10px;}
.c_my_wish .thumb img {width: 100%;}
.c_my_wish .soldout {position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.8); z-index: 2;}
.c_my_wish .soldout {display: flex; flex-direction: row; justify-content: center; align-items: center; font-size: 15px; font-weight:700; color:#000;}
.c_my_wish .item_name {display: block; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; font-size:13px; color: #333; font-weight: 500;}
.c_my_wish .item_price {font-weight:700; color:#333;}
.c_my_wish .ctrl_box {display: flex; flex-direction: row; justify-content: space-between; align-items: center; border-top: 1px solid #f2f2f2; box-sizing: border-box; padding-top:5px;}
.c_my_wish .ctrl_box .btn_del {width: 20px; height: 20px; background: transparent url('../images/c_img/item_del.svg') center no-repeat; background-size:16px;}
.c_my_wish.type_main li {width:14.28%;}






/* 리스트통계 ======================================== */
.c_my_stats {margin-bottom:15px; border:3px solid rgba(var(--color-blue-rgba),0.15); box-sizing: border-box; border-radius:10px; display:flex; justify-content:stretch; align-items:stretch; flex-direction:column; overflow:hidden;}
.c_my_stats .ul {display: flex; flex-direction: row; justify-content: flex-start; align-items: center; box-sizing: border-box; flex:1}
.c_my_stats .li {flex: 1;  position: relative; padding:var(--gap) 0; }
.c_my_stats .li+ .li .state_box {border-left:1px solid #f2f2f2;}
.c_my_stats .state_box {display: flex; flex-direction: column-reverse; justify-content: center; align-items: center; box-sizing: border-box; position: relative; gap:6px}
.c_my_stats .state_box .tit {font-size:11px; color: #000; font-weight:500; opacity:0.4;}
.c_my_stats .state_box .total {display: flex; flex-direction: row; justify-content: center; align-items: center; color: #000; line-height: 1; white-space: nowrap; font-size:17px; font-weight:600;}
.c_my_stats .hit .state_box .tit {color:var(--color-red);}
.c_my_stats .hit .state_box .total {color:var(--color-red);}
.c_my_stats .usable {background:rgba(var(--color-blue-rgba),0.1); display:flex; justify-content:center; align-items:center; flex-direction:column; padding:var(--gap);}
.c_my_stats .c_cash strong {font-size:25px;}
.c_my_stats .c_cash:before {width:22px; height:22px;}
.c_board_ctrl .c_my_stats {margin-bottom:0px;}




/* 하단 도움말 ======================================== */
.c_user_guide {margin-top:30px; padding:20px; background:var(--gray-mid); border-radius:15px;}
.c_user_guide dt {font-size:14px; color:#222; margin-bottom:10px; font-weight:600;}
.c_user_guide dd {font-size: 12px; color:#999; line-height: 1.4; word-wrap:break-word; word-break:keep-all; white-space:normal;}
.c_user_guide dd.red {color: #e10000;}
.c_user_guide dd+ dd {margin-top:3px;}
.c_user_guide dd em {text-decoration:underline; color:#0065e3; font-weight:500;}
.c_user_guide dd strong {text-decoration:underline; color: #e10000;}
.c_user_guide dl+ dl {margin-top:20px}
.c_user_guide .guide_table {padding-left:0px;}
.c_user_guide .guide_table:before {display:none;}
.c_user_guide .guide_table table {width:100%; table-layout:fixed;}
.c_user_guide .guide_table th {border:1px solid #ddd; padding:5px 5px 7px; font-weight:500 !important; background:#f5f5f5;}
.c_user_guide .guide_table td {border:1px solid #ddd; text-align:center; padding:5px; line-height:1.3; word-wrap:break-word; word-break:keep-all; white-space:normal;}






/* 상단 컨트롤 ======================================== */
.c_board_ctrl {display:flex; flex-direction: column; justify-content: stretch; align-items: stretch; border-bottom: 1px solid #333; box-sizing: border-box; gap:15px; padding:var(--gap); padding-top:0px; }
.FlexScroll .c_board_ctrl {padding-left:0px; padding-right:0px; margin-bottom:var(--gap);}

.c_board_ctrl .board_tit {display: flex; flex-direction: row; justify-content: flex-start; align-items: center; color:#000; font-size:17px; font-weight:600; gap:5px;}
.c_board_ctrl .board_tit .total {white-space:nowrap; color:#000;}

.c_board_ctrl .board_ctg {box-sizing:border-box; position:relative; overflow:hidden; margin:0 var(--gap-opp); padding:0 var(--gap);}
.c_board_ctrl .board_ctg .swipe_box {}
.c_board_ctrl .board_ctg .swipe_box ul {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; gap:5px; width:max-content;}
.c_board_ctrl .board_ctg .swipe_box li {}
.c_board_ctrl .board_ctg .ctg {color:#222; font-size:12px; font-weight:500; box-sizing:border-box; border:1px solid #e5e5e5; border-radius:100px; display:flex; justify-content:center; align-items:center; flex-direction:column; height:35px;}
.c_board_ctrl .board_ctg .ctg {padding:0 10px; min-width:60px}
.c_board_ctrl .board_ctg .hit .ctg {color:#fff; background:#222; border-color:#222;}

.c_board_ctrl .board_search {position:relative; box-sizing:border-box; flex:1}
.c_board_ctrl .board_search .input_design {padding-right:50px; height:50px; background:var(--gray-light);}
.c_board_ctrl .board_search .btn_search {position: absolute; right: 0; top: 0; width: 45px; height: 100%; z-index: 10; cursor: pointer;}
.c_board_ctrl .board_search .btn_search {background: transparent url('../images/ic_find.svg') center center no-repeat; background-size:15px auto !important;}
.c_board_ctrl .board_search .btn_reset {position: absolute; right: 45px; top:0; z-index: 10; box-sizing: border-box; width:30px; height:100%; z-index:10;}
.c_board_ctrl .board_search .btn_reset {display:flex; justify-content: center; align-items: center; flex-direction:column;}
.c_board_ctrl .board_search .btn_reset:before {content:""; width:20px; height:20px; border-radius:100px; display:block;}
.c_board_ctrl .board_search .btn_reset:before {background: #aaa url("../images/c_img/ic_close_sm_white.svg") center center no-repeat; background-size: 8px auto !important; }

.c_board_ctrl .search_filter {width:100%; display:flex; justify-content:flex-start; align-items:center; flex-direction:row; flex-wrap:wrap; position:relative;}
.c_board_ctrl .search_filter .btn_find_open {width:50px; height:35px; background: transparent url('../images/btn_open_date.svg') right center no-repeat; background-size:25px auto !important; position:absolute; right:0; top:0;}

.c_board_ctrl .period_box {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; flex:1; gap:5px}
.c_board_ctrl .period_box .btn {font-size:12px; height:35px; display:flex; justify-content: center; align-items: center; flex-direction:column; width:60px; border:1px solid var(--gray-clear); box-sizing:border-box; border-radius:100px;}
.c_board_ctrl .period_box .btn {color:var(--black-dark); font-weight:500;}
.c_board_ctrl .period_box .btn.hit {border-color:#222; background:#222 !important; color:#fff;}

.c_board_ctrl .due_box {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; gap:5px; width:100%; margin-top:15px; display:none;}
.c_board_ctrl .due_box .dash {color:#000; font-weight:600;}
.c_board_ctrl .due_box .btn_find {width:50px; height:50px; background:var(--gray-light) url('../images/ic_find.svg') center center no-repeat; background-size: 15px auto !important; flex:none; border-radius:10px;}
.c_board_ctrl .due_box.if_open {display:flex;}





/* 공지노출 ======================================== */
.c_board_notice {margin-bottom:var(--gap); padding:0 var(--gap)}
.c_board_notice .rolling_box {overflow:hidden; border-radius:15px; }
.c_board_notice .one_post {display:flex; justify-content:flex-start; align-items:center; flex-direction:row; background:var(--color-purple); height:60px; color:#fff; position:relative; overflow:hidden; padding:0 var(--gap); gap:15px}
.c_board_notice .one_post .title {font-size:15px; font-weight:500; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp:1; -webkit-box-orient:vertical; display:-webkit-box; flex:1}
.c_board_notice .one_post .title {background:transparent url('../images/ic_board_notice.svg') left center no-repeat; background-size:18px; padding-left:25px;}
.c_board_notice .one_post .date {opacity:0.5;}

.c_board_notice .rolling_icon {display:flex; justify-content:center; align-items:center; flex-direction:row; gap:5px; margin-top:5px;}
.c_board_notice .rolling_icon .icon {width:5px; height:5px; background:#dedede; border-radius:100px; transition:all 0.2s ease-out; -webkit-transition:all 0.2s ease-out;}
.c_board_notice .rolling_icon .icon.active {background:#222;}





/* 목록 기본형 ======================================== */
.c_board_list {}
.c_board_list ul {display: flex; flex-direction: row; justify-content: flex-start; align-items: center; flex-wrap:wrap; border-bottom: 1px solid #f2f2f2; box-sizing: border-box; position: relative; gap:15px; padding:var(--gap) 0;}
.FlexScroll> div:first-of-type.c_board_list {margin-top:var(--gap-opp);}
.c_board_list li {box-sizing: border-box; color:#000; display:flex; justify-content: flex-start; align-items: flex-start; flex-direction:row; gap:5px}
.c_board_list li.this_tit {flex:1;}
.c_board_list li.this_info {flex: none;}
.c_board_list .writer {width:80px; text-align:center; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; display: -webkit-box;}
.c_board_list .date {white-space:nowrap; color:var(--gray); line-height:1; font-size:0.85em;}
.c_board_list .ic_q {font-weight:600; color:#000; font-size:1.3em;}
.c_board_list .about_item {color:#888; position:relative; z-index:10; overflow:hidden; padding-left:12px; font-weight:400;}
.c_board_list .about_item {text-overflow:ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; display: -webkit-box; }
.c_board_list .about_item:before {content:""; width:7px; height:7px; box-sizing:border-box; border:2px solid #ccc; border-top:0; border-right:0; position:absolute; left:0; top:50%; margin-top:-4px;}
.c_board_list .posting {display: flex; flex-direction:column; justify-content: center; align-items: flex-start; gap:5px; flex:1;}
.c_board_list .posting .tit {overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; display: -webkit-box; font-size:14px; font-weight:500;}
.c_board_list .posting .field {color:#999;}
.c_board_list .posting .tx {display: inline;}
.c_board_list .posting .who {}
.c_board_list .posting .who em {color:#999;}
.c_board_list .state_icon {flex: none; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; gap:10px}
.c_board_list .state_icon img {height: 16px;}
.c_board_list .state_icon .ic_reply {display: flex; flex-direction: row; justify-content: flex-start; align-items: center; gap:3px}
.c_board_list .state_icon .ic_reply em {color: #222; font-weight:700;}

.c_board_list .file_down {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; gap:10px; flex-wrap:wrap; margin-top:10px; }
.c_board_list .file_down .link {border:1px solid #e5e5e5; padding:0 10px; color:#333; font-size:12px; height:30px; font-weight:500; display:flex; justify-content: flex-start; align-items: center; flex-direction:row;}
.c_board_list .file_down .link {box-sizing: border-box; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; border-radius:100px;}
.c_board_list .file_down .link {background:#fff url('../images/c_img/ic_attach.svg') 10px center no-repeat; background-size:12px; padding-left:28px;}
.c_board_list .file_down .link {transition: all 0.25s ease-out; -webkit-transition: all 0.25s ease-out;}

.c_board_list .open_conts {display:none; width:100%; position:relative; z-index:10}

.c_board_list .answer {padding-left:20px; box-sizing: border-box; position: relative; margin-top:15px; color:#fff;}
.c_board_list .answer .edge {position: absolute; left: 0; top: 0; width:20px; height: 100%; z-index: 1; background: var(--black-dark);}
.c_board_list .answer .edge:before {content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; border-radius: 0 30px 0 0; box-sizing: border-box; background: #fff;}
.c_board_list .answer .answer_in {background: var(--black-dark); padding:var(--gap); border-radius: 0 20px 20px 20px; box-sizing: border-box;}
.c_board_list .answer .admin {display: flex; flex-direction: row; justify-content: flex-start; align-items: center; line-height: 1; font-size: 13px;gap:10px}
.c_board_list .answer .admin .name {font-weight:600;}
.c_board_list .answer .admin .date {opacity:0.4; font-size:0.9em;}
.c_board_list .answer .editor {line-height: 1.4; margin-top:10px; color:#fff;}
.c_board_list .my_post {border:2px solid #f2f2f2; border-radius:10px; padding:var(--gap); }
.c_board_list .my_post .conts {line-height:1.4; color:#666;}
.c_board_list .my_post .c_btnbox {margin-top:10px;}

.c_board_list .if_open {background:#fff !important;}
.c_board_list .if_open .open_conts {display:block;}
.c_board_list .if_open .posting .tit {-webkit-line-clamp:initial;}
.c_board_list .if_open .this_info:before {transform: rotate(180deg); -webkit-transform: rotate(180deg); opacity: 1; filter: alpha(opacity=100); -ms-filter:alpha(opacity=100);}
.c_board_list .if_open .posting .tit {color:var(--color-blue);}

.c_board_list.type_faq .open_conts {background:#f5f5f5; padding:var(--gap); border-radius:10px;}







/* 게시물 보기 ======================================== */
.c_board_view {border-top:2px solid #222;}
.c_board_view .view_top {text-align:center; padding:var(--gap) 0;}
.c_board_view .view_top .tit {color:#000; font-weight:600; font-size:17px; line-height:1.4;}
.c_board_view .view_top .info {margin-top:5px; display:flex; justify-content: center; align-items: center; flex-direction:row; flex-wrap:wrap; gap:5px 10px ; font-size:12px; color:#aaa;}
.c_board_view .view_conts {border-top:1px solid #f2f2f2; padding-top:15px; font-size:13px; line-height:1.4; overflow:hidden; padding-bottom:30px;}
.c_board_view .view_conts img {max-width:100%}
.c_board_view .file_down {display:flex; justify-content: flex-start; align-items: center; flex-direction:row; gap:10px; flex-wrap:wrap; margin-top:15px; }
.c_board_view .file_down .link {border:1px solid #e5e5e5; padding:0 15px; color:#333; font-size:13px; height:35px; font-weight:500; display:flex; justify-content: flex-start; align-items: center; flex-direction:row;}
.c_board_view .file_down .link {box-sizing: border-box; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; border-radius:100px;}
.c_board_view .file_down .link {background:#f5f5f5 url('../images/c_img/ic_attach.svg') 15px center no-repeat; background-size:14px; padding-left:35px;}
.c_board_view .file_down .link {transition: all 0.25s ease-out; -webkit-transition: all 0.25s ease-out;}

.c_board_view .reply {margin-top:15px; border:2px solid #f2f2f2; padding:var(--gap); border-radius:10px;}
.c_board_view .reply .form {display:flex; justify-content: stretch; align-items: stretch; flex-direction:column; gap:10px}
.c_board_view .reply .form .text_design {height:100px; flex:1; background:#fafafa;}
.c_board_view .reply .form .btn_ok {background:#222; color:#fff; font-size:13px; cursor:pointer; font-weight:500; box-sizing:border-box; border-radius:10px; padding:10px;}
.c_board_view .reply .list {margin-top:15px; }
.c_board_view .reply .list li {position:relative; display:flex; justify-content: flex-start; align-items: center; flex-direction:row; flex-wrap:wrap; font-size:13px; line-height:1; gap:5px}
.c_board_view .reply .list li+ li {border-top:1px dashed #f2f2f2; margin-top:10px; padding-top:10px;}
.c_board_view .reply .list .name {font-weight:600; color:#333; }
.c_board_view .reply .list .date {color:#aaa; font-size:12px;}
.c_board_view .reply .list .btn_delete {display:flex; justify-content: center; align-items: center; flex-direction:column; width:16px; height:16px;}
.c_board_view .reply .list .btn_delete {background:transparent url('../images/c_img/ic_delete.svg') center center no-repeat; background-size:13px;}
.c_board_view .reply .list .conts {width:100%; line-height:1.4; color:#888;}

.c_board_view .nextprev {border-bottom:1px solid #f2f2f2; margin-top:30px;}
.c_board_view .nextprev li {list-style:none; display:flex; justify-content: flex-start; align-items: center; flex-direction:row; padding:15px 0; font-size:13px; border-top:1px solid #f2f2f2; gap:15px; color:#aaa}
.c_board_view .nextprev .tx {}
.c_board_view .nextprev .tit {flex:1;}
.c_board_view .nextprev .link {color:#333; overflow:hidden; text-overflow:ellipsis; -webkit-line-clamp: 1; -webkit-box-orient: vertical; display: -webkit-box;}
.c_board_view .nextprev .date {margin-left:auto; white-space:nowrap; font-size:12px;}






/* 출금신청폼 ========================================= */
.CashWithdraw {flex:1; padding:0 var(--gap); display:flex; justify-content:stretch; align-items:stretch; flex-direction:column;}

.CashWithdraw .my_account {display:flex; justify-content:center; align-items:center; flex-direction:column; flex:none; gap:10px}
.CashWithdraw .my_account .mine {font-size:14px; color:var(--gray); font-weight:500;}
.CashWithdraw .my_account .mine.before {font-weight:400;}
.CashWithdraw .my_account .btn_setting {display:flex; justify-content:center; align-items:center; flex-direction:column; height:30px; box-sizing:border-box; border-radius:100px; border:1px solid var(--gray-clear); background:var(--gray-white); padding:0 12px;}
.CashWithdraw .my_account .btn_setting strong {background:transparent url('../images/ic_write.svg') left center no-repeat; color:#000; background-size:11px; padding-left:15px;}

.CashWithdraw .enter_cash {flex:1; display:flex; justify-content:center; align-items:stretch; flex-direction:column; flex-wrap:wrap; gap:10px}
.CashWithdraw .enter_cash .input_cash {width:100%; text-align:center; color:#000; font-size:45px; font-weight:700; border-bottom:3px solid #000; padding-bottom:10px;}
.CashWithdraw .enter_cash .guide {display:flex; justify-content:space-between; align-items:space-between; flex-direction:row}
.CashWithdraw .enter_cash .usable {display:flex; justify-content:center; align-items:center; flex-direction:row; gap:5px; font-weight:500; color:var(--color-blue);}

.CashWithdraw .key_pad {display:flex; justify-content:stretch; align-items:stretch; flex-direction:column; flex:none;}
.CashWithdraw .key_pad ul {display:grid; grid-template-columns:repeat(3, 1fr); grid-template-rows:repeat(4, 1fr); margin:var(--gap-wide) 0; flex:1; gap:10px 20px}
.CashWithdraw .key_pad li {display:flex; justify-content:center; align-items:stretch; flex-direction:column;}
.CashWithdraw .key_pad .btn_key {display:flex; justify-content:center; align-items:center; flex-direction:column; color:#000; font-size:30px; font-weight:600; height:60px; border-radius:15px;}
.CashWithdraw .key_pad .btn_key:active {background:rgba(var(--color-blue-rgba),0.2);}
.CashWithdraw .key_pad .btn_backspace {background:transparent url('../images/btn_backspace.svg') center center no-repeat; background-size:30px;}

html.if_flatform_ios .CashWithdraw .key_pad .btn_key {-webkit-tap-highlight-color:rgba(var(--color-blue-rgba),0.2);}





/* 메인페이지 ========================================= */
.FrontHome {padding-top:0px;}

.FrontHome .top_area {display:flex; justify-content:space-between; align-items:center; flex-direction:row; height:70px;}
.FrontHome .top_area .myname {color:#000; font-size:20px; font-weight:700;}
.FrontHome .top_area .myname strong {background:transparent url('../images/arrow_right_outline.svg') right center no-repeat; background-size:8px; padding-right:13px;}
.FrontHome .top_area .go_link {display:flex; justify-content:center; align-items:center; flex-direction:row; margin-right:-10px;}
.FrontHome .top_area .go_link .btn_link {padding:0 10px; position:relative;}
.FrontHome .top_area .go_link .btn_link img {height:22px;}
.FrontHome .top_area .go_link .btn_link.if_deny {opacity:0.3;}
.FrontHome .top_area .go_link .btn_link.if_deny .no_read {display:none;}
.FrontHome .top_area .go_link .btn_link.if_deny:before {content:""; width:1px; height:33px; background:#000; position:absolute; left:50%; top:50%;}
.FrontHome .top_area .go_link .btn_link.if_deny:before {transform:translate(-50%, -50%) rotate(45deg);}
.FrontHome .top_area .go_link .no_read {width:5px; height:5px; background:var(--color-red); border-radius:10px; position:absolute; left:50%; top:-3px; margin-left:9px;}

.FrontHome .my_summary {overflow:hidden; display:flex; justify-content:center; align-items:stretch; flex-direction:row; gap:15px;}
.FrontHome .my_summary .cash_info {flex:1; background-image: linear-gradient(121deg, var(--color-purple), var(--color-blue) 97%); border-radius:20px; padding:0 20px; box-sizing:border-box; color:#fff;}
.FrontHome .my_summary .cash_info {display:flex; justify-content:space-between; align-items:center; flex-direction:row; flex-wrap:wrap}
.FrontHome .my_summary .cash_info dl {text-align:center; margin:20px 0;}
.FrontHome .my_summary .cash_info dt {opacity:0.5; margin-bottom:5px; font-weight:500; font-size:12px; line-height:1;}
.FrontHome .my_summary .cash_info dd {font-weight:600; font-size:15px;}
.FrontHome .my_summary .usable {position:relative; width:100%; box-sizing:border-box; border-bottom:1px solid rgba(255,255,255,0.1); padding:30px 0;}
.FrontHome .my_summary .usable {display:flex; justify-content:space-between; align-items:center; flex-direction:row}
.FrontHome .my_summary .usable .txt {font-size:14px; font-weight:500; opacity:0.5; display:flex; justify-content:center; align-items:center; flex-direction:row; gap:3px}
.FrontHome .my_summary .usable .tag {border-radius:100px; width:16px; height:16px; background:#fff; color:var(--color-blue); font-weight:700; display:flex; justify-content:center; align-items:center; flex-direction:column; font-size:12px;}
.FrontHome .my_summary .c_cash strong {font-size:27px; color:#fff;}
.FrontHome .my_summary .c_cash:before {width:22px; height:22px; filter:invert(100%) sepia(100%) saturate(0%) hue-rotate(233deg) brightness(106%) contrast(102%)}

.FrontHome .my_summary .go_link {flex:none; width:80px; display:flex; justify-content:center; align-items:stretch; flex-direction:column;}
.FrontHome .my_summary .go_link li {flex:1; display:flex; justify-content:stretch; align-items:stretch; flex-direction:column; box-sizing:border-box;}
.FrontHome .my_summary .go_link li+ li {border-top:1px solid var(--gray-mid);}
.FrontHome .my_summary .go_link .btn_link {flex:1; display:flex; justify-content:space-between; align-items:center; flex-direction:row;}
.FrontHome .my_summary .go_link .btn_link strong {color:#000; font-weight:500;}
.FrontHome .my_summary .go_link .btn_link img {width:18px;}

.FrontHome .ad_banner {margin-top:20px;}
.FrontHome .ad_banner .rolling_wrap {position:relative;}
.FrontHome .ad_banner .rolling_box {border-radius:15px; overflow:hidden;}
.FrontHome .ad_banner .banner img {width:100%;}
.FrontHome .ad_banner .roll_pagi {position:absolute; right:8px; bottom:8px; z-index:11; display:flex; justify-content:center; align-items:center; flex-direction:row; border-radius:100px;}
.FrontHome .ad_banner .roll_pagi {color:#fff; font-size:9px; font-weight:600; height:21px; background:rgba(0,0,0,0.5); width:40px; gap:1px}

.FrontHome .sc_GroupTit {margin-bottom:10px;}
.FrontHome .sc_GroupTit .tit {font-size:20px; font-weight:800;}

.FrontHome .md_reward {margin-top:30px;}
.FrontHome .md_reward .p_MissionList {overflow-x:auto; margin:0 var(--gap-opp);}
.FrontHome .md_reward .p_MissionList ul {display:flex; justify-content:flex-start; align-items:flex-start; flex-direction:row; width:max-content; padding:0 var(--gap); gap:10px}
.FrontHome .md_reward .p_MissionList li {width:160px;}

.FrontHome .md_item {margin-top:40px;}
.FrontHome .md_item .tab_box {overflow-x:auto; margin-bottom:10px;}
.FrontHome .md_item .tab_box ul {display:flex; justify-content:flex-start; align-items:center; flex-direction:row; width:max-content; gap:5px}
.FrontHome .md_item .tab_box .tab {display:flex; justify-content:center; align-items:center; flex-direction:column; height:30px; padding:0 12px; border-radius:100px; border:1px solid var(--gray);}
.FrontHome .md_item .tab_box .tab {color:var(--black-gray); font-weight:500;}
.FrontHome .md_item .tab_box li.hit .tab {background:#000; color:#fff; border-color:#000;}
.FrontHome .md_item .js_main_md {margin:0 var(--gap-opp);}
.FrontHome .md_item .item_list {overflow-x:auto;}
.FrontHome .md_item .item_list ul {display:flex; justify-content:flex-start; align-items:flex-start; flex-direction:row; width:max-content; padding:0 var(--gap); gap:10px}
.FrontHome .md_item .item_list li {width:130px;}
.FrontHome .md_item .item_box .info .sub_name {display:none;}

html.if_flatform_ios .FrontHome {padding-top:env(safe-area-inset-top);}









/* 슬라이드 메뉴 ======================================== */
.p_Slide {position:fixed; right:0; top:0; width:100%; height:100%; background:#fff; z-index:500; display:flex; justify-content:flex-start; align-items:stretch; flex-direction:column;}
.p_Slide {transform:translateX(100%); transition:all 900ms var(--motion-cubic)}
.p_Slide .group+ .group {padding-top:20px; margin-top:20px; border-top:8px solid var(--gray-light);}
.p_Slide .menu_list {padding:0px;}
.p_Slide .menu_list li+ li {border-top:1px solid var(--gray-light);}
.p_Slide .btn_menu {padding:0 var(--gap); height:60px; display:flex; justify-content:space-between; align-items:center; flex-direction:row}
.p_Slide .btn_menu .menu {display:flex; justify-content:center; align-items:center; flex-direction:row; gap:5px}
.p_Slide .btn_menu .menu strong {color:var(--black-dark); font-size:15px; font-weight:500;}
.p_Slide .btn_menu .ic_arrow {width:20px; height:20px; background:transparent url('../images/arrow_right_outline.svg') right center no-repeat; background-size:6px;}

.p_Slide .btn_menu .no_read {width:18px; height:18px; background:var(--color-red); color:#fff; font-size:12px; font-weight:600; border-radius:100px; display:flex; justify-content:center; align-items:center; flex-direction:column;}
.p_Slide .btn_menu .version {color:var(--color-red); font-weight:600; font-size:1.2em}
.p_Slide .btn_menu .update {font-weight:500; height:26px; border-radius:100px; color:var(--color-red); background:rgba(var(--color-red-rgba),0.1); padding:0 10px; font-size:12px;}
.p_Slide .btn_menu .update {display:flex; justify-content:center; align-items:center; flex-direction:column;}
.p_Slide .btn_menu div.update {color:var(--gray); background:var(--gray-light); padding:0 10px;}
.p_Slide .btn_menu .btn_tx {font-weight:500; display:flex; justify-content:center; align-items:center; flex-direction:column; height:28px; border-radius:100px; color:var(--black-gray); background:var(--gray-mid); padding:0 10px; font-size:12px;}

.p_Slide .open_company {margin:0 var(--gap); background:var(--gray-light); border-radius:10px; padding:20px; font-size:12px; display:none;}
.p_Slide .open_company dl+ dl {margin-top:5px;}
.p_Slide .open_company dl {display:flex; justify-content:flex-start; align-items:center; flex-direction:row; gap:10px}
.p_Slide .open_company dt {color:var(--black-gray); width:100px;}
.p_Slide .open_company dd {font-weight:500;}
.p_Slide .open_company.if_open {display:block;}

.p_Slide.if_open {transform: translateX(0);}






/* 앱 알림함 ======================================== */
.alarm_app {}
.alarm_app .message_list {}
.alarm_app .message_list li+ li {padding-top:30px;}
.alarm_app .message_box {padding-left:20px; position:relative; overflow:hidden; }
.alarm_app .message_box:before {content:""; width:7px; height:7px; background:var(--color-blue); border-radius:100px; position:absolute; left:3px; top:2px;}
.alarm_app .message_box .date {color:var(--color-blue); font-size:12px; line-height:1;}
.alarm_app .message_box .conts {margin-top:8px;}
.alarm_app .message_box .conts dt {color:#000; font-size:16px; font-weight:600; line-height:1.4; letter-spacing:-0.5px; margin-bottom:5px;}
.alarm_app .message_box .conts dd {color:#888; font-size:13px; line-height:1.4; letter-spacing:-0.5px;}
.alarm_app .message_box .photo {margin-bottom:10px;}
.alarm_app .message_box .photo img {max-width:100%}

.alarm_app .message_box .btn_link {display:inline-flex; justify-content: center; align-items: center; flex-direction:row; margin-top:5px; height:30px; border-radius:100px; border:1px solid var(--color-blue);}s
.alarm_app .message_box .btn_link {background:rgba(var(--color-blue-rgba),0.1); padding:0 15px;}
.alarm_app .message_box .btn_link strong {color:var(--color-blue); line-height:1; font-size:13px; font-weight:600;}

.alarm_app .no_list {display:flex; justify-content: center; align-items: center; flex-direction:column; height:100%;}
.alarm_app .no_list strong {color:#bbb; font-size:13px; line-height:1; margin-top:15px; letter-spacing:-0.5px;}
.alarm_app .no_list .ic {opacity: 0.2; filter: alpha(opacity=20); -ms-filter:alpha(opacity=20);}
.alarm_app .no_list .ic svg {width:50px;}

