

/* ==== common ==== */
/* common fonts */
body, th, td, input, select, textarea, button {
    font-family: 'NEXON Lv1 Gothic','Noto Sans KR', sans-serif;
    color: inherit;
}



.sound_only {
    overflow: hidden;
    display: inline-block;
    position: absolute;
    z-index: -1;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
}
.only_guide_txt {
    font-size: 20px;
    margin-bottom: 20px;
}
label {
    cursor:pointer;
}

button {
    border: none;
    background: transparent;
}

/* === common_color */
.color_orange {
	color: #f07133 !important;
}
.color_gray {
	color: #888 !important;
}
.color_black {
    color: #222 !important;
}
.color_navy {
    color: #110252;
}

/* ==== common layout ==== */

.w100 {
    width: 100%;
}

.mob_inner {
    padding: 0 15px;
}
.flexbox {
    display: flex;
}
.flexbox_wrap {
    display: flex!important;
    flex-wrap: wrap;
}
.align_center {
    align-items: center !important;
}
.align_flex_start {
    align-items: flex-start !important;
}
.align_flex_end {
    align-items: flex-end !important;
}
.justify_flex_end {
    justify-content: flex-end !important;
}
.justify_flex_start {
    justify-content: flex-start !important;
}
.justify_flex_center {
    justify-content: center !important;
}


/* ==== buttons ===== */
.n_btn {
	display: inline-block;
	letter-spacing: -0.1em;
	text-align: center;
}
.btn_h30 {
	height: 30px;
	line-height: 28px;
	font-size: 14px;
	border-radius: 3px;
	padding: 0 15px;
}
.btn_h32 {
	height: 32px;
	line-height: 30px;
	font-size: 13px;
	border-radius: 6px;
	padding: 0 10px;
}
.btn_h35 {
	height: 35px;
	line-height: 33px;
	font-size: 14px;
	border-radius: 6px;
	padding: 0 10px;
}

.btn_h40 {
	height: 40px;
	line-height: 38px;
	font-size: 14px;
	border-radius: 6px;
	padding: 0 10px;
}
.btn_h50 {
	height: 50px;
	line-height: 48px;
	font-size: 16px;
	border-radius: 6px;
	padding: 0 10px;
}
.btn_black_border {
    border: 1px solid #222222;
    color: #222222;;
}
.btn_gray_border {
    color: #999999;
    border: 1px solid #ccc;
}
.btn_navy {
    color: #fff;
    border: 1px solid #110252;
    background-color: #110252;
}
.btn_shadow_navy {
    color: #222;
    box-shadow: 0 5px 10px 5px rgb(32 29 53 / 10%);
}

/* ==== common_checkbox */
.inp_chk {
    /* display:flex; */
    display: block;
    /* display: inline-block; */
    cursor:pointer;
    align-items:center;
    position:relative;
    /* overflow:hidden; */
    min-height: 20px;

}
.inp_chk > input {
    overflow: hidden;
    display: inline-block;
    position: absolute;
    z-index: -1;
    border: 0;
    width: 0px;
    height: 0px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
}
.inp_chk > label {
    display: inline-block;
    font-size:14px;
    color:#222;
    font-weight:400;
    position: relative;
    min-height: 19px;
    min-width: 19px;
    padding-left: 23px;
    line-height: 18px;
}
.inp_chk > label.dlvryExprss{display: block;}

.inp_chk > label::before {
    width: 18px;
    height: 18px;
    content:" ";
    background:url("/design/vittz/mo/img/bg_chkFls.png") no-repeat;
    background-size:100% auto;
    display:inline-block;
    /* margin-right: 5px; */
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 0px;
}
.inp_chk > input:checked ~ label {
    color:#110252;

}
.inp_chk > input:checked ~ label::before {
    background:url("/design/vittz/mo/img/bg_chkTru.png") no-repeat;
    background-size:100% auto;
}



/* ==== common_input ==== */
.common_input {
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
    padding: 0 10px;
    font-size: 14px;
}

.common_input:focus {
    border-color: #111;
    box-shadow: 0 3px 10px 0 rgba(0,0,0,0.15);
}


/* deletable input */
.deletable_input {
    position: relative;
}
.deletable_input .common_input {
    padding-right: 50px;
}
.deletable_input .button_del {
    display: block;
    width: 40px;
    height: 40px;
    background: url('/design/vittz/mo/img/btn_input_del.png') no-repeat center;
    background-size: 10px auto;
    position: absolute;
    right: 5px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.deletable_input .common_input:focus + .button_del {
    opacity: 1;
    pointer-events: auto;
}


/* ==== common textarea ==== */
.common_textarea {
    display: block;
    width: 100%;
    height: 100px;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
    padding: 5px 10px;
    font-size: 14px;
    resize: none;
    min-height: 100px;
}
.common_textarea:focus {
    border-color: #111;
    box-shadow: 0 3px 10px 0 rgba(0,0,0,0.15);
}


 /* ==== fake select ==== */
 .fake_select {
    position: relative;
}
.fake_select_tit {
    display: block;
    width: 100%;
    /* height: 66px; */
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    background: #fff;
    text-align: left;
}
.fake_select_tit .option_title {
    color: #555;
    font-weight: 500;
}
.fake_select_tit .selected_option {
    color: #999;
}
.fake_select_tit s {
    background: url('/design/vittz/mo/img/arr_opt_select.png') no-repeat right 20px center;
    background-size: 15px auto;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.fake_select_options {
    width: 100%;
    max-height: 150px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 0;
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    z-index: 5;
    display: none;
    overflow: auto;
}
.fake_select_option_itme a {
    display: block;
    padding: 10px;
    font-size: 14px;
}
.fake_select_option_itme a:hover {
    background: #f7f7f7;
}

.fake_select_tit.show {
    border-radius: 6px 6px 0 0;
}

.fake_select_options.show {
    display: block;
    border-radius: 0 0 6px 6px;
}

.img_fake_select .fake_select_tit {
    padding: 10px;
} 
.img_fake_select .img_options_wrap {
    display: flex;
    align-items: center;
}
.img_fake_select .img_options_wrap > .img_wrap {
    width: 53px;
    height: 64px;
}
.img_fake_select .img_options_wrap > .img_wrap > img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img_fake_select .img_options_wrap > .txt_wrap {
    width: calc(100% - 53px);
    padding-left: 18px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
}
.img_fake_select .img_options_wrap > .txt_wrap > p {
    margin-bottom: 8px;
}
.img_fake_select .img_options_wrap > .txt_wrap > p:last-child {
    margin-bottom: 0;
}
.img_fake_select .img_options_wrap > .txt_wrap .num {
    font-family: 'NEXON Lv1 Gothic', 'Noto Sans KR', sans-serif;
}


/* common radio */
.common_radio {
    display: inline-block;
    position: relative;
    padding-left: 30px;
}
.common_radio input[type="radio"],
.common_radio input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    overflow: hidden;
    display: inline-block;
    position: absolute;
    z-index: -1;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
}
.common_radio label::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url('/design/vittz/mo/img/common_radio_off.png') no-repeat center;
    background-size: contain; 
    position: absolute;
    left: 0;
    top: 0;
}
.common_radio input:checked + label::before {
    background: url('/design/vittz/mo/img/common_radio_on.png') no-repeat center;
    background-size: contain; 
}


/* common_radio 인풋이 안에 있는 경우 */
label.common_radio {
    display:flex;
    cursor:pointer;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding-left: 30px;
    min-height: 24px;
}
label.common_radio > input{
    appearance: none;
    -webkit-appearance: none;
    overflow: hidden;
    display: inline-block;
    position: absolute;
    z-index: -1;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
}
label.common_radio > strong {
    font-size:15px;
    color:#222;
    font-weight:400;
    display:flex;
    align-items:center;
}
label.common_radio > strong::before{
    position: absolute;
    left: 0;
    top: 0;
    width:24px;
    height:24px;
    content:" ";
    background: url('/design/vittz/mo/img/common_radio_off.png') no-repeat center;
    background-size:100% auto;
    display:inline-block;
    margin-right:10px;
}
label.common_radio > input:checked ~ strong{
    color:#110252;
}
label.common_radio > input:checked ~ strong::before{
    background: url('/design/vittz/mo/img/common_radio_on.png') no-repeat center;
    background-size:100% auto;
}



/* ==== 고도 기본 radio ==== */
.inp_rdo {
    display: inline-block;
    position: relative;
    padding: 0 0 0 30px;
    min-height: 24px;
}
.inp_rdo input[type="radio"],
.inp_rdo input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    overflow: hidden;
    display: inline-block;
    position: absolute;
    z-index: -1;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
}
.inp_rdo label::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url('/design/vittz/mo/img/common_radio_off.png') no-repeat center;
    background-size: contain; 
    position: absolute;
    left: 0;
    top: 0;
}
.inp_rdo input:checked + label::before {
    background: url('/design/vittz/mo/img/common_radio_on.png') no-repeat center;
    background-size: contain; 
}




/* ==== gd common ===== */
.inp_sel select {
    width: 100%;
    height: 40px;
    line-height: 38px;
    font-size: 13px;
    color: #555555;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background: #fff url('/design/vittz/mo/img/icon_nav_down.png') no-repeat right 10px center;
    background-size: 15px 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    -webkit-appearance: none;
}
.inp_sel select:focus {
    /* border-radius: 6px 6px 0 0;
    border-color: #111;
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 15%);
    outline: 1px solid #111; */
    outline: none;
}


/* ==== 팝업 ==== */
.ly_pop {
    position:fixed; 
    background:#ffffff; 
    /* z-index:1001; */
    z-index: 20000;
    height:calc(100vh) !important; 
    height: calc(var(--vh, 1vh) * 100) !important; 
    /* script 로 잡아둠. jhj_script 참고 */
}
.ly_pop .ly_wrap {
    position: relative;
}
.ly_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 30px 70px 20px 15px; */
    padding: 30px 15px 20px 15px;
    background:#fff; 
    position:relative; 
    z-index:10;    
}
.lys_close_btn {
    width: 46px; 
    height:70px; 
    font-size:0; 
    background:url('/design/vittz/mo/img/btn_layer_close.png') no-repeat center; 
    background-size: 16px auto; 
    border:none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}
.ly_head .h_tit {
    display: block;
    width: 100%;
    padding-right: 30px;
    color:#222; 
    font-size:20px;
    line-height: 30px;
    font-weight: 500;
}
.ly_head .h_sub {
    color:#222; 
    font-size:14px;
    line-height: 20px;
    margin-top: 5px;
}
.ly_ct {
    overflow:hidden; 
    overflow-y:scroll; 
    -webkit-overflow-scrolling:touch; 
}
.ly_content {
    padding: 20px 15px;
}

/* 배송추적 iframe  */
.ly_content.ly_content_delivery {
	width: 100%;
	height:calc(100vh - 80px); 
    height: calc(var(--vh, 1vh) * 100 - 80px); 
	position: relative;
    /* script 로 잡아둠. jhj_script 참고 */
}
.ly_content.ly_content_delivery .iframe_delivery {
	position: absolute; 
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.vh_dimmed {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background-color: #fff;
}



/*  ==== header  ==== */
#header_wrap > header {
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.05);
}
#header_wrap .main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 15px;
}
#header_wrap .main_header > .logo img {
    width: 70px;
}
.btn_hd_search {
    width: 30px;
    height: 30px;
    background: url('/design/vittz/mo/img/icon_header_search.png') no-repeat center;
    background-size: 18px auto;
    border: 0;
} 

header .sub_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 15px;
    /* box-shadow: 0 3px 5px 0 rgba(0,0,0,0.05); */
}
.sub_header .sub_header_prev {
    display: block;
    width: 30px;
    height: 20px;
    background: url('/design/vittz/mo/img/icon_header_back.png') no-repeat center left;
    background-size: 11px auto;
}
.sub_header .sub_header_close {
    display: block;
    width: 30px;
    height: 20px;
    background: url('/design/vittz/mo/img/icon_header_back.png') no-repeat center left;
    background-size: 11px auto;
}
.sub_header .sub_header_title {
    color: #222;
    font-size: 16px;
    font-weight: 600;
}



/* left navigation   */
.main_nav {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    left: 100%;
    top: 0;
    z-index: 999;
    transition: left ease-in-out 0.5s;
    background-color: #fff;
}
.main_nav.on {
   left: 0;
}


.main_nav header .sub_header {
    box-shadow: none !important;
}


/* ==== 퀵 메뉴 ==== */
.quick_list_link {
    margin: 11px 0;
    padding: 0 15px;
    display: flex;
}
.quick_list_link > li {
    width: calc(100% / 5);
}
.quick_item_link > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.quick_item_link > a  > .icon {
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s;
}
.quick_item_link > a > .icon.icon_review{
    background-image: url('/design/vittz/mo/img/quick_icon01.png');
    background-size: 30px auto;
}
.quick_item_link > a > .icon.icon_order{
    background-image: url('/design/vittz/mo/img/quick_icon02.png');
    background-size: 25px auto;
}
.quick_item_link > a > .icon.icon_fax{
    background-image: url('/design/vittz/mo/img/quick_icon03.png');
    background-size: 17px auto;
}
.quick_item_link > a > .icon.icon_unidentified{
    background-image: url('/design/vittz/mo/img/quick_icon04.png');
    background-size: 28px auto;
}
.quick_item_link > a > .icon.icon_calc{
    background-image: url('/design/vittz/mo/img/quick_icon05.png');
    background-size: 22px auto;
}
.quick_item_link > a > .icon.icon_payment{
    background-image: url('/design/vittz/mo/img/quick_icon06.png');
    background-size: 24px auto;
}
.quick_item_link > a > .txt {
    display: block;
    margin-top: 6px;
    color: #555;
    font-size: 12px;
    text-align: center;
    word-break: keep-all;
}


.main_nav_top {
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
}
.main_nav_top_list {
    padding: 0 20px;
    display: flex;
    position: relative;
}
.main_nav_top_list > li {
    width: 100%;
}
.main_nav_top_list > li > a {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
}
.main_nav_top_list > li > a.on {
   color: #110252;
   border-bottom: 2px solid #110252;
}



.main_nav_bottom {
    height:calc(100vh - 130px - 72px - 20px); 
    height: calc(var(--vh, 1vh) * 100 - 130px - 72px - 20px); 
    overflow-y: auto;
    padding: 20px 20px 20px;
}
.main_nav_bottom li.on > ul {
    display: block !important;
}
.main_nav_depth01 > li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.main_nav_depth01 > li > a {
    width: 100%;
    align-items: center;
    padding: 20px 56px 20px 0;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1em;
}
/* .main_nav_depth01 > li.nav_toggle > a::after {
    content: "";
    display: block;
    width: 56px;
    height: 56px;
    background-size: 13px 7px;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url('/design/vittz/mo/img/arr_main_nav_open.png');
    position: absolute;
    right: 0;
    top: 0;
}
.main_nav_depth01 > li.nav_toggle.on > a::after {
    background-image: url('/design/vittz/mo/img/arr_main_nav_fold.png');
} */

.main_nav_depth01 > li > a + .nav_toggle {
    content: "";
    display: block;
    width: 56px;
    height: 56px;
    padding: 0;
    background-size: 13px 7px;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url('/design/vittz/mo/img/arr_main_nav_open.png');
    position: absolute;
    right: 0;
    top: 0;
}
.main_nav_depth01 > li.on > a + .nav_toggle {
    background-image: url('/design/vittz/mo/img/arr_main_nav_fold.png');
}

.main_nav_depth02 {
    display: none;
    padding: 20px 15px;
    border-top: 1px solid #4e4e4e;
    border-bottom: 1px solid #4e4e4e;    
}
.main_nav_depth02 > li {
    position: relative;
}
.main_nav_depth02 > li > a {
    display: block;
    /* justify-content: space-between;
    align-items: center; */
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    font-weight: 400;
    line-height: 1em;
}
/* .main_nav_depth02 > li.nav_toggle > a::after {
    content: "";
    display: block;
    width: 13px;
    height: 7px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/design/vittz/mo/img/arr_main_nav_open.png');
}
.main_nav_depth02 > li.nav_toggle.on > a {
    font-weight: 500;
    color: #000;
}
.main_nav_depth02 > li.nav_toggle.on > a::after {
    background-image: url('/design/vittz/mo/img/arr_main_nav_fold.png');
} */
.main_nav_depth02 > li.on > a {
    font-weight: 700;
    color: #000;
}
.main_nav_depth02 > li > .nav_toggle {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    padding: 0;
    background-size: 12px 7px;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url('/design/vittz/mo/img/arr_main_nav_open.png');
    position: absolute;
    right: 0;
    top: 0;
}
.main_nav_depth02 > li.on > .nav_toggle {
    background-image: url('/design/vittz/mo/img/arr_main_nav_fold.png');
}
.main_nav_depth02 > li.on > .main_nav_depth03 {
    display: block !important;
}
.main_nav_depth03 {
    display: none;
    padding: 12px 20px;
    background-color: #f7f7f7;
    margin: 5px 0;
}
.main_nav_depth03 > li {
    position: relative;
}
.main_nav_depth03 > li > a {
    display: block;
    padding: 7px 0 8px;
    font-size: 14px;
    color: #555;
    line-height: 1em;
}
.main_nav_depth03 > li.on > a {
    font-weight: 700;
    color: #000;
}
.main_nav_depth03 > li > .nav_toggle {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 12px 7px;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url('/design/vittz/mo/img/arr_main_nav_open.png');
    position: absolute;
    right: 0;
    top: 0;
}
.main_nav_depth03 > li.on > .nav_toggle {
    background-image: url('/design/vittz/mo/img/arr_main_nav_fold.png');
}

.main_nav_depth04 {
	display: none;
    padding: 5px 10px 10px;
	margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.main_nav_depth04 > li {
    line-height: 28px;
}
.main_nav_depth04 > li > a {
    font-size: 13px;
    color: #555;
}
.main_nav_depth04 > li > a.checked {
    color: #110252;
    font-weight: 700;
}
.main_nav_depth04 > li > .nav_toggle {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    background-size: 12px 7px;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url('/design/vittz/mo/img/arr_main_nav_open.png');
    position: absolute;
    right: 0;
    top: 0;
}
.main_nav_depth04 > li.on > .nav_toggle {
    background-image: url('/design/vittz/mo/img/arr_main_nav_fold.png');
}


/* ==== 최근 본 상품 ====  */
/* left navigation   */
.main_recent {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    left: 100%;
    top: 0;
    z-index: 999;
    transition: left ease-in-out 0.5s;
    background-color: #fff;
}
.main_recent.on {
   left: 0;
}

.main_recent header .sub_header {
    box-shadow: none !important;
}
.main_recent_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 10px;
}
.main_recent_top .main_recent_total {
    font-size: 14px;
    color: #110253;
    font-weight: 400;
}
.main_recent_top .main_recent_total > b{
    font-weight: 700 ;
}
.main_recent_top .btn_recente_del_all {
    min-width: 80px;
    height: 30px;
    line-height: 26px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 14px;
    color: #222222;
    text-align: center;
}
.main_recent_list {
    border-top: 1px solid #222222;
    /* max-height: calc(100vh - 70px - 52px); */
    height:calc(100vh - 70px - 52px); 
    height: calc(var(--vh, 1vh) * 100 - 70px - 52px); 
    overflow: auto;
}
.main_recent_list::-webkit-scrollbar {
    display: none;
}
.main_recent_item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}
.main_recent_item .main_recent_img {
    display: block;
    flex-shrink: 0;
    width: 100px;
    height: 122px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.main_recent_item .main_recent_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.main_recent_item .main_recent_txt {
    width: calc(100% - 100px);
    padding-left: 20px;
}
.main_recent_item .main_recent_txt .goods_name {
    display: block;
    font-size: 14px;
    line-height: 1em;
    color: #555555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main_recent_item .main_recent_txt .prd_wrap {
    display: flex;
    align-items: center;
    line-height: 1em;
    margin-top: 10px;
}
.main_recent_item .main_recent_txt .prd_wrap > .price {
    font-size: 16px;
    color: #333333;
    font-weight: 400;
}
.main_recent_item .main_recent_txt .prd_wrap > .price .won {
    font-size: 14px;
}
.main_recent_item .main_recent_txt .prd_wrap > .sale_per {
    margin-left: 8px;
    font-size: 14px;
    color: #ef6313;
}
.main_recent_item .btn_recent_del {
    display: block;
    width: 13px;
    height: 13px;
    background: url('/design/vittz/mo/img/btn_del_recent.png') no-repeat center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 15px;
}

/* ==== docbar ==== */
.docbar {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    padding: 0 15px;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);;
}
.docbar_list {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.docbar_list > li {
    width: 21%;
    height: 100%;
}
.docbar_list_item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.docbar_list_item > i {
    display: block;
    width: 30px;
    height: 30px;
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-position: center;
}
.docbar_list_item > span {
    word-break: keep-all;
    text-align: center;
    line-height: 14px;
    letter-spacing: -0.08em;
    min-width: 73px;
}
.docbar_list_item > .cart_num {
    min-width: 20px;
    height: 20px;
    /* line-height: 20px; */
    line-height: 12px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    background-color: #110252;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 12px;
    padding: 0 6px 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.docbar_list_item .join_mile_add {
    width:67px; 
    height: 27px; 
    line-height: 23px; 
    background: url('/design/vittz/mo/img/join_mile_bg.png') no-repeat center; 
    background-size: contain;
    text-align: center; 
    font-size: 11px; 
    color: #110252;
    letter-spacing: -0.02em; 
    font-weight: 600; 
    font-style: normal;
    position: absolute; 
    left: 50%; 
    top: -10px; 
    transform: translateX(-50%); 
}

.docbar_list_item.docbar_icon_nav > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_nav.png');
}
.docbar_list_item.docbar_icon_login > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_my.png');
}
.docbar_list_item.docbar_icon_join > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_my.png');
}
.docbar_list_item.docbar_icon_logout > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_my.png');
}
.docbar_list_item.docbar_icon_my > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_my.png');
}
.docbar_list_item.docbar_icon_home > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_home.png');
}
.docbar_list_item.docbar_icon_cart > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_cart.png');
}
.docbar_list_item.docbar_icon_order > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_order.png');
    background-size: 25px auto;
}
.docbar_list_item.docbar_icon_recent > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_recent.png');
}
.docbar_list_item.docbar_icon_dlvry > i {
    background-image: url('/design/vittz/mo/img/docbar_icon_delivery.png');
    background-size: 27px auto;
}



/* ==== footer ==== */
.ft_wrap {    
    padding: 80px 0 70px;
}
.ft_wrap > div {
    border-top: 1px solid #e6e6e6;
    padding-right: 15px;
    padding-left: 15px;
}
.ft_wrap > div:last-child {
    border-bottom: 1px solid #e6e6e6;
}
.ft_yak_wrap {
    padding-top: 25px;
    padding-bottom: 30px;
} 
.ft_yak_list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.ft_yak_list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 5px;
}
.ft_yak_list > li a {
    color: #999999;
    font-weight: 300;
    font-size: 14px;
    line-height: 1em;
    letter-spacing: -0.04em;
}
.ft_yak_list > li:after {
    content: "";
    display: block;
    width: 2px;
    height: 2px;
    background-color: #b1b1b1;
    margin: 0 9px;
}
.ft_yak_list > li:last-child::after {
    display: none;
}

.ft_yak_list > li a b {
    font-weight: 400;
    color: #110252;
}

.ft_sns_list {
    display: flex;
    margin-top: 30px;
}
.ft_sns_list > li {
    height: 21px;
    margin-right: 30px;
}
.ft_sns_list > li:last-child {
    margin-right: 0;
}
.ft_sns_list > li img {
    max-height: 100%;
}

.ft_info_wrap {
    padding-bottom: 30px;

}
.ft_info_wrap > .ft_info {
    margin-top: 40px;
}
.ft_info .ft_info_tit {
    font-size: 16px;
    color: #110252;
    font-weight: 400;
    letter-spacing: -0.04em;    
    line-height: 1em;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.ft_info .cs_num {
    display: block;
    font-size: 26px;
    line-height: 1em;
    color: #666666;
    margin-bottom: 16px;
}
.ft_info .cs_time {
    font-size: 14px;
    font-weight: 350;
    color: #999999;

}
.ft_info .cs_time dl {
    display: flex;
    margin-bottom: 9px;
    line-height: 21px;
}
.ft_info .cs_time dl:last-child {
    margin-bottom: 0;
}
.ft_info .cs_time dl > dt {
    width: 66px;
    font-weight: 300;
}
.ft_info .cs_time dl > dd {
    width: calc(100% - 66px);
    font-weight: 400;
}
.ft_info_list p {
    font-size: 14px;
    line-height: 21px;
    color: #999999;
    margin-bottom: 7px;
    letter-spacing: -0.025em;;
}
.ft_info_list p:last-of-type {
    margin-bottom: 0;
}
.ft_info_list p a {
    color: inherit;
}
.ft_info_list .one_line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 7px;
}
.ft_info_list .one_line > p {
    margin-bottom: 0;
}
.ft_info_list .one_line .bar {
    display: block;
    width: 1px;
    height: 12px;
    margin: 0 15px;
    background-color: #cccccc;
}
.ft_notice_list > li {
    margin-bottom: 7px; 
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.04em;
    color: #999999;
}
.ft_notice_list > li > a {
    display: block;
    max-width: 100%;
    color: inherit;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.ft_copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 27px;
    padding-bottom: 32px;
}
.ft_copy > p {
    color: #b2b2b2;
    font-size: 14px;
    line-height: 25px;
}
.ft_copy > .ft_escrow {
    width: 41px;
}

.ft_quick_wrap {
    position: fixed;
    right: 10px;
    bottom: calc(70px + 30px);
    z-index: 500;
}
.ft_quick_wrap > button {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 10px 15px 0 rgba(0,0,0,0.25);
}
.ft_quick_wrap {
    
}
.ft_quick_wrap .quick_btn {
    margin-bottom: 10px;
    background-color: #110253;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft_quick_wrap .quick_btn img {
    width: 22px;
}
.ft_quick_wrap .btn_top {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft_quick_wrap .btn_top img {
    width: 14px;
}
.quick_btn_filter {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick_btn_filter img {
    width: 18px;
}


.prd_list_quick_wrap {
    width: 45px;
    height: 86px;
    padding: 10px 0;
    background: #fff;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 10px 15px 0 rgba(0,0,0,0.25);
}
.prd_list_quick_wrap > button {
    display: block;
    width: 100%;
    height: calc(66px / 2);
}




.btn_chat_wrap {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 260px; */
    position: absolute;
    right: 0;
    bottom: 54px;
    z-index: 10;
}
.btn_chat_wrap.btn_chat_wrap_list {
    bottom: 94px;
}

/* quick 버튼 추가 */
.btn_quick_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.btn_quick_wrap > .btn_quick {
    display: block;
    width: 125px;
    height: 48px;
    line-height: 48px;
    border-radius: 48px;
    padding: 0 10px;
    text-align: center;
    font-size: 14px;
    background-color: #fff;
    box-shadow: 0 10px 15px 0 rgba(0,0,0,0.25);
    color: #222222;
    margin-top: 10px;
}
.btn_quick_wrap > .btn_quick:nth-child(1),
.btn_quick_wrap > .btn_quick:nth-child(2){
    margin-top: 0;
}



.btn_chat_wrap > a {
    display: block;
    width: 125px;
    height: 48px;
    line-height: 48px;
    border-radius: 48px;
    padding: 0 0 0 47px;
    position: relative;
    font-size: 14px;
    text-align: left;
    box-shadow: 0 10px 15px 0 rgba(0,0,0,0.25);
    margin-top: 10px;
}
.btn_chat_wrap > a:first-child {
    margin-top: 0;
}
.btn_chat_wrap > a i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.btn_chat_wrap > .btn_chat_kakao {
    background-color: #fae301;
    color: #222222;
}
.btn_chat_wrap > .btn_chat_kakao i {
    display: block;
    width: 23px;
    height: 20px;
    background: url('/design/vittz/mo/img/btn_chat_kakao.png') no-repeat center;
    background-size: contain;
}

.btn_chat_wrap > .btn_chat_bot {
    background-color: #21117f;
    color: #fff;
}
.btn_chat_wrap > .btn_chat_bot i {
    display: block;
    width: 23px;
    height: 25px;
    background: url('/design/vittz/mo/img/btn_chat_bot.png') no-repeat center;
    background-size: contain;
}

.btn_chat_dimmed {
    display: block;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
}
.btn_chat_dimmed .btn_close_chat_pop {
    display: block;
    width: 21px;
    height: 21px;
    background: url('/design/vittz/mo/img/btn_close_chat.png') no-repeat center;
    background-size: contain;
    position: fixed;
    right: calc(10px + 12px);
    bottom: 280px;
    /* bottom: calc(70px + 30px + 12px); */
}
/* 채널톡 위치 조정 kdk */
#ch-plugin-launcher{width: 0px !important; height: 0 !important; opacity: 0 !important; position: absolute !important; right: -9999px !important;}
/* div.launcherIcon{opacity: 0 !important; width: 0 !important; right: 9999px !important;} */
div.ch-desk-messenger{ width: calc(100% - 50px) !important;}
div#ch-plugin-script::before{width:100vw;height:100vh;position:fixed;top:0;left:0;content:" ";}
/* left: 50% !important; transform: translateX(-50%) !important; */
/* div#ch-plugin-script{right:auto !important;left:50% !important;transform:translateX(-50%) !important;} */
#ch-plugin img{display: none !important;}


/* ==== main ==== */

/* main banner */
/* 메인 배너 고객사 수정요청으로 css 수정함. 다시 원복 요청 시 백업 css 파일 확인해서 수정해놓기 */
#trxIdx01Sld {
    position: relative;
}
#trxIdx01Sld .main_banner_bg {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 20px);
} 
#trxIdx01Sld .swiper-container img {
    width: 100%;
    /* height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; */
}
.trxIdx01Itm {
    /* padding: 0 15px 19px;
    height: 300px; */
}
.main_banner_txt {
    padding: 40px 0 14px;
}
.main_banner_txt .date {
    font-size: 14px;
    line-height: 1em;
    color: rgba(255,255,255,0.2);
    font-family: "Gmarket Sans";
    font-weight: 500;
    letter-spacing: 0.06em;
}
.main_banner_txt .tit {
    margin-top: 14px;
    font-size: 32px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: -0.08em;
    line-height: 1em;
}
.main_banner_txt .btn_main_slide_link {
    display: block;
    width: 155px;
    height: 56px;
    margin-top: 40px;
    line-height: 52px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    background-color: transparent;
}

.main_banner_control_wrap {
    margin: 20px 0 0;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
} 
.main_banner_pager {
    display: flex;
    align-items: center;
}
.main_banner_pager > span {
    font-size: 12px;
    line-height: 1em;
    color: #cccccc;
}
.main_banner_pager .current {
    color: #110252;
}
.main_banner_pager .pager_bar {
    margin: 0 15px;
    position: relative;
    width: 100px;
    height: 3px;
    border-radius: 3px;
    background-color: #e6e6e6;
    overflow: hidden;
}
.main_banner_pager .pager_bar > span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #110252;
    border-radius: 3px;
    transition: width 0.3s;
}

.main_banner_control {
    display: flex;
    align-items: center;}
.main_banner_control > a {
    display: block; 
}
.main_banner_control > .trxSldPrv {
    margin-right: 33px;
}
.main_banner_control > .trxSldNxt {
    margin-right: 30px;
}
.main_banner_control > a > s {
    display: block;
    width: 9px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s;
} 
.main_banner_control > .trxSldPrv > s {
    background-image: url('/design/vittz/mo/img/main_banner_prev.png');
} 
.main_banner_control > .trxSldNxt > s {
    background-image: url('/design/vittz/mo/img/main_banner_next.png');
} 
.main_banner_control > .trxSldPau > s {
    background-image: url('/design/vittz/mo/img/main_banner_stop.png');
} 
.main_banner_control > .trxSldPly > s {
    background-image: url('/design/vittz/mo/img/main_banner_start.png');
} 

.main_banner_control > .trxSldPrv:hover > s {
    background-image: url('/design/vittz/mo/img/main_banner_prev_on.png');
}

.main_banner_control > .trxSldNxt:hover > s {
    background-image: url('/design/vittz/mo/img/main_banner_next_on.png');
}



/* keyword */
.trxIdx02 {
    margin-top: 40px;
    padding: 0 15px;
}
.main_tit_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.trxIdx07 .main_tit_wrap {
    display: block;
}
.main_tit_wrap > span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}
.main_tit_wrap .main_tit {
    font-size: 26px;
    font-weight: 300;
    color: #333333;
    line-height: 1em;
    letter-spacing: -0.035em;
}
.main_tit_wrap .main_tit > b {
    color: #110252;
    font-weight: 500;
}
.main_tit_wrap .main_tit_more img {
    display: block;
    width: 17px;

}
.trxIdx02Lst {
    margin-top: 22px;
}
.trxIdx02Lst > li > a {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    border-radius: 6px;
    background-color: transparent;
    transition: padding 0.3s, background-color 0.3s, color 0.3s, height 0.3s;
}
.trxIdx02Lst > li > a .num {
    display: inline-block;
    margin-right: 10px;
}

.trxIdx02Lst > li> a.on {
    height: 56px;
    line-height: 56px;
    padding-left: 15px;
    margin-top: 10px;
    background: #110252 url('/design/vittz/mo/img/arr_keyword.png') no-repeat center right 20px;
    background-size: 11px auto;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.trxIdx02Lst > li> a.on .num {
    font-weight: 700;
}


.trxIdx02Lst > li> a.on + .keyword_slide_wrap {
    height: auto;
    padding: 20px 0 30px;
    border-bottom: 2px solid #f3f3f3;
    margin-bottom: 8px;
}
.keyword_slide_wrap {
    padding: 0;
    width: calc(100% + 15px);
    height: 0;
    overflow: hidden;
}
.keyword_slide_wrap .main_prd_list {
    padding: 0;
}
.keyword_slide_wrap .swiper-wrapper {
}
.keyword_slide_wrap .main_prd_list > li {
    width: 160px;
}
.keyword_slide_wrap .main_prd_list > li:last-of-type {
    margin-right: 15px !important;
}
.keyword_slide_wrap .main_prd_list > li.no_bx {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.keyword_slide_wrap .main_prd_list > li.no_bx strong {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}


.keyword_control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-right: 15px;
}
.keyword_control .trxSldBll {
    display: flex;
    align-items: center;
}
.keyword_control .trxSldBll .bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cccccc;
    margin-right: 12px;
}
.keyword_control .trxSldBll .bullet.active {
    width: 12px;
    height: 12px;
    background-color: #110252;
}
.keyword_control .trxSldNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.keyword_control .trxSldNav .trxSldPrv,
.keyword_control .trxSldNav .trxSldNxt {
    display: block;
    width: 9px; 
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;  
    transition: background-image 0.3s;
}
.keyword_control .trxSldNav .trxSldPrv {
    background-image: url('/design/vittz/mo/img/main_banner_prev.png');
    margin-right: 25px;
}
.keyword_control .trxSldNav .trxSldNxt {
    background-image: url('/design/vittz/mo/img/main_banner_next.png');
}
.keyword_control .trxSldNav .trxSldPrv:hover {
    background-image: url('/design/vittz/mo/img/main_banner_prev_on.png');
}
.keyword_control .trxSldNav .trxSldNxt:hover {
    background-image: url('/design/vittz/mo/img/main_banner_next_on.png');
}


.keyword_slide_wrap .goods_prd_item11 .goods_prd_content .goods_info_list li.price .sale_prcnt {
    display: none;
}
.keyword_slide_wrap .goods_prd_item11 .goods_prd_content .goods_info_list li.dc_price {
    display: none;
}
.keyword_slide_wrap .goods_prd_item11 .goods_prd_img .img_box {
    /* padding: 0;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative; */
}
.keyword_slide_wrap .goods_prd_item11 .goods_prd_img .img_box img {
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
}
.keyword_slide_wrap .goods_prd_item11 .goods_prd_content .goods_info_list li.prd_name {
    /* width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; */
}


 /* ==== 공통리스트 ==== */
.goods_prd_icon img {
    height: 18px;
    image-rendering: -webkit-optimize-contrast;
}
.goods_prd_item11 .soldout_img {
    background-size: 100px;
}
.goods_list .goods_sort .inp_sel select{
    background: #fff url(/design/vittz/mo/img/arr_select_border_none.png) no-repeat right 15px center;
    background-size: 10px auto;
}


.goods_prd_item11 .goods_prd_img .img_box .img {
    position: relative;
    width: 100%;
    /* height: 0;
    padding-bottom: 122.5%; */
}
.goods_prd_item11 .goods_prd_img .img_box .img > img {
    display: block;
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; */
    width: 100%;
    height: 100%;
} 




/* 오늘의 인기상품 */
.trxIdx03 {
    margin-top: 40px;
    padding: 0 15px;
}
.trxIdxCmnTab {
    width: 100%;
    overflow-x: auto;
    margin-top: 30px;
}

.trxIdxCmnTab::-webkit-scrollbar {
    display: none;
}
.trxIdxCmnTab > .trxIdxCmnLst {
    display: flex;
    position: relative;
}

.trxIdxCmnTab > .trxIdxCmnLst > a {
    flex-shrink: 0;
    display: block;
    font-size: 16px;
    line-height: 1em;
    letter-spacing: -0.015em;
    color: #555555;
    padding-bottom: 13px;
    margin-right: 20px;
    position: relative;
    white-space: nowrap;
}
.trxIdxCmnTab > .trxIdxCmnLst > a:last-child {
    /* margin-right: 0; */
}
.trxIdxCmnTab > .trxIdxCmnLst > a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #110252;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s;
}

.trxIdxCmnTab > .trxIdxCmnLst > a.on {
    color: #110252;
    font-weight: 500;
}
.trxIdxCmnTab > .trxIdxCmnLst > a.on::after {
    width: 100%;
}

.trxMinGdsDps { 
    display: none;
} 
.trxMinGdsDps.on {
    display: block;
}


.trxMinGdsDps ._goods_display_main .main_prd_list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
    padding: 0;
    margin-left: -5px;
}
.trxMinGdsDps ._goods_display_main .main_prd_list > li {
    width: 50%;
    padding: 0 5px;
    margin-top: 25px;
}



/* 중간 이벤트 배너 */
.trxIdx03 {
    margin-top: 60px;
}
.trxIdx04 { 
    margin-top: 30px;
}
.trxIdx02Sub .main_event_slide {
    /*width: calc(100% + 30px);
    margin-left: -15px;*/ /* 기존백업 */
    width: calc(100%);
    margin-left: 0px;
}
.main_event_slide .swiper-slide img {
    width: 100%;
    height: auto;    
}
.main_event_slide_controler {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}
.main_event_slide_controler .trxSldBll {
    display: flex;
    align-items: center;
}
.main_event_slide_controler .trxSldBll .bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cccccc;
    margin-right: 12px;
}
.main_event_slide_controler .trxSldBll .bullet.active {
    width: 12px;
    height: 12px;
    background-color: #110252;
}


/* 이벤트 배너 기본 기능으로 사용 */
.main_event_slide .slick-dots {
    position: static !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 18px !important;
}
.main_event_slide .slick-dots > li {
    margin: 0 6px;
}
.main_event_slide .slick-dots > li > button {
    display: block;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    background-color: #cccccc !important;
    padding: 0 !important;
}
.main_event_slide .slick-dots > li.slick-active > button {
    width: 12px !important;
    height: 12px !important;
    background-color: #110252 !important;
}


/* 새로나온 신상품 */
.trxIdx05 {
    padding: 0 15px;
    margin-top: 50px;
}

/* 새로운 기획전 */
.trxIdx06 {
    /* margin-top: 80px;  */
    padding: 40px 15px;
    /* padding: 70px 15px 80px; */
    /* background-color: #281d5d; */
}
.trxIdx06 .main_tit_wrap {
    align-items: flex-start;
}
.trxIdx06 .main_tit_wrap .main_tit {
    line-height: 43px;   
    color: #333;
}

.trxIdx06 .main_tit_wrap .main_tit b{  
    color: #110252;
}
.trxIdx06 .main_tit_wrap .main_tit_more {
    display: block;
    margin-top: 15px;
}


.trxIdxCmnTabWht {
    width: calc(100% + 15px);
    overflow-x: auto;
    margin-top: 30px;
    padding-left: 11px;
    position: relative;
}

.trxIdxCmnTabWht::-webkit-scrollbar {
    display: none;
}
.trxIdxCmnTabWht > .trxIdxCmnTabWhtLst {
    display: flex;
    /* min-width: 800px; */
    position: relative;
}
.trxIdxCmnTabWht > .trxIdxCmnTabWhtLst:after {
    content: "";
    display:block;
    width: 15px;
    height: 1px;
    flex-shrink: 0;
}


.trxIdxCmnTabWht > .trxIdxCmnTabWhtLst > a {
    display: block;
    font-size: 16px;
    line-height: 1em;
    letter-spacing: -0.015em;
    /* color: rgba(255,255,255,0.25); */
    color: #555;
    padding-bottom: 13px;
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
}
.trxIdxCmnTabWht > .trxIdxCmnTabWhtLst > a:last-child {
    margin-right: 0;
}
.trxIdxCmnTabWht > .trxIdxCmnTabWhtLst > a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #110252;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s;
}

.trxIdxCmnTabWht > .trxIdxCmnTabWhtLst > a.on {
    /* color: rgba(255,255,255,1); */
    font-weight: 500;
    color: #110252;
}
.trxIdxCmnTabWht > .trxIdxCmnTabWhtLst > a.on::after {
    width: 100%;
}


.trxIdx06Sld {
    margin-top: 30px;
    padding: 40px 30px;
    position: relative;
    display: none;
    background: #f6f5f9;
    border-radius: 6px;
}
.trxIdx06Sld::after {
    content: "";
    display: none;
    position: absolute;
    width: calc(100% + 13px);
    height: calc(100% - 170px - 42px - 30px);
    left: 0;
    top: 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: 0;
    border-radius: 6px 0 0 6px;
}


.trxIdx06SldCtl {
    display: flex;
    justify-content: space-between;
    width: 98%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% - ((170px + 42px) / 2));
    z-index: 1;
    pointer-events: none;
}
.trxIdx06SldCtl .trxSldPrv,
.trxIdx06SldCtl .trxSldNxt {
    pointer-events: all;
    display: block;
    width: 20px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0;
}
.trxIdx06SldCtl .trxSldPrv {
    background-image: url('/design/vittz/mo/img/arr_new_promo_prev.png');
    opacity: 0.25;
}
.trxIdx06SldCtl .trxSldNxt {
    background-image: url('/design/vittz/mo/img/arr_new_promo_next.png');
    opacity: 0.25;
}
.trxIdx06SldCtl .trxSldPrv:hover {
    opacity: 1;
}
.trxIdx06SldCtl .trxSldNxt:hover {
    opacity: 1;
}
.trxIdx06SldCtl .trxSldPrv.disabled,
.trxIdx06SldCtl .trxSldPrv.disabledv {
    opacity: 0.5;
}
.trxIdx06Itm .trxIdx06ImgWrp {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 124.354%;
    border-radius: 6px;
    overflow: hidden;
    position:relative;

}
.trxIdx06Itm .trxIdx06ImgWrp > img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.trxIdx06TxtWrp {
    margin-top: 42px;
}
.trxIdx06TopTit {
    display: block;
    line-height: 1em;
    font-size: 22px;
    font-weight: 300;
    color: #222;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.trxIdx06TopTit > strong {
    font-weight: 500;
}

.trxIdx06Time {
    margin-top: 25px;
    line-height: 1em;
    display: flex;
    font-size: 20px;
    color: #bbb5dd;
}
.trxIdx06Time > i {
    display: block;
    width: 70px;
    height: 30px;
    margin-top: -5px;
    line-height: 27px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    background-color: #ef6313;
    margin-right: 10px;
    font-style: normal;
}
.trxIdx06Time > em {
    color: #ef6313;
    font-size: 24px;
    font-style: normal;
}
.trxIdx06Time > span {
    font-size: 18px;
}
.trxIdx06Link {
    display: block;
    width: 161px;
    height: 56px;
    margin-top: 40px;
    line-height: 52px;
    /* border: 2px solid #fff; */
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: #110252;
}

/* 비츠 픽 */
.trxIdx07 {
    /* margin-top: 100px; */
    padding: 0 15px;
}
.main_pick_item {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.main_pick_item .main_pick_img {
    width: 154px;
    flex-shrink: 0;
}
.main_pick_item .main_pick_img > img {
    width: 100%;
}
.main_pick_item .main_pick_txt {
    padding-left: 20px;
}
.main_pick_item .main_pick_txt .main_pick_top_tit {
    display: inline-block;
    height: 45px;
    margin-top: 6px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 25px;
    /* color: #777777; */
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.main_pick_item .main_pick_txt .main_pick_tit {
    /* margin-top: 6px; */
    font-size: 14px;
    line-height: 22px;
    /* height: 44px; */
    color: #777;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.main_pick_item .main_pick_txt .main_pick_price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1em;
    margin-top: 10px;
}  
.main_pick_item .main_pick_txt .main_pick_price > strong {
    font-size: 15px;
    color: #333333;
    /* font-weight: 400; */
}
.main_pick_item .main_pick_txt .main_pick_price > strong > em {
    font-style: normal;
    font-size: 14px;
}
.main_pick_item .main_pick_txt .main_pick_price > s {
    margin-bottom: 5px;
    display: block;
    width: 100%;
    color: #999;
}
.main_pick_item .main_pick_txt .main_pick_price > s > em {
    font-style: normal;
}
.main_pick_item .main_pick_txt .main_pick_price .sale_per {
    font-size: 14px;
    color: #ef6313;
    margin-left: 7px;

    font-style: normal;
}

.main_pick_slide .trxSldBll {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.main_pick_slide .trxSldBll .bullet {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #cccccc;
    margin-right: 5px;
}
.main_pick_slide .trxSldBll .bullet:last-child {
    margin-right: 0;
}
.main_pick_slide .trxSldBll .bullet.active {
    background-color: #222222;
}


/* main cs */
.trxIdx08 {
    margin: 60px 0 0px;
    padding: 0 15px;
}
.trxIdx08 > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #e3e3e3;
}
.trxIdx08 > a:first-child {
    margin-top: 0;
}
.trxIdx08 > a > strong {
    font-size: 16px;
    color: #110252;
    font-weight: 400;
}
.trxIdx08 > a img {
    width: 60px;
}




/* ==== sub main ==== */
.submain_menu {
    width: 100%;
    overflow: auto;
}
.submain_menu::-webkit-scrollbar {
    display: none;
}
.submain_menu_list {
    display: flex;
    border-top: 1px solid #eeeeee;
    position: relative;
    padding: 0 15px;
}
.submain_menu_list > li {
    flex-shrink: 0;
}
.submain_menu_list > li > a {
    display: block;
    padding: 20px 0 16px;
    margin-right: 15px;
    font-size: 14px;
    line-height: 1em;
    font-weight: 350;
    color: #222222;
    position: relative;
}
.submain_menu_list > li:last-of-type > a {
    margin-right: 0;
}
.submain_menu_list > li > a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    transition: width 0.3s;
}
.submain_menu_list > li.on > a {
    font-weight: 500;
}
.submain_menu_list > li.on > a:after {
    width: 100%;
    background-color: #000000;
}



/* 서브메인 비주얼 */
.trxIdx01ItmSub {
    position: relative;
    /* height: 230px; */
}
.trxIdx01ItmSub > img {
    width: 100%;
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
}
.trxIdx01ItmSub > .submain_banner_txt {
    position: absolute;
    top: 40px;
    left: 15px;
    display: flex;
    flex-direction: column;
}
.trxIdx01ItmSub > .submain_banner_txt > span {
    font-size: 16px;
    font-weight: 300;
    color: #333;
    /* line-height: 36px; */
    letter-spacing: -0.06em;
}
.trxIdx01ItmSub > .submain_banner_txt > strong {
    font-size: 28px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -0.06em;
    margin-bottom: 33px;
}
.trxIdx01ItmSub > .submain_banner_txt > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 55px;
    border-radius: 6px;
    background-color: #110252;
    font-size: 16px;
    color: #fff;
}


.trxIdx02Sub {
    margin-top: 60px;
    padding: 0 15px;
}
.trxIdx02Sub .trxMinGdsDpsWrp,
.trxIdx02Sub .trxIdx04Sub
 {
    width: calc(100% + 30px);
    margin-left: -15px;
} 

.trxIdx03Sub {
    margin-top: 60px;
}
.trxIdx04Sub {
    margin-top: 100px;
    padding: 0 15px;
}
.trxIdx04Sub .event_bottom_wrap .main_prd_list {
    padding: 0;
}
.trxIdx05Sub {
    margin: 70px 0 -80px; 
    padding: 80px 15px 80px;
    background-color: #fafafc;
}
.trxIdx02Sub .trxIdx05Sub {
    width: calc(100% + 30px);
    margin-left: -15px;
}



/* ==== 평형별 ===== */
.addIdxpy {
    padding: 0 15px;
    margin-top: 50px;
}
.add_py_cont {
    overflow: hidden;
    width: calc(100% + 30px);
    margin-right: -15px;
    margin-left: -15px;
    position: relative;
}
.add_py_wrap { 
    display: flex; 
    overflow: auto; 
    width: auto; 
    padding: 0 15px 22px;
}
.add_py_wrap::-webkit-scrollbar {
    width:calc(100% - 15px); 
    height: 3px; 
    border-radius: 2px; 
    background-color: #f9f9f9;
}
.add_py_wrap::-webkit-scrollbar-thumb {
    background-color: #eaeaea; 
    border-radius: 2px;
}
.add_py_wrap > .add_py_item {
    width: 93.939%; 
    flex-shrink: 0; 
    margin-right: 15px;
}
.add_py_wrap > .add_py_item:last-child {
    margin-right: 0;
}
.add_py_wrap > .add_py_item img {
    width: 100%;
}
.add_py_cont:before {
    content: "";
    width: 15px;
    height: 5px;
    background:#fff;
    position: absolute; 
    left: 0;
    bottom: 0;
}
.add_py_cont:after {
    content: "";
    width: 15px;
    height: 5px;
    background:#fff;
    position: absolute; 
    right: 0;
    bottom: 0;
}


/* ==== 오리진 ===== */
.addIdxOrigin{
    padding: 0 15px;
    margin-top: 50px;
}
.origin_cont {
    margin-top: 30px;
}
.origin_cont .origin_cont_left {

}
.origin_cont .origin_cont_left .img_rate > img {
    width: 100%;
}
.origin_cont .origin_cont_right {
    margin-top: 20px;
}
.origin_cont .origin_cont_right .main_prd_list {
    display: block;
    padding: 0;
    border: 0;
}
.origin_cont .origin_cont_right .oricont_group > li {
    width: 100%;
    margin: 10px 0 0;
}
.origin_cont .origin_cont_right .oricont_group > li:first-child {
    margin-top: 0;
}
.origin_cont .origin_cont_right .goods_prd_item11_box {
    display: flex;
    justify-content: space-between;
}
.origin_cont .origin_cont_right .goods_prd_img {
    /* width: 81px; */
    /* height: 96px; */
    flex-shrink: 0;
}
.origin_cont .origin_cont_right .goods_prd_content {
    width: calc(100% - 105px);
}
.origin_cont .origin_cont_right .goods_prd_content .goods_list_info {
   display: block;
   width: 100%;
}





.origin_cont .origin_cont_right .goods_prd_item11 .goods_prd_content .goods_info_list {
    justify-content: center;
}
.origin_cont .origin_cont_right .goods_prd_content .goods_info_list > li {
    width: 100%;
}
.origin_cont .origin_cont_right .goods_prd_content .goods_info_list li.prd_name {
    /* height: auto; */
    white-space: nowrap;
    display: block;
}
.origin_cont .origin_cont_right .goods_prd_content .goods_info_list li.price {
    font-weight: 600;
    margin-top: -2px;
    font-size: 15px;
    color: #333;
}

.origin_cont .origin_cont_right .goods_prd_content .goods_info_list li.like_icon_li {
    position: relative;
    right: auto;
    bottom: auto;
}
.origin_cont .origin_cont_right .goods_prd_content .goods_info_list li.like_icon_li .like_icon_box {
    position: absolute;
    bottom: 0;
    right: 0;
}
.origin_cont .origin_cont_right .goods_prd_content .goods_prd_icon {
    /* display: none; */
    margin-top: 0;
}








.origin_cont .main_prd_list .oricont_group {
    display: none;
}
.origin_cont .main_prd_list .oricont_group:first-of-type {
    display: block;
} 
.origin_cont_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.origin_cont_pagination > span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e2e2e2;
    margin-right: 12px;
}
.origin_cont_pagination > span:last-child {
    margin-right: 0;
}
.origin_cont_pagination > span.active {
    width: 12px;
    height: 12px;
    background-color: #18036f;
}





/*==== 서브메인_리뷰영역 ==== */
.sub_review_sec { 
    padding: 80px 0 80px; 
    background-color: #fafafc; 
    margin-top: 80px;
}
.sub_review_sec .sub_review_cont img {
     max-width: 100%;
}
.sub_review_sec .sub_review_item {
    margin-top: 6px;
    font-size: 0;
}
.sub_review_sec .sub_review_item:first-child {
    margin-top: 0;
}
.sub_review_sec .sub_review_item a {
    display: block;
}





/* ==== myapge ==== */
/* ==== mypage - top menu ==== */
.my_lnb_wrap {
    position: sticky;
    top: 70px;
    z-index: 50;
    background: #fff;
}
.my_lnb_wrap .my_lnb_top {
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid #e5e5e5;
}
.my_lnb_wrap .my_lnb_top::-webkit-scrollbar {
    display: none;
}

.my_lnb_wrap .my_lnb_top_list {
    display: flex;
    justify-content: space-around;
}
.my_lnb_wrap .my_lnb_top_item {
    /* margin-right: 15px;  */
    flex-shrink: 0;
}
.my_lnb_wrap .my_lnb_top_item:last-of-type {
}
.my_lnb_wrap .my_lnb_top_item > a {
    display: block;
    padding: 20px 7px 17px;
    position: relative;
    height: 51px;
    font-size: 14px;
    color: #222;
    font-weight: 350;
    line-height: 1em;
    position: relative;
}
.my_lnb_wrap .my_lnb_top_item > a::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: #110252;
    transition: width 0.3s;
}
.my_lnb_wrap .my_lnb_top_item.on > a {
    font-weight: 700;
    color: #110252;
}
.my_lnb_wrap .my_lnb_top_item.on > a::after {
    width: 100%;
}

.my_lnb_bottom {
    box-shadow: 0 3px 5px 0 rgba(0,0,0,0.05);
    position: relative;
}
.my_lnb_bottom_tit {
    display: block;
    width: 100%;
    padding: 0 15px;
    text-align: left;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    color: #555;
    position: relative;       
}
.my_lnb_bottom_tit > i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 15px;
    height: 8px;
    background: url('/design/vittz/mo/img/icon_nav_down.png') no-repeat center;
    background-size: contain;
    pointer-events: none;
}

.my_lnb_bottom_list {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.my_lnb_bottom_item {
    position: relative;
}
.my_lnb_bottom_item > a {
    display: block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    font-size: 13px;
    border-bottom: 1px solid #eeeeee;
    background-color: #f9f9f9;
    color: #555;
}
.my_lnb_bottom_item:last-child > a {
    border-bottom: 0;
}
.my_lnb_bottom_item > .sub_top_lnb_check {
    display: none;
    width: 10px;
    height: 7px;
    background: url('/design/vittz/mo/img/icon_nav_check.png') no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    pointer-events: none;
}
.my_lnb_bottom_item.checked > a {
    background-color: #fff;
    color: #222;
    font-weight: 500;
}
.my_lnb_bottom_item.checked > .sub_top_lnb_check {
    display: block;
}



.my_lnb_wrap.open .my_lnb_bottom_tit > i {
    transform: translateY(-50%) rotate(-180deg);
}
.my_lnb_wrap.open .my_lnb_bottom_list {
    display: block !important;
}

/* ==== myapage/index ==== */
.mypage_index {

}
.mypage_index .my_top_info {
    margin-bottom: 15px;
}
.mypage_index .my_top_greeting {
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    margin: 20px 0 5px;
} 
.mypage_index .my_top_greeting > .my_top_btns {
    display: flex;
    justify-content: flex-end;
}
.mypage_index .my_top_greeting > .my_top_btns .n_btn {
    margin-left: 5px;
}
.mypage_index .my_top_greeting > .my_top_btns .n_btn:first-child {
    margin-left: 5px;
}
.mypage_index .my_top_greeting > p {
    font-size: 13px;
    color: #999;
    font-weight: 350;
}
.mypage_index .my_top_grage_txt {
    font-size: 18px;
    line-height: 28px;
}
.mypage_index .my_top_greeting .btn_gray_border {
    color: #222;
}

/* menu */
.mypage_index .my_order_info_list {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.mypage_index .my_order_info_list > li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    padding: 28px 0 30px;
}
.mypage_index .my_order_info_list > li .my_order_icon {
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.mypage_index .my_order_info_list > li .my_order_icon01 {
    background-image: url('/design/vittz/mo/img/icon_order_step01.png');
}
.mypage_index .my_order_info_list > li .my_order_icon02 {
    background-image: url('/design/vittz/mo/img/icon_order_step02.png');
}
.mypage_index .my_order_info_list > li .my_order_icon03 {
    background-image: url('/design/vittz/mo/img/icon_order_step03.png');
}
.mypage_index .my_order_info_list > li .my_order_icon04 {
    background-image: url('/design/vittz/mo/img/icon_order_step04.png');
}
.mypage_index .my_order_info_list > li > b {
    font-size: 14px;
    color: #666;
    line-height: 1em;
    margin: 8px 0 15px;
    font-weight: 400;
}
.mypage_index .my_order_info_list > li > strong {
    font-size: 22px;
    line-height: 1em;
    color: #8c86c7;
    position: relative;
    font-weight: 400;
}
.mypage_index .my_order_info_list > li > strong::after {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background: #8c86c7;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
}

.mypage_number_summary {
    margin-top: 10px;
    background-color: #f8f9fb;
    border-radius: 6px;
}
.mypage_number_summary > ul {
    display: flex;
}
.mypage_number_summary > ul > li {
    display: block;
    width: 100%;
    font-size: 13px;
    font-weight: 350;
    color: #555555;
    line-height: 1em;
    position: relative;
}
.mypage_number_summary > ul > li:after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background-color: #d1d5de;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.mypage_number_summary > ul > li:last-child:after {
    display: none;
}
.mypage_number_summary > ul > li > a {
    display: block;
    padding: 30px 0 34px;
    text-align: center;
}

.mypage_number_summary > ul > li > a  > span {
    color: #666;
    margin-top: 15px;
    display: block;
}
.mypage_number_summary > ul > li > a  > span > strong {
    font-size: 20px;
    line-height: 1em;
    font-weight: 700;
    color: #8c86c7;
    position: relative;    
    display: inline-block;
    margin-right: 1px;
    font-weight: 700;
}
.mypage_number_summary > ul > li  > a > span > strong::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #8c86c7;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}
.mypage_index_menu {
    margin-top: 37px;
    width: calc(100% + 30px);
    margin-left: -15px;  
}
.mypage_index_menu_group {
    padding: 20px 15px 16px;
    border-top: 1px solid #eeeeee;
}
.mypage_index_menu_group > h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    margin-bottom: 8px;
}
.mypage_index_menu_group > ul > li > a {
    display: flex;
    align-items: center;
    height: 35px;
    line-height: 35px;
}
.mypage_index_menu_group > ul > li > a > i {
    display: block;
    width: 26px;
    height: 26px;
    margin-right: 7px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.mypage_index_menu_group > ul > li > a > i.icon_order01 {
    background-image: url('/design/vittz/mo/img/icon_my_order01.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_order02 {
    background-image: url('/design/vittz/mo/img/icon_my_order02.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_order03 {
    background-image: url('/design/vittz/mo/img/icon_my_order03.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_order04 {
    background-image: url('/design/vittz/mo/img/icon_my_order04.png');
}

.mypage_index_menu_group > ul > li > a > i.icon_regular01 {
    background-image: url('/design/vittz/mo/img/icon_my_regular01.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_regular02 {
    background-image: url('/design/vittz/mo/img/icon_my_regular02.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_regular03 {
    background-image: url('/design/vittz/mo/img/icon_my_regular03.png');
}

.mypage_index_menu_group > ul > li > a > i.icon_activity01 {
    background-image: url('/design/vittz/mo/img/icon_my_activity01.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_activity02 {
    background-image: url('/design/vittz/mo/img/icon_my_activity02.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_activity03 {
    background-image: url('/design/vittz/mo/img/icon_my_activity03.png');
}

.mypage_index_menu_group > ul > li > a > i.icon_benefit01 {
    background-image: url('/design/vittz/mo/img/icon_my_benefit01.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_benefit02 {
    background-image: url('/design/vittz/mo/img/icon_my_benefit02.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_benefit03 {
    background-image: url('/design/vittz/mo/img/icon_my_benefit03.png');
}

.mypage_index_menu_group > ul > li > a > i.icon_info01 {
    background-image: url('/design/vittz/mo/img/icon_my_info01.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_info02 {
    background-image: url('/design/vittz/mo/img/icon_my_info02.png');
}
.mypage_index_menu_group > ul > li > a > i.icon_info03 {
    background-image: url('/design/vittz/mo/img/icon_my_info03.png');
    
    /* uiux 팀 요청 */
    background-size: 24px auto;
    opacity: 0.8;  
}


/* 고객센터 */
/* .my_lnb_wrap.cs_lnb_wrap .my_lnb_top_list {
    width: 760px;
} */



/* ==== 주문목록 / 배송조회 리스트 ==== */
.order_list {
    background-color: #f5f5f5;
}
.order_list .form_box {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.order_list .form_box fieldset .inp_sel {
    padding: 30px 15px 20px;
}
.inquiryTxt{margin-top: 7px; padding-left: 6px;}
.inquiryTxt > p{}
.order_goods_list {
    
}
.order_goods_list .order_top_date {
    background-color: #fff;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    font-size: 13px;
    color: #222;
}
.order_goods_list .order_top_date > strong {
    font-weight: 400;
    color: #f07133;
}
.order_goods_list > .orderlist_wrap {
    padding: 0 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.order_goods_list > .orderlist_wrap > .order_number_box {
    min-height: 50px;
    padding: 17px 0;
} 
.order_goods_list > .orderlist_wrap > .order_number_box >  .order_number {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-size: 14px;
    line-height: 1em;
}
.order_goods_list > .orderlist_wrap > .order_number_box >  .order_number .order_number_left {
	min-width: 200px;
}
.order_goods_list > .orderlist_wrap > .order_number_box >  .order_number .order_date {
    color: #999;
    font-size: 13px;
}
.order_goods_list > .orderlist_wrap > .order_number_box >  ul {
    display: flex;
    flex-wrap: wrap;
}
.order_goods_list > .orderlist_wrap > .order_number_box >  ul > li {
    margin: 10px 5px 0 0;
}
.order_goods_list > .orderlist_wrap > .order_number_box >  ul > li .order_btn {
    padding: 0 15px;
    height: 30px;
    line-height: 28px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #666;
    font-weight: 400;
    background-color: #fff;
}






/* 리스트 */
.order_goods_list .my_goods {
    padding-bottom: 15px;
}
.order_goods_list .my_goods ul {


}

.order_goods_list .my_goods > li {
    background:#fff;
    border:1px solid #dddddd;
    border-radius: 6px;
    padding: 15px 15px 0;
}
.order_goods_list .my_goods .info {
    /* background:#fff;
    border:1px solid #dddddd;
    border-radius: 6px;
    padding: 15px 15px 0; */
}
.order_goods_list .my_goods .info {
}
.order_goods_list .my_goods .info > a {
    display:flex; 
    align-items: center;
    position: relative;
    padding-bottom: 15px;
}
.order_goods_list .my_goods .info .btn_bx {
    width: calc(100% + 30px);
    margin-left: -15px;
    display: flex;
    /* border-top: 1px solid #ddd; */
}
.order_goods_list .my_goods .info .btn_bx li {
   width: 100%;
   border-right: 1px solid #ddd;
   border-top: 1px solid #ddd;
}
.order_goods_list .my_goods .info .btn_bx li:last-child {
    border-right: 0;
}
.order_goods_list .my_goods .info .btn_bx li > a {
    display: block;
    width: 100%;
    height: 35px;
    line-height: 33px;
    font-size: 13px;
    font-weight: 350;
    color: #666;
    text-align: center;
    padding: 0 10px;
    background: transparent;
}
.order_goods_list .my_goods .info .itemhead {
    width: 80px;
    overflow: hidden;
    border-radius: 6px;
}
.order_goods_list .my_goods .info .itemhead .img {
    height: 0;
    padding-bottom: 121.5%;
    position: relative;
}
.order_goods_list .my_goods .info .itemhead .img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.order_goods_list .my_goods .info .itembody {
    width: calc(100% - 80px);
    padding-left: 15px;
}
.order_goods_list .my_goods .info .itembody dl {


}
.order_goods_list .my_goods .info .itembody dl dt {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 2px;
}
.order_goods_list .my_goods .info .itembody dl dd {
    color:#777777;
    font-size: 13px;
    font-weight: 350;
}
.order_goods_list .my_goods .info .order_info {
    
}
.order_goods_list .my_goods .info .order_info .info_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%; 
    min-height: 25px;
    padding: 10px 0; 
    border-top:1px solid #ddd;
    font-size: 13px;
    color: #222;
}
.order_goods_list .my_goods .info .order_info .info_box .info2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.order_goods_list .my_goods .info .order_info .info_box .info2 > span {
    display: inline-block;
    padding: 0 16px;    
    position: relative;
}
.order_goods_list .my_goods .info .order_info .info_box .info2 > .price {
    font-size: 14px;
}
.order_goods_list .my_goods .info .order_info .info_box .info2 > span:first-child {
    padding-left: 0;
}
.order_goods_list .my_goods .info .order_info .info_box .info2 > span:last-child {
    padding-right: 0;
}
.order_goods_list .my_goods .info .order_info .info_box .info2 > span:after {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.order_goods_list .my_goods .info .order_info .info_box .info2 > span:last-child:after {
    display: none;
}
.order_goods_list .my_goods .info .order_info .info_box .ing_chk > strong {
    display: inline-block;
    font-weight: 400;
    color: #110252;
}
.order_goods_list .my_goods .info .order_info .d_causation {
    padding:4px 0 2px 0; 
    text-align:right;
}
.order_goods_list .my_goods .info .exchange_add_info {
     margin-bottom: 2px; 

    }
.order_goods_list .my_goods .info .exchange_add_info span {
     background-color: #337ab7; 
     display : inline; 
     color: #ffffff; 
     white-space : nowrap; 
     font-weight : bold; 
     line-height : 1; 
     vertical-align: baseline; 
     text-align : center; 
     font-size: 11px; 
     padding: 2px; 
}
.order_goods_list .my_goods .claim_info {
    padding: 10px 0;
    position: relative;
}
.order_goods_list .my_goods .claim_info::before {
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: 1px;
    background-color: #ddd;
    position: absolute;
    left: -15px;
    top: 0;
}
.order_list .more_btn_box {
    background: #fff;
    padding: 20px 15px 0px;
}
.order_list .more_btn_box .n_btn {
    width: 100%;
}



/* 데이터 없음 */
.order_goods_list .my_goods.no {
    background-color: #fff;
    border-radius: 6px;
    padding: 50px 5px;
    text-align: center;
    font-weight: 350;
    font-size: 14px;
}



/* === mypage/order_view ==== */
.order_view {
    background-color: #fff;
}
 .my_table_title {
    font-size: 16px;
    color: #110252;
    line-height: 1em;
    font-weight: 500;
    padding: 29px 0 15px;
}

/* my_table_style */
.my_table_style {
    padding:0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0 15px;
}
.my_table_style .my_table_cont {
    padding: 10px 0 0;
    color: #5e5e5e;
    font-size: 14px;
}
.my_table_style dl {
    display:table; 
    width:100%; 
    min-height: 26px;
    line-height: 26px;
    font-size:0;
    font-size: 14px;
    color: #222;
}
.my_table_style dl dt,
.my_table_style dl dd {
    padding-top: 10px;
}
/* .my_table_style dl:first-child dt,
.my_table_style dl:first-child dd {
    padding-top: 0;
} */
.my_table_style dl dt {
    display: table-cell;
    align-items: center;
    width:100px; 
    font-size:14px; 
    line-height: 27px;
    font-weight:350; 
    color:#999999;
}
.my_table_style dl dd {
    display: table-cell;
    vertical-align: middle;
    width: calc(100% - 100px);
    font-size:13px; 
    line-height: 27px;
    color:#5e5e5e;
}
.my_table_style dl dd ul.discount {

}
.my_table_style dl dd ul.discount li {
    position:relative;  
    color:#666666; 
    font-size:14px; 
}
.my_table_style dl dd ul.discount li:before {
    position:absolute; 
    top:4px; 
    left:2px; 
    width:8px; 
    height:6px; 
    background:url('../../img/icon/icon_add_discount.png') no-repeat; 
    background-size:8px 6px; 
    content:''
}
.my_table_style dl dd ul.discount li > strong {
    font-weight: 400;
    color: #f07133;
    padding-left: 6px;
}
.my_table_style dl dd .btn_gray_border {
	display: block;
	margin-top: -3px;
}


/* 세금계산서 */
.tax_invoice_btn {
    width: 100%;
    height: 50px;
    margin-top: 10px;
    padding: 0 10px;
    line-height: 48px;
    border-radius: 6px;
    background: #110252;
    border-color: #110252;
    font-size: 16px;
    color: #fff;
    text-align: center;
    font-weight: 400;
}
.layer_tax_invoice_request .btn_box .tax_info_init {
    color: #999999;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-weight: 400;
    padding: 0;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    padding: 0 10px;
    line-height: 48px;
    border-radius: 6px;
}
.table_style0 tbody th {
    padding: 8px 0;
    text-align: left;
    font-weight: 400;
}
.layer_tax_invoice_request td input[type=text] {
    height: 40px;
    border-color: #e2e2e2;
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
    padding: 0 10px;
    font-size: 14px;
}
.layer_tax_invoice_request td input[type=text]:focus {
    border-color: #111;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}



/* 결제 정보만 */
.my_table_style.border {
    border-bottom: 0;
}
.my_table_style.border dl {
    display:table; 
    width:100%; 
    min-height: 60px;
    font-size:0;
    padding: 6px 0 16px;
    font-size: 14px;
    color: #222;
    border-bottom: 1px solid #e5e5e5;
}
.my_table_style.border dl:first-of-type {
    margin-top: -5px;
}
.my_table_style.border dl:last-of-type {
    margin-bottom: -5px;
}
.my_table_style.border dl dt {
    display: table-cell;
    align-items: center;
    width:100px; 
    font-size:14px; 
    line-height: 27px;
    font-weight:350; 
    color:#999999;
}
.my_table_style.border dl dd {
    display: table-cell;
    vertical-align: middle;
    width: calc(100% - 100px);
    font-size:13px; 
    line-height: 27px;
    color:#5e5e5e;
}
.my_table_style dl dd ul.discount {

}
.my_table_style dl dd ul.discount li {
    position:relative;  
    color:#666666; 
    font-size:14px; 
}
.my_table_style dl dd ul.discount li:before {
    position:absolute; 
    top:4px; 
    left:2px; 
    width:8px; 
    height:6px; 
    background:url('../../img/icon/icon_add_discount.png') no-repeat; 
    background-size:8px 6px; 
    content:''
}
.my_table_style dl dd ul.discount li > strong {
    font-weight: 400;
    color: #f07133;
    padding-left: 6px;
}



/* 사은품 */
.my_table_style.free_item {
    border-top: 1px solid #222;
}
.my_table_style.free_item .orinfo {


}
.my_table_style.free_item .orinfo li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}
.my_table_style.free_item .orinfo li:last-child {
    border-bottom: 0;
}
.my_table_style.free_item .orinfo li dl {
    display:flex;
    align-items: center; 
    width:100%;
}
.my_table_style.free_item .orinfo li dl dt {
    display: block;
    width: calc(100% - 80px);
    padding: 0 0 0 15px;
    font-size: 15px;
    color: #555;
    font-weight: 400;
}
.my_table_style.free_item .orinfo li dl dd.img {
    width: 80px;
    height: 80px;
    overflow: hidden;
    font-size:0; 
    line-height:0;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}
.my_table_style.free_item .orinfo li dl dd.img  > img {
    width:100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* 정기배송 리스트 */
.my_table_wrap {
    background-color: #fff;
    padding: 0 0 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.my_table_wrap .btn_wrap {
    display: flex;
    margin-top: 10px;
}
.my_table_wrap .btn_wrap > .n_btn {
    width: 100%;
    margin-left: 7px;
}
.my_table_wrap .btn_wrap > .n_btn:first-child {
    margin-left: 0;
}


/* 정기구독 뷰 */
.regular_pay_info {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 350;
    color: #222;
}
.regular_pay_info > span {
    display: block;
    padding: 0 15px;
    position: relative;
}
.regular_pay_info > span:first-child {
    padding-left: 0;
}
.regular_pay_info > span:last-child {
    padding-right: 0;
}
.regular_pay_info > span::after {
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background-color: #e5e5e5;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.regular_pay_list {
    width: calc(100% + 100px);
    margin-left: -100px;
    background-color: #f4f5f9;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
}
.regular_pay_list > li {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 4px;
    font-size: 14px;
    color: #999;
    border-top: 1px dashed #dbdeeb;
    line-height: 24px;

}
.regular_pay_list > li:first-child {
    border-top: 0;
}
.regular_pay_list > li:last-child {
    border-top: 1px dotted #dbdeeb;
}
.regular_pay_list > li > .tit {
    width: 50px;
}
.regular_pay_list > li > .cont {
    /* width: calc(100% - 50px); */
    text-align: right;
}
.regular_pay_list > li > .cont  > li.row_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.regular_pay_list > li > .cont  > li.row_info > span {
    display: block;
    margin-right: 10px;
}
.regular_pay_list > li > .cont  > li.row_info > span:last-child {
    margin-right: 0;
}
.regular_pay_list > li.pay_wait {
    color: #222;
}



/* ==== 쿠폰등록 ==== */
.coupon {
    background-color: #f5f5f5;
}
.coupon .coupon_ok_btn  {
    margin: 10px 0;
}


.coupon .coupon_bx {
    /* border-top: 1px solid #222;
    margin-top: 30px; */
}
.coupon .coupon_bx li {
    margin:10px 0 0 0; 
    border-top: 1px solid #ddd; 
    border-radius: 6px;
}
.coupon .coupon_bx li:first-child {
    margin-top:0;
    border-top: 0;
}
.coupon .coupon_bx dl {
    padding: 15px 0;
}
.coupon .coupon_bx dl dt {
    color:#222; 
    font-size:14px;
    font-weight: 500;
    margin-bottom: 5px;
}
.coupon .coupon_bx dl dd {
    display: table;
    width: 100%;
    min-height: 26px;
    line-height: 26px;
    font-size: 14px;
    color: #222;
}
.coupon .coupon_bx dl dd:last-child {margin-bottom:10px}
.coupon .coupon_bx dd strong {
    display: table-cell;
    align-items: center;
    width: 100px;
    font-size: 14px;
    line-height: 27px;
    font-weight: 350;
    color: #999999;
}
.coupon .coupon_bx dl dd > div{display: flex; flex-direction: column;}
.coupon .coupon_bx dl dd > div > a > img{height: 27px;}
.coupon .coupon_bx dl dd > div br{display:none;}
.coupon .coupon_bx dl dd > div > label{padding-left: 0 !important;}
.coupon .coupon_bx .limit {
    color:#f07133 
}

.coupon_bx.no_data {
    padding:30px 0 30px 0; 
    text-align:center;
    font-size: 14px;
}

.order_view{padding-left: 15px;}
.order_view h3{margin-bottom: 10px; font-weight: 500; font-size: 16px;}
.order_view .view_box{font-size: 14px;}


/* ==== 회원탈퇴 ==== */
.terms_box {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 6px; 
    padding: 10px;
}
.terms_box .terms_inner {
    width: 100%;
    height: 120px ;
    padding-right: 10px;
    overflow-y: auto;
    color: #555;
    font-size: 14px;
    line-height: 22px;
    font-weight: 350;
    word-break: keep-all;
}
.terms_box .terms_inner::-webkit-scrollbar {
    width: 5px;
}
.terms_box .terms_inner::-webkit-scrollbar-thumb {
    background-color: #e1e1e1;
    border-radius: 5px;
}
.terms_box .terms_inner::-webkit-scrollbar-track {
    background-color: #f2f2f2;
    border-radius: 5px;
  }
  .drop_out_bottom {
      background-color: #fff;
  }





.dropOut { 
    background-color: #f5f5f5;
}
.dropOut .btn_box {
    margin-top: 20px;
}
.dropOut .btn_box > .n_btn {
    width: 100%;
}

.mypage_back_color {
    background-color: #f5f5f5;
}



/* ==== 마일리지 ==== */
.mileage {

}
.mileage .my_money {
    padding: 30px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}
.mileage .my_money .mypage_number_summary > ul > li > a {
    pointer-events: none;
}

.mileage .money_search {
    margin-bottom: 15px;
}
.mileage .money_history table {
   border-top: 1px solid #222; 
}
.mileage_more_btn {
    margin-top: 20px;
}

.my_money_bottom {
    padding: 0 0 30px;
    background-color: #fff;
}

.table_style1 td {
    padding: 10px 5px 7px;
}

.money_history.no_data {
    padding:30px 0 30px 0; 
    text-align:center;
    font-size: 14px;
}



/* ==== 회원정보 수정 - 비밀번호 확인 ==== */
.my_page_password {
    padding: 30px 0 0;
    font-size: 14px;
}
.my_page_password .text {
    margin-bottom: 20px;
}
.my_page_password dl.pw {
    padding: 25px 20px 30px;
    background-color: #f8f9fb;
    border-radius: 6px;
}
.my_page_password dl.pw dt {
    margin-bottom: 10px;
}
.my_page_password .n_btn {
    margin-top: 20px;
    width: 100%;
}
.my_page_password .sns_logo_box {
    padding: 25px 20px 30px;
    background-color: #f8f9fb;
    border-radius: 6px;
    text-align: center;
}
.my_page_password fieldset .sns_box .sns_payco img {
    width:53px;
}
.my_page_password fieldset .sns_box .sns_facebook img {
    width:73px;
}
.my_page_password fieldset .sns_box .sns_naver img {
    width:65px;
}
.my_page_password fieldset .sns_box .sns_kakao img {
    width:55px;
}
.my_page_password fieldset .sns_box .sns_wonder img {
    width:102px;
}
.my_page_password fieldset .sns_box .sns_apple img {
    width:56px;
}

.my_page_password .c_msg {
    margin-top: 10px;
    font-size: 13px;
    color: #110252;
}



/* ==== 회원정보 수정 상세 ==== */
.my_page {
    padding: 30px 0 0;
}
.join_view .tit, 
.join_view_business .tit, 
.join_view_other .tit {
    font-size: 16px;
    min-height: 43px; 
    line-height: 43px; 
    border-bottom: 1px solid #4e4e4e; 
    font-weight: 500;
}
.join_view .tit.toggleable::after, 
.join_view_business .tit.toggleable::after, 
.join_view_other .tit.toggleable::after {
    content: "";
    display: block;
    /* width: ; */

}
.input_wrap {
    display:table; 
    width:100%; 
    padding:5px 0 0 0;
}
.input_wrap .input_title {
    display:table-cell; 
    width: 80px; 
    min-width:80px; 
    padding:8px 0 0 0; 
    font-size:14px; 
    color:#999; 
    vertical-align:top;
}
.input_wrap .input_content {
    display:table-cell; 
    width: calc(100% - 80px); 
    vertical-align:middle;
}
.input_wrap .input_content .inp_rdo label {
}
.input_wrap .input_content .inp_chk label {
}
.input_wrap .input_content textarea{
    width:100%; 
    box-sizing:border-box; 
    padding:5px 10px; 
    border:1px solid #c3c3c3;
}
.input_wrap .description {
    padding: 0 0 10px 0;
    color: #110252;
    font-weight: 13px;
}


.input_wrap .password_reset  {
    padding: 0 0 10px;
}
.input_wrap .password_reset > div {
    padding-top: 10px;
}
.join_view .modify_pw {}
.join_view .modify_pw label {
    display:block; 
    padding: 0 0 5px; 
    color: #999;
    font-size: 13px;
}
.join_view .member_id {
    line-height:33px;
}
.input_wrap_email {
    display: flex;
}
.input_wrap_email input[type="text"] {
    width: 60%;
}
.input_wrap_email .inp_sel {
    width: 40%;
    margin-left: 4px;
}
.join_view .c_blue, .c-blue {
    color: #110252;
}
.join_view_other {
    margin-top: 20px;
}
.my_page .modify_content_box .modify_content {
}
.my_page .modify_content_box .modify_btn_box {
    margin-top: 30px;
}
.my_page .modify_content_box .modify_btn_box > .n_btn {
    width: 100%;
}


.info_sns_btn_wrap {
}
.info_sns_btn_wrap .n_btn {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 190px;
    height: 50px;
    padding: 0 20px 0 10px;
    margin-top: 5px;
    line-height: 48px;
    font-size: 15px;
    letter-spacing: -0.035em;
    color: #999;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-weight: 400;
    background-color: #fff;
}
.info_sns_btn_wrap .n_btn:first-child {
    margin-top: 0;
}
.info_sns_btn_wrap .n_btn i {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.info_sns_btn_wrap .n_btn.info_btn_kakao i {
    background: url('/design/vittz/mo/img/icon_sns_kakao.png') no-repeat center;
    background-size: contain;
}
.info_sns_btn_wrap .n_btn.info_btn_naver i {
    background: url('/design/vittz/mo/img/icon_sns_naver.png') no-repeat center;
    background-size: contain;
}
.info_sns_btn_wrap .n_btn.info_btn_facebook i {
    background: url('/design/vittz/mo/img/icon_sns_facebook.png') no-repeat center;
    background-size: contain;
}



/* ==== 배송지 관리 ==== */
.shipping {
    padding: 30px 0 0;
}
.shipping .s_content {
   border-top: 1px solid #222;
}
.shipping .s_info {
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}
.shipping .s_content .s_tit {
    font-weight: 600;
}
.shipping .s_content .s_address {
    padding:10px 0; 
    
    border-bottom:1px dashed #ddd; 
    word-break:keep-all;
}
.shipping .s_content .s_data {
    padding:10px 0;
}
.shipping .s_content .s_data dl {
    display:table; 
    width:100%;
    line-height: 26px;
}
.shipping .s_content .s_data dl dt {
    display:table-cell; 
    width:50%; 
    vertical-align:middle;
}
.shipping .s_content .s_data dl dd {
    display:table-cell; 
    width:50%; 
    text-align:right; 
    vertical-align:middle;
}
.shipping .s_content .s_btn {
    display:table; 
    width:100%; 
    padding:10px 0 0 0;
}
.shipping .s_content .s_btn li {
    display:table-cell; 
    width:50%;
}
.shipping .s_content .s_btn li:last-child {
    text-align:right;
}
.shipping .btn_box {
    padding:5px 0 0 0;
}
.shipping .no {
    text-align:center; 
    padding:50px 0;
}

.basic_address_btn {
    color: #fff;
    border: 1px solid #110252;
    background-color: #110252;
    font-weight: 400;
    border-radius: 6px;
    height: 32px;
    line-height: 30px;
    font-size: 13px;
    padding: 0 10px;
}


.shipping_add_layer {
    margin-top: 20px;
}
.shipping_add_layer .n_btn {
    width: 100%;;
}




/* 배송지 팝업 */
.layer_shipping_address_regist .ly_content {
    padding: 30px 15px;
}
.table_style2 tbody tr:first-child td {
    padding-top: 0;
}
.table_style2 tbody tr:first-child th {
    padding-top: 9px;
}
.table_style2 tbody th,
.table_style2 tbody td {
    padding: 10px 0 0;
}
.table_style2 tbody th {
    font-weight: 350;
    color: #999;
    padding-top: 17px;
}

.zipcode_box > * {
    margin-bottom: 5px;
}
.zipcode_box > *:last-child {
    margin-bottom: 0;
}
.zipcode_box {
    width: 100%;
}
.zipcode_box .zipcode_top {
    display: flex;
    align-items: center;
    position: relative;
	padding-right: 0;
}
.zipcode_top input {
    padding-right: 110px;;
}
.zipcode_top .zipcode_btn {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 100px;
    height: 40px;
    line-height: 39px;
    background-color: #110252;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
}


.layer_shipping_address_regist .inp_chk_box {
    margin-top: 20px ;
}
.layer_shipping_address_regist  .btn_box {
    margin-top: 30px;
    display: flex;
}
.layer_shipping_address_regist  .btn_box > .n_btn {
    width: 100%;
    margin-left: 10px;
}
.layer_shipping_address_regist  .btn_box > .n_btn:first-child {
    margin-left: 0;
}



/* ==== 위시리스트 ==== */
.wish_list {
    padding: 30px 0 0;
}
.wish_list .wish_content_box {

}
.wish_list .wish_content_box .allchk {
    margin:0 0 10px 0; 
}
.wish_list .wish_content_box .my_goods {
    padding:0 0 5px 0;
}
.wish_list .wish_content_box .my_goods > li {
    position:relative; 
    margin: 0 0 10px; 
    border:1px solid #ddd; 
    background-color:#fff;
    border-radius: 6px;
    padding: 50px 15px 15px 15px;
}
.wish_list .wish_content_box .my_goods li .info {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}
.wish_list .wish_content_box .my_goods li .info > a {
    display: flex;
    flex-wrap: wrap;
}
.wish_list .wish_content_box .my_goods li .info .select_del_box {
    position:absolute; 
    top:10px; 
    right:10px;
}
.wish_list .wish_content_box .my_goods li .info .itemhead {
    width: 80px;
    position: relative;
}
.wish_list .wish_content_box .my_goods li .info .itemhead .thmb {
    display: block;
    width: 80px;
    height: 80px;
    position: relative;
    /* border: 1px solid #ddd; */
    overflow: hidden;
}
.wish_list .wish_content_box .my_goods li .info .itemhead .thmb_box .thmb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wish_list .wish_content_box .my_goods li .info .itemhead .thmb_box .timesale_box {
    position:absolute; 
    bottom:0; 
    left:0; 
    width:100%; 
    padding:10px 0 10px 0; 
    text-align:center; 
    background:rgba(0,0,0,0.5);
}
.wish_list .wish_content_box .my_goods li .info .itemhead .thmb_box .timesale_box img {
    width:15px; 
    height:15px; 
    vertical-align:-3px;
}
.wish_list .wish_content_box .my_goods li .info .itemhead .thmb_box .timesale_box .timetext {
    color:#fff;
}
.wish_list .wish_content_box .my_goods li .info .itembody {
    width: calc(100% - 80px);
    padding:0 0 0 15px; 
    font-size: 13px;
    color: #777;
    font-weight: 350;
}
.wish_list .wish_content_box .my_goods li .info .itembody .name{
    word-break:break-all;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}
.wish_list .wish_content_box .my_goods li .info .itembody .prc {
    font-weight: 500;
    margin-top: 5px;
    display: block;
}
.wish_list .wish_content_box .my_goods li .info .icon_exclamationmark {
  display: none;
}
.cart_option_modify {
    height: 32px;
    line-height: 30px;
    margin-bottom: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-weight: 500;
    color: #999;
    padding: 0 10px;
}

.wish_list .wish_content_box .my_goods li .chk_box {
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0;
}
.wish_list .wish_content_box .my_goods li .chk_box label {
    display: block;
}
.wish_list .btn_wish_bx {
    padding: 0;
    margin-top: 10px;
    display: flex
}
.wish_list .btn_wish_bx > .n_btn {
    width: 100%;
}

.wish_list .btn_wish_bx > .n_btn {
    margin-left: 5px;
}

.wish_list .btn_wish_bx > .n_btn:first-child {
    margin-left: 0;
}



/* ==== 상품상세 | goods/goods_view.php ==== */

.goods_view {
    
}

/* SLIDER */
.goods_view_image_slider {
    display:block; 
    position:relative; 
    height:auto;
}
.goods_view_image_slider .slick-slide {
    height: auto;
}
.goods_view_image_slider > li > img {
    width:100%; 
    height:auto;
}
.goods_view_image_slider .slick-dots {
    /* height:10px; 
    margin:10px 0 0 0; 
    text-align:center; 
    z-index:1; */
    /* display: none !important; */

    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.goods_view_image_slider .slick-dots li {
    display:inline-block; 
    margin:0 5px; 
    padding:0; 
    font-size:0; 
    vertical-align:top; 
    cursor:pointer;
}
.goods_view_image_slider .slick-dots li button {
    display:inline-block; 
    width:8px; 
    height:8px; 
    margin:0; 
    padding:0; 
    background:#b9b9b9; 
    border-radius:8px; 
    border:none;
}
.goods_view_image_slider .slick-dots li.slick-active button {
    background:#110252;
    width: 12px;
    height: 12px;
}
.goods_view_image_slider, .goods_view_image_slider img {
    overflow:hidden; 
    width:100%;
}

/* 기본 정보 */
.goods_view .detail_info .detail_info_top {
    padding: 32px 15px 39px;
    border-bottom: 1px solid #eee;
}
.goods_view .detail_info h3 {
    font-size: 20px;
    color: #222;
    line-height: 36px;
    word-break: break-all;
}
.goods_view .detail_info .prd_desc {
    color: #999;
    font-size: 14px;
    line-height: 24px;
    margin-top: 2px;
}
.goods_view .detail_info .price_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 14px;
}
.goods_view .detail_info .price_wrap .price_wrap_left {
    width: calc(100% - 120px);
}
.goods_view .detail_info .price_wrap .bottom {
    display: block;
}
.goods_view .detail_info .price_wrap .ori_price {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
    position: relative;
    top: 2px;
}
.goods_view .detail_info .price_wrap .final_price {
   color: #222;
   font-size: 14px;
}
.goods_view .detail_info .price_wrap .final_price > span {
    color: #222;
    font-size: 20px;
    font-weight: 700; 
}
.goods_view .detail_info .price_wrap .sale_per {
    color: #f07133;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    margin-left: 5px;;
}
.goods_view .detail_info .price_wrap .price_wrap_right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    word-break: keep-all;
    color: #999;
    font-size: 14px;
    width: 120px;
}
.total_benefit_mileage {
    margin-left: 6px;
}


/* 기타 정보 */
.goods_view .detail_info .detail_sub_info {
    /* padding: 35px 15px; 
    border-bottom:1px solid #eee; */
}
.goods_view .detail_info .detail_sub_info dl {
    display:flex; 
    width:100%; 
    line-height: 24px;
    margin-bottom: 5px;
    font-size: 14px;
}
.goods_view .detail_info .detail_sub_info dl:first-child {
    /* padding-top: 20px; */
    /* padding-top: 35px; */
    /* border-top:1px solid #eee; */
}
.goods_view .detail_info .detail_sub_info dl:last-child {
    margin-bottom: 0;
    padding-bottom: 15px;
}
.goods_view .detail_info .detail_sub_info dl dt {
    width:110px; 
    color:#999;
    font-weight: 500;
    padding-right: 10px;
}
.goods_view .detail_info .detail_sub_info dl dd {
    width: calc(100% - 120px);
    color:#222;
}


/* 하단 탭 메뉴 (상세정보, 기본정보, 상품후기, 상품문의)*/
.goods_view .detail_btm_tab_menu_box {

}
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu {
    z-index: 100;
    border-bottom: 1px solid #eee;
}
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu.fixed{position: fixed; top: 60px; width: 100%; background: #fff;}/* kdk */
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu ul {
    display:flex; 
    width:calc(100% - 30px);
    margin: 0 auto;
}
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu ul li {
    width: 100%;;
}
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu ul li a {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
    font-weight: 400;
}
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu ul li a span {
    margin-left: 5px;
}
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu ul li.selected {
    border-bottom:2px solid #110252;
}
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu ul li.selected a {
    color: #110252;
    font-weight: 700;
}

/* 상품 필수 & 기본정보 정보 */
.goods_view .detail_info_box {
}
.goods_view .detail_info_box .view_box0 {
    /* padding: 40px 15px 0;  */
    padding: 0px 0px 0; /* 수정사항 양 옆 여백 x 220808 kdk */ 
}
.goods_view .detail_info_box .view_box0 img {
    width:100%;
    max-width: 100% !important; /* 수정사항 양 옆 여백 x 220808 kdk */
}


/* 상품상세 게시판 리스트 */
.detail_board_box {
    padding: 0px 0 0;
}
.detail_board_box .item_list_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    position: relative;
}
.detail_board_box .item_list_head::after {
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: 1px;
    position: absolute;
    left: -15px;
    bottom: 0;
    background-color: #e5e5e5;
}
.detail_board_box .item_list_head .item_list_title {
    color: #000022;
    font-size: 24px;
    font-weight: 500;
}
.detail_board_box .item_list_head > .n_btn {
    width: 120px;
}

/*** 상품상세 - 상품 문의 목록 | goods/goods_board_qa_list.php ***/

.item_list {
    width: calc(100% + 30px);
    margin-left: -15px;
    border-top: 1px solid #222;
}

.select_border_none {
    width: 100%;
    display: inline-block;
    height: 40px;
    padding: 0 15px;
    line-height: 40px;
    color: #222222;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    -webkit-appearance: none;
    appearance: none; 
    background: #fff url('/design/vittz/mo/img/arr_select_border_none.png')no-repeat right 15px center;;
    background-size : 10px auto;
}
.goods_board_select {
    margin: 9px 0 5px;    
    display: flex;
    justify-content: flex-end;
}
.goods_board_select > select {
    width: 120px;
}

.goods_board_qa_list {
    /* width: calc(100% + 30px);
    margin-left: -15px;
    border-top: 1px solid #222; */
}
.goods_board_qa_list li {
    border-bottom:1px solid #e5e5e5;
}

.goods_board_qa_list li .item_list_summary {
    width:100%;
    padding: 25px 15px;
    text-align: left;
    display: block;
    position: relative;
}
.goods_board_qa_list li .item_list_summary .icon_toggle {
    display: block;
    width: 16px;
    height: 9px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('/design/vittz/mo/img/arr_qa_toggle_off.png');
    position: absolute;
    right: 15px;
    top: 32px;;
}
.goods_board_qa_list li.selected .item_list_summary .icon_toggle {
    background-image: url('/design/vittz/mo/img/arr_qa_toggle_on.png');
}
.goods_board_qa_list li .item_list_summary .author_box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px; 
    color: #999;
    margin-bottom: 10px;
    padding-right: 25px;
}
.goods_board_qa_list li .item_list_summary .author_box .badge {
    margin-right: 20px;
}
.goods_board_qa_list li .item_list_summary .author_box .bar {
    display: block;
    width: 1px;
    height: 11px;
    background-color: #e1e1e1;
    margin: 0 15px;
}

.goods_board_qa_list li .item_list_summary .title {
    padding:2px 0 0 0;
}
.goods_board_qa_list li .item_list_summary .title a {
    font-size: 16px; 
    color: #222222; 
    line-height: 26px; 
    word-break: break-all;
}
.goods_board_qa_list li .item_list_summary .title img {
    margin:0 4px 0 0;
    width: auto;
    height: 15px;
}



/* 선택 후 타이틀*/
.goods_board_qa_list li.selected .item_list_summary .title a {
    font-weight:bold;
}

.goods_board_qa_list .no_data {
    padding:30px 0 30px 0; 
    text-align:center;
}
.goods_board_qa_list .btn_box {
    padding:10px 10px 10px 10px;
}

/*** 상품상세 - 상품 후기/문의 상세 | goods/goods_board_view.html ***/
.goods_board_view {
    padding: 0 15px 32px;
    margin-top: -20px;    
}
.goods_board_view .board_link {
    color:#777777; 
    font-weight:bold;
}
.goods_board_view .board_link a {
    color:#777777;
}
.goods_board_view .board_link span {
  
}
.goods_board_view .contents_holder {
    color:#222; 
    font-size: 14px;
    line-height: 22px;
    word-break:break-all; 
    word-wrap:break-word;
}
.goods_board_view .comment_options {
    padding: 10px 0 0 0;
}
.goods_board_view .uploadFile {
    margin-top: 10px;
}
.goods_board_view .uploadFile-item {
    margin-top: 4px;
}
.goods_board_view .uploadFile a {
    color:#95969e;
}
.goods_board_view .uploadFile a img {
    margin:0 5px 0 0;
    width: 12px;
}


/* 관리자 답변 */
.goods_board_view .reply_box {
    margin-top: 25px;
    background-color: #f7f7f7;
    border-radius: 6px;
    padding: 24px 24px 24px 30px ;
    position: relative;
}
.goods_board_view .reply_box::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: url('/design/vittz/mo/img/icon_reply.png') no-repeat center;
    background-size: contain;
    position: absolute;
    left: 15px;
    top: 30px;
}
.goods_board_view .reply_box .item_list_summary {
    display: none;
}
.goods_board_view .reply_box .item_list_summary .writer {
    color:#ac3c54; 
    font-weight:bold;
}
.goods_board_view .reply_box .contents_holder {
    color: #555;
    font-size: 14px;
    line-height: 22px;
}
.goods_board_view .reply_box .contents_holder dt {
    font-weight:bold;
}





/* ==== 비밀번호 인증 팝업 ==== */
/*비밀번호 팝업 레이어 공통*/
.cite_layer {
    position:fixed; 
    top:50%; 
    left:50%; 
    width:307px; 
    height:auto; 
    margin:-96px 0 0 -153px; 
    z-index:100;
    border-radius: 6px;

}
.cite_layer .wrap {
    border: 0;
    border-radius: 6px;
    overflow: hidden;
    height: 250px;
}
.cite_layer .wrap h4 {
    font-size: 18px;
    min-height: 50px;
    height: auto;
    padding: 11px 15px;
    background: transparent;
    position: relative;
}
.cite_layer .wrap h4::after {
    content: "";
    width: calc(100% - 30px);
    height: 1px;
    display: block;
    border-color: #a7a7a7;
    position: absolute;
    left: 15px;
    bottom: 0;
}
.cite_layer .wrap div {
    color:#666666; 
    text-align:center; 

}
.cite_layer .wrap div p {
    padding: 30px 15px 10px;
    font-size: 14px;
    line-height: 22px;
}
.cite_layer .wrap div input {
    display:block; 
    width: calc(100% - 30px);
    min-width: 216px; 
    height: 40px; 
    margin: 0 auto 20px auto; 
    line-height: 31px; 
    text-indent: 10px; 
    border: 1px solid #ddd; 

}
.cite_layer .wrap div .btn_box {
    padding: 0 15px;
    width:100%; 
    /* width:60px;  */
    margin:0 auto;
}
.cite_layer .wrap .d_pw_confirm_btn {
    display: inline-block;
    padding: 0 15px;
    height: 50px;
    line-height: 48px;
    color: #ffffff;
    border: 1px solid #110252;
    border-radius: 5px;
    background: #110252;
    color: #fff;
    font-size: 14px;
    width: calc(100% - 30px);
}

.cite_layer .wrap .close {
    display: block;
    width: 46px;
    height: 50px;
    background: url(/design/vittz/mo/img/btn_layer_close.png) no-repeat center;
    background-size: 16px auto;
    position: absolute;
    right: 0;
    top: 0;
}


/* === 상세 하단 메뉴리스트 ==== */
.prd_bottm_menu {
    margin-top: 80px;
    border-top: 1px solid #e5e5e5;
}
.prd_bottm_menu > li {
    border-bottom: 1px solid #e5e5e5;
}
.prd_bottm_menu > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    background: url('/design/vittz/mo/img/arr_goods_menu.png') no-repeat right 15px center;
    background-size: 9px auto;
}



/* 함께 구매하면 좋은 제품 */

.related_goods {
    margin-top: 40px;
}
.related_goods  .related_goods_title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: 20px;
}
.related_goods .related_goods_list{
    width: 100%;
    overflow: auto;
}
.related_goods .related_goods_list::-webkit-scrollbar {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0%;
}
.related_goods .related_goods_rail {
    width: calc(100% + 30px);
    margin-left: -15px;
}
.related_goods .related_goods_list {
    display: flex;
    width: auto;
    padding: 0 15px;
}
.related_goods .related_goods_list > li {
    flex-shrink: 0;
    width: 150px;
    margin-right: 10px;
}
.related_goods .related_goods_list > li:last-of-type {
    margin-right: 0;
}



/* 상세 구매버튼 (레이어도 동일) */
.detail_buy {
    position:fixed !important; 
    left:0; 
    bottom:0; 
    width:100%;
    background:#ffffff;
    z-index:300; 
    box-shadow: 0 0 15px 10px rgba(0,0,0,0.15);
}
.detail_buy .detail_buy_top_btn {
    position:relative;
}
.detail_buy .detail_buy_top_btn .detail_open_close {
}
.detail_buy .detail_buy_top_btn .detail_open_close a {
    text-indent: -9999px;
}
.detail_buy .detail_buy_top_btn .detail_open_close.on a {  
    display: block;
    width: 100%;
    height: 42px;
    background: url('/design/vittz/mo/img/arr_goods_option.png') no-repeat center;   
    background-size: 22px auto;
}
.detail_buy .detail_prd_btn {

}
.detail_buy .detail_prd_btn ul {
    display:flex; 
    width:100%;
}
.detail_buy .detail_prd_btn ul li {
    width: 100%;
}
.detail_buy .btn_wish {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #222;
    padding-left:17px;
}
.detail_buy .btn_wish i {
    display: block;
    width: 17px;
    height: 17px;
    background: url('/design/vittz/mo/img/icon_wish.png') no-repeat center;
    background-size: contain;
    margin-right: 5px;
}
/* 제품 상세 위시 버튼 클릭 시 활성화 */
.detail_buy .btn_wish.active i {
    background: url('/design/vittz/mo/img/icon_wish_blk.png') no-repeat center;
    background-size: 15px auto;
}

.detail_buy .btn_naver {
    width: 100%;
    height: 100%;
   position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail_buy .btn_naver i {
    display: block;
    width: 46px;
    height: 18px;
    background: url('/design/vittz/mo/img/n_pay_green_icon.png') no-repeat center;
    background-size: contain;
}
.detail_buy .btn_naver::before {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background-color: #e5e5e5;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.detail_buy .btn_add_cart_related, 
.detail_buy .btn_add_order_related, 
.detail_buy .detail_order_btn {
    padding: 0;
    border: 1px solid #110252;
    background: #110252;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    height: 60px;
    line-height: 58px;
}
.detail_buy .detail_cart_btn {
    padding: 0;
    border: 1px solid #110252;
    color: #110252;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    height: 60px;
    line-height: 58px;
}



/* 옵션 팝업 */
.detail_buy .ly_ct {
    max-height: 100% !important;
}
.detail_buy .option_scroll  {
    padding-top: 10px;
    max-height: calc(100vh - 60px - 42px) !important;  
    height:calc(100vh - 60px - 42px) !important; 
    height: calc(var(--vh, 1vh) * 100 - 60px - 42px - 105px) !important;
    overflow-y: auto !important;

    
    /* height: calc(var(--vh, 1vh) * 100 - 60px - 42px) !important; 페이코 영역 추가로 기존 height 주석처리 함 */ 
    /* script 로 잡아둠. jhj_script 참고 */
    overscroll-behavior: none;
    padding-bottom: 120px; /* 가격영역 높이 */
}
.detail_buy .option_scroll::-webkit-scrollbar {
    display: none;
}
.detail_buy .goods_opt_tab {
    display: flex;
    margin: 0 0 18px;
}
.detail_buy .goods_opt_tab a {
    display: block;
    width: 100%;;
    height: 50px;
    line-height: 50px;
    background-color: #f5f4f9;
    color: #110252;
    font-size: 16px;
    text-align: center;
    border-radius: 6px;
}
.detail_buy .goods_opt_tab a.on {
    background-color: #110252;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 5px 10px 5px rgba(32,29,53,0.1);
}







/* 기본옵션 */
.layer_option .ly_buy_info .ly_opt > .opt_title {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    line-height: 1em;
    margin: 20px 0 10px;
}
.layer_option .ly_buy_info {

}
.layer_option .ly_buy_info .ly_opt .bn_opt {
    display:block; 
    position:relative; 
    width:100%; 
    min-height: 45px;
    border: 1px solid #ccc;
    text-indent: 0;
    text-align: left;
    padding: 0 45px 0 15px;
    color: #555555;
    font-size: 14px;
    border-radius: 6px;
    background: url('/design/vittz/mo/img/arr_opt_select.png') no-repeat right 15px center;
    background-size: 15px auto;
    transition: border-color 0.3s, box-shadow 0.3s;
}


.layer_option .ly_buy_info .ly_opt > li {
    margin-bottom:10px;
}
.layer_option .ly_buy_info .ly_opt li .optbx {
    position:relative; 
    z-index: 20;
    height: auto !important;
    margin:-1px 0 0 0; 
    border-radius: 0 0 6px 6px;
    background:#ffffff;
    border:1px solid #ccc;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.layer_option .ly_buy_info .ly_opt li .optbx .optlst {


}
.layer_option .ly_buy_info .ly_opt li .optbx .optlst .disabled {
    color:lightgray !important;
}
.layer_option .ly_buy_info .ly_opt li .optbx .optlst li {
	display: flex; 
	align-items: flex-start;
    position:relative; 
    min-height:42px; 
    padding: 10px;
    border-bottom:1px solid #ccc; 
    font-weight: 500; 
    font-size:13px; 
    color:#555; 
    line-height:1.5em; 
    vertical-align:middle;
	word-break: break-all;
}
.layer_option .ly_buy_info .ly_opt li .optbx .optlst li > span {
	display: block;
	width: 100%;
}
.layer_option .ly_buy_info .ly_opt li .optbx .optlst li:last-child {
    border-bottom:none;
}
.layer_option .ly_buy_info .ly_opt li .optbx .optlst li > img {
	display:block;
    width:41px; 
    height:41px;
	border-radius: 3px;
	object-fit: cover;
	margin-right: 10px;
}
.layer_option .ly_buy_info .ly_opt li .optbx .optlst li em {
    display:block; 
    position:relative; 
    padding:8px 0 7px; 
    color:#555; 
    word-break:break-all; 
    z-index:30;
}
.layer_option .ly_buy_info .ly_opt li .optbx .optlst li .goods_name {
	display: block;
	width: 100%;
}



.layer_option .ly_buy_info .ly_opt li.singel_option_on,
.layer_option .ly_buy_info .ly_opt li.multi_option_on,
.layer_option .ly_buy_info .ly_opt li.add_option_on {
    top: 10px;
    width: 100%;
}

/* selected */
.layer_option .ly_buy_info .ly_opt .bn_opt.selected { 
    border-radius: 6px 6px 0 0;
    border-color: #111;
    box-shadow: 0 3px 10px 0 rgba(0,0,0,0.15);
    z-index: 10;
}
.layer_option .ly_buy_info .ly_opt li .bn_opt.selected ~ .optbx {
    box-shadow: 0 3px 10px 0 rgba(0,0,0,0.15);
    border-color: #111;
}



/* 정기구독 탭 */
.trxGdsVewOptRgrBtns {
    display: flex;
    width: 100%;
    border: 1px solid #cccccc;
    border-radius: 6px;
}
.trxGdsVewOptRgrBtns > label {
    display: block;
    width: 100%;
    font-size: 0;
}
.trxGdsVewOptRgrBtns .trxGdsVewOptRgrBtn {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 48px;
    color: #555555;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 6px;
}
.trxGdsVewOptRgrBtns input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}
.trxGdsVewOptRgrBtns input[type="radio"]:checked + .trxGdsVewOptRgrBtn {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    margin-top: -1px;
    margin-left: -1px;
    border-color: #110252;
    color: #110252;
}


/* 블라인드 jhj  */
.opt_size_wrap {
    display: flex;
    width: 100%;
    margin-top: 10px;
}
.opt_size_wrap:first-child {
    margin-top: 0;
}
.opt_size_wrap .icon_calc {
    flex-shrink: 0;
    flex-grow: 0;
    width: 30px;
    height: 45px;
    background: url('/design/vittz/mo/img/cal_sign_plus.png') no-repeat center;
    background-size: 12px auto;
}
.opt_size_wrap .unit_input {
    position: relative;
    width: 100%;
}
.opt_size_wrap .unit_input .common_input {
    height: 45px;
    line-height: 43px;
    padding-right: 40px;
}
.opt_size_wrap .unit_input .unit {
    font-size: 14px;
    color: #222;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.opt_desc {
    margin: 10px 0 20px;
    line-height: 1em;
    color: #999;
    font-size: 14px;
}
.btn_opt_select {
    display: block;
    width: 100%;
    margin-top: 10px;
}
.btn_curtain_calc:first-of-type {
	margin-top: 20px;
}
.btn_curtain_calc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.btn_curtain_calc i {
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background: url('/design/vittz/mo/img/icon_curtain_calc.png') no-repeat center;
    background-size: contain;
}






/* 선택된 옵션 리스트 */
.option_display_area {
    margin-top: 20px;
    /* padding: 10px 0 20px; */
	padding: 10px 0 0;
    border-top: 1px solid #ccc;
}

/* .view_order_goods > div */
.option_selected,
.optionKey_0,
.view_order_add_goods {
    position:relative; 
    background:#f9f9f9; 
    margin-top: 10px;
    border-radius: 6px;
    padding: 12px 15px 15px;
    overflow: hidden;
}
.view_order_goods dl {
}
.view_order_goods dl dt {
    display: flex;
    font-size: 14px; 
    font-weight: 400;
    color: #555;
    line-height: 18px;
}
.view_order_goods dl dd {

}

.view_order_goods dl dd em {
    font-style:normal;
}
.view_order_goods dl dd .price_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 8px;
}
.view_order_goods dl dd .price_info .count {
    display:flex; 
    width: 80px;
    height: 30px;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    overflow: hidden;
}
.view_order_goods dl dd .price_info .count button {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
}
.view_order_goods dl dd .price_info .count input[type=number] {
    width:20px; 
    height: 30px;
    line-height: 30px; 
    text-align:center; 
    vertical-align:middle; 
    box-sizing:border-box;
    border: 0;
    padding: 0;
}
.detail_up_btn {
    width: 30px;
    height: 30px;
    background: #fff url('/design/vittz/mo/img/btn_opt_plus.png') no-repeat center;
    background-size: 9px auto;
}
.detail_down_btn {
    width: 30px;
    height: 30px;
    background: #fff url('/design/vittz/mo/img/btn_opt_minus.png') no-repeat center;
    background-size: 9px auto;
}
.detail_apply_del {
    position: absolute;
    top: auto;
    bottom: 14px;
    right: 5px;
    background: url('/design/vittz/mo/img/btn_opt_del.png') no-repeat center;
    background-size: 9px auto;
    padding: 0;
    width: 30px;
    height: 30px;

}

.view_order_goods dl dd .price_info .right {
    display: flex;
    align-items: center;
    padding-right: 20px;
}
.view_order_goods dl dd .price_info .right .btn_wrap {
    margin-right: 5px;
}
.view_order_goods dl dd .price_info .right .btn_wrap ul {
    text-align:right;
}
.view_order_goods dl dd .price_info .right .btn_wrap ul li {
    display:inline-block;
}
.view_order_goods dl dd .price_info .right .price {
  font-size: 14px;
  color: #222;
}


/* 쿠폰 */
.coupon_apply_btn {
    background-color: #ef6313;
    border-color: #ef6313;
    height: 24px;
    line-height: 22px;
}
.coupon_cancel_btn {
    background-color: #999999;
    border-color: #999999;
    height: 24px;
    line-height: 22px;
}
.coupon_modify_btn {
    background-color: #110252;
    border-color: #110252;
    height: 24px;
    line-height: 22px;
}


.layer_coupon_apply .ly_content .ly_coupon_list dl {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 20px;
    padding-left: 35px;
    position: relative;
}
.layer_coupon_apply .ly_content .ly_coupon_list dl dt {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.layer_coupon_apply .ly_content .ly_coupon_list dl dt div.c_point {
    color: #110252;
}
.layer_coupon_apply .ly_content .ly_coupon_list dl dt div.couponcheck {
    position: absolute;
    left: 0;
    top: 22px;
}
.layer_coupon_apply .ly_content .ly_coupon_list dl dt div.c_point {
    font-size: 16px;
    margin: 0;
}
.layer_coupon_apply .ly_content .ly_coupon_list dl dt div.coupon_name {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.layer_coupon_apply .ly_content .ly_coupon_list dl dd {
    padding: 0;
    font-size: 14px;
}

/* 추가상품 선택 */
.view_order_add_goods:first-child {
    
}
.view_order_add_goods dl {

}
.view_order_add_goods dl dt {
    display: flex;
	align-items: flex-start;
}
.view_order_add_goods dl dt div.img_box {
    display: none;  /* 220810 kdk 최종금액박스에 담긴 추가옵션 상품의 썸네일을 프론트에서 숨김요청 */
    width: 50px;
    height: 50px;
    background: url(../img/icon_divide.png) no-repeat center;
}
.view_order_add_goods dl dt div.img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 3px;
}
.view_order_add_goods dl dt div.addname {
    /* padding:0 0 0 15px; */ /* 220810 kdk 최종금액박스에 담긴 추가옵션 상품의 썸네일을 프론트에서 숨김요청. 원복 시 주석 해제 */
    padding:0 0 0 0px;
    width: calc(100% - 50px);
}
.view_order_add_goods dl dd {


}
.view_order_add_goods dl dd em {
    font-style:normal;
}




/* 총 합계 */
.total_price_box {
    position: fixed;
    left: 0;
    bottom: 165px;
    width: 100%;
    padding:10px 15px; 
    text-align:right; 
    border-top:1px solid #ccc;

    min-height: 64px;
    display: flex;
    align-items: center;
    background: #fff;
    z-index: 100;
}
.total_price_box ul {
    width: 100%;    
}
.total_price_box ul li {
    padding: 0;
    line-height: 1em;
    margin-bottom: 10px;
}
.total_price_box ul li:last-child {
    margin-bottom: 0;
}
.total_price_box ul li dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.total_price_box ul li dl dt {
    width: 100px;
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    color: #222;
}
.total_price_box ul li dl dd {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;


    font-size:15px; 
    font-weight:bold; 
    text-align:right; 
    vertical-align:middle;
}
.total_price_box ul li dl dd .total_price {
    font-size: 24px;
    color: #110252;
    font-weight: 700;
}
.total_price_box ul li dl dd .total_price > b {
    font-size: 16px;
    color: #110252;
    font-weight: 500;
    padding-left: 5px;
}
.total_price_box ul li.total dl dt {
    font-weight:bold;
}
.total_price_box ul li dl dd .total_price_regular {
    display: inline-block;
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-right: 10px;

}



/* ==== 제품 상세 - 팝업 ===== */

/* 상세 팝업) 설치가이드 */
.trxGdsVewBtmBtnWrp {
    padding: 0 15px;
}
.trxGdsVewBtmBtnWrp > .n_btn {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    line-height: 38px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}
.trxGdsVewBtmBtnWrp > .n_btn:first-child {
    margin-top: 0;
}
.trxGdsVewBtmBtnWrp > .n_btn >img {
    display: inline-block;
    height: 20px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
    margin-top: -3px;
}


.install_guide_cont .guide_cont {
    margin-bottom: 50px;
}
.install_guide_cont .guide_cont:last-child {
    margin-bottom: 0;
}
.install_guide_cont .guide_cont .guide_cont_tit {
    font-size: 20px;
    color: #110252;
    font-weight: 500;
    line-height: 1em;
}


.install_guide_cont .guide_cont_box { 
    padding: 30px 0;
    border-bottom: 1px solid #eeeeee;
}
/* .install_guide_cont .guide_cont_box:last-child {
    padding-bottom: 0;
    border-bottom: 0;
} */
.install_guide_cont .guide_cont_box_tit {
    font-size: 16px;
    color: #222;
    font-weight: 500;
    line-height: 1em;
    margin-bottom: 15px;
}
.install_guide_cont .install_case_item {
    padding: 12px 20px;
    background-color: #f7f7f7;
    border-radius: 7px;
    font-size: 14px;
    overflow: hidden;
    line-height: 25px;
    margin-top: 2px;
}
.install_guide_cont .install_case_item:first-child {
    margin-top: 0;
}
.install_guide_cont .install_case_item > dt {
    font-weight: 500;
}
.install_guide_cont .install_case_item > dd {
}
.guide_cont_box_top_img {
    display: flex;
    margin: 20px 0 15px;
    align-items: center;
    justify-content: center;
}
.guide_cont_box_top_img > img {
    display: block;
    max-width: 105px;
    width: calc(33.333% - 20px / 3);
    margin-right: 10px;
    
}
.guide_cont_box_top_img > img:last-child {
    margin-right: 0;
}
.guide_cont_box_txt {
    font-size: 14px;
    color: #555555;
    font-weight: 300;
    line-height: 25px;
}

.guide_cont_box .n_btn {
    width: 100%;
    margin-top: 15px;
    padding: 0 10px;
    font-weight: 500;
}

.guide_cont_box .guide_cont_left {
    /* width: 100px; */
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 0 15px;
    background: #f7f7f7;
    border-radius: 6px;
}
.guide_cont_box .guide_cont_left img {
    width: 100%;
    max-width: 100px;
}
.guide_cont_box .guide_cont_right {
    /* width: calc(100% - 100px); */
   /* padding-left: 20px; */
} 




/* 상세 팝업) 배송/교환/반품 */
.exchange_cont {
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: 1px solid #eee;
}
.exchange_cont:last-of-type {
    margin: 0;
}
.exchange_cont .exchange_tit {
    font-size: 18px;
    line-height: 1em;
    font-weight: 500;
}
.exchange_cont .exchange_tit:first-child {
}
.exchange_cont .exchange_list_tit {
    font-size: 16px;
    line-height: 1em;
    margin-top: 25px;
    font-weight: 500;
    color: #555555;
}
.exchange_list > .exchange_list_item {
    margin-top: 11px;
    padding-left: 12px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
    position: relative
}
.exchange_list > .exchange_list_item::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cccccc;
    position: absolute;
    left: 0;
    top: 7px;
}
.exchange_list > .exchange_list_item > b {
    /* display: inline-block; */
    display: inline;
    font-weight: 500;
    position: relative;
}
.exchange_list > .exchange_list_item > b::after {
    content: "";
    width: calc(100% + 4px );
    height: 10px;
    /* background: #eeeeee; */
    position: absolute;
    left: -2px;
    bottom: -4px;
    z-index: -1;
}
.exchange_list > .exchange_list_item > ul > li {
    padding-left: 12px;
    font-size: 14px;
    line-height: 18px;
    margin-top: 7px;
    color: #777777;
    position: relative;
}
.exchange_list > .exchange_list_item > ul > li:before {
    content: "";
    display: block;
    width: 5px;
    height: 1px;
    background: #777777;
    position: absolute;
    left: 0;
    top: 8px;
}
.exchange_list > .exchange_list_item > ul > li:first-child {
    margin-top: 5px;
}


/* 상세 팝업) 커튼 계산기 */
.trxClcTxt{
    font-size:14px;
    font-weight:400;
    color:#999999;
    line-height:22px;

}
.trxClcFrm{
    margin-top:20px;
    padding-top:30px;
    border-top:1px #222222 solid;

}
.trxClcFrm > ul > li{
    margin-top:20px;

}
.trxClcFrm > ul > li:first-child{
    margin-top:0;

}
.trxClcFrm > ul > li > span{
    display: block;
    color:#999999;
    font-size:14px;
    font-weight:400;
    line-height:40px;

}
.trxClcFrm > ul > li > div{
    display:flex;

}
.trxClcIpt{
    position:relative;

}
.trxClcIpt > input{
    width:100%;
    border:1px #cccccc solid;
    border-radius:6px;
    width:100%;
    height:40px;
    padding:0 35px 0 10px;
    font-size:13px;
    font-weight:400;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: 0;
}
.trxClcIpt > input::placeholder{
    color:#999999;

}
.trxClcIpt > input:focus, .trxClcIpt > input:active {
    outline:0;
    border-color:#222;
    box-shadow:0px 5px 9.5px 0.5px rgb(32 29 53 / 10%);

}
.trxClcIpt > span{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    right:15px;
    font-size:14px
    ;
    color:#999999;
    font-weight:400;
}

.trxClcIpt:first-child:last-child{
    width:100%;

}
.trxClcIpt:first-child:nth-last-child(3),
.trxClcIpt:last-child:nth-child(3){
    width:calc(50% - 15px);

}
.trxClcIptDco:nth-child(2){
    width:30px;
    display:flex;
    height:40px;
    justify-content:center;
    align-items:center
    ;
    font-size:14px;
    color:#999999;
    font-weight:400;
    font-style:normal;
}

.trxClcRcm{
    border:1px #222222 solid;
    border-radius:6px;
    display:flex
    ;
    justify-content:space-between;
    height:50px;
    align-items:center;
    box-shadow: 0px 5px 9.5px 0.5px rgba(32, 29, 53, 0.1);
    padding:0 20px;
    margin-top:30px;
}
.trxClcRcm > span{
    font-size:16px;
    font-weight:400;
    color:#222222;

}


.trxClcFrmChkList > li {
    margin-bottom: 10px;
}
.trxClcFrmChkList > li:last-child {
    margin-bottom: 0;
}

.trxClcFtr{
   
    
}
.trxClcFtr > ul{
    padding-top:20px;
}
.trxClcFtr > ul > li{
    display:flex;
    flex-direction: column;
    justify-content:space-between;
    margin-top:5px;
    /* align-items:center; */
}
.trxClcFtr > ul > li > span{
    font-size:14px;
    font-weight:400;
    color:#222222;
}
.trxClcFtr > ul > li > b{
    font-size:14px;
    color:#110252;
    font-weight:400;
}
.trxClcFtr > ul > li > b > strong{
    font-size:16px;
    font-weight:700;
    font-family: 'NEXON Lv1 Gothic';
}

.trxClcWrn{
    margin-top:20px;
    padding:20px;
    background-color:#f7f7f7;
    color:#999999;
    font-size:14px;
    line-height:22px;
    font-weight:400;}

.trxClcHrz{
    border:0;
    border-bottom:1px #e5e5e5 solid;
    margin:30px 0;    
}


/* ==== goods view 상품 상세 - 설치비 계산기 ==== */
#lyInstallCalc .ly_content {
    padding-bottom: 140px;
}
.install_calc_table {

}
.install_calc_box {
    border: 1px solid #dddddd;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 5px;
}
.install_calc_box:nth-of-type(1) {
    margin-top: 0;
}
.install_calc_box > .install_calc_left_tit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.06em;
    background-color: #110252;
}
.install_calc_box > .install_calc_options {
}
.install_calc_box > .install_calc_options > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #dddddd;

    font-size: 16px;
    color: #777;
}
.install_calc_box > .install_calc_options > li:last-of-type {
    border-bottom: 0;
}
.install_calc_options > li > .install_calc_option_tit {
    width: 100%;
    padding-bottom: 10px;
}
.install_calc_options > li > .install_calc_option_count {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 0;
    width: 128px;
}
.install_calc_options > li > .install_calc_option_count > button {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    opacity: 0.5;
}
.install_calc_options > li > .install_calc_option_count > button.count_up {
    background: #ebebeb url('/design/vittz/mo/img/calc_count_arr_up.png') no-repeat center;
    background-size: 10px auto;
}
.install_calc_options > li > .install_calc_option_count > button.count_down {
    background: #ebebeb url('/design/vittz/mo/img/calc_count_arr_down.png') no-repeat center;
    background-size: 10px auto;
}
.install_calc_options > li > .install_calc_option_count > input {
    width: 49px;
    height: 30px;
    line-height: 30px;
    border: 0;
    text-align: center;
    padding: 0 5px;
    font-size: 16px;
    font-weight: 500;
    outline: none !important;
}
.install_calc_option_count input[type="number"]::-webkit-outer-spin-button,
.install_calc_option_count input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.install_calc_options > li > .install_calc_option_count > .ea {
    padding-left: 5px;
}
.install_calc_options > li > .install_calc_option_price {
    flex-shrink: 0;
    flex-grow: 0;
    width: 118px;
    text-align: right;
}
.install_calc_options > li > .install_calc_option_price > b {
    letter-spacing: -0.06em;
    margin-right:2px;
}

/* focus event */
.install_calc_options > li.on {
    color: #222222;
}
.install_calc_options > li.on .install_calc_option_tit {
    font-weight: 600;
    color: #222222;
}
.install_calc_options > li.on > .install_calc_option_count > button {
    opacity: 1;
}
.install_calc_options > li.on > .install_calc_option_count > input {
    font-weight: 600;
}
.install_calc_options > li.on > .install_calc_option_price > b {
    color: #f07133;
}



.trxClcWrn .blet_list {

}
.trxClcWrn .blet_list > li {
    position: relative;
    padding-left: 14px;
}
.trxClcWrn .blet_list > li::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50px;
    background-color: #cccccc;
    position: absolute;
    left: 0;
    top: 11px;
}


.ly_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 90px;
    padding: 20px 15px;
    background: #fff;
    box-shadow: 0px -5px 9.5px 0.5px rgba(0, 0, 0, 0.08);
}
.ly_bottom > dl {
    display: flex;
    flex-direction: column;
}
.ly_bottom > dl > dt {
    color: #222;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}
.ly_bottom > dl > dt> .vat {
    color: #777;
    font-size: 14px;
    padding-left: 6px;
}
.ly_bottom > dl > dd {
    color: #110252;
    display: flex;
    flex-direction: column;
}
.ly_bottom > dl > dd > .basic_fee {
    font-size: 14px;
    letter-spacing: -0.06em;
}
.ly_bottom > dl > dd > .basic_fee > b {
    font-weight: 500;
    letter-spacing: inherit;
}
.ly_bottom > dl > dd > .price {
    font-size: 14px;
}
.ly_bottom > dl > dd > .price > b {
    font-weight: 600;
    font-size: 22px;
    margin-right: 2px;
}


/* 상세 팝업) 첫 구매 가이드 */

.trxGdeStp > ul > li{
    display:flex;
    flex-wrap:wrap;
    margin-top:30px;
    padding-top:30px;
    border-top:1px #e5e5e5 solid;
 }
.trxGdeStp > ul > li:first-child{
    border-top:0;
    margin-top:0;
    padding-top:0;

}
.trxGdeStp > ul > li > span{
    width:35px;
    color:#110252;
    font-size:16px;
    font-family: 'NEXON Lv1 Gothic';
    line-height:22px;
    font-weight:700;
}
.trxGdeStp > ul > li > div{
    width:calc(100% - 35px);
    display:flex;
    flex-direction:column;

}
.trxGdeStp > ul > li > i{
    display:block;
    width:100%;
    color:#999999;
    font-weight:400;
    font-size:14px;
    line-height:14px;
    margin-bottom:10px;
    font-style:normal;
}
.trxGdeStp > ul > li > div > strong{
    font-size:16px;
    color:#110252;
    font-weight:500;
    line-height:16px;
    margin-bottom:10px;

}
.trxGdeStp > ul > li > div > p{
    font-weight:400;
    color:#555555;
    font-size:14px;
    line-height:24px;
    margin-bottom:10px
    ;
    word-break: keep-all;
}
.trxGdeStp > ul > li > div > p:last-child{
    margin-bottom:0;

}
.trxGdeStp > ul > li > div > i{
    color:#999999;
    font-weight:400;
    font-size:14px;
    line-height:14px;
    margin-bottom:14px;
    font-style:normal;
}
.trxGdeStp > ul > li > div > span{
    font-weight:400;
    color:#f07133;
    font-size:14px;
    line-height:14px;

}
.trxGdeStp > ul > li > div > span > b{
    font-weight:500;
    margin-right:15px;

}
.trxGdeStp > ul > li:last-child{
    padding-bottom:30px;

}

.trxGdeLst > ul > li{
    display:flex;
    margin-top:40px;

}
.trxGdeLst > ul > li:first-child{
    margin-top:0;

}
.trxGdeLst > ul > li > span{
    width:35px;
    color:#110252;
    font-size:20px;
    line-height:22px;
    font-family: 'NEXON Lv1 Gothic';
    font-weight:700;
}
.trxGdeLst > ul > li > div{
    width:calc(100% - 35px);
    display:flex;
    flex-direction:column;
}
.trxGdeLst > ul > li > div > strong{
    font-size:20px;
    color:#110252;
    font-weight:500;
    line-height:20px;
    margin-bottom:10px;

}
.trxGdeLst > ul > li > div > p{
    margin-top:10px;
    font-size:14px;
    color:#555555;
    font-weight:400;

}

.trxGdePdr{
    margin-top:10px;
    padding:15px;
    border:1px #e5e5e5 solid;
    border-radius: 6px;

}
.trxGdePdr > ul > li{
    margin-top:15px;
    padding-top:15px;
    border-top:1px #e5e5e5 solid;
    /* display:flex; */

}
.trxGdePdr > ul > li:first-child{
    margin-top:0;
    padding-top:0;
    border-top:0;

}
.trxGdePdr > ul > li > s{
    display: block;
    width:120px;
    height:120px;
    margin: 0 auto;
    border:1px #e5e5e5 solid;
    /* margin-right:20px; */
    flex-shrink:0;
}
.trxGdePdr > ul > li > del{
    display: block;
    margin: 0 auto;
    width:120px;
    height:120px;
    flex-shrink:0;

}
.trxGdePdr > ul > li > em{
    display: block;
    width:300px;
    max-width: 100%;
    height:120px;
    margin: 0 auto;
    flex-shrink:0;
}
.trxGdePdr > ul > li > s > img,.trxGdePdr > ul > li > del > img,.trxGdePdr > ul > li > em > img {
    width: 100%;
    height:100%;
    object-fit:cover;

}
.trxGdePdr > ul > li > div{
    padding-top:15px;
    width:100%;
    flex-shrink:1;

}
.trxGdePdr > ul > li > div > strong{
    color:#222222;
    font-size:16px;
    display:block;
    line-height:16px;
    font-weight:500;
    margin-bottom:10px;
}
.trxGdePdr > ul > li > div > ul > li{
    padding-left:12px;
    font-size:14px;
    line-height:400;
    color:#555555;
    line-height:24px;
    position:relative;
}
.trxGdePdr > ul > li > div > ul > li::before{
    width:4px;
    height:4px;
    border-radius:2px;
    background-color:#cccccc;
    content:" ";
    position:absolute;
    left:0;
    top:10px;
}
.trxGdePdr > ul > li > div > p{
    font-size:14px;
    line-height:400;
    color:#555555;
    line-height:24px;
    word-break:break-all;
}
.trxGdePdr > i{
    font-size:14px;
    color:#999999;
    font-weight:400;
    font-style:normal;
    display:block;
    margin:20px 0 15px;
}
.trxGdeGrp01 {
    overflow: auto;
}
.trxGdeGrp01 > strong{
    color: #222222;
    font-size: 16px;
    display: block;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.trxGdeGrp01 > div{
    display:flex;
    justify-content:space-between;
    background-color:#110252;
    align-items:center;
    width: 700px;
    height:40px;
    padding:0 20px;
    margin-bottom:20px;
    border-radius: 6px;
}
.trxGdeGrp01 > div > span{
    color:#fff;
    font-size:14px;

}
.trxGdeGrp01 > div > span > b{
    font-weight:500;
    padding-right:20px;
    position:relative;

}
.trxGdeGrp01 > div > span > b::after{
    width:1px;
    height:12px;
    background-color:#43368e;
    content:" ";
    position:absolute;
    top:55%;
    transform:translateY(-50%);
    right:10px;
}
.trxGdeGrp01 > div > span > span{
    word-spacing:10px;

}
.trxGdeGrp01 > ul{
    width: 700px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;

}
.trxGdeGrp01 > ul > li{
    width:calc(50% - 3px);
    margin-bottom:20px;

}
.trxGdeGrp01 > ul > li > div{
    background-color:#f5f5f5;
    padding:20px;

}
.trxGdeGrp01 > ul > li > div > strong{
    display:block;
    font-size:14px;
    color:#222222;
    line-height:14px;
    margin-bottom:20px;

}
.trxGdeGrp01 > ul > li > div > ul > li{
    margin-bottom:20px;
    display:flex;
    align-items:center;

}
.trxGdeGrp01 > ul > li > div > ul > li > b{
    width:70px;
    color:#555555;
    font-size:14px;
    font-weight:normal;

}
.trxGdeGrp01 > ul > li > div > ul > li > span{
    width:calc(100% - 120px);
    height:8px;
    border-radius:4px;
    background-color:#e4e4e4;
    position:relative;
    margin-right:10px;
}
.trxGdeGrp01 > ul > li > div > ul > li > span > span{
    position:absolute;
    top:0;
    left:0;
    height:8px;
    border-radius:4px;

}
.trxGdeGrp01 > ul > li > div > ul > li > i{
    width:60px;
    font-size:12px;
    color:#999999;
    font-style:normal;

}
.trxGdeGrp01 > ul > li > i{
    margin-top:10px;
    display:block;
    font-size:14px;
    color:#999999;
    line-height:14px;
    font-style:normal;
    text-align:right;
}


.trxGdeGrp02 > ul{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;

}
.trxGdeGrp02 > ul > li{
    /* width:calc(50% - 8px); */
    width: 100%;
    margin-bottom:25px;

}
.trxGdeGrp02 > ul > li > div{
    border:1px #e5e5e5 solid;
    border-radius:6px;
    width:100%;
    height:290px;
    position:relative;
    margin-bottom:20px;
    overflow: hidden;
}
.trxGdeGrp02 > ul > li > div > img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translateX(-50%) translateY(-50%);
    width:100%;
    height:100%;
    object-fit:contain;
}
.trxGdeGrp02 > ul > li > strong{
    font-size:16px;
    color:#222222;
    line-height:16px;
    display:block;
    margin-bottom:10px;

}
.trxGdeGrp02 > ul > li > ul > li{
    margin-bottom:10px;
    font-size:14px;
    line-height:14px;
    color:#555555;
    font-weight:400    ;
    padding-left:10px;
    position:relative;
}
.trxGdeGrp02 > ul > li > ul > li::before{
    width:4px;
    height:4px;
    border-radius:2px;
    background-color:#cccccc;
    content:" ";
    position:absolute;
    top:calc(50% - 2px);
    left:0;
}
.trxGdeGrp02 > ul > li > ul > li > b{
    font-weight:normal;
    color:#222222;

}
.trxGdeGrp02 > ul > li > p{
    font-size:14px;
    line-height:14px;
    color:#555555;
    font-weight:400;

}
.trxGdeGrp02 > i{
    display:block;
    font-size:14px;
    line-height:14px;
    color:#f07133;
    font-style:normal;
    font-weight:400;
}


.trxTypGde01{
   
    
}
.trxTypGde01 > ul > li{
    margin-top:10px;

}
.trxTypGde01 > ul > li:first-child{
    margin-top:0;

}
.trxTypGde01 > ul > li > strong{
    color:#ffffff;
    font-size:16px;
    display:block;
    padding:0 20px;
    line-height:36px
    ;
    background-color:#110252;
    font-weight:500;
    border-radius:6px;
}
.trxTypGde01 > ul > li > strong > b{
    font-weight:700;
    margin-right:7px;
    font-family: 'NEXON Lv1 Gothic';

}
.trxTypGde01 > ul > li > div{
    padding:30px 20px;

}
.trxTypGde01 > ul > li > div > span{
    font-size:14px;
    color:#110252;
    font-weight:500;
    line-height:14px;
    display:block;

}
.trxTypGde01 > ul > li > div > ul{
    margin-top:15px;

}
.trxTypGde01 > ul > li > div > ul > li{
    color:#222222;
    font-weight:normal;
    font-size:14px;
    line-height:24px;
    padding-left:10px;
    position:relative;
    margin-top:10px;
}
.trxTypGde01 > ul > li > div > ul > li::before{
    width:4px;
    height:4px;
    border-radius:2px;
    background-color:#cccccc;
    position:absolute;
    top: 8px;
    left:0;
    content:" ";
}
.trxTypGde01 > ul > li > div > ul > li:first-child{
    margin-top:0;

}

.trxGdeImg{
    display:flex;
    justify-content:space-between;
    margin-top:15px;

}
.trxGdeImg > img{
    border:1px #e5e5e5 solid;
    border-radius:6px;
    width:calc(50% - 7px);

}
.trxGdeImg > img:first-child:last-child{
    width:100%;

}

.trxGdeDtlStp{
    margin-top:15px;

}
.trxGdeDtlStp > div{
    border:1px #e5e5e5 solid;
    border-radius:6px;
    padding:30px 0;

}
.trxGdeDtlStp > div > div{
    display:flex;
    flex-direction: column;
    justify-content:center;
    flex-wrap:wrap;
    align-items:center;

}
.trxGdeDtlStp > div > div > img{
    width:120px;
    margin:0 13px;

}
.trxGdeDtlStp > div > div > span{
    width:30px;
    height:30px;
    background:url("/design/vittz/mo/img/img_stp01_sgn.png")
     no-repeat;
     background-size:100% auto;
     margin:0 13px;
     margin: 13px 0;
     transform: rotate(90deg);
}
.trxGdeDtlStp > i{
    display:block;
    text-align:right;
    font-size:14px;
    color:#999999;
    line-height:14px
    ;
    margin-top:10px;
    font-style:normal;
}

.trxGdeDsc{
    margin-top:15px;

}
.trxGdeDsc > strong{
    display:block;
    background-color:#110252;
    padding:0 20px;
    color:#fff;
    font-size:16px
    ;
    font-weight:500;
    line-height:36px;
    border-radius:6px;
}
.trxGdeDsc > div{
    padding:25px 20px 15px 20px;
    border:1px #e5e5e5 solid;
    border-top:0
    ;
    margin-bottom:20px;
    border-radius:0 0 6px 6px;
}
.trxGdeDsc > div > b{
    font-size:14px;
    font-weight:500;
    display:block;
    line-height:24px;
    color:#110252;

}
.trxGdeDsc > div > hr{
    border:0;
    border-bottom:1px #e5e5e5 solid;
    margin:20px 0;

}
.trxGdeDsc > div > dl{
    /* display:flex; */
    flex-wrap:wrap;

}
.trxGdeDsc > div > dl > dt{
    width:50px;
    padding-left:10px;
    color:#110252;
    font-size:14px;
    line-height:24px
    ;
    margin-bottom:10px;
    position:relative;
}
.trxGdeDsc > div > dl > dt::before{
    width:4px;
    height:4px;
    border-radius:2px;
    background-color:#cccccc
    ;
    position:absolute;
    top:calc(12px - 2px);
    left:0;
    content:" ";
}
.trxGdeDsc > div > dl > dd{
    /* width:calc(100% - 50px); */
    margin-bottom:10px;
    margin-left: 14px;
    text-indent: -7px;
}
.trxGdeDsc > div > dl > dd > ul > li{
    color:#222222;
    font-size:14px;
    line-height:24px;

}

.trxGdeSvc{
    margin-bottom:40px;

}
.trxGdeSvc > dl{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    padding: 40px 30px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}
.trxGdeSvc > dl > dt{
    width:115px;
    margin: 0 auto 20px;
}
.trxGdeSvc > dl > dt > img{
    width:100px;

}
.trxGdeSvc > dl > dd{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}
.trxGdeSvc > dl > dd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.trxGdeSvc > dl > dd > strong{
    display:block;
    font-weight:500;
    color:#110252;
    font-size:16px;
    line-height:16px;
    margin-bottom:10px;
}
.trxGdeSvc > dl > dd > p{
    font-size: 14px;
    color: #555555;
    font-weight: 400;
    line-height:20px;
    margin-bottom:10px;
}
.trxGdeSvc > dl > dd > i{
    display:block;
    font-weight:400;
    color:#f07133;
    font-size:14px;
    line-height:20px;
    font-style:normal;
}
.trxGdeSvc > dl > dd > i > b{
    font-weight:500;
    margin-right:10px;

}

.trxGdePrc{
   
    
}
.trxGdePrc > strong{
    display:block;
    font-weight:500;
    font-size:20px;
    color:#222222;
    line-height:20px
    ;
    margin-bottom:15px;
}
.trxGdePrc > span{
    display:block;
    font-weight:400;
    font-size:16px;
    color:#555555;
    line-height:20px;
    margin-bottom:15px;
}
.trxGdePrc > div{
    padding:40px 30px;
    border:1px #e5e5e5 solid;
    border-radius:6px;

}
.trxGdePrc > div > ul{
    position:relative;
    padding-left:80px;

}
.trxGdePrc > div > ul::before{
    width:2px;
    height:calc(100% - 40px);
    top:10px;
    left:55px;
    content:" "
    ;
    background-color:#eeeeee;
    position:absolute;
}
.trxGdePrc > div > ul > li{
    position:relative;
    margin-top:30px;

}
.trxGdePrc > div > ul > li:first-child{
    margin-top:0;

}
.trxGdePrc > div > ul > li::before{
    width:4px;
    height:4px;
    border-radius:4px;
    background-color:#fff;
    border:2px #77a3e8
     solid;
     top:5px;
     left:-28px;
     position:absolute;
     content:" ";
    }
.trxGdePrc > div > ul > li > img{
    position:absolute;
    top:-8px;
    left:-80px;
    width:32px;

}
.trxGdePrc > div > ul > li > strong{
    font-size:16px;
    color:#222222;
    line-height:16px;
    display:block;
    margin-bottom: 6px;

}
.trxGdePrc > div > ul > li > span{
    font-size:14px;
    color:#555555;
    line-height:18px;
    display:block;

}

.trxGdeOrd{
    margin-top:30px;

}
.trxGdeOrd > ul{
    padding:30px 20px;
    border:1px #e5e5e5 solid;
    border-radius:6px;

}
.trxGdeOrd > ul > li{
    display:flex;
    flex-wrap:wrap;
    margin-top:30px;
    padding-top:30px;
    border-top:1px
     #e5e5e5 solid;
    }
.trxGdeOrd > ul > li:first-child{
    margin-top:0;
    padding-top:0;
    border-top:0;

}
.trxGdeOrd > ul > li > span{
    width:35px;
    font-size:16px;
    line-height:22px;
    color:#110252;
    /* font-family: 'NEXON Lv1 Gothic'; */
    font-weight:700;
}
.trxGdeOrd > ul > li > div{
    width:calc(100% - 35px);

}
.trxGdeOrd > ul > li > div > strong{
    display:block;
    font-size:16px;
    line-height:16px;
    color:#110252;
    font-weight:500
    ;
    margin-bottom:10px;
}
.trxGdeOrd > ul > li > div > p{
    font-weight:400;
    color:#555555;
    font-size:14px;
    line-height:24px;
    padding-left:17px
    ;
    text-indent:-17px;
}
.trxGdeOrd > ul > li > div > p.caution{
    padding-left:23px;

}
.trxGdeOrd > ul > li > div > p > span{
    color:#f07133;

}
.trxGdeOrd > ul > li > i{
    width:100%;
    font-style:normal;
    font-size:14px;
    color:#999999;
    line-height:14px
    ;
    margin-bottom:10px;
}


.trxGdsLst{
    display:grid;
    row-gap:50px;
    column-gap:20px;
    grid-template-columns:1fr 1fr 1fr 1fr;

}
.trxGdsLst .trxIdx02Itm  {
     padding:0;

    }
/* .trxGdsLst .trxIdx02Itm > a img{
    width:100%;
    height:auto;
} */

.trxGdsLstCut{
    position:relative;
    display:flex;
    justify-content:center;
    margin-top:20px;

}
.trxGdsLstCut > hr{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    border:0;
    border-top:1px #eeeeee
     solid;
     margin:0;
    }
.trxGdsLstCut > span{
    padding:0 30px;
    background-color:#fff;
    font-size:16px;
    color:#999999
    ;
    font-weight:400;
    position:relative;
}


/* ==== 장바구니 ==== */
.cart {
    overflow: hidden;
}
.cart .common_tab {
    width: calc(100% + 2px);
    margin-left: -1px;
    padding-top: 20px;
    overflow: hidden;
}
.cart .common_tab > a {
    border-color: transparent;
    border-bottom-color: #222;
}
.cart .common_tab > a.on {
    border-color: #222;
    border-bottom-color: transparent;
    box-shadow: 0 5px 15px 10px rgba(0,0,0,0.15);
}
.cart_content_box {
    padding: 0 15px;
    border-bottom: 1px solid #e3e3e3;
}
.cart_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 15px;
}
.cart_top > .btn_wish_bx {
    display: flex;
}
.cart_top > .btn_wish_bx > .n_btn {
    color: #222;
    margin-left: 5px;
    font-weight: 400;
} 

/* 장바구니 리스트 */
.cart_content_box .my_goods {
    border-top: 1px solid #222;
}
.cart_content_box .my_goods > li {
    padding: 30px 0;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}
/* .cart_content_box .my_goods > li:last-child {
    border-bottom: 0;
} */
.cart_content_box .my_goods .mid_box {
    display: flex;
}
.cart_content_box .my_goods .mid_box > .left_box {
    width: 35px;
}
.cart_content_box .my_goods .mid_box > .right_box {
    width: calc(100% - 35px);
}
.cart_content_box .my_goods .item_info_box  {
    display: flex;
}
.cart_content_box .my_goods .item_info_box > .itemhead {
    
}
.cart_content_box .my_goods .item_info_box > .itemhead .thmb {
    width: 80px;
    height: 97px;
    border-radius: 6px;
    overflow: hidden;
}
.cart_content_box .my_goods .item_info_box > .itemhead .thmb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart_content_box .my_goods .item_info_box > .itembody {
    width: calc(100% - 80px);
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
    color: #222222;
}
.cart_content_box .my_goods .item_info_box > .itembody > .itembody_top > b {
    display: block;
    padding-right: 20px;
}
.cart_content_box .my_goods .item_info_box > .itembody > .itembody_top > .name {
    padding-right: 20px;
	word-break: break-all;
}
.cart_content_box .my_goods .item_info_box > .itembody .item_opt {
    color: #999999;
    margin-top: 5px;
}

.cart_content_box .my_goods .item_info_box > .itembody > .itembody_bottom {
    display: flex;
    flex-wrap: wrap;
}
.cart_content_box .my_goods .item_info_box > .itembody > .itembody_bottom .num {
    margin-right: 15px;
}
.cart_content_box .my_goods .item_info_box > .itembody > .itembody_bottom .prc {
    font-weight: 400;
}
.cart_content_box .my_goods .item_info_box > .itembody > .itembody_bottom .del_info {
    width: 100%;
}
.cart_content_box .my_goods .btn_list {
    display: flex;
    margin-top: 15px;
}
.cart_content_box .my_goods .btn_list .n_btn {
    width: 100%;
    margin-left: 5px;
}
.cart_content_box .my_goods .btn_list .n_btn:first-child {
    margin-left: 0;
}
.cart_content_box .my_goods .btn_list .coupon_btn,
.cart_content_box .my_goods .btn_list .option_btn {
    width: 50%;
}

.cart_content_box .my_goods .btn_list .coupon_btn {
    margin-right: 5px;
}
.cart_onedel_btn {
    position: absolute;
    right: -4px;
    top: 24px;
    background: url("/design/vittz/mo/img/icon_del.png") no-repeat center;
    background-size: 12px auto;
}
.cart .supplier_total {
    display: none;
}
.cart .my_buy {
    padding: 32px 15px 0;
    border-top: 10px solid #f5f5f5;
}
.cart .my_buy > dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #222;
    line-height: 1em;
    padding: 10px 0;
}
.cart .my_buy > dl > dd > strong {
    font-weight: 400;
}
.cart .my_buy > dl > dd > .regular_total {
    font-weight: 400;
    color: #999999;
    font-size: 14px;
    margin-bottom: 10px;
}
.cart .my_buy > dl.total {
    align-items: flex-end;
    padding: 20px 0 40px;
    margin-top: 10px;
    border-top: 1px solid #eaeaea;
}
.cart .my_buy > dl.total > dt {
    font-size: 16px;
}
.cart .my_buy > dl.total > dd {
    color: #110252;
    font-size: 16px;
    font-weight: 500;
    text-align: right;
}
.cart .my_buy > dl.total > dd #totalSettlePrice {
    font-size: 22px;
    font-weight: 700;
}
.cart .order_btn_wrap {
    display: flex;
}
.cart .order_btn_wrap .n_btn {
    width: 100%;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
}
.cart .order_btn_wrap .n_btn > b {
    font-weight: 700;
}


/* 추가상품 */
.add_goods_box {
    margin-top: 30px;
}
.add_goods_box .add_title {
    /* display: none; */
}
.add_goods_box .add_goods_list {
}
.add_goods_box .add_goods_list li {
    padding: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-top: 10px;
}
.add_goods_box .add_goods_list li:first-child {
    margin-top: 0;
}
.add_goods_box .add_goods_list li > a {
    display: flex;
}
.add_goods_box .add_goods_list li > a > .add_goods_img {
    width: 80px;
    height: 97px;
    margin-top: 3px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.add_goods_box .add_goods_list li > a > .add_goods_img img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.add_goods_box .add_goods_list li .add_goods_content {
    width: calc(100% - 80px);
    padding-left: 20px;
    font-size: 14px;
    line-height: 20px;
}
.add_badge {
    display: block;
    width: 58px;
    height: 22px;
    text-align: center;
    line-height: 20px;
    background-color: #f4f5f9;
    border: 1px solid #dbdfec;
    color: #84809b;
    font-size: 13px;
    border-radius: 3px;
    letter-spacing: -0.06em;
    margin-top: 0;
    margin-bottom: 6px;
}
.add_goods_box .add_goods_list li .add_goods_content .add_badge {
    display: block;
    width: 58px;
    height: 22px;
    text-align: center;
    line-height: 20px;
    background-color: #f4f5f9;
    border: 1px solid #dbdfec;
    color: #84809b;
    font-size: 13px;
    border-radius: 3px;
    letter-spacing: -0.06em;
    margin-top: 0;
    margin-bottom: 0;
}
.add_goods_box .add_goods_list li .add_goods_content .title {
    display: block;
    color: #222;
    margin-top: 6px;
}
.add_goods_box .add_goods_list li .add_goods_content .add_goods_option {
    color: #999999;
    margin-top: 6px;
}
.add_goods_box .add_goods_list li .add_goods_content .add_goods_text {

}
.add_goods_box .add_goods_list li .add_goods_content .add_goods_text .goods_number {
    display: block;
    color: #999999;
}
.add_goods_box .add_goods_list li .add_goods_content .add_goods_text .goods_number em {
    font-style:normal;
    font-family: 'nex';
}
.add_goods_box .add_goods_list li .add_goods_content .add_goods_text .goods_price {
    display: block;
    margin-top: 10px;
    color: #222222;
    font-size: 14px;
}
.add_goods_box .add_goods_list li .add_goods_content .add_goods_text .goods_price em {
    font-style:normal;
}






/* 쿠폰 적용하기 팝업 */
.layer_coupon_apply {

}
.layer_coupon_apply .ly_content {
	padding: 0 15px;
}
.layer_coupon_apply .ly_coupon_list {
   /*  padding: 0 15px; */
    border-top: 1px solid #222;
}
.layer_coupon_apply .ly_coupon_list .no_data{
	min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-bottom: 1px solid #222;
}
.layer_coupon_apply .ly_coupon_list .ly_coupon_content {

}
.layer_coupon_apply .ly_coupon_list .ly_coupon_content dl {
    padding: 20px 0;
    border-bottom:1px solid #ddd;
    font-size: 14px;
    line-height: 20px;
    padding-left: 35px;
    position: relative;
}
.layer_coupon_apply .ly_coupon_list .ly_coupon_content dl dt {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.layer_coupon_apply .ly_coupon_list .ly_coupon_content dl dt .c_point {
    color: #110252;
	margin-left: 0;
}
.layer_coupon_apply .ly_coupon_list .ly_coupon_content dl dd {
    color: #999;
}
.layer_coupon_apply .ly_coupon_list .ly_coupon_content dl dd.c_chk {
    position: absolute;
    left: 0;
    top: 22px;
}
.layer_coupon_apply .close_btn {
    position:absolute; 
    top:0; 
    right:0; 
    z-index:100;
}
.layer_coupon_apply .btn_box {
    position:fixed; 
    bottom:0; 
    left:0; 
    width:100%; 
    background:#fff; 
    border-top:1px solid #cccccc;
}
.layer_coupon_apply .btn_box span {
    display:block; 
    padding:15px;
}
.layer_coupon_apply .btn_box span .n_btn {
    width: 100%;
}


/* 옵션선택 팝업 */
.layer_option .js_option_scroll {
    padding-bottom: 85px;
}
.layer_option .popup_dn {
    padding: 15px;
    transform: translate(0);
    background: #fff;
}
.layer_option .popup_dn .btn_box2 span {
    padding: 0;
}
.layer_option .popup_dn .btn_box2 span .n_btn {
    width: 100%;
}


/* 쿠폰 적용하기 팝업 2 - 주문하기 */
/* 주문쿠폰적용 레이어 | order/layer_coupon_apply_order.html */
.layer_coupon_apply_order {
    position: relative;
    overflow: hidden;
    overflow-y: scroll;
    height: 100%;
    background: #fff;
}
.layer_coupon_apply_order .notice_box {
    padding: 0 20px 10px;
}
.layer_coupon_apply_order .notice_box p {
    font-size: 14px;
}
.layer_coupon_apply_order .ly_content {
    /* overflow: hidden; */
    padding: 0 15px 150px 15px;
}
.layer_coupon_apply_order .ly_coupon_list {
    /* padding: 0 15px; */
}
.layer_coupon_apply_order .ly_coupon_list .my_tit {
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
    margin-top: 20px;
} 
.layer_coupon_apply_order .ly_coupon_list dl {
    padding: 20px 0;
    border-bottom:1px solid #ddd;
    font-size: 14px;
    line-height: 20px;
    padding-left: 35px;
    position: relative;
}
.layer_coupon_apply_order .ly_coupon_list dl dt {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.layer_coupon_apply_order .ly_coupon_list dl dt .c_point {
    color: #110252;
    margin: 0;
}
.layer_coupon_apply_order .ly_coupon_list dl dd {
    color: #999;
}
.layer_coupon_apply_order .ly_coupon_list dl dd.c_chk {
    position: absolute;
    left: 0;
    top: 22px;
}
.layer_coupon_apply_order .ly_coupon_list .no_data{
	min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-bottom: 1px solid #222;
}

.layer_coupon_apply_order .close_btn {
    position:absolute; 
    top:0; 
    right:0; 
    z-index:100;
}
.layer_coupon_apply_order .btn_box {
    position:fixed; 
    bottom:0; 
    left:0; 
    width:100%; 
    background:#fff; 
    border-top:1px solid #cccccc;
}
.layer_coupon_apply_order .btn_box span {
    display:block; 
    padding:15px;
}
.layer_coupon_apply_order .btn_box span .n_btn {
    width: 100%;
}


































/* ==== 회원가입 ==== */
.board_zone_tit  {
    margin:0;
    padding:0;
    padding-bottom:40px;

}
.board_zone_tit h2 {
    font-size:26px;
    color:#222222;
    font-weight:500;
    text-align:center;
    line-height:34px;
    letter-spacing:-0.01em;

}
.board_zone_tit p {
    font-size:16px;
    color:#222222;
    font-weight:400;
    text-align:center;
    line-height:24px;
    padding-top:15px;
    letter-spacing:-0.01em;
    margin-bottom:-5px;
    word-break: keep-all;
}

.join_base_wrap {
    padding: 30px 15px 0;
    /* padding: 0px 15px; */
}
.trxJonWrp {
    width:100%;
    max-width:600px;
    margin: 0 auto 0;
}
.trxJonWrp450 {
    max-width:450px;

}
.trxJonTyp > a {
    display:flex;
    padding: 30px 20px;
    /* height:180px; */
    justify-content:space-between;
    align-items:center;
    border:1px #e5e5e5 solid;
    border-radius:5px;
    margin-bottom:5px;

}
.trxJonTyp > a > span {
    font-weight:400;
    color:#888888;
    font-size:14px;
    letter-spacing:-0.035em;

}
.trxJonTyp > a > span > b {
    font-weight:400;
    color:#222222;
    font-size:18px;
    letter-spacing:-0.035em;
    padding-bottom:10px;
    display:block;

}
.trxJonTyp > a > s {
    width: 50px;
    height: 50px;

}
.trxJonTyp > a:nth-child(1) > s {
    background:url("/design/vittz/mo/img/img_jonTyp01.png") no-repeat;
    background-size:100% auto;

}
.trxJonTyp > a:nth-child(2) > s {
    background:url("/design/vittz/mo/img/img_jonTyp02.png") no-repeat;
    background-size:100% auto;

}



/* 회원가입 - 약관동의 / 정보입력 */

.trxIssMmb {


}
.trxIssMmb > b {
    font-size:18px;
    line-height:18px;
    color:#110252;
    font-weight:600;
    letter-spacing:-0.05em;
    padding-bottom:15px;
    display:block;
    text-align:center;

}
.trxIssMmb > span {
    font-size:16px;
    line-height:16px;
    color:#888888;
    font-weight:400;
    letter-spacing:-0.01em;
    padding-bottom:20px;
    display:block;
    text-align:center;

}

.trxCmeMmb {
    margin-top:-20px;

}
.trxCmeMmb > img {
    width:120px;
    display:block;
    margin:0 auto 15px auto;

}
.trxCmeMmb > b {
    display:block;
    text-align:center;
    color:#222222;
    font-weight:400;
    letter-spacing:-0.01em;
    font-size:16px;
    line-height:24px;
    padding-bottom:35px;

}


.trxJonSns{}
.trxJonSns > a{margin-bottom:10px;display:flex;justify-content:space-between;align-items:center;height:70px;border-radius:5px;padding:0 20px;border:0;text-indent:-20px;}
.trxJonSns > a.trxJonSns01 {background-color:#fee500;}
.trxJonSns > a.trxJonSns02 {/* background-color: #03c75a; */ background-color: #19ce60; border: 1px solid #15c654;}
.trxJonSns > a.trxJonSns03 {background-color: #1877f2;}
.trxJonSns > a.trxJonSns04{background-color: #000000;}
.trxJonSns > a > s{width:30px;height:30px;}
.trxJonSns > a > span{width:calc(100% - 30px);text-align:center;color:#fff;font-weight:400;font-size:16px;letter-spacing:-0.01em;}
.trxJonSns > a.trxJonSns01 > span {color:#222222}

/* .trxJonSns > a.trxJonSns01 > s{background:url("/design/vittz/mo/img/img_jonSns01.png") no-repeat;background-size:100% auto;} */
.trxJonSns > a.trxJonSns01 > s{background:url("/design/vittz/mo/img/sns_icon_kakaosync.png") no-repeat;background-size:100% auto;}
.trxJonSns > a.trxJonSns02 > s{background:url("/design/vittz/mo/img/sns_icon_naver.png") no-repeat;background-size:100% auto;}
.trxJonSns > a.trxJonSns03 > s{background:url("/design/vittz/mo/img/sns_icon_facebook.png") no-repeat;background-size:100% auto;}
.trxJonSns > a.trxJonSns04 > s{background:url("/design/vittz/mo/img/sns_icon_apple.png") no-repeat;background-size:100% auto;}

.trxAth{padding:30px 0;border-top:1px #111111 solid;border-bottom:1px #e5e5e5 solid;}
.trxAth > img{width:120px;display:block;margin:0 auto 20px auto;}
.trxAth > b{display:block;text-align:center;color:#222222;font-weight:400;letter-spacing:-0.01em;font-size:16px;line-height:24px;margin-bottom:20px;}

.trxJonFrmWrp{width:100%;max-width:600px;margin:0 auto;padding-top:60px;}
.trxJonFrmTtl{font-weight:400;color:#110252;font-size:18px;display:block;padding-bottom:15px;line-height:18px;}
.trxJonFrm{padding:30px 0;border-top:1px #111111 solid;border-bottom:1px #e5e5e5 solid;margin-bottom:45px;}
.trxJonFrm > ul > li{margin-top:20px;}
.trxJonFrm > ul > li:first-child{margin-top:0;}
.trxJonFrm > ul > li > div:nth-child(1){height:40px;display:flex;align-items:center;}
.trxJonFrm > ul > li > div:nth-child(1) > span{color:#999999;font-size:16px;font-weight:400;position:relative;line-height:16px;display:inline-block;}
.trxJonFrm > ul > li > div:nth-child(1) > span.trxJonFrmRqq::after{width:4px;height:4px;background-color:#110252;border-radius:2px;content:" ";position:absolute;top:7px;right:-10px;}
.trxJonFrm > ul > li > div:nth-child(2){min-height:40px;}
.trxJonFrm .form_element{margin-top:10px;}
.trxIptWrp{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;}
.trxIptWrp .c_blue {display:block; width: 100%; color:#4d95ef; font-size: 14px; margin-top: 5px;}
.trxIptWrp > input{width: 100%; padding:0 15px;border:1px #cccccc solid;border-radius:5px;font-weight:400;color:#222222;font-size:16px;height:45px;}
.trxIptWrp > input:first-child:last-child{width:100%;}
.trxIptWrpTrp > select{width:calc((100% - 10px) / 3);border:1px solid #ccc;border-radius:5px; color: #222;height: 45px;padding: 0 15px;font-size: 16px;-webkit-appearance:none; -moz-appearance:none; appearance:none;background:url("/design/vittz/mo/img/icon_nav_down.png") no-repeat;background-size:15px auto;background-position:center right 15px;}
.trxIptWrpTrp > input{width:calc((100% - 10px) / 3);}
.trxIptWrpEml > input{width:calc(100% - 155px);}
.trxIptWrpEml > select{width:150px;padding:0 15px;border:1px #cccccc solid;border-radius:5px;font-weight:400;color:#222222;font-size:16px;height:45px;-webkit-appearance: none;-moz-appearance: none;background:url("/design/vittz/mo/img/icon_nav_down.png") no-repeat;background-size:15px auto;background-position:center right 15px;letter-spacing:-0.01em;}
.trxIptWrpEml > select:focus{background:url('/design/vittz/mo/img/icon_nav_down.png') no-repeat center; background-size:15px auto;background-position:center right 15px;}
.trxIptWrpEml > select::-ms-expand{display: none;}

.trxJonFrmAgg{border-bottom:1px #e5e5e5 solid;margin-bottom:60px;}
.trxJonFrmAgg .form_element{ display: block; font-size:16px;font-weight:400;color:#999999;font-size:16px;margin-bottom:40px;}
.trxJonFrmAgg .form_element:first-child{margin-bottom:20px;}
.trxJonFrmAggTxt{border:1px #e5e5e5 solid;border-radius:10px;padding:20px 10px 20px 20px;margin-bottom:20px;}
.trxJonFrmAggTxt > div{height:160px;overflow-y:scroll;overflow-x:hidden;font-weight:400;color:#888888;font-size:14px;letter-spacing:-0.02em;line-height:24px;padding-right:20px;}

.trxAccSlp{padding-bottom:50px;}
.trxAccSlp > div{background-color:#f4f5f9;padding:35px 0;border-radius:5px;margin-bottom:30px;}
.trxAccSlp > div > ul{width:250px;margin:0 auto;}
.trxAccSlp > div > ul > li{display:flex;justify-content: space-between;align-items:center;height:30px;}
.trxAccSlp > div > ul > li > span{font-size:16px;color:#999999;letter-spacing:-0.01em;font-weight:400;}
.trxAccSlp > div > ul > li:last-child > span{color:#110252;}
.trxAccSlp > p{color:#999999;font-size:16px;font-weight:400;text-align:center;letter-spacing:-0.01em;line-height:30px;padding-bottom:5px;word-break: keep-all;}
.trxAccSlp > b{display:block;text-align:center;color:#110252;font-size:16px;font-weight:400;letter-spacing:-0.01em;line-height:30px;}


.trxJonFrm > ul > li .common_input {
    height: 45px;
    border-color: #ccc;
}
.trxJonFrm > ul > li .zipcode_top .zipcode_btn {
    height: 45px;
}
.trxIptWrpFile {
    position: relative;
}
.trxIptWrpFile > .btn_join_file {
    width: 100px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 45px;
    line-height: 45px;
    padding: 0 5px;
}
.trxIptWrpFile > input[type="text"] {
    width: 100%;
}
.trxIptWrpFile > input[type="text"]:focus {
    outline: 0;
}
.trxIptWrpFile > .file_name {
    width: calc(100% - 130px);
    color: #222222;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.trxIptWrpFile #businessFile {
    display: none;
}



/* 회원가입 */
.join_base_wrap .form_element label.check_s {
    padding: 0 0 0 30px;
    cursor: pointer;
    background: url(/design/vittz/mo/img/bg_chkFls.png) no-repeat left 65%;
    background-size: 20px auto;
}
.join_base_wrap .form_element label.check_s.on {
    background: url(/design/vittz/mo/img/bg_chkTru.png) no-repeat left 65%;
    background-size: 20px auto;
}
.join_base_wrap .chk_txt {
    font-size: 14px;
    color: #999;
}
.join_base_wrap .trxJonFrmAgg .form_element > a {
    margin-left: 8px;
    display: inline-block;
}

.join_base_wrap .trxJonFrmAggTxt > div::-webkit-scrollbar {
    width: 5px;
}
.join_base_wrap .trxJonFrmAggTxt > div::-webkit-scrollbar-thumb {
    border-radius: 2.5px;
    background: #e1e1e1;
}
.join_base_wrap .trxJonFrmAggTxt > div::-webkit-scrollbar-track {
    border-radius: 2.5px;
    background: #f2f2f2;
}

/* 이용약관 */
.service_cont br {
    display: none;
}
.service_cont {
    font-size: 14px;
    font-weight: 300;
    color: #222;
}
.service_cont .agree_txt {
    font-weight: 400;
    color: #555555;
    line-height: 1.714;
}
.service_cont h2 {
    margin: 40px 0 11px;
    font-size: 18px;
    font-weight: 500;
}
.service_cont .ser_txt_box li {
    line-height: 1.714;
    margin-bottom: 9px;
}
.service_cont .ser_txt_box li:last-of-type {
    margin-bottom: 0;
}
.ser_txt_box03 li:first-of-type {
    margin-bottom: 0;
}
.ser_txt_box04 li:first-of-type {
    margin-bottom: 0;
}
.service_cont .ser_num {
    font-family: 'NEXON Lv1 Gothic';
}
.service_cont .ser_sub_txt_box {
    margin: 0 0 9px 15px;
    padding: 16px 20px;
    line-height: 1.714;
    color: #555555;
    background: #f7f7f7;
}
.service_cont .skip_txt {
    display: block;
    text-align: center;
    margin-top: 130px;
    font-size: 16px;
    color: #999999;
}



.trxBtnWrp {
    display:flex;
    /* flex-wrap:wrap; */
}
.trxBtnCnt {
    justify-content:center;
}
.trxBtnWrp > .n_btn {
    width: 100%;
    margin-left: 5px;
}
.trxBtnWrp > .n_btn:first-child {
    margin-left: 0;
}

/* .trxBtnFst {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border:1px #110252 solid;
    border-radius:5px;
    color:#110252;
    letter-spacing:-0.035em;
}
.trxBtnFst + .trxBtnFst {
    margin-left:6px;
}
.trxBtnFstFll {
    background-color:#110252;
    color:#fff;
}
.trxBtnFstNon {
    border-color:#fff;
}
.trxBtnFsz18 {
    font-size:18px;

}
.trxBtnWdt195 {
    width:100%;
    max-width:195px;

}
.trxBtnWdt220 {
    width:100%;
    max-width: calc(50% - 3px);
}
.trxBtnWdt450 {
    width:100%;
    max-width:450px;

}
.trxBtnWdtFll {
    width:100%;

}
.trxBtnHgt70 {
    height:60px;

}
.trxBtnHgt55 {
    height:55px;

} 



.trxBtn {
    font-size:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 5px;

}
.trxBtn01 {
    height:70px;

}
.trxBtn220 {
    width:220px;

}
.trxBtnNvy {
    color:#110252;
    border:1px #110252 solid;

}
.trxBtnNvyFll {
    color:#fff;
    border:1px #110252 solid;
    background-color:#110252;

}
*/


.trxHrzLne {
    display:block;
    border:0;
    margin:0;
    border-bottom:1px #222222 solid;
}
.trxHrzLne.trxHrzLneMgr {
    margin-bottom:50px;
}
.trxHrzLne02 {
    display:block;
    border:0;
    margin:0;
    border-bottom:1px #e5e5e5 solid;
}
.trxHrzLne02.trxHrzLneMgr {
    margin:20px auto;
    margin:60px auto;
}



/* ==== 로그인 ==== */
.trxLgnTab{
    display:flex;
    height:60px;
    /* margin-bottom:30px;  */
    /* margin-bottom:40px;  */
    margin-bottom: 10px;
}
.trxLgnTab a{
    width:50%;
    border-bottom:1px #222 solid;
    border-top:1px #fff solid;
    display:flex;
    font-size:18px;
    color:#222222;
    justify-content:center;
    align-items:center;

}
.trxLgnTab a:first-child{
    border-left:1px #fff solid;

}
.trxLgnTab a:last-child{
    width:calc(50% - 1px);
    border-right:1px #fff solid;

}
.trxLgnTab a.on{
    border:1px solid #222;
    border-bottom-color:#fff;
     border-radius: 5px 5px 0 0;
    font-weight:500;

}
/* .trxLgnTab a:first-child.on{
    border-left-color:#222;

}
.trxLgnTab a:last-child.on{
    border-right-color:#222;

} */
.trxLgnTab span{
    width:1px;
    background-color:#222222;

}
.login_info_box {
	padding:20px 15px;
	background-color:#f7f7f7;
	border-radius:6px;
	margin:15px 0;
	font-size: 14px;
	font-weight: 400;
	color: #555;
	word-break: keep-all;
	text-align:center;
}
.login_info_box > strong{color: #333;}
.login_info_box > p {
	margin-top:10px;
}
.login_info_box > p:first-child {
	margin-top:0;
}
.login_info_box > p > b {
	color:#110252;
	font-weight:500;
}
.login_info_box > p .bluBdg{display: inline-block; padding: 2px 15px 3px; color: #fff; border-radius: 6px; background: #110252;}

.trxLgnFrm{
    max-width:450px;
    margin:0 auto;
    margin-bottom:50px;
    /* margin-bottom:60px; */
}
.trxLgnFrm dl {
    margin-top:20px;
}
.trxLgnFrm dl:first-of-type {
    margin-top: 0;
}
.trxLgnFrm input[type="text"],
.trxLgnFrm input[type="password"]{
    display:block;
    width:100%;
    height:45px;
    padding:0 15px;
    border:1px #cccccc solid;
    font-size:16px;
    font-weight:400;
    border-radius: 6px;

}
.trxLgnFrm input[type="text"]::placeholder,
.trxLgnFrm input[type="password"]::placeholder{
    color:#999999;

}
.trxLgnFrm .submit {
    margin-top: 20px;
}
.trxLgnFrm .submit .n_btn {
    width: 100%;
}
.trxLgnFrm button[type="submit"]{
    /* display:block;
    height:70px;
    background-color:#110252;
    border-color:#110252;
    text-align:center;
    font-size:18px;
    font-weight:400;
    color:#ffffff;
    width:100%;
    margin-top:20px;
    border-radius:6px; */

}
.trxLgnFrm .js_caution_msg2{
    text-align:center;
    display:flex;
    justify-content:center;
    align-items:center;
    height:53px;
    font-size:14px;
    color:#999999;
    font-weight:400;

}
.trxLgnFrm .login_inp_chk {
    margin-top:20px;
    padding-bottom: 1px;
}
.trxLgnFrm .login_inp_chk label {
    margin-right:20px;

}

.trxLgnOpt{
    display:flex;
    justify-content:space-between;
    margin-top:20px;

}
.trxLgnOpt > div{
    display:flex;

}
.trxLgnOpt > div > span{
    font-size:16px;
    font-weight:400;
    color:#999999;
    display:inline-flex;
    height:20px;
    align-items:center;
    cursor: pointer;

}
.trxLgnOpt > div > span:first-child{
    margin-right:15px;

}
.trxLgnOpt > div > span:first-child::after{
    width:1px;
    background-color:#e5e5e5;
    height:12px;
    content:" ";
    display:block;
    margin-left:15px;

}


.login_find {
    margin-top:20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
}
.login_find > li {
    padding: 0 14px;
}
.login_find > li.lgnFndId {
    position: relative;
}
.login_find > li.lgnFndId::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 13px;
    background: #e5e5e5;
}
.login_find > li a {
    color: inherit;
}


/* #btnJoinMember{
    display:block;
    height:70px;
    background-color:#110252;
    text-align:center;
    font-size:18px;
    font-weight:400;
    color:#ffffff;
    width:100%;
    margin-top:20px;

} */

.trxLgnBnf{
    margin-left:auto;
    margin-right:auto;
    max-width:600px;
    /* padding-top:25px; */

}
.trxLgnBnf > span{
    display:flex;
    height:20px;
    align-items:flex-start;
    font-size:18px;
    font-weight:400;
    color:#222222;
    margin-bottom:17px;
    line-height:20px;

}
.trxLgnBnf > span > a{
    margin-left:10px;
    font-size:16px;
    height:20px;
    font-weight:500;
    color:#110252;
    border-bottom:1px #110252 solid;
    padding-bottom:3px;
    line-height:16px;

}
.trxLgnBnf > div{
    border:1px #222222 solid;
    border-radius:6px;
    padding:30px 20px;
    position:relative;

}
.trxLgnBnf > div::after{
    width:122px;
    height:84px;
    position:absolute;
    top:-60px;
    right:0;
    content:" ";
    background:url("/design/vittz/mo/img/img_dco.png") no-repeat;
    background-size:100% auto;
     display: none;

}
.trxLgnBnf > div > strong{
    font-size:18px;
    color:#222222;
    font-weight:400;
    margin-bottom:25px;
    display:block;

}
.trxLgnBnf > div > ul{
    margin-top:-20px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;

}
.trxLgnBnf > div > ul > li{
    padding-top:20px;
    display:flex;
    align-items:flex-start;
    width:calc(50% - 5px);

}
.trxLgnBnf > div > ul > li > img{
    width:26px;
    margin-right:10px;

}
.trxLgnBnf > div > ul > li > span{
    line-height:20px;
    color:#555555;
    font-size:14px;
        word-break: keep-all;

}
.trxLgnBnf > div > hr{
    border:0;
    border-bottom:1px #e5e5e5 dashed;
    margin:40px auto;

}




/* ==== id 찾기 ==== */
.trxFndTab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
}
.trxFndTab > label {
    border: 1px #fff solid;
    border-bottom: 1px #222222 solid;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px 5px 0 0;
    height: 60px;
    font-weight: 400;
    color: #222222;
    font-size: 18px;
    letter-spacing: -0.01em;
    text-align: center;
    word-break: keep-all;
}
.trxFndTab > input:checked + label {
    border: 1px #222222 solid;
    border-bottom: 1px #fff solid;
    font-weight: 500;
}

.trxLgnFrm dl.userEmail dd {
    display:flex;
}
.trxLgnFrm dl.userEmail dd select {

}
.trxLgnFrm dl.userEmail dd > input,
.trxLgnFrm dl.userEmail dd .email_select_box {
    width: calc(50% - 3px);
}
.trxLgnFrm dl.userEmail dd .email_select_box  {
    margin-left: 6px;
}
.trxLgnFrm dt {
    font-size:14px;
    margin-bottom: 10px;
}
.trxLgnFrm select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #222;
    height: 45px;
    padding: 0 15px;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(/design/vittz/mo/img/icon_nav_down.png) no-repeat;
    background-size: 15px auto;
    background-position: center right 15px;
}
.find_txt {
    font-size: 14px;
    margin-bottom: 30px;
    color: #888888;
    text-align: center;
}
.find_txt strong {
    display: block;
    font-size: 24px;
    color: #110252;
    margin-bottom: 10px;
}

.find_btn_wrap  {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px #e5e5e5 solid;
}
.find_box .caution_msg1	{
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	margin-top: 5px;
	letter-spacing: -0.01em;
	color: #ef4d4d;
}

.caution_msg1 {
    font-size: 13px;
    color: #110252;
    margin: 0 0 10px;
    font-weight: 400;
}
.caution_msg1 * {
    font-weight: 400;
}

.trxAthWay{
    border-radius:5px;
    background-color:#f4f5f9;
    padding:30px;
    margin-bottom:20px;
    font-size: 14px;
}
.trxAthWay .inp_tx{
    margin-top:20px;
    font-weight:400;
    color:#222222;
    font-size:16px;
}
.trxAthWay .inp_tx:first-child{
    margin-top:0;
}
.trxAthWay .inp_tx > .inp_val{
    display: block;
    font-weight: 400;
    padding: 5px 0 0 30px;
    color: #999;
    font-size: 14px;
} 



/* 본인인증 */
.trxAthWay .inp_tx .common_input {
    height: 45px;
}
.trxAthWay .inp_tx .auth-text-time-authno {
    margin-top: 10px !important;
}
.auth-time-authno {
    background: transparent !important;
    color: #110252 !important;
    border: 0 !important;
    font-weight: 400;
}


/* 비밀번호 변경 */
.trxLgnFrm .input_pw {
    margin-top: 10px;
}
.trxLgnFrm .input_pw:first-child {
    margin-top: 10px;
}
.trxLgnFrm .msg {
    font-size: 13px;
    margin: 5px 0 10px;
    display: block;
}
.trxLgnFrm .msg.c_red {

}
.trxLgnFrm .msg.c_blue {
    color: #110252;
}

/*  */

.trxFndRst{height:220px;justify-content:center;align-items:center;display:flex;}
.trxFndRst p{font-size:26px;line-height:40px;font-weight:400;color:#222222;text-align:center;letter-spacing:-0.01em;}
.trxFndRst p strong{color:#110252;font-weight:700;}


.trxJonTxt{color:#888888;font-size:16px;font-weight:400;line-height:16px;text-align:center;padding-bottom:40px;}
.trxJonTxt > b{display:block;text-align:center;font-size:26px;color:#110252;font-weight:500;padding-bottom:15px;line-height:26px;}

.trxAthWay{border-radius:5px;background-color:#f4f5f9;padding:30px;margin-bottom:20px;}
.trxAthWay li{margin-top:10px;font-weight:400;color:#222222;font-size:16px;}
.trxAthWay li:first-child{margin-top:0;}

.trxTmeLmt{height:35px;margin-bottom:10px;display:flex;align-items:center;color:#222222 !important;border:0 !important;background-color:transparent !important;width:auto !important;font-weight:500 !important;font-size:14px !important;}
.trxTmeLmt *{color:#222222 !important;border:0 !important;background-color:transparent !important;width:auto !important;font-weight:400 !important;font-size:14px !important;margin-left:5px;}



/* id 찾기 결과 */
.find_id_msg {
    padding: 50px 0 40px;
    font-size: 16px;
    border: 0;
    border-top: 1px solid #222;
}
.find_id_msg .c_red {
    color: #110252;
}



/* ==== 주문하기 order/order.html ===== */
.order{
    padding: 20px 0 0;
}
.order_header {
    padding: 20px 20px 15px 0;
    position: relative;
}
.order_header .order_title {
    /* display: flex;
    align-items: center; */
    font-size: 16px;
    line-height: 1em;
    color: #110252;
    font-weight: 500;
    width: calc(100% - 50px);
}
.order_header .icon_toggle {
    display: block;
    width: 15px;
    height: 9px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("/design/vittz/mo/img/arr_order_tit.png");
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    
}

.order_box.hide .icon_toggle {
    transform: translateY(-50%);
}
.order_box.hide .order_body {
    display: none;
}
.order_body {
    padding-bottom: 20px;
}
.order_body.border_none .order_table_box{
    border-top: 0;
}



/* 주문자 정보 */
.order_body legend,
.order_body caption {
     /* overflow: hidden;
    display: inline-block;
    position: absolute;
    z-index: -1;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%); */
    display: none;
}
.order_table_box {
    border-top: 1px solid #222;
    border-bottom: 1px solid #eaeaea;
    padding: 25px 0 30px;
}
.table_style_order {
    display: table;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 100%;
    max-width: none;
    width: 100%;
}
.table_style_order caption {
    /* overflow: hidden;
    display: inline-block;
    position: absolute;
    z-index: -1;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%); */
    display: none;
}
.table_style_order th,
.table_style_order td {
    font-size: 14px;
    padding: 5px 0;
    height: 50px;
}
.table_style_order th {
    color: #999999;
    padding: 16px 10px 0 0;
    text-align: left;
    font-weight: normal;
    line-height: 1em;
    vertical-align: top;
    width: 80px;
}
.table_style_order td {
}


/* 배송지 정보 */
.order .order_box .delivery_box {

}
.order .order_box .tab_menu > ul {
    display: flex;
}
.order .order_box .tab_menu > ul > li {
    border: 1px solid transparent;
    border-bottom-color: #111;
    width: 100%;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    text-align: center;
    font-size: 16px;
}
.order .order_box .tab_menu > ul > li.active {
    border: 1px solid #111;
    border-bottom-color: transparent;
}
.order .order_box .tab_menu > ul > li > a {
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
}


.order .order_box .tab_content .member_chk_box {
    margin: 10px 0 10px;
    display: block;
}
.order .order_box .tab_content .inp_chk > label {
    display: block;
    width: 100%;
}
/* .order .order_box .tab_content .inp_chk > label::before {
    vertical-align: middle;
    margin-top: -2px;
} */
.order .order_box .tab_content .inp_chk > label small {
    display: block;
    margin: 2px 0 0 25px;
    font-size: 13px;
    color: #999;
}


.delivery_list_add {
    
}
.delivery_list_add {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.delivery_list_add > li {
    /* margin-left: 5px; */
    width: calc(33.333% - 10px / 3);
    margin-right: 5px;
}
.delivery_list_add > li:nth-child(3n+1) {
    margin-right: 0;
}
.delivery_list_add > li:first-child {
    margin: 0 0 5px;
    width: 100%;

}
.dellvery_add_btn {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    height: 40px;
    /* line-height: 38px; */
    line-height: 39px;
    background-color: #110252;
    border: 1px solid #110252;
    color: #fff;
    border-radius: 6px;
    font-weight: 400;
}
.dellvery_list_btn.on {
    background-color: #110252;
    border-color: #110252;
    color: #fff;
}
.dellvery_list_btn {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    height: 40px;
    /* line-height: 38px; */
    line-height: 39px;
    background-color: #fff;
    border: 1px solid #110252;
    color: #110252;
    border-radius: 6px; 
    font-weight: 400;
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.delivery_box .member_chk_box1 {
    margin: 0 0 10px;
}



/* 결제 정보 */

/* .order_table_box {
    padding: 25px 0 25px;
    border-bottom: 1px solid #f1f1f1;
} */
.table_style_pay {
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 100%;
    max-width: none;
    width: 100%;
}
.table_style_pay th,
.table_style_pay td {
    font-size: 14px;
    padding: 5px 0;
    height: 34px;
}
.table_style_pay th {
    color: #999999;
    padding: 16px 10px 0 0;
    text-align: left;
    font-weight: normal;
    line-height: 1em;
    vertical-align: top;
}
.table_style_pay td {
    text-align: right;
}
.table_style_pay td b,
.table_style_pay td strong {
    font-weight: 400;
}

.all_money_box {
    position: relative;
}
.all_money_box .money_left {
    width: 100%;
}
.all_money_box .money_left.disabled + .won {
   right: 15px;
}
.all_money_box .money_left .common_input {
    padding-right: 125px;
}
.all_money_box .won {
    font-size: 14px;
    color: #222;
    position: absolute;
    right: 115px;
    top: 10px;
}
.all_money_box .btn_use_all {
    font-size: 0;
}
.all_money_box .btn_use_all label {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #110252;
    color: #110252;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
}
.all_money_box .btn_use_all input[type="checkbox"] {
	display:none;
}
.all_money_box .btn_use_all input[type="checkbox"]:checked +label {
    background: #110252;
    color: #fff;
}

.all_money_box .btn_use_all input[type="checkbox"] + label::after {
    content: "모두사용";
}
.all_money_box .btn_use_all input[type="checkbox"]:checked + label:after {
    content: "사용취소";
}

.all_money_box + .point_view {
    text-align: right;
    font-size: 14px;
    padding-top: 8px;
    color: #110252;
}
.all_money_box + .point_view > p {
    color: inherit;
}
.mile_desc {
	width: calc(100% + 80px) !important;
	margin-left: -80px;
    margin-top: 4px;
    text-align: right;
}

.all_money_box .btn_use_all .coupon_search_apply_btn {
    /* position: absolute;
    right: 0;
    top: 0; */
    width: 100px;
    height: 40px;
    line-height: 39px;
    padding: 0;
    font-weight: 400;
    border: 1px solid #110252;
    background: #110252;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
}

.order_pay_total {
    display: flex;
    align-items: center;
    position: relative;
    border-top: 1px solid #eaeaea;
    padding: 15px 0 35px;
    margin-bottom: -20px;
}
.order_pay_total::after {
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: 1px;
    background-color: #dddddd;
    position: absolute;
    left: -15px;
    bottom: 0;
}
.order_pay_total dt {
  width: 100px;
  color: #222222;
  font-size: 16px;
}
.order_pay_total dd {
    width: calc(100% - 100px);
    color: #110252;
    font-weight: 500;
    font-size: 16px;
    text-align: right;
}
.order_pay_total dd strong {
    font-size: 22px;
}





/* 결제 수단 */
.how_to_pay .order_tit {
	font-size: 15px;
	font-weight: 500;
}
.how_to_pay #settlekind_payco {
	margin-top: 30px;
}
.how_to_pay::before {
    content: "";
    display: block;
    height: 10px;
    width: calc(100% + 30px);
    margin-left: -15px;;
    background: #f5f5f5;
}
.pay_mth.pay_mth_tab {
    display: flex;
    flex-wrap: wrap; 
    margin-bottom: 10px;
}
.pay_mth.pay_mth_tab li {
    font-size: 14px;
    min-width: 160px;
}
.pay_mth:not(.pay_mth_tab) {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    /* margin: -10px 0 10px; */
    
}
.pay_mth:not(.pay_mth_tab) li {
    width: calc(50% - 5px);
    font-size: 0;
    margin-top: 10px;
    margin-right: 10px;
}
.pay_mth:not(.pay_mth_tab) li .pay_mth_rdo {
    display: block;
}
.pay_mth:not(.pay_mth_tab) li .pay_mth_rdo input[type="checkbox"], 
.pay_mth:not(.pay_mth_tab) li .pay_mth_rdo input[type="radio"] {
    display: none;
}

.pay_mth:not(.pay_mth_tab) li:nth-child(2n) {
    margin-right: 0;
}

.pay_mth:not(.pay_mth_tab) li .pay_mth_rdo label {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 39px;
    font-size: 14px;
    color: #222;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
}
.pay_mth li .pay_mth_rdo input[type="radio"]:checked + label {
    background-color: #110252;
    border-color: #110252;
    color: #fff;
    font-weight: 500;
}
.pay_notice {
    margin-bottom: 10px;
}

/* .pay_mth_info_box {
    background-color: #f7f7f7;
    border-radius: 6px;
    padding: 20px;
    font-size: 14px;
    margin-top: 20px;
} */
.pay_mth_info_box #settlekind_general_gb {
 background-color: #f7f7f7;
    border-radius: 6px;
    padding: 20px;
    font-size: 14px;
    margin-top: 20px;
}
.pay_mth_info_box .pay_notice {
    display: block;
    font-size: 14px;
    margin: 0 0 10px;
    color: #110252;
}



/* 세금계산서 */
.receipt_select {
    font-size: 14px;
    margin: -10px 0 0;
}
.receipt_select li {
    margin-top: 10px;
    display: block;
    width: 100%;
}
.receipt_select li .inp_rdo {
    display: block;
    width: 100%;
}


.re_confirm {
    margin: 30px 0;
}


.btn_pay_wrap {
}
.btn_pay_wrap .n_btn {
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: -0.035em;
}


.receipt_select_wrap {
	margin-top: 40px;
	background-color: #f7f7f7;
    border-radius: 6px;
    padding: 20px;
    font-size: 14px;
    margin-top: 20px;
}



/* 결제수단  - 정기결제 */
.regular_pay_item {
    text-align: center;
}
.regular_pay_item .regular_pay_card {
    width: 250px;
    height: 158px;
    background: url('/design/vittz/mo/img/regular_card_bg.png') no-repeat center;
    background-size: contain;
    position: relative;
    padding: 0;
}

.regular_pay_item .regular_pay_card img {
    width: 45px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.regular_pay_item .regular_pay_card_txt_wrap {
    margin-top: 30px;
}
.regular_pay_item .regular_pay_card_txt_wrap > .tit {
    font-size: 18px;
    line-height: 1em;
    color: #222;
    margin-bottom: 10px;
}
.regular_pay_item .regular_pay_card_txt_wrap > .txt { 
    font-size: 16px;
    line-height: 25px;
    color: #999;
}





/* 동의 영역 */
.order_agree_wrap {
    /* padding: 20px 0; */
    position: relative;
    border-bottom: 10px solid #f5f5f5;
    border-top: 10px solid #f5f5f5;
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 20px 15px;
}

.order_agree_wrap::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #ddd;
    position: absolute;
    left: 0;
    bottom: 0;
}

.order_agree_wrap .my_tit {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
}

.order_agree_tit {
    font-size: 16px;
    color: #222;    
    font-weight: 400;
    padding: 20px 0 10px;
}

.order_agree_wrap .g_content {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 20px 15px;
    line-height: 20px;
    font-size: 14px;
    color: #555555;
    height: 139px;
    overflow: auto;
}
.guest_info .inp_chk {
    margin-top: 10px;
}


/* 딜리버리 영역 */
/* .order_box_delivery {
    margin-bottom: -10px;
} */
.order_del_wrap {
    /* margin: 30px 0; */
    padding: 17px 20px;
    border-radius: 6px;
    line-height: 23px;
    font-size: 14px;
    color: #999999;
    background-color: #f8f9fa;
}
.order_del_wrap > p {
    margin-bottom: 10px;
    word-break: keep-all;
}
.order_del_wrap > p > strong {
    color: #110252;
    margin-bottom: 5px;
    display: block;
    word-break: keep-all;
}


/* 화물 출고 */
.checkbox_desc {
    display: inline-block;
    font-size: 0.9em;
    color: #777;
    /* padding-left: 6px; */
    margin-top: 1px;
}
.gary_info_bullet_list {
    display: block;
    width: 100%;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 6px;
    color: #999999;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    margin-top: 15px;
}
.gary_info_bullet_list > ul {
    margin-bottom: -9px;
    display: flex;
    flex-wrap: wrap;
}
.gary_info_bullet_list > ul > li {
    width: 100%;
    position: relative;
    padding-left: 15px;
    margin-bottom: 9px;
}
.gary_info_bullet_list > ul > li.half {
    width: 50%;
}
.gary_info_bullet_list > ul > li::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 9px;
}




/* 주문 상품 리스트 */
.order_box .my_goods {
    border-top: 1px solid #222;
}
.order_box .my_goods > li {
    padding: 30px 0;
    border-bottom: 1px solid #eaeaea;
}
.order_box .order_goods_item {
    display: flex;
    flex-direction: row-reverse;
}
.order_box .order_goods_item > .itemhead {
 
}
.order_box .order_goods_item > .itemhead .thmb {
    width: 80px;
    height: 97px;
    border-radius: 6px;
    overflow: hidden;
}
.order_box .order_goods_item > .itemhead .thmb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order_box .order_goods_item > .itembody {
    width: calc(100% - 80px);
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
    color: #222222;
}
.order_box .order_goods_item > .itembody .item_opt {
    color: #999999;
    margin-top: 5px;
}

.order_box .order_goods_item > .itembody > .itembody_bottom {
    display: flex;
    flex-wrap: wrap;
}
.order_box .order_goods_item > .itembody > .itembody_bottom .num {
    margin-right: 15px;
}
.order_box .order_goods_item > .itembody > .itembody_bottom .prc {
    font-weight: 400;
    display: block;
    min-width: 120px;
}
.order_box .order_goods_item > .itembody > .itembody_bottom .del_info {
    width: 100%;
}


/* 주문하기  사은품 */
.order .gift_choice {
    border-top: 1px solid #222;
}
.order .gift_choice > p {
    display: none;
}
.order .gift_choice > p > span {
    color:#ff573b;
}
.order .gift_choice > ul {
    /* margin:-35px 0 0 -10px; 
    padding:10px 10px 10px 10px; 
    font-size:0; 
    box-sizing: border-box; */
}
.order .gift_choice > ul > li {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
     /* display:inline-block; 
     padding: 20px 0;
     font-size:13px; 
     text-align:center; 
     vertical-align:top; 
     box-sizing: border-box; */
}
.order .gift_choice > ul > li .inp_chk{
    width: 30px;
    height: 20px;
    flex-shrink: 0;
    /* display:block; 
    right:initial; 
    top:initial; 
    margin:0; */
}
.order .gift_choice > ul > li .gift_thum {
    
}
.order .gift_choice > ul > li .gift_thum {
    display:block;
    width: 80px;
    height: 97px; 
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}
.order .gift_choice > ul > li .gift_thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order .gift_choice > ul > li span.txt {
    display: block;
    padding-right: 15px;
    width: calc(100% - 80px - 30px);
    font-size: 14px;
}

/* 결제진행중 팝업 */
.pg_gate .pg_buy_info {
	border-radius: 6px;
	overflow: hidden;
}
.pg_gate .pg_buy_info .pg_bx .tx {
	font-size: 14px;
	word-break: keep-all;
	margin: 0 0 10px 0;
}
.pg_gate .pg_buy_info .pg_bx .tx strong {
	font-size: 16px;
	margin: 0 0 15px;
}
.pg_gate .pg_buy_info .pg_bx .btn_wish_bx .btn_bx {
	display:flex;
}
.pg_gate .pg_buy_info .pg_bx .btn_wish_bx .btn_bx li {
	display: block;
	margin-left: 5px;
	width: 100%;
}
.pg_gate .pg_buy_info .pg_bx .btn_wish_bx .btn_bx li:first-child {
	margin-left: 0;
}					
.pg_gate .pg_buy_info .pg_bx .btn_wish_bx .cart_btn_box {
	margin-top: 5px;
} 


/* ==== 주문완료 order/order_end.html ===== */
.img_order_com {
    display: block;
    width: 155px;
    margin: 0 auto;
}
.order_com_txt {
    margin: 26px 0 15px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
}
.order_com_txt strong{
    display: block;
}
.order_end_box {
    text-align: center;
    padding: 15px;
    background-color: #f4f5f9;
    color: #222222;
    line-height: 20px;
}
.order_end_box h2 {
    font-weight: 500;
    font-size: 14px;

}
.order_end_box strong {
    font-weight: 400;
    font-size: 14px;
}
.order_end_box > .tx {
    margin-top: 20px;
    font-size: 13px;
    color: #555;
}
.order_end_box > .tx2 {
    margin-top: 20px;
    font-size: 13px;
    color: #555;
}

.order_end_pay_wrap {
    margin-top: 20px;
    display: flex;
}
.order_end_pay_wrap > .n_btn {
    margin-left: 5px;
}
.order_end_pay_wrap > .n_btn:first-child {
    margin-left: 0;
}


/* 반품신청 mypage\layer_order_back_regist.html*/
.order_back_wrap .order_goods_list {
    width: calc(100% + 30px);
    margin-left: -15px;
}
.order_back_wrap .btn_bx2 {
    display: flex;
}
.order_back_wrap .btn_bx2 > .n_btn {
    width: 100%;
    margin-left: 5px;
}

.order_back_wrap .btn_bx2 > .n_btn:first-child {
    margin-left: 0;
}
.order_back_wrap .caution {
    font-size: 13px;
    color: #999;
    margin: 20px 0;
    /* display: block; */
    word-break: keep-all;
    text-align: left;
}
.order_back_wrap .caution > p::before {
    content: "※";
    padding-right: 1px;
}

/* 교환신청 mypage\layer_order_back_regist.html*/




/* 검색 */
.goods_search .inp_sel select{
    background: #fff url(/design/vittz/mo/img/arr_select_border_none.png)no-repeat right 15px center;
    background-size: 10px auto;
}


/* 공지사항 */
.list_default .boardlist .goods_area .notice_list li .notice_box .notice_title .icon .icon_noti {
    display: inline-block;
    width: 60px;
    height: 24px;
    line-height: 24px;
    border-radius: 3px;
    background: #110252;
    color: #fff;
    text-align: center;
    vertical-align: text-bottom;
    margin-right: 5px;
    position: relative;
    top: -3px;
}



/*==== 이용약관 ==== */
.agreement h3,
.private h3 {
    font-size: 20px;
    padding: 0 0 15px;
    margin: 20px 0;
    border-bottom: 1px solid;
    text-align: center;
}

.agreement > article,
.private > article {
    font-size: 14px;
	line-height: 1.6em;
}
.agreement > article > h2,
.private > article > h2 {
    font-size: 16px;
    font-weight: 500;
}
.agreement > article > h2 + br,
.private > article > h2 + br {
	display:none;
}

.agreement .ser_sub_txt_box,
.private .ser_sub_txt_box {
    margin: 5px 0 5px;
    padding: 15px 20px;
    color: #555555;
    background: #f7f7f7;
	word-break: break-all;
}
.agreement .ser_sub_txt_box > br:first-child,
.private .ser_sub_txt_box > br:first-child {
	display:none;
}
.list_gallery .boardlist .goods_gallery_ul li .goods_gallery_img img {
    width: 100%;
}


/* ==== 이벤트 LIST ===== */
.goods_gallery_img a.no_img {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: #ddd;
    font-size: 16px;
    position: relative;
}
.goods_gallery_img a.no_img::before {
    content: "no image";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
}
.list_gallery .boardlist .no_list {
    font-size: 14px;
    padding: 50px 15px;
    text-align: center;
}
.list_gallery .boardlist .goods_gallery_ul li {
    margin: 40px 0 0;
}
.list_gallery .boardlist .goods_gallery_ul li:first-child {
    margin-top: 0;
}
.list_gallery .boardlist .goods_gallery_ul li .goods_gallery_img {
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}
.list_gallery .boardlist .goods_data {
    margin: 5px 0 0 0;
    color: #999;
    font-size: 11px;
}
.list_gallery .boardlist .goods_data .data time{
    color: #999;
}

/* ==== 이미지 비율 ==== */
.list_gallery .boardlist .goods_gallery_ul li .goods_gallery_img a {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}
.list_gallery .boardlist .goods_gallery_ul li .goods_gallery_img a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* 기획전 , 이벤트 - 1:1 */
/* 설치기이드 - 100:62.5 */
.list_gallery.list_install .boardlist .goods_gallery_ul li .goods_gallery_img a {
    padding-bottom: 62.5%;
}

/* ==== 이벤트 - view ===== */
.view_event .event_status {
    font-size: 14px;
    height: 32px;
    border: 1px #110252 solid;
    min-width: 70px;
    padding: 0 15px;
    font-weight: 400;
    color: #110252;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;

}
.view_event .view_wrap .view_box .view_info_box .view_info .date {
    color: #999;
    font-size: 14px;
    padding: 0;
    margin: 0;
}
.view_event .view_wrap .view_box .view_info_box .view_info .date:after {
    content: none;
}
.view_event .view_event_tit {
    position: relative;
}
.view_event .btn_bd_share {
    display: block;
    width:17px;
    position: absolute;
    right: 15px;
    top: 25px;
}
.view_event .btn_bd_share img {
    width: 100%;
}

.board_share_pop {
    width:300px;
    background-color:#fff;
    border:1px solid #7f7f7f;
    border-radius:6px;
    overflow:hidden;
    box-shadow: 0 5px 15px 5px rgba(0,0,0,0.1);
    position:absolute;
    right:15px;
    top:52px;
    z-index: 20;
}
.board_share_pop .board_share_header {
    padding: 20px;
    position:relative;
}
.board_share_pop .board_share_tit {
    font-size:18px;
    line-height:1em;
    color:#222;
}
.board_share_pop .btn_close_share {
    background: url('/design/vittz/mo/img/btn_layer_close.png') no-repeat center;
    background-size:15px auto;
    width:15px;
    height:15px;
    box-sizing:content-box;
    padding:20px;
    position:absolute;
    right:0;
    top:0;
}
.board_share_cont {padding:0 35px 40px;
}
.board_share_pop .share_icon_list {display: flex;
    flex-wrap:wrap;
    justify-content: center;
}
.board_share_pop .share_icon_item {margin: 0 24px;
    position:relative;
}
.board_share_pop .share_icon_item::after {content:"";
    display:block;
    width:1px;
    height:50px;
    position:absolute;
    right:-24px;
    top:4px;
    background-color:#e5e5e5;
}
.board_share_pop .share_icon_item:last-child::after{display:none;
}
.board_share_pop .share_icon_item > a {display:block;
    position:relative;
    padding-bottom:30px;
}
.board_share_pop .share_icon_item > a > img {display:block;
    width:60px;
    height:60px;
    border-radius:50%;
}
.board_share_pop .share_icon_item > a > .txt {font-size:14px;
    line-height:1em;
    color:#222;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    min-width:100px;
    text-align:center;
}
.plnng_btn_wrp {
    justify-content: center;
}
.plnng_btn_wrp > button {
    width: 100%;
}


/* ==== 기획전 - 리스트 ==== */
.board_cont_wrap {
    display: none;
}

/* ==== 기획전 - 뷰 상세  ==== */
.common_tab.common_tab_s > a {
    font-size: 14px;
    word-break: keep-all;
    line-height: 1.2;
}
.view_event .goods_area h3 > div {
    margin: 10px 0 5px;
    line-height: normal;
}
.view_event .view_wrap .view_box .view_info_box .view_info {
    border-bottom: 1px solid #dbdbdb;
}
.view_event .view_wrap .contents_holder img {
    max-width: 100%;
}


.total.event_total {
    padding: 20px 15px 0;
}
.trxIdxCmnTab.event_tab {
    margin-top: 0;
    padding: 15px 15px 0;
    border-bottom: 1px solid #dbdbdb;
    position: sticky;
    /* top: 69px; */
	/* 22.07.15 jhj 수정 기획전 상세에서 벌어짐 해결 */
	top: 60px;
    left: 0;
    background-color: #fff;
    z-index: 15;
    overflow: auto;
}

.event_bottom_wrap .main_prd_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 15px 35px;
    border-top: 1px solid #f0f0f0;
    box-sizing: border-box;
}
.event_bottom_wrap .main_prd_list.first {
    border-top: 0;
}
.event_bottom_wrap .main_prd_list > li {
    width: calc(50% - 5px);
    /* margin-right: 10px; */
    margin-top: 35px;
}
/* .event_bottom_wrap .main_prd_list > li:nth-child(2n) {
    margin-right: 0;
} */

.trxVewPlnLmt {
    background-color: #fef5f0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ef6313;
    font-weight: 700;
    font-size: 19px;
    padding: 20px 15px;
    margin-bottom: 10px;
}

.trxVewPlnWrn {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px 15px;
    margin-top: 10px;
}
.trxVewPlnWrn > strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #555555;
    line-height: 18px;
    padding-bottom: 15px;
}
.trxVewPlnWrn > p {
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    line-height: 22px;
    word-break: keep-all;
}


.goods_prd_item2 .soldout_img {
    background-size: 130px auto;
}



/* ==== 고객센터 > 조명 > 첫구매 가이드 ==== */
.cs_hard_tab_wrap {
    width: 100%;
    overflow: auto;
    margin: 20px 0 30px;    
    padding-bottom: 5px;
}
.cs_hard_tab_wrap > .trxTab {
    width: auto;
    margin-bottom: 0;
}
.cs_hard_tab_wrap >.trxTab > a {
    width: 100%;
    font-size: 14px;
    line-height: 1.2em;
    min-width: 30%;
    padding: 0 10px;
}
.list_qa .cs_hard_tab_wrap >.trxTab > a:nth-child(2) {
	word-break: break-all;
}


/* ==== 딜리버리 설치 서비스 ==== */

/* === 인테리어 가이드 view === */
.view_gallery .goods_area h3{position: relative;}
.view_gallery .btn_bd_share{display: block; width: 17px; position: absolute; right: 15px; top: 13px;}
.view_gallery .btn_bd_share img{width: 100%;}


/* map 영역 */
.mapWrp {
    width: 100%;
}
.mapDtlImg > img {    
    max-width: 100%;
}
.mapWrp > div {
    border: 1px solid #e5e5e5; 
    border-radius: 6px; 
    padding: 0 0 20px; 
    position: relative;
}
.mapWrp > div > .mapTxt {
    padding: 20px 20px 10px;
}
.mapTxt > span {
    font-size: 16px; 
    line-height: 25px; 
    color: #999999;
}
.mapDtlImg {
    text-align: center;
    position: relative;
    max-width: 510px;
    margin: 0 auto;
    font-size: 0;
}
.mapBtn > button {
    position: absolute; 
    z-index: 9;
}
.mapBtn > button > img {
    width: 28px;
}
.mapBtn > button > span {
    display: block; 
    font-size: 15px; 
    line-height: 30px; 
    color: #222222;
}
.map_area_wrap > .map_area {
    position: absolute;
    left: 0;
    top: 0;
}
.map_area_wrap > .map_area > img {
    max-width: 100%;
    opacity: 0;
}

/* 영역들  */
.map_area_wrap > .map_area_busan {
    width: 13.529%;
    top: 64.146%;
    left: 75.490%;
}
.map_area_wrap > .map_area_chungbuk {
    width: 35.686%;
    top: 26.707%;
    left: 37.647%;
}
.map_area_wrap > .map_area_chungnam {
    width: 37.450%;
    top: 31.951%;
    left: 8.823%;
}
.map_area_wrap > .map_area_daegu {
    width: 11.176%;
    top: 51.829%;
    left: 64.117%;
}
.map_area_wrap > .map_area_daejeon {
    width: 7.843%;
    top: 42.073%;
    left: 36.078%;
}
.map_area_wrap > .map_area_gangwon {
    width: 54.705%;
    top: 0.487%;
    left: 36.078%;
}
.map_area_wrap > .map_area_gwangju {
    width: 9.803%;
    left: 18.823%;
    top: 65.365%;
}
.map_area_wrap > .map_area_gyeongbuk {
    width: 44.705%;
    left: 50.588%;
    top: 29.878%;
}
.map_area_wrap >.map_area_gyeongnam{  
    width: 43.137%;
    left: 43.725%;
    top: 53.048%;
}
.map_area_wrap > .map_area_gyeonggi{
    width: 39.607%;
    top: 7.195%;
    left: 13.529%;
}
.map_area_wrap > .map_area_incheon {
    width: 5.098%;
    top: 19.024%;
    left: 20%;
}
.map_area_wrap > .map_area_jeju {
    width: 19.019%;
    top: 92.682%;
    left: 9.411%;
}
.map_area_wrap > .map_area_jeonbuk {
    width: 37.647%;
    top: 47.926%;
    left: 15.294%;
}
.map_area_wrap > .map_area_jeonnam{
    width: 38.039%;
    top: 60.853%;
    left: 13.137%;
}
.map_area_wrap > .map_area_seoul {
    width:11.568%;
    top:18.170%;
    left: 24.117%;
}
.map_area_wrap > .map_area_ulsan {
    width: 12.156%;
    top: 57.439%;
    left: 80.588%;
}


.map_area .btn_map_picker {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    text-align: center;
}
.map_area .btn_map_picker .icon_spot {
    display: block;
    width: 20px;
    height: 25px;
    background: url('/design/vittz/mo/img/img_map_picker_blu.png') no-repeat center;
    background-size: contain;
    margin: 0 auto 3px;
}
.map_area .btn_map_picker > span {
    display: block;
    width: 80px;
    font-size: 13px;
    line-height: 1em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* 팝업열기 겹치는 부분  */
.map_area.map_area_gyeonggi .btn_map_picker {
    top: 14%;
}

.map_area.map_area_incheon .btn_map_picker {
    top: -6%;
    left: -30%;
}
.map_area.map_area_seoul .btn_map_picker {
    top: 53%;
    left: 73%;
}
.map_area.map_area_ulsan .btn_map_picker {
    top: -10%;
}
.map_area.map_area_busan .btn_map_picker {
    top: 30%;
}
.map_area.map_area_chungnam .btn_map_picker {
    top: 31%;
    left: 43%;
}
.map_area.map_area_chungbuk .btn_map_picker {
    top: 32%;
    left: 28%;
}
.map_area.map_area_gwangju .btn_map_picker {
    top: -19%;
}
.map_area.map_area_jeju .btn_map_picker {
    top: 7%
}

.map_area.map_area_gyeongbuk .btn_map_picker {
    top: 30%;
}
.map_area.map_area_gyeongnam .btn_map_picker {
    top: 42%;
    left: 30%;
}
.map_area.map_area_daegu .btn_map_picker {
    top: 8%;
}



/* map hover effect */
.map_area .btn_map_picker:hover + img {
    opacity: 1;
}
.map_area .btn_map_picker:hover .icon_spot {
    background: url('/design/vittz/mo/img/img_map_picker_orng.png') no-repeat center;
    background-size: contain;
}
.map_area .btn_map_picker:hover > span {
    color: #ef6313;
    font-weight: 500;
}



/* map popup*/
.map_pop_wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-align: left;
    display: none;
}
.map_pop_wrap > .map_pop_dimmed {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    z-index: -1;
}
.map_pop_wrap > .map_pop {
    width: 100%;
    max-width: 540px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #494949;
    padding: 0 20px 30px;
}
.map_pop > .map_pop_tit {
    padding: 20px 0 20px;
    line-height: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.map_pop > .map_pop_tit > h2 {
    font-size: 20px;
    font-weight: 600;
    color: #110252;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
} 
.map_pop > .map_pop_tit > h2 > i {
    display: inline-block;
    width: 19px;
    height: 23px;
    background: url('/design/vittz/mo/img/img_map_picker_blu.png') no-repeat center;
    background-size: contain;
    margin-right: 6px;
}
.map_pop > .map_pop_tit > .map_pop_close {
    display: block;
    width: 20px;
    height: 20px;
    background: url('/design/vittz/mo/img/close_map_pop.jpg') no-repeat center;
    background-size: contain;
}
.map_pop .map_pop_box {
    width: 100%;
    background-color: #f5f5f5;
    padding: 16px 15px 23px;
}
.map_pop .map_pop_box > dl {
    display: flex;
    align-items: center;
    line-height: 23px;
    margin-bottom: 10px;
    font-size: 13px;
}
.map_pop .map_pop_box > dl:last-child {
    margin-bottom: 0;
}
.map_pop .map_pop_box > dl > dt {
    width: 85px;
    padding-right: 5px;
    flex-shrink: 0;
    color: #222222;
}
.map_pop .map_pop_box > dl > dd {
    width: calc(100% - 95px);
    color: #555555;
    letter-spacing: -0.04em;
	word-break: break-all;
}
.map_pop .map_pop_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.map_pop .map_pop_btns > .n_btn {
    width: 220px;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    letter-spacing: -0.04em;
    background-color: #110252;
}

.tile_app_btn .n_btn {
    font-size: 14px;
    padding: 0 5px;
}
.tile_app_btn .n_btn:first-child {
    margin-right: 5px;
    letter-spacing: -0.12em;
}


/* ==== (공통) 게시판 total영역 ==== */
.bd_flex_total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 7px;
}
.bd_flex_total .n_btn {
    width: 70px;
}
/* .wrt_btn {
    display: none !important;
} */


/* ==== (공통) 게시판 뷰 댓글  ==== */ 
.view_default .view_wrap .view_comment,
.view_event .view_wrap .view_comment {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding: 15px;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
}
.view_comment_top .comment_num {
    font-size: 16px;
    line-height: 24px;
    color: #222222;
    letter-spacing: -0.035em;
    font-weight: 500;
}
.view_default .view_wrap .view_comment .comment_count span strong,
.view_event .view_wrap .view_comment .comment_count span strong {
    color: #110252;
}

.comment_wrap {
    background: #f4f5f9;
    padding: 0 15px 15px;
    font-size: 16px;
}

.view_default .view_wrap .comment_wrap .reply_form,
.view_event .view_wrap .comment_wrap .reply_form {
    padding: 0;
    border-top: 0;
    background: transparent;
}
.view_default .view_wrap .comment_wrap .reply_form .inp_chk,
.view_event .view_wrap .comment_wrap .reply_form .inp_chk {
    margin-bottom: 8px;
}
.view_default .view_wrap .comment_wrap .reply_form .b_memo,
.view_event .view_wrap .comment_wrap .reply_form .b_memo {
    display: flex;
}
.view_default .view_wrap .comment_wrap .reply_form .b_memo .comment_input,
.view_event .view_wrap .comment_wrap .reply_form .b_memo .comment_input {
    padding: 0;
    width: calc(100% - 90px);
}
.view_default .view_wrap .comment_wrap .reply_form .b_memo .comment_input textarea,
.view_event .view_wrap .comment_wrap .reply_form .b_memo .comment_input textarea {
    width: 100%;
    height: 100%;
    padding: 15px;
    font-size: 14px;
    border: 1px solid #ccc;
}
.view_default .view_wrap .comment_wrap .reply_form .b_memo .comment_btn,
.view_event .view_wrap .comment_wrap .reply_form .b_memo .comment_btn {
    position: static;
    width: 90px;
}
.view_comment_btn {
    display: block;
    width: 100%;
    height: 80px;
    background: #110252;
    color: #fff;
    font-size: 14px;
    letter-spacing: -0.01em;
    border: 0;
    font-weight: 400;
}
.comment_wrap > .js_data_comment_row {
    border-bottom: 1px solid #e2e4eb;
    padding-bottom: 20px;
}

.view_default .view_wrap .comment_wrap .comment_info,
.view_event .view_wrap .comment_wrap .comment_info {
    padding: 15px 0 0;
}
.view_default .view_wrap .comment_info .contents_holder,
.view_event .view_wrap .comment_info .contents_holder {
    padding: 0;
    text-align: left;
    font-size: 14px;
    margin-top: 5px;
}
.view_default .view_wrap .comment_wrap .reply_form,
.view_event .view_wrap .comment_wrap .reply_form  {
    padding-top: 15px;
}

.view_default .view_wrap .rereply_row,
.view_event .view_wrap .rereply_row {
    padding: 0 0 0 15px;
    background: url(/design/vittz/mo/img/img/user_icon_board_re.png) no-repeat left center;
    background-size: auto 7px;
}
.view_default .view_wrap .rereply_row:before,
.view_default .view_wrap .rereply_row::after,
.view_event .view_wrap .rereply_row:before,
.view_event .view_wrap .rereply_row::after{
    display: none;
}

.view_default .view_wrap .comment_wrap .reply_form .no_data,
.view_evnet .view_wrap .comment_wrap .reply_form .no_data  {
    font-size: 14px;
    padding: 0 0 30px;
    text-align: center;
}




/* ==== 미확인 입금자 추가 ==== */
.ly_table {
    border-radius: 6px;
    overflow: hidden;
}
.ly_table table {
    font-size: 14px;
    width: 100%;
}

.ly_table table th,
.ly_table table td {
    color: #333;
    padding: 10px 5px;
    border-bottom: 1px solid #ddd;
}
.ly_table table td {
    font-size: 13px;
    text-align: center;
}
.ly_table table thead th {
    background-color: #21117f;
    color: #fff;
    font-weight: 500;
}


/* ==== 미확인 입금자 추가 ==== */
.img_hard_wrap > img,
.img_hard_wrap > a > img {
	display:block;
	width: 100%;
}
.img_hard_wrap > a {
	display:block;
	width: 100%;
}




@media screen and (max-width: 359px) {
    .trxIdx06Time {
        font-size: 16px;
    }
    .trxIdx06Time > em {
        font-size: 20px;
    }
    .docbar_list > li {
        width: 22%;
        height: 100%;
        font-size: 11px;
    }
}

/* @media screen and (max-width: 375px) {
    .inp_chk > label.dlvryExprss{font-size: 10px;}
    .inp_chk > label.dlvryExprss span:first-child{display: inline-block; font-size: 19px;}
    .inp_chk > label.dlvryExprss .checkbox_desc{display: inline-block; font-size: 19px;}
} */