@charset "UTF-8";

/* font 
============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Abhaya+Libre:400,500,600,700,800');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


@font-face {
    font-family: 'Hero New';    
    src: local('Hero New Light'), url('/lib/font/Hero New Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Hero New';    
    src: local('Hero New Regular'), url('/lib/font/Hero New Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Hero New';    
    src: local('Hero New SemiBold'), url('/lib/font/Hero New SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Hero New';    
    src: local('Hero New Bold'), url('/lib/font/Hero New Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-hiragino-biz:  'Hero New','Hiragino Kaku Gothic ProN','Hiragino Sans','メイリオ','BIZ UDPGothic',sans-serif;
    --font-Abhaya-Libre: 'Abhaya Libre',sans-serif;
    --font-Noto-Serif: 'Noto Serif JP',sans-serif;
    --font-main-banner:  'Montserrat', 'Noto Sans JP',sans-serif;
    --body-font-main: var(--font-hiragino-biz);
    --body-font-size: 13px;
    --body-font-weight: 400;
    --body-line-height: 1.4; 
    --body-letter-spacing: -.025em; 
}

/* common style
============================================================================= */
html, body { 
    width: 100%; 
    height: 100%; 
    -webkit-text-size-adjust: none; 
    -moz-text-size-adjust: none; 
    -ms-text-size-adjust: none;
}
body {
    margin: 0;  
    font-family: var(--body-font-main)!important;
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    color: #000;
}
/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    body {
        max-width: 600px;
        min-width: 320px;
        margin: 0 auto;
    }
}
/*모바일피씨버전 호환추가*/

/* root
============================================================================= */
:root {
    --main-color:  #f78cba; 
}
/* ========================================================================== */

div, ul, li {
    font-family: inherit;
}
img {
    border: 0;
    max-width: 100%;
}
img, svg {
    vertical-align: top;
}

/* visible */
.d-block{display:block}
.d-in-block{ display: inline-block;}
.hide { 
    display: none!important;
}
.hide.on { 
    display: block!important;
}
.hidden { 
    display: none;
}
.over-hidden {
	overflow: hidden;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* cursor */
.finger_click{cursor: pointer;outline:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent;}
.hands {cursor:pointer;cursor:hand;}

/* hr line */
hr {
    background-color: transparent;
    border: 0;
}

hr.mb-30{
    margin-bottom:30px;
}

hr.line-thick {
    height: 6px;
    position: relative;
}
.line-thick:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 100%;
    height: 6px;
    background: #f5f5f5;
}
.line-thick:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #eee;
}

hr.line-thin {
    height: 1px;
    background: #eee;
}

.line-thin-top{ border-top:solid 1px #eee;}
.line-thin-dashed-top{ border-top:dashed 1px #000;}
.line-thin-bottom{border-bottom:solid 1px #eee;}

/* heading group */
h6, h5, h4, h3, h2, h1 {
    margin: 0;
    font-weight: 600;
}

/* interval */
.mg-center { margin: 0 auto !important;}
.mt-10 { margin-top: 10px!important; }
.mt-20 { margin-top: 20px!important; }
.mt-30 { margin-top: 30px!important; }
.mt-40 { margin-top: 40px!important; }
.mt-50 { margin-top: 50px!important; }
.ms-15 { margin: 0px 15px!important; }
.mr-5 {margin: 0px 5px 0px 0px!important;;}

.pt-15 { padding-top:15px!important;}
.pb-0 { padding: 0px 0px!important;}
.pb-15 { padding-bottom:15px!important;}
.pb-10 { padding-bottom:10px!important;}
.pb-10-10-20 { padding: 10px 10px 20px!important;}
.pb-0-15-15 { padding: 0px 15px 15px!important;}
.pb-5-15-15 { padding: 5px 15px 15px!important;}
.pb-5-0-15 { padding: 5px 0px 15px!important;}
.pb-15-0-0 { padding: 15px 0px 0px!important;}
.pb-15-15-0 { padding: 15px 15px 0px!important;}
.pb-0-0-8 { padding: 0px 0px 8px!important;}
.pb-0-0-10 { padding: 0px 0px 10px!important;}
.ps-10 { padding:0px 10px!important;}
.ps-15 { padding:0px 15px!important;}
.pa-15 { padding:15px 15px!important;}
.pa-10-15 { padding:10px 15px!important;}

/* width */
.w-100{ width:100%!important;}

/* txt size */
.txt-8 { font-size:8px!important;}
.txt-9 { font-size:9px!important;}
.txt-10 { font-size:10px!important;}
.txt-11 { font-size:11px!important;}
.txt-12 { font-size:12px!important;}
.txt-13 { font-size:13px!important;}
.txt-14 { font-size:14px!important;}
.txt-15 { font-size:15px!important;}
.txt-16 { font-size:16px!important;}
.txt-17 { font-size:17px!important;}
.txt-18 { font-size:18px!important;}
.txt-19 { font-size:19px!important;}
.txt-20 { font-size:20px!important;}
.txt-22 { font-size:22px!important;}
.txt-24 { font-size:24px!important;}
.txt-26 { font-size:26px!important;}
.txt-28 { font-size:28px!important;}
.txt-30 { font-size:30px!important;}

/* txt weight */
.txt-w-400 { font-weight: 400 !important;}
.txt-w-500 { font-weight: 500 !important;}
.txt-w-600 { font-weight: 600 !important;}

/* txt align */
.txt-left { text-align: left!important; }
.txt-center { text-align: center!important; }
.txt-right { text-align: right!important; }

/* txt color */
.txt-white { color: #fff!important; }
.txt-black { color: #111!important; }
.txt-black-3 { color: #333!important; }
.txt-red { color: #d6122e!important; }
.txt-red2 { color: #e25a67!important; }
.txt-red3 { color: #ff0000!important; }
.txt-darkred { color: #a01619!important; }
.txt-my-red { color: #f31f48!important; }
.txt-purple { color: #9966FF!important; }
.txt-pink { color: #f85f9c!important; }
.txt-pink2 { color: #f92b82!important; }
.txt-pink3 { color: #ff4a93!important; }
.txt-pink5 { color: #dd3e9d!important; }
.txt-blue { color: #6699cc!important; }
.txt-blue2 { color: #3aabd5!important; }
.txt-blue3 { color: #0672f4!important; }
.txt-skyblue { color: #30b3f3!important; }
.txt-emerald {color: #08bbc2!important; }
.txt-navy { color: #0000ff!important; }
.txt-gray { color: #999!important; }
.txt-gray6 { color: #666!important; }
.txt-gray7 { color: #777!important; }
.txt-gray8 { color: #888!important; }
.txt-d-orange { color: #f9680f!important;}
.txt-orange { color: #ffa71f!important; }
.txt-orange2 { color: #ef0a0a!important; }
.txt-yellow { color: #fecf1d!important; }
.txt-green { color: #43af4a!important; }

/* text */
.ellipsis {
    width: 100%;
    word-wrap: break-word;
    word-break: break-all;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.ellipsis_line1 {
	width:100%;
	word-wrap: break-word;
    word-break: break-all;
	display: block;
	display: -webkit-box;
	-webkit-box-orient : vertical;
	-webkit-line-clamp: 1;
	overflow:hidden;
	text-overflow: ellipsis;
}

.ellipsis_line2 {
	width:100%;
	word-wrap: break-word;
    word-break: break-all;
	display: block;
	display: -webkit-box;
	-webkit-box-orient : vertical;
	-webkit-line-clamp: 2;
	overflow:hidden;
	text-overflow: ellipsis;
}

.ellipsis_line3 {
	width:100%;
	word-wrap: break-word;
	display: block;
	display: -webkit-box;
	-webkit-box-orient : vertical;
	-webkit-line-clamp: 3;
	overflow:hidden;
	text-overflow: ellipsis;
}

b, strong {
    font-weight: 700;
}
.text-bold {
    font-weight: 600;
}

small {
    font-size: 11px;
}

/* background color */
.bg-yellow {background-color: #ffb902; }
.bg-green {background-color: #71d01d; }
.bg-pink {background-color: #f85f9c; }
.bg-mint {background-color: #2bcfb8; }
.bg-scarlet {background-color: #f78888; }
.bg-purple {background-color: #be70fa; }
.bg-blue {background-color: #7096fa; }
.bg-gray {background-color: #f3f3f3; }
.bg-gray-f7 {background-color: #f7f7f7; }

/* flex
============================================================================= */
.flex {
	display: flex;
	display: -webkit-flex;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-justify-center {
    justify-content: center; 
}
.flex-justify-end {
    justify-content: flex-end;
}
.flex-justify-between {
    justify-content: space-between;
}
.flex-align-center {
    align-items: center;
}
.flex-align-group-center {
    align-content: center;
}
.flex-loof-f1 > li {
    flex: 1;
}
.flex-gap-15 {
    gap: 15px;
}
.flex-wd-flex1 {
    flex: 1;
}

/* loof
============================================================================= */
.wrap-loof { 
    width: 100%;
    overflow: hidden;
}
.wrap-loof > ul  {
	display: flex;
	display: -webkit-flex;  
}
.wrap-loof > ul > li {
	display: flex;
	display: -webkit-flex;
    align-items: center;
}

.wrap-loof.flex-start > ul > li {
    align-items: flex-start;
}

.wrap-loof.loof-wrap > ul {
    flex-wrap: wrap;
}

.wrap-loof.loof-column > ul {
    flex-direction: column;
}

.wrap-loof.loof-li-column > ul > li {
    flex-direction: column;
}

.wrap-loof.loof-space-between > ul {
    justify-content: space-between;
}

.wrap-loof.loof-space-between > ul > li:last-child {
    justify-content: flex-end;
}

/* 라인 */
.wrap-loof.w-line > ul > li + li {
    border-top: solid 1px #fff;
}

.wrap-loof.g-t-line > ul > li + li {
    border-top: solid 1px #ddd;
}

/* 간격 */
.wrap-loof .loof-space-3-3 {
    margin: -3px -3px;
}

.wrap-loof .loof-space-3-3 > li {
    padding: 3px 3px;
}

.wrap-loof .loof-space-5-5 {
    margin: -5px -5px;
}

.wrap-loof .loof-space-5-5 > li {
    padding: 5px 5px;
}

.wrap-loof .loof-space-8-8 {
    margin: -8px -8px;
}

.wrap-loof .loof-space-8-8 > li {
    padding: 8px 8px;
}

.wrap-loof .loof-space-10-10 {
    margin: -10px -10px;
}

.wrap-loof .loof-space-10-10 > li {
    padding: 10px 10px;
}

.wrap-loof .loof-space-12-12 {
    margin: -12px -12px;
}

.wrap-loof .loof-space-12-12 > li {
    padding: 12px 12px;
}

.wrap-loof .loof-space-15-15 {
    margin: -15px -15px;
}

.wrap-loof .loof-space-15-15 > li {
    padding: 15px 15px;
}

.wrap-loof .loof-space-18-18 {
    margin: -18px -18px;
}

.wrap-loof .loof-space-18-18 > li {
    padding: 18px 18px;
}

/* 컨텐츠 사이즈 */
.wrap-loof .loof-size-auto > li {
    width: auto;
}

.wrap-loof .loof-size-flex1 > li {
    flex: 1;
}
.wrap-loof .loof-size-column1 > li {
    width: 100%;
}
.wrap-loof .loof-size-column2 > li {
    width: 50%;
}
.wrap-loof .loof-size-even-30 > li {
    flex-grow: 1;
    justify-content: center;
}

.wrap-loof .loof-size-even-30 > li:nth-child(even) {
    flex-shrink: 0;
    flex-grow: 0;
    width: 30px;
}

/* mainloof */
.main-area-loof > li {
    padding: 5px 0px 10px;
    border-bottom: solid 1px #eee;
}
.main-area-loof > li:first-child {
    padding: 0px 0px 0px;
    border-bottom: solid 0px #eee;
}
.main-area-loof > li:last-child {
    border-bottom: solid 0px #eee;
}
/* icon */
.point-icon,
.check-icon {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.point-icon i {
    width: 3px;
    height: 3px;
    margin: 0px 8px 0px 0px;
    background-color: #333;
    display: block;
}
.point-icon.small i {
    width: 2px;
    height: 2px;
}

.check-icon i {
    display: block;
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 0.2em;
    background-color: #111;
    margin: 0px 8px 0px 0px;
}

.check-icon i::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    right: 50%;
    top: 50%;
    margin-top: -4px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateX(50%) rotate(45deg);

}

.banner-ico-position {
    position: relative;
}

.banner-end-ico {
    position: absolute;
    display: inline-block;
}

.banner-end-ico.small{
    width: 70px;
    height: 20px;
}

.banner-end-ico.middle{
    width: 80px;
    height: 23px;
}

.banner-end-ico.big{
    width: 90px;
    height: 26px;
}

.banner-end-ico.main-m-position {
    left: 10px;
    top: 20px;
    z-index: 9;
}

.banner-end-ico.top-position, 
.banner-end-ico.main-b-position, 
.banner-end-ico.gv-position {
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-end-ico.tomorrow {
    background: url(/resources/images/icon/tomorrow_end.svg) no-repeat center center / 100% auto;
}
.banner-end-ico.today {
    background: url(/resources/images/icon/today_end.svg) no-repeat center center / 100% auto;
}
.banner-end-ico.soon {
    background: url(/resources/images/icon/soon_end.svg) no-repeat center center / 100% auto;
}
.banner-end-ico.end_10hour {
    background: url(/resources/images/icon/10hour_end.svg) no-repeat center center / 100% auto;
}

.ico {
    display: inline-block; 
    vertical-align: middle; 
    text-indent: -9999px; 
    overflow: hidden; 
}
.ico-truck {
    width: 26px;
    height: 16px;
    background: #fff url(/resources/images/icon/ico_truck.svg) no-repeat center center/100%;
}
.ico-clock {
    width: 18px;
    height: 16px;
    background: #fff url(/resources/images/icon/ico_clock.svg) no-repeat center center/100%;
}

.ico-clock.middle {
    width: 22px;
    height: 20px;
}

/* button common
============================================================================= */
/* size fix button*/
.btn {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
}  
.btn:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.btn.btn-size {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}
.btn.btn-h24 {
    height: 24px;
    width: 100%;
    padding: 0px 10px;
    font-size: 12px;
}
.btn.btn-h30 {
    height: 30px;
    width: 100%;
    padding: 0px 12px;
}
.btn.btn-h40 {
    height: 40px;
    width: 100%;
    padding: 0px 15px;
    font-size: 14px;
}
.btn.btn-h50 {
    height: 50px;
    width: 100%;
    padding: 0px 15px;
    font-size: 14px;
}

.btn.btn-h50.w-160 {
    width: 160px;    
}
.btn.btw-100 {
    width: 100px !important;
}
.btn.btn-w-auto {
    width: auto !important;
}
/* button size */
.btn.pd-8-10 {
    padding: 8px 20px;
}
.btn-sm { 
    padding: 3px 8px; 
    font-size: 11px; 
}
.btn-md {
    padding: 10px 12px; 
    font-size: 13px; 
    font-weight: 600; 
}
.btn-lg { 
    padding: 12px 15px; 
    font-size: 15px; 
    font-weight: 500; 
}

.btn-lg-2 { 
    padding: 10px 30px; 
    font-size: 15px; 
    font-weight: 500; 
}

.btn-lg-3 { 
    padding: 15px 15px; 
    font-size: 18px; 
    font-weight: 500; 
}

/* button color */
.btn-light {
    color: #333 !important;
    background-color: #fff;
    border-color: #d4d4d4;
}
.btn-light:hover, 
.btn-light:focus {
    color: #333 !important;
    background-color: #f4f4f4;
    border-color: #d4d4d4;
}
.btn-apply {
    color: #fff !important;
    background-color: #e98fcd;
    border-color: #e98fcd;
}
.btn-gray-line {
    color: #555 !important;
    background-color: #f9f9f9;
    border-color: #c9c9c9;
}
.btn-black-line {
    color: #000 !important;
    background-color: #fff;
    border-color: #000; 
}

.btn-white-line {
    color: #111 !important;
    background-color: #fff;
    border-color: #c9c9c9;
}

.btn-dark {
    color: #fff !important;
    background-color: #333;
    border-color: #333;
}
.btn-gray {
    color: #fff !important;
    background-color: #555;
    border-color: #555;
}
.btn-gray-c {
    color: #fff !important;
    background-color: #ccc;
    border-color: #ccc;
}
.btn-gray-f5 {
    color: #666 !important;
    background-color: #f5f5f5;
    border-color: #f5f5f5;
}

.btn-blue {
    color: #fff !important;
    background-color: #60A9E6;
    border-color: #60A9E6;
}
.btn-orange {
    color: #fff !important;
    background-color: #f9680f;
    border-color: #f9680f;
}
.btn-main-color {
    color: #fff !important;
    background-color: var(--main-color);
    border-color: var(--main-color);
}
/* button radius */
.btn-round { 
    border-radius: 50px; 
}

.btn-round-4 { 
    border-radius: 4px 4px; 
}
.btn-round-12 { 
    border-radius: 12px 12px; 
}
.btn-round-15 { 
    border-radius: 15px 15px; 
}
.btn-round-25 {
    border-radius: 25px 25px; 
}
.btn-round-0-4 {
    border-radius: 0.4em;
}
.btn-round-1-4 {
    border-radius: 1.4em;
}
.btn-round-0-6 {
    border-radius: 0.6em;
}

/* more_button */
.wrap_search_more_bt {
    width: 150px;
    text-align: center;
    margin: 0 auto;
    vertical-align: middle;
}
.search_more_bt {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #6699CC;
    padding: 0px 18px 0px 0px;
	position:relative;
    cursor: pointer;
}

.search_more_bt:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 0px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #6699cc;
    border-right: 2px solid #6699cc;
    transform: rotate(135deg);
}

/* more button */
.product-more { 
    width: 100%;
    display: block;
    margin: 0 auto 20px;
    text-align: center;
}
.product-more .btn-more {
    font-size: 13px;
    font-weight: 600;
    padding: 5px 15px;
    color: #6699cc;
}
.product-more .btn-more:after {
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 0px;
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-left: 2px solid #6699cc;
    border-top: 2px solid #6699cc;
    transform: rotate(135deg);
}
.btn-question {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    border-radius: 100%;
    background: #fff url(/resources/images/icon/ico_question.svg) no-repeat center center/100%;
}

/* round button */
.round-bt {
    display: inline-block;
    text-align: center;
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
}
.round-bt.middle {
    height: 30px;
    line-height: 30px;
    padding: 0px 20px;
    border-radius: 15px 15px; 
}
.round-bt.bg-w {
    background-color: #fff;
}
.round-bt.line-g {
    border:  solid 1px #d9d9d9;
}

/* radio bt customize design
============================================================================= */
/* div type */
.radio-middle > input {display: none;}
.radio-middle > input[type=radio] {width: 14px;height: 14px;}
.radio-middle > label {cursor: pointer;display:inline-block;text-align: left;height: 14px;line-height: 14px;position: relative;background-position: left top;padding: 0px 0px 0px 24px;border: 0;color:#777;}
.radio-middle > label:after {content: "";display:inline-block;-webkit-background-size: 14px 46px;background-size: 14px 46px;background-position: left top;width: 14px;height: 14px;position: absolute;top: 50%;margin-top: -7px;left: 0;}
.radio-middle > input:checked+label:after {background-position: 0 -16px;}
.radio-middle > input:checked+label {background-position: 0 -16px;}
.radio-middle > input:disabled+label{background-position: 0 -32px;}
.radio-middle > input:disabled+label:after {background-position: 0 -32px;}

/* radio bt label type */
.label-radio-middle {
	display: flex;
	display: -webkit-flex;
	align-items: center;
}

.label-radio-middle [type="radio"]  {
    width:19px;
	height:19px;
	position:relative;
	display:inline-block;
    border: 0;
}

.label-radio-middle [type="radio"]:after  {
    content: '';
	width:19px;
	height:19px;
	top:0px;
	left:0px;
	display:inline-block;
    background-repeat: no-repeat;
    background-size: 19px 63px;
    background-position: 0px 0px;

}
.label-radio-middle [type="radio"]:checked:after {
    background-position: 0px -22px;
}

.label-radio-middle [type="radio"]:disabled:after {
    background-position: 0px -44px;
}

.label-radio-middle [type="radio"]:disabled + span {
  opacity: 0.7;
  cursor: not-allowed;
}

.label-radio-middle span {
	display:inline-block;
	margin:0px 0px 0px 7px;
}

.label-radio-middle.large [type="radio"] {
    width:24px;
	height:24px;
}
.label-radio-middle.large [type="radio"]:after {
    width:24px;
	height:24px;
    background-size: 24px 80px;
}

.label-radio-middle.large [type="radio"]:checked:after {
    background-position: 0px -28px;
}

.label-radio-middle.large [type="radio"]:disabled:after {
    background-position: 0px -56px;
}
.label-radio-middle.large span {
    font-size: 14px;
}

/* radio bt color */
.radio-middle.black > label:after,.label-radio-middle.black [type="radio"]:after {background-image: url(/resources/images/common/radio_black.svg?=v2);}
.radio-middle.blue > label:after,.label-radio-middle.blue [type="radio"]:after {background-image: url(/resources/images/common/radio_blue.svg?=v2);}
.radio-middle.pink > label:after,.label-radio-middle.pink [type="radio"]:after {background-image: url(/resources/images/common/radio_pink.svg?=v2);}

/* check bt customize design
============================================================================= */
.label-check-middle {
	display: flex;
	display: -webkit-flex;
	align-items: center;
    cursor: pointer;
}

.label-check-middle [type="checkbox"]  {
    width:19px;
	height:19px;
	position:relative;
	display:inline-block;
    border: 0;
    cursor: pointer;
}

.label-check-middle [type="checkbox"]:after  {
    content: '';
	width:19px;
	height:19px;
	top:0px;
	left:0px;
	display:inline-block;
    background-repeat: no-repeat;
    background-size: 19px 63px;
    background-position: 0px 0px;

}
.label-check-middle [type="checkbox"]:checked:after {
    background-position: 0px -22px;
}

.label-check-middle [type="checkbox"]:disabled:after {
    background-position: 0px -44px;
}

.label-check-middle [type="checkbox"]:disabled + span {
  opacity: 0.7;
  cursor: not-allowed;
}

.label-check-middle span {
	display:inline-block;
	margin:0px 0px 0px 7px;
}
/* color*/
.label-check-middle.blue [type="checkbox"]:after {background-image: url(/resources/images/common/check_Blue.svg?=v2);}
.label-check-middle.circle.blue [type="checkbox"]:after {background-image: url(/resources/images/common/radio_Blue.svg?=v2);}
.label-check-middle.pink [type="checkbox"]:after {background-image: url(/resources/images/common/check_Pink.svg?=v2);}
.label-check-middle.circle.pink [type="checkbox"]:after {background-image: url(/resources/images/common/radio_Pink.svg?=v2);}

/* table 
============================================================================= */
/* table */
.table {
    width: 100%; 
    table-layout: auto; 
}
.table + .table {
    margin-top: 10px; 
}
.table > thead > tr > th,
.table > tbody > tr > td,
.table > tbody > tr > th {
    padding: 4px 2px;
    color: #333;
    text-align: center;
    font-size: 12px; 
    vertical-align: middle;
}

/* table-bordered */
.table-bordered > thead > tr > th,     
.table-bordered > tbody > tr > th {     
    font-weight: 400;
    background: #f7f7f7;     
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td {
    border: 1px solid #dfdfdf;
}
.table-bordered > thead > tr > th {
    border-bottom-color: transparent;
}

/* 스크롤 테이블 */
.table-scroll {
    position: relative;
    width:100%;
    z-index: 1;
    margin: auto;
}

.table-scroll.x-scroll {
    overflow-x: auto;
    overflow-y: visible;
}

.table-scroll table {
    width: 100%;
    min-width: 220px;
    margin: auto;
    border-collapse: collapse;
    border-spacing: 0;
}

.table-scroll th,
.table-scroll td {
    padding: 10px 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    text-align: center;
    vertical-align: middle;
    font-size: 11px;
    empty-cells: show;
    white-space: nowrap;
}

.table-scroll th {
    background-color: #f7f7f7;
    position: -webkit-sticky;
    position: sticky;
    font-weight: 600;
    color: #666;
}

.table-scroll thead th {
    top: 0;
    width: auto;
}

.table-scroll th:first-child {
    left: 0;
    z-index: 2;
    width: auto;
}
.table-scroll thead th:first-child {
    z-index: 5;
}

/* form 
============================================================================= */
/* select common style */
.select-box {
    overflow: hidden;
    position: relative;
    padding: 0px 20px 0px 6px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    background: #fff url(/resources/images/common/ico_select_arr_dark.svg) no-repeat right center/13px;
}
.select-box-small {
    padding: 0px 20px 0px 0px;
	font-size:13px;
	font-weight:normal;
	color:#111;
}

.select-box .form-select {
    opacity: 0;
    outline: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #777;    
    font-size: 13px;
}
.select-box .select-option-name, .select-box .select-option-rows {
    font-size: 15px;
    color: #111;
}
/* select round style */
.select-round {
    padding: 5px 40px 5px 15px;
    border: 1px solid #e7e7e7; 
    border-radius: 50px;
    background: #fff url(/resources/images/common/ico_select_arr_dark.svg) no-repeat right 12px center/11px;
}
.select-round .select-option-name {
    color: #555;
}

/* select square style */
.select-square {
    padding: 5px 40px 5px 15px;
    border: 1px solid #e7e7e7; 
    border-radius: 4px;
    background: #fff url(/resources/images/common/ico_select_arr_dark.svg) no-repeat right 12px center/11px;
}

.select-square .select-option-name {
    font-size: 13px;
    color: #111;
}

/* select size fix */
.size-fix-select {
    position: relative;
    width:100%;
	height:40px;
    border: 1px solid #ddd;
    border-radius: 0.2em;
    background: #fff;
    -webkit-box-shadow: 0 0 0 0 transparent inset;
    box-shadow: 0 0 0 0 transparent inset;
    -webkit-transition: color .1s ease,border-color .1s ease;
    transition: color .1s ease,border-color .1s ease;
}

.size-fix-select .select-ico {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
    height: 100%;
    z-index: 1;
    display: flex;
    display: -webkit-flex; 
	justify-content: center;
	align-items: center;
    background: #fff;
}

.size-fix-select .select-ico.bg-gray {
    background: #f8f9fb;
    border-left: 1px solid #ddd;

}

.size-fix-select .select-ico i {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(/resources/images/common/ico_select_arr_dark.svg) no-repeat center center/12px;
}

.size-fix-select select {
    position: relative;
    width:100%;
	height:40px;
    line-height: 40px;
    margin: 0;
    outline: 0;
    padding: 0 30px 0 10px;
    font-size: 1em;
    color: rgba(0,0,0,.87);
    border: none;
    background: none;
    z-index: 2;
}

/* input */ 
input {
    border-radius: 0;
}
input:focus {
    outline: 0;
}
input::-moz-placeholder,
input::-webkit-input-placeholder,
input:-ms-input-placeholder,
input::placeholder {
    color: #ddd; 
}

/* chrome autofill */
input:-webkit-autofill {
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: inset 0 0 0 30px white;
    -moz-box-shadow: inset 0 0 0 30px white;
    box-shadow: inset 0 0 0 30px white; 
}
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -moz-transition: background-color 5000s ease-in-out 0s;
    -ms-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
 }

/* input size fix */
.input-text {
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 0;
    outline: 0;
    padding: 0 1em;
    background: #fff;
    border: 1px solid #ddd;
    color: rgba(0,0,0,.87);
    border-radius: 0.2em;
    -webkit-box-shadow: 0 0 0 0 transparent inset;
    box-shadow: 0 0 0 0 transparent inset;
    -webkit-transition: color .1s ease,border-color .1s ease;
    transition: color .1s ease,border-color .1s ease;
}
.input-text.radius-0-4 {
    border-radius: 0.4em;
}
.input-text.border-none {
    border: 0px solid #ddd;
}

.input-text.combine-input {
    border-right-width:0px;
    border-radius: 0.2em 0 0 0.2em;
}

.input-text::placeholder {
    color: #a9a9a9;
}

/* textarea */
.text-area {
    width: 100%;
    min-height: 100px;
    max-height: 300px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    line-height: 1.5em;
    font-size: 14px;
    vertical-align: top;
    resize: none;
    -webkit-appearance: none;
}

.text-area.bg-gray {
    background-color: #f7f7f7;
}
.text-area.pd-10-10 {
    padding: 10px 10px;
}
.text-area.b-radius-4 {
    border-radius: 0.4em;
}
/* input combine button */
.input-combine-bt > dl {
    display: flex;
    display: -webkit-flex;

}
.input-combine-bt > dl > dt {
    flex-grow: 1;
}
.input-combine-bt > dl > dd {
    flex-shrink: 0;
    width: 80px;
}

.input-combine-bt .combine-bt {
    display: block;
    background-color: #111;
    color: #fff;
    text-align: center;
    height: 40px;
    line-height: 40px;
    width: 100%;
    border-radius: 0 0.2em 0.2em 0;
}

/* list empty laytout 
============================================================================= */
.empty-wrap {
    padding:20px 15px; 
	text-align:center;
	display: -webkit-flex;
    display: flex;
	flex-direction: column;
	justify-content: center;
}

.empty-wrap img{ 
    width:70px; 
	margin:0 auto; 
}

.empty-wrap span{ 
    display:inline-block; 
	padding:15px 0px 0px 0px; 
	font-size:14px;
	color:#666;
}

/* paging number laytout 
============================================================================= */
/* 숫자 버튼형 */
.pagination-wrap {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    margin: 20px 0 50px;
}
.pagination-wrap.mg-20-0-0 {
    margin: 20px 0 0px;
}
.pagination-wrap ul {
    display: -webkit-flex;
    display: flex;
    flex-flow: row nowrap;
}
.pagination-wrap li + li {
    margin-left: 8px;
}
.pagination-wrap li a {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #b5b5b5;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 1px;
    cursor: pointer;
}
.pagination-wrap li a.active {    
    color: #000;
	font-weight:600;
	border: 1px solid #000;
}
.pagination-wrap .pg-prev {    
    background: url(/resources/images/common/ico_arr_l.svg) center center/14px no-repeat;
}
.pagination-wrap .pg-next {    
    background: url(/resources/images/common/ico_arr_r.svg) center center/14px no-repeat;
}
/* 숫자 버튼형 커스텀 */
.pagination-wrap.line-white-bg {
    margin: 0px 0px 0px;
    padding: 15px 0px;
    background-color: #fff;
    border: solid 1px #ddd;
    border-radius: 0.6em;
}

.pagination-wrap.boder-none li a  {
    border: 0px;
    font-size: 16px;
}
/* 화살표 버튼형 */
.pager-wrap {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
	position:relative;
	height:50px;
	border-bottom:solid 1px #eee;
	border-top:solid 1px #eee;
	z-index:1;
	margin: 25px 0px 0px;
}
.pager-wrap .pager-title {
	z-index:2;
    max-width: 100%;
    padding: 0px 90px;
    text-align: center;
	height:50px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size:14px;
	color:#a0a0a0;
}

.pager-wrap .pager-left, .pager-wrap .pager-right {
    display: -webkit-flex;
    display: flex;
	position:absolute;
	top:0px;
	z-index:3;
} 

.pager-wrap .pager-left {
	left:0px;
}

.pager-wrap .pager-right {
	right:0px;
}

.pager-wrap .pager-left a, .pager-wrap .pager-right a {
    width:50px; 
	height:50px;
	display:block;
}

.pager-wrap .pager-left a + a {
    border-left:solid 1px #eee;
}

.pager-wrap .pager-left a span, .pager-wrap .pager-right a span{
    width:100%; 
	height:100%;
	display:block;
}

.pager-wrap .pg-prev {    
    -webkit-mask: url(/resources/images/common/ico_arr_l.svg) center center/17px no-repeat; 
	background-color: #d6122e;
}
.pager-wrap .pg-next {    
    -webkit-mask: url(/resources/images/common/ico_arr_r.svg) center center/17px no-repeat; 
	background-color: #d6122e;
}

.pager-wrap .pg-first {
    -webkit-mask: url(/resources/images/common/ico_arr_l_2.svg) center center/17px no-repeat; 
	background-color: #d6122e;
}

.pager-wrap .pg-last {   
    -webkit-mask: url(/resources/images/common/ico_arr_r_2.svg) center center/17px no-repeat; 
	background-color: #d6122e;
}

/* 페이지경로 */

.page-map {
    padding:15px 15px;
	text-align:left;
	font-size:12px;
}

.page-map > ul {
    display: -webkit-flex;
    display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.page-map > ul > li {
    padding:0px 5px 0px 0px;
	position:relative;
}

.page-map > ul > li + li {
    padding:0px 5px 0px 15px;
}

.page-map > ul > li + li:before {
    content: ' ';
    position: absolute;
	left: 0;
	top:50%;
	margin-top:-3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg)

}

/* bullet list design 
============================================================================= */
/* bullet common */

.bu-list {
    color: #333;
    text-align: left;
}

.bu-list.mg-20-0 {
    margin: 20px 0;
}
.bu-list.mg-10-0 {
    margin: 10px 0;
}

.bu-list li + li {
    margin-top: 6px;
}

/* bullet dot type */
.bu-dot li {
    position: relative;
    padding-left: 10px;
}
.bu-dot li::before {
    content: ' ';
    position: absolute;
    top: 7px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: #f85f9c;
}
.bu-dot.black li::before {
    background: #333;
}

/* bullet mark type */
.bu-mark li {
    position: relative;
    padding-left: 16px;        
}
.bu-mark li::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}
.bu-mark li.title {
    margin: 15px 0px 0px;
    padding: 0px 0px 0px;
}
.bu-mark li.title::before {
    content: ' ';
}
.bu-mark.small li  {
    font-size: 11px;
}

/* bullet wrap area */
.bu-wrap {    
    padding: 18px 15px; 
    background: #f9f9f9;
}
.bu-wrap.round {
    border-radius: 1.0em;
}
.bu-wrap .bu-list {    
    color: #555;
}
.bu-wrap .bu-list + .bu-list {    
    margin-top: 15px;
}

/* gnb tab slide 메뉴  */
.gnb-tab {
	margin: 15px;
	border-radius: 6px;
	background: #f3f3f3;
}

.gnb-tab.mg-10-10-20 {
    margin: 10px 10px 20px;
}
.gnb-tab.mg-0 {
    margin: 0px 0px 0px;
}
.gnb-tab.mg-15-15-0 {
    margin: 15px 15px 0px;
}

.gnb-tab.selec-tab {
	margin: 0px 10px 15px;
}
.gnb-tab ul {
    position: relative;
	display: flex;
    flex-flow: row nowrap;
}
/* 2025년 리뉴얼시 수정 */
.gnb-tab li,
.gnb-tab li > a {
    flex: 1;
	display: flex;
    align-items: center;
    justify-content: center;
	height: 2.5rem;
}

.gnb-tab.h-3-0 li,
.gnb-tab.h-3-0 li > a {
	height: 3.0rem;
}

.gnb-tab li {
    z-index: 2;
}
.gnb-tab li > a, .gnb-tab li > button {	
	color: #a5a5a5;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.gnb-tab li.active > a, .gnb-tab li.active > button {
	color: #333;
}

.gnb-tab .underline {
	position: absolute;
    left: 0;
	height: 2.5rem;
	width: 50%;
	border: 1px solid #e7e7e7;
	border-radius: 6px;
	background: #fff;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.gnb-tab.h-3-0 .underline {
	height: 3.0rem;
}
/* 2025년 리뉴얼시 수정 */
.gnb-tab.selec-tab .underline {
    border: 1px solid #888;  
}

.gnb-tab .tab-2.active ~ .underline {
	left: 50%;
}

.gnb-tab.column3 .underline {
	width: 33.33%;
}

.gnb-tab.column3 .tab-2.active ~ .underline {
	left: 33.33%;
}

.gnb-tab.column3 .tab-3.active ~ .underline {
	left: 66.66%;
}

.gnb-tab.column4 .underline {
	width: 25%;
}

.gnb-tab.column4 .tab-2.active ~ .underline {
	left: 25%;
}

.gnb-tab.column4 .tab-3.active ~ .underline {
	left: 50%;
}

.gnb-tab.column4 .tab-4.active ~ .underline {
	left: 75%;
}

/* sort design
============================================================================= */

.snb-sort {
    max-width:100%;
    padding: 20px 15px 0px; 
}

.snb-sort > ul{
    display:flex;
	flex-flow: row wrap;
	align-items: center;
	margin:-5px -5px;
}

.snb-sort > ul > li {
    padding:5px 5px;
}

/* snb sort column  */
.snb-sort .column-2 > li{
    width:50%;
}

.snb-sort .column-3 > li{
    width:33.33%;
}

.snb-sort .column-4 > li{
    width:25%;
}

.snb-sort .column-5 > li{
    width:20%;
}

/* snb sort size  */
.snb-sort.sort-medium > ul > li a {
    border-radius:17px 17px;
    height:34px;
	line-height:34px;
    padding:0px 12px;
    font-size:13px;
	font-weight:500;
}

.snb-sort.sort-medium2 > ul > li a {
    border-radius:15px 15px;
    height:30px;
	line-height:30px;
    padding:0px 12px;
    font-size:12px;
	font-weight:500;
}

/* sort bt black  */
.snb-sort > ul > li a{ 
    display:block;
	width:100%;
	text-align:center;
	color:#333;
	background-color:#fff;
	border:solid 1px #eee;

}
.snb-sort > ul > li a.on{
	background-color:#000;
	border:solid 1px #000;
	color:#fff;
}

/* sort bt tomato  */
.snb-sort.sort-tomato > ul > li a {
    color: #777;
    border: solid 1px #ddd; 
}

.snb-sort.sort-tomato > ul > li a.on {
    background-color: #ff6347;
    color: #fff;
    border: solid 1px #ff6347;
}

/* sort bt red  */
.snb-sort.sort-red > ul > li a {
    color: #b7b7b7;
    border: solid 1px #ddd; 
}

.snb-sort.sort-red > ul > li a.on {
    background-color: #fff;
    color: #d6122e;
    border: solid 1px #d6122e;
}

/* 2행 snb sort 메뉴  */
.snb-sort-column2{
    max-width:100%; 
	margin:0 15px;
}

.snb-sort-column2 > dl {
    display:flex;
	justify-content: space-between;
	align-items: center;
}

.snb-sort-column2 > dl > dt {
    display:flex;
	flex:1;
	margin:0px -3px;
	align-items: center;
}

.snb-sort-column2 > dl > dt a {
    display:block;
	border-radius:17px 17px;
	flex:1;
	height:34px;
	line-height:34px;
	text-align:center;
	font-size:12px;
	font-weight:500;
	color:#000;
	background-color:#fff;
	border:solid 1px #eee;
	margin:0px 3px;
}

.snb-sort-column2 > dl > dt a.on{
	background-color:#000;
	border:solid 1px #000;
	color:#fff;
}


.snb-sort-column2 > dl > dd {
    display: flex;
    width: 90px;
    justify-content: flex-end;
    align-items: center;
    padding: 0px 0px 0px 0px;
}

.snb-sort-column2 > dl > dd a{
    display:inline-block;
	padding:0px 16px 0px 0px;
	height:34px;
	line-height:34px;
	font-size:12px;
	font-weight:600;
	color: #6699cc;
	position:relative;
}

.snb-sort-column2 > dl > dd a:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #6699cc;
    border-right: 2px solid #6699cc;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 2px;
}

/* snb sort swiper 메뉴  */
.swiper-snb-sort {
    padding:0px 15px;
}

.swiper-snb-sort > ul {
    margin:0 -3px;
}

.swiper-snb-sort > ul > li{
    width:auto;
	padding:0px 3px;
} 

.swiper-snb-sort > ul > li a{ 
    display:block;
	padding:0px 15px;
	border-radius:17px 17px;
	height:34px;
	line-height:34px;
	text-align:center;
	font-size:13px;
	font-weight:500;
	color:#000;
	background-color:#fff;
	border:solid 1px #eee;

}

.swiper-snb-sort > ul > li a.on{
	background-color:#000;
	border:solid 1px #000;
	color:#fff;
}

/* 상품정렬 sort */

.prod-sort-wrap {    
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
    margin: 10px 0; 
    padding: 0 15px 5px 15px;
    color: #555;
}

.prod-sort-wrap .prod-sort {
    flex:1;
}

.prod-sort-wrap .prod-sort > ul {
    display: -webkit-box;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
	margin:0px -8px;
}

.prod-sort-wrap .prod-sort > ul > li {
    padding:0px 5px;
    display: -webkit-box;
    display: flex;
    align-items: center;
}

.prod-sort-wrap .prod-sort > ul > li a {
    height:36px;
	line-height:36px;
	display:block;
	text-align:center;
	padding:0px 2px;
	font-size:13px;
	color:#777;
}

.prod-sort-wrap .prod-sort > ul > li a.on {
    border-bottom:solid 2px #111;
	color:#111;
}

.prod-sort-wrap .total-num {
    display:inline-block;
}

/* 필터 sort */
.fiter-sort {
    padding:15px 0px 15px 15px;
}
.fiter-sort > ul {
    margin:0px -7px;
}
.fiter-sort > ul > li {
    width:auto;
	padding:0px 7px;
}
.fiter-sort > ul > li .text-menu {
    display:inline-block;
	height:30px;
	line-height:30px;
	padding:0px 10px 0px 10px;
	color:#333;
	font-size:12px;
}
.fiter-sort > ul > li .text-menu em {
	font-size:13px;
	font-weight:600;
}

.fiter-sort > ul > li button {
    width:auto;
	height:30px;
	line-height:30px;
    border:solid 1px #e5e5e5;
	border-radius:15px;
	padding:0px 10px 0px 10px;
	color:#888;
	font-size:12px;
	position:relative;
}
.fiter-sort > ul > li button.on {
    border:solid 1px #76a3e5;
	background-color:#76a3e5;
	color:#fff;
}

.fiter-sort > ul > li button.re-icon {
    padding:0px 28px 0px 10px;
    background:#f9f9f9 url(/resources/images/icon/refresh_icon.svg) no-repeat right 10px center / 11px auto;
    border:solid 1px #e5e5e5;
	color:#000;
}
.fiter-sort > ul > li button.sel-icon {
    padding:0px 28px 0px 10px;
}
.fiter-sort > ul > li button.sel-icon:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 10px;
}
.fiter-sort > ul > li button.on.sel-icon:after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

/* sns share
============================================================================= */
.sns-share-area {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 15px;
    font-size: 13px;
}

.sns-share-area .share-bt {
    display: inline-block;
}

.sns-share-area .ico {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0px 20px 8px;
    border-radius: 100%;
}

.sns-share-area .ico-line {
    background: #1ac64a url(/resources/images/icon/ico_line.svg) no-repeat center center/26px;
}

.sns-share-area .ico-twitter {
    background: #2aa8e0 url(/resources/images/icon/ico_twitter.svg) no-repeat center center/24px;
}

.sns-share-area .ico-x {
    background: #000 url(/resources/images/icon/ico_x_w.svg) no-repeat center center/24px;
}

.sns-share-area .ico-facebook {
    background: #1877f2 url(/resources/images/icon/ico_facebook_w.svg) no-repeat center center/12px;
}

/* header layout 
============================================================================= */
/* header main - black */

.header-area {
    height:50px;
}

.header-wrap {
    position: relative;
    width: 100%;
    height: 50px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 1002;
}
/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .header-wrap {
        max-width: 600px;
        min-width: 320px;
    }
}
/*모바일피씨버전 호환추가*/

header.fixed .header-wrap {
    position: fixed;
    top: 0;
}

.header-wrap .header-title {
	max-width:100%;
	padding:0px 90px;
	text-align:center;
}

.header-wrap .header-title .logo {
    font-size: 18px;
    font-weight: 800;
}

.header-wrap .header-title .event-logo a {
    display: inline-block;
}

.header-wrap .header-title .event-logo img {
    height: 33px;
    width: auto;
}

.header-wrap .header-title .title {
    font-size: 16px;
    font-weight: 600;
	width:100%;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}

.headerFix.mainFix .header-wrap.header-sub .header-title .logo a, .header-wrap .header-title .logo a {
    display: block;
    width: 88px;
    text-indent: -9999px;
    background: url(/resources/images/common/logo.svg) center center/100% no-repeat;
    overflow: hidden;
}


.header-wrap .bar-left, 
.header-wrap .bar-right {
    position: absolute;
}
.header-wrap .bar-left { left: 12px; }
.header-wrap .bar-right { right: 5px; }
.header-wrap [class*="btn-"] {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 20px;
}
.header-wrap .cart-count {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 3px;
    font-size: 10px;
    text-align: center;
    color: #ff6699;
    transform: translate(-50%, -50%);
}

.header-wrap .btn-hamburger {
    padding: 20px;
    background: url(/resources/images/common/ico_menu.svg?v=5) no-repeat left 6px center / 20px auto ;
}

.headerFix.mainFix .header-wrap.header-sub .btn-back,.header-wrap .btn-back { background: url(/resources/images/common/ico_back.svg) left 10px center/10px no-repeat; }
.headerFix.mainFix .header-wrap.header-sub .btn-cart, .header-wrap .btn-cart { background: url(/resources/images/common/ico_cart.svg?=v3) right 10px center/20px no-repeat; }
.headerFix.mainFix .header-wrap.header-sub .btn-search, .header-wrap .btn-search { background: url(/resources/images/common/ico_search.svg) center center/20px no-repeat; }
.headerFix.mainFix .header-wrap.header-sub .header-title .title{ color:#000;}

/* header sub - white */
.header-wrap.header-sub {
    position: absolute; 
	z-index: 1001;
    background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0));
    border: none;
}
.header-wrap.header-sub .header-title .logo a { background: url(/resources/images/common/logo_w.svg) center center/100% no-repeat; }
.header-wrap.header-sub .header-title .title{ color:#fff;}
.header-wrap.header-sub .btn-back { background: url(/resources/images/common/ico_back_w.svg?=v2) center center/10px no-repeat; }
.header-wrap.header-sub .btn-cart { background: url(/resources/images/common/ico_cart_w.svg?=v3) center center/20px no-repeat; }
.header-wrap.header-sub .btn-search { background: url(/resources/images/common/ico_search_w.svg?=v2) center center/20px no-repeat; }

/* top blank*/
.top-blank {
    width:100%;
	height:50px;
}


/* 메뉴 sticky */
.headerFix .header-wrap.is-hidden {	
    -webkit-transform: translateY(-100%); 
    -ms-transform: translateY(-100%); 
    transform: translateY(-100%); 
}
.headerFix .header-wrap { 
    position: fixed; 
    top:0;
	width: 100%; 
    -webkit-transition: -webkit-transform .3s; 
    transition: -webkit-transform .3s; 
    transition: transform .3s; 
    transition: transform .3s,-webkit-transform .3s;
 }

.headerFix .header-wrap.header-sub { 
    position: fixed; 
    top:0;
	z-index:1002;
	width: 100%; 
    -webkit-transition: -webkit-transform .3s; 
    transition: -webkit-transform .3s; 
    transition: transform .3s; 
    transition: transform .3s,-webkit-transform .3s;
 }
 
.headerFix.mainFix .header-wrap.header-sub { 
    position: fixed; 
    top:0;
	width: 100%; 
    -webkit-transition: -webkit-transform .3s; 
    transition: -webkit-transform .3s; 
    transition: transform .3s; 
    transition: transform .3s,-webkit-transform .3s; 
	background:#FFFFFF; 
 }

.mainFixAnchor { 
    position: relative; 
}
.mainFix .main-cate {
    position: fixed;
    top: 0px;  
    width: 100%;
    z-index: 1000; 
    will-change: transform; 
    -webkit-transition: -webkit-transform .3s; 
    transition: -webkit-transform .3s; 
    transition: transform .3s; 
    transition: transform .3s,-webkit-transform .3s; 
}
/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .mainFix .main-cate {
        max-width: 600px;
        min-width: 320px;
    }
}
/*모바일피씨버전 호환추가*/

.mainFix .main-cate.is-hidden { 
    top: 0px; 
    /*-webkit-transform: translateY(50px); 
    -ms-transform: translateY(50px); 
    transform: translateY(50px);*/ 
}
.mainFix .main-cate.speed{
    -webkit-transform: translateY(50px); 
    -ms-transform: translateY(50px); 
    transform: translateY(50px);
}

/* 디폴트 메인 메뉴 sticky 별도  */

.main-cate-hidden {
    display:none;
}
.mainFix .main-cate-hidden{
    display:block;
}


/* gnb 메뉴 */
.gnb-menu {
    padding: 0 5px;
}
.gnb-menu:after {
    display: block;
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    border-bottom: 1px solid #eee;
}
.gnb-menu a {
    width: auto;    
    padding: 0 12px;
	color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.6rem;
}
.gnb-menu span {
    position: relative;
}
.gnb-menu .on {
    color: #000;
    font-weight: 700;
}
.gnb-menu .on:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #000;
}
.gnb-menu .btn-shop{
	padding:0px 0px 0px 20px;
}
.gnb-menu .btn-shop:before {
    content: '';
	position:absolute; 
	left:0px; 
	top:50%;
	margin-top:-8px;
	width:16px;
	height:16px;
	background: url(/resources/images/common/ico_t_shop.svg) left center/16px no-repeat;
}

/* top banner 
============================================================================= */
.top-banner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.top-banner a {
    display:inline-block;
}
.top-banner > .btn-close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: rgba(51, 51, 51, 0.4);
	border-radius: 2px 2px;
}

.top-banner > .btn-close:before {
    content: '';
	width:20px;
	height:20px;
	display:block;
	background:url(/resources/images/common/ico_close_w.svg) no-repeat center center / 10px auto;;
}

/* app설치안내 탑배너
============================================================================= */
.app-install-top {
    height: 50px;
    display: flex;
    display: -webkit-flex;
    background-color: #111;
    border-top: solid 1px #fff;
}
.app-install-top .install-area {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}
.app-install-top .install-area.t-app-icon {
    flex-shrink: 0;
    justify-content: flex-end;
    width: 49px;
}
.app-install-top .install-area.t-app-icon img {
    width: 34px;
    border-radius: 0.4em;
}

.app-install-top .install-area.t-app-text {
    flex-grow: 1;
    line-height: 1.2em;
    font-weight: 600;
    padding: 0px 12px;
    color: #fff;
}
.app-install-top .install-area.t-app-bt {
    flex-shrink: 0;
    justify-content: flex-end;
    width: 95px;
    padding: 0px 0px 0px 0px;
}

.app-install-top .install-area.t-app-bt .close-icon {
    display: inline-block;
    padding: 0px 15px 0px 7px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    margin: 0px 0px 0px 8px;
}

/* footer layout 
============================================================================= */
.footer-wrap {
    position: relative;
    width: 100%;
    padding: 20px 20px 80px;
    border-top: 1px solid #e4e4e4;
    background: #f7f7f7;
	margin:25px 0px 0px;
}
.footer-wrap .btn-membership {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-bottom: 30px;
    color: #777;
    font-weight: 700;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    background: #fff;
}
.footer-wrap .copyright {
    margin-top: 30px;
    color: #999;
    font-size: 11px;
    text-align: center;
}

/* accordion menu
============================================================================= */
/* common accordion menu */
.wrap-accordion-menu.accordion-t-b-line {
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
}
.wrap-accordion-menu.accordion-t-b-line > ul > li:last-child {
    border-bottom: solid 0px #ddd;
}
.wrap-accordion-menu > ul > li {
    border-bottom: solid 1px #ddd;
}

.wrap-accordion-menu .accordion-menu .accordion-menu-btn,
.wrap-accordion-menu .accordion-menu .accordion-none-menu-btn {
    position: relative;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    font-size: 14px;
    padding: 12px 28px 12px 0px;
}

.wrap-accordion-menu .accordion-menu .accordion-menu-btn .accordion-menu-arr,
.wrap-accordion-menu .accordion-menu .accordion-none-menu-btn .accordion-menu-arr {
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    right: 10px;
    top: 50%;
    margin-top: -8px;   

}
.wrap-accordion-menu .accordion-menu .accordion-menu-btn .accordion-menu-arr.accordion-arr-up::after,
.wrap-accordion-menu .accordion-menu .accordion-menu-btn .accordion-menu-arr.accordion-arr-down::after,
.wrap-accordion-menu .accordion-menu .accordion-none-menu-btn .accordion-menu-arr.accordion-arr-left::after {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    right: 2px;
    top: 50%;
    margin-top: -8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
.wrap-accordion-menu .accordion-menu .accordion-none-menu-btn .accordion-menu-arr.accordion-arr-left::after {
    margin-top: -4px;
}

.wrap-accordion-menu .accordion-menu .accordion-menu-btn .accordion-menu-arr.accordion-arr-up::after {
    transform: rotate(315deg);
}
.wrap-accordion-menu .accordion-menu .accordion-menu-btn .accordion-menu-arr.accordion-arr-down::after {
    transform: rotate(135deg);
}
.wrap-accordion-menu .accordion-menu .accordion-none-menu-btn .accordion-menu-arr.accordion-arr-left::after {
    transform: rotate(45deg);
}

.wrap-accordion-menu .accordion-menu .wrap-accordion-menu-toggle {
    padding: 0px 0px 20px;
}

/* bottom accordion menu */
.footer-accor-menu .footer-accor-tit {
    position: relative;
    padding: 12px 0 12px 2px;
    color: #999;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
}
.footer-accor-menu .footer-accor-tit:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;    
    right: 10px;
    margin-top: -7px;
    width: 14px;
    height: 14px;
    background: url(/resources/images/common/ico_arr_basic_down.svg) right center/100% no-repeat;
}
.footer-accor-menu .footer-accor-content{ display:block;}
.footer-accor-menu .menu-closed:after { transform: rotate(0deg); }
.footer-accor-menu .menu-open:after { transform: rotate(-180deg); }

.footer-accor-menu .icon-list {
    display: -webkit-flex;
    display: flex;
    margin: 15px 0 25px;
}
.footer-accor-menu .icon-list span {
    display: block;
    width: 58px;
    margin-bottom: 5px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    background: #fff;
}
.footer-accor-menu .icon-list span.ico-circle {
    width: 46px;
    border-radius: 100%;
}
.footer-accor-menu .icon-list a {
    min-width: 50px;
    margin-right: 10px;
    color: #555;
    font-size: 11px;
    text-align: center;
}
.footer-accor-menu .accor-list {
    padding: 0 15px;
    color: #555;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}
.footer-accor-menu .accor-list > a {
    display: block;
    position: relative;
    padding: 14px 0;
    color: #555;
    font-size: 12px;
    background: #fff;
}
.footer-accor-menu .accor-list > a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;    
    right: 0px;
    margin-top: -6px;
    width: 12px;
    height: 12px;
    transform: rotate(-90deg);
    background: url(/resources/images/common/ico_arr_basic_down.svg) right center/100% no-repeat;
}
.footer-accor-menu .accor-list a:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}
.footer-accor-menu .accor-list .cs-center {
    align-items: center;
}
.footer-accor-menu .accor-list .cs-center span {
    display: block;
    font-size: 11px;
    text-align: center;
}
.footer-accor-menu .accor-list .cs-center a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.footer-accor-menu .accor-list h4:nth-child(1) {
    padding-top: 15px;
}
.footer-accor-menu .accor-list .info {
    padding: 12px 0;
}
.footer-accor-menu .accor-list .info > ul {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}
.footer-accor-menu .accor-list .info [class*="col"] {
    flex: 1 0 auto;
    cursor: pointer;
}
.footer-accor-menu .accor-list .info:nth-child(1) {
    border-bottom: 1px solid #e5e5e5;
}
.footer-accor-menu .accor-list p {
    margin: 3px 0;
    font-size: 11px;
}


/* fixed menu layout 
============================================================================= */
/*모바일피씨버전 호환수정*/
.footer-nav-fixed .filter-bt{
    position: absolute;
    right: 10px;
    top: -117px;
    width: 48px;
    height: 48px;
    border-radius: 100%;
	background-color:#76a3e5;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media only screen and (min-width: 600px) {
    .footer-nav-fixed .filter-bt {
        right: -63px; 
    }
}
/*모바일피씨버전 호환수정*/

.footer-nav-fixed .filter-bt i{
    display:inline-block;
	padding:2px 0px 4px;
	line-height:1.0em;
}

.footer-nav-fixed .filter-bt i img{
    width:20px;
}

.footer-nav-fixed .filter-bt span{
    display:inline-block;
	font-size:8px;
	font-weight:600;
	color:#FFF;
}

/*모바일피씨버전 호환수정*/
.footer-nav-fixed .top-move {
    position: absolute;
    right: 15px;
    top: -54px;
    width: 38px;
    height: 38px;
    border: 1px solid #dadadb;
    border-radius: 12px;
    z-index: 100;
    background: rgba(255,255,255,.9) url(/resources/images/common/ico_arr_up.svg) no-repeat center center/14px;
    cursor: pointer;
}
@media only screen and (min-width: 600px) {
    .footer-nav-fixed .top-move {
        right: -58px; 
    }
}
.footer-nav-fixed .top-move.gv_top {
    top: -103px!important;
}
/*모바일피씨버전 호환수정*/

.footer-nav-fixed .top-move.cart_top {
    bottom: 135px!important;
}

.footer-nav-fixed {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
	height:60px;
    margin: 0 auto;
    background: #f8f8f8;
    transition: transform .2s;
    z-index: 1002;
	border-top:solid 1px #ddd;
}

/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .footer-nav-fixed {
        max-width: 600px;
        min-width: 320px;
    }
}
/*모바일피씨버전 호환추가*/

.footer-nav-fixed .footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-nav-fixed.is-hidden {
    transform: translateY(100%);
}
.footer-nav-fixed .footer-nav [class*="ico-"] {
    display: block;
    width: 100%;
    height: 18px;
    margin: 0px auto 5px auto;
    text-align: center;
    background-color: #333;
}
.footer-nav-fixed .footer-nav > a {
    flex: 1;
    padding: 10px 0;
    color: #333;
    font-size: 0.714em;
    text-align: center;
}
.footer-nav-fixed .footer-nav > a.on { 
    color: #d6122e; 
}
.footer-nav-fixed .footer-nav > a.on [class*="ico-"] { 
    background-color: #d6122e; 
}
.footer-nav-fixed .footer-nav .ico-home { -webkit-mask: url(/resources/images/common/ico_home.svg?v=5) center center / auto 18px no-repeat ;}
.footer-nav-fixed .footer-nav .ico-allshop { -webkit-mask: url(/resources/images/common/ico_allshop.svg?v=5) center center / auto 18px no-repeat;}
.footer-nav-fixed .footer-nav .ico-menu { -webkit-mask: url(/resources/images/common/ico_menu.svg?v=5) center center / auto 18px no-repeat;}
.footer-nav-fixed .footer-nav .ico-like { -webkit-mask: url(/resources/images/common/ico_like.svg?v=5) center center / auto 18px no-repeat;}
.footer-nav-fixed .footer-nav .ico-my { -webkit-mask: url(/resources/images/common/ico_my.svg?v=5) center center / auto 18px no-repeat;}

/* channel tok
============================================================================= */
.channel-ico-wrap {
    position:fixed;
	right:11px;
	bottom:128px;
	width:60px;
	height:60px;
	overflow: visible;
	z-index:9999;
}

.channel-ico-wrap.gv_top_c {
	bottom:178px;
}
.channel-ico-wrap.cart_top_c {
	bottom:188px;
}

.channel-ico {
    position: relative;
	width:100%;
	height:100%;
	cursor: pointer;
	overflow: initial;
	background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px);
	border-radius: 26px;
	box-shadow: rgb(0 0 0 / 10%) 0px 4px 6px, rgb(0 0 0 / 15%) 0px 8px 30px, rgb(255 255 255 / 20%) 0px 0px 0px 1px inset;
	z-index:1;
}

.channel-ico .icon {
	position: absolute;
	width:48px;
	height:48px;
	background: url(/resources/images/icon/chat_icon.png?v=2) no-repeat center center/100% auto;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	z-index:2;
}

.channel-ico .count{
    position: absolute;
    top: -7px;
    right: -3px;
	display:none;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	flex-wrap: nowrap;
    min-width: 24px;
    height: 24px;
	line-height: 18px;	
	padding: 0px 7px;
	border-radius: 12px;
	font-size: 14px;
	color: rgb(255, 255, 255);
	background-color: rgb(233, 78, 88);
	box-shadow: rgb(0 0 0 / 5%) 0px 0px 2px 1px, rgb(0 0 0 / 8%) 0px 1px 2px, rgb(255 255 255 / 12%) 0px 0px 2px inset;
	z-index:3;
}
.channel-ico .count.on {
    display: inline-flex !important;
}

@media only screen and (max-width: 768px) {
.channel-ico-wrap {
	width:42px;
	height:42px;
	right:13px;
}

.channel-ico {
	box-shadow: rgb(0 0 0 / 5%) 0px 2px 3px, rgb(0 0 0 / 10%) 0px 6px 15px, rgb(255 255 255 / 20%) 0px 0px 0px 1px inset !important;
	border-radius: 18px;
}

.channel-ico .icon {
	width:36px;
	height:36px;
}

.channel-ico .count {
    right: -2px;
    min-width: 20px;
    height: 20px;
	padding: 0px 6px;
	font-size: 13px;
	border-radius: 10px;
}

}

/* snb menu layout
============================================================================= */
/* 검색페이지/뷰티체험단  */
.snb-type1 {
    position: relative;
    width:100%;
	padding:10px 0px 0px;
	z-index: 1;
    display: -webkit-flex;
    display: flex;
}
.snb-type1:after {
    display: block;
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    border-bottom: 1px solid #eee;
}

.snb-type1 a {
    flex:1;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.6rem;
}

.snb-type1 span {
	position: relative;
	display:block;
	height: 100%;
	width:100%;
	color:#777;
	font-size:15px;
}

.snb-type1 .on {
    color: #000;
    font-weight: 700;
}
.snb-type1 .on:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

/* lnb filter layout
============================================================================= */
/*모바일피씨버전 호환수정*/
.lnb-filter .filter-body {
    width: 100%;
    position: fixed;
    right: 0;
    transform: translateX(100%);
    top: 0px;  
	height:100dvh; 
    background: #fff; 
    transition: all 0.4s; 
    z-index: 10003;
}
.lnb-filter.active .filter-body {
    right: 50%;
    transform: translateX(50%);
}
/*모바일피씨버전 호환수정*/
/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .lnb-filter.active .filter-body {
        width: 600px;
    }
}
/*모바일피씨버전 호환추가*/

.filter-body .filter-header {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 50px;
    border-bottom: 1px solid rgb(241, 241, 241);
    background: rgb(255, 255, 255);
    text-align: center;
    z-index: 10;
}

.filter-body .filter-header .title {
    display:inline-block;
	font-size:16px;
	font-weight:600;
}

.filter-body .filter-header .closed{
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    background: url(/resources/images/common/ico_close_b.svg) center center/18px no-repeat;
    z-index: 10005;
    cursor: pointer;
}

.filter-body .filter-content {
    height: calc(100dvh - 120px);
    overflow-y: auto;
    padding: 0px 0px 50px;
}

.filter-body .filter-menu {
    padding:20px 15px 0px;
}

.filter-body .filter-menu.border
{
    border-bottom: 6px solid #f5f5f5;
}


.filter-body .filter-menu .menu-title{
    display:inline-block;
	font-size:18px;
	font-weight:600;
}

.filter-body .filter-menu .price-slider {
    padding:30px 0px;
}

.filter-body .filter-menu .type1 {
    padding:7px 0px;
	font-size:14px;
}
.filter-body .filter-menu .type1 > ul {
    flex-flow: column wrap;
}

.filter-body .filter-menu .type1 > ul > li {
     border-bottom:solid 1px #eee;
	 padding:14px 0px;
}

.filter-body .filter-menu .type1 > ul > li:last-child{
     border-bottom:solid 0px #eee;
}

.filter-body .filter-menu .type2 {
    padding:15px 0px;
}

.filter-body .filter-menu .type2 > ul {
    display: flex;
    flex-flow: row wrap;
	margin:-5px -5px;
}

.filter-body .filter-menu .type2 > ul > li {
    width: 50%;
	padding:0px 0px;
}

.filter-body .filter-menu .type2.free > ul {
    display: flex;
    flex-flow: row wrap;
	margin:-10px -10px;
}

.filter-body .filter-menu .type2.free  > ul > li {
     width:auto;
	padding:10px 10px;
}

.filter-body .filter-menu .type2.free > ul > li button {
    color: #999;
}


.filter-body .filter-menu .color-check-area > li > button {
    display: flex;
	width:100%;
	height:46px;
    align-items: center;
    padding: 0px 10px;
    cursor: pointer;
    color: #999;
    font-size: 13px;
    font-weight: 500;
    z-index: 2;
	border:solid 0px #efefef;
	border-radius: 23px;
}

.filter-body .filter-bottom {
    width: 100%;
    height: 70px;
    text-align: center;
	padding:10px 5px;
    background-color: rgb(249, 249, 249);
    border-top: 1px solid rgb(241, 241, 241);
    display:flex;
    z-index: 10;
}

.filter-body .filter-bottom .reset-bt{
    display: flex;
    justify-content: center;
	align-items: center;
	font-size:14px;
	color:#999;
	width:100px;
	margin:0px 5px;
	background-color:#FFF;
	border:solid 1px #ddd;
	border-radius: 4px;
}

.filter-body .filter-bottom .serch-bt {
    display: flex;
	flex:1;
    justify-content: center;
	align-items: center;
	font-size:14px;
	color:#fff;
	font-weight:600;
	margin:0px 5px;
	background-color:#ed326c;
	border-radius: 4px;
}



/* lnb menu layout
============================================================================= */
/*모바일피씨버전 호환수정*/
.cate-lnb {
    width: 100%;
    position: fixed;
    left: 0;
    transform: translateX(-100%);
    top: 0;
    height: 100dvh;
    text-align: left;
    background: #fff;
    transition: all, 0.4s;
    -webkit-transition: all, 0.4s;
    z-index: 10003;    
}
.cate-lnb.active {
    left: 50%;
    transform: translateX(-50%);
}
/*모바일피씨버전 호환수정*/
/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .cate-lnb.active {
        width: 600px;
    }
}
/*모바일피씨버전 호환추가*/

/* lnb menu header */
.cate-lnb-header {
    position: sticky;
    top: 0px;
    left: 0px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0px 50px 0px 20px;
    background: #fff; 
    border-bottom: solid 0px #e9e9e9;
}

.cate-lnb-header > a {
    position: relative;
    padding-right: 10px;
    font-size: 16px;
	font-weight: 500; 
}

.cate-lnb-header > a > em {
    font-weight: 600;
}

.cate-lnb-header > a::after {
    content: ' ';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    border: 2px solid #333;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cate-lnb-header .cate-lnb-closed {
    position: absolute;
    right: 0;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: url(/resources/images/common/ico_close_bold_b.svg) center center/16px no-repeat;
}

/* 2025년 리뉴얼시 수정 */
.cate-lnb-content {
    height: calc(100dvh - 110px);
    overflow-x: hidden;
    overflow-y: auto;
}

/* lnb menu 성별 선택 탭메뉴 */
.cate-lnb-tab {
    overflow: hidden;
    padding: 20px 10px;
}

.cate-lnb-tab > ul {
    display: -webkit-flex;
    display: flex;
    margin: 0px -4px;
}

.cate-lnb-tab > ul > li {
    width: 25%;
    padding: 0px 4px;
}

.cate-lnb-tab > ul > li.active button {
    background-color: #f6f6f6;
}

.cate-lnb-tab button { 
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    border-radius: 0.4em;
    overflow: hidden;
    padding: 10px 0px;
    width: 100%;
    height: 100%;
}

.cate-lnb-tab button .pic {
    width: 100%;
    border-radius: 100%;
    overflow: hidden;
    margin: 0px 10px;
}
.cate-lnb-tab button .pic.line {
    border: #eee solid 1px;
}

.cate-lnb-tab button .pic img { width: 100%;}

.cate-lnb-tab button .text {
    padding: 8px 4px 0px;
    width: 100%;
    text-align: center;
    color: #000;
}

.cate-lnb-tab > ul > li.active button .text {
    font-weight: 600;
}

/* lnb menu 카테고리 메뉴 */
.cate-lnb-menu {
    display: grid;
    grid-template-columns: 150px 1fr;
    height: calc(100dvh - 160px);
}
/* 2025년 리뉴얼시 수정 */

/* 2025년 리뉴얼시 삭제 2025년 리뉴얼시 삭제 */
.cate-lnb-menu-first {
    background: #f6f6f6;
    padding: 0px 0px 50px;
}

@media (min-height: 300px) {
    .cate-lnb-menu-first ul {
    position: sticky;
    top: 0px;
  }
}
.cate-lnb-menu-first ul li button {
    display: block;
    width: 100%;
    padding: 8px 15px;
    color: #888;
    font-size: 15px;
    position: relative;
    text-align: left;
  }

.cate-lnb-menu-first ul li.active button {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 10px 15px 10px 22px;
}
  
.cate-lnb-menu-first ul li button .point {
    height: 0px;
    width: 0px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -4px;
    transition: .5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.cate-lnb-menu-first ul li.active button .point {
    background-color: #f72cbc;
    display: block; 
    left: 10px;   
    height: 50%;
    width: 4px;
    border-radius: 2px 2px;
}
  .cate-lnb-menu-second {
    padding: 0px 0px 50px;
  }
  .cate-lnb-menu-second > ul > li {
    display: none;
  }
  .cate-lnb-menu-second > ul > li.active {
    display: block;
  }

  .cate-lnb-menu-second .cate-lnb-sub > dl > dt, .cate-lnb-menu-second .cate-lnb-sub > dl > dd {
    padding: 10px 15px 10px 20px;
  }

  .cate-lnb-menu-second .cate-lnb-sub > dl > dt a, .cate-lnb-menu-second .cate-lnb-sub > dl > dd a {
    display: block;
    width: 100%;;
    position: relative;
    font-size: 14px;
    padding: 0px 15px 0px 0px;
  }

  .cate-lnb-menu-second .cate-lnb-sub > dl > dt a {
    font-weight: 600;
  }

  .cate-lnb-menu-second .cate-lnb-sub > dl > dt a::after, .cate-lnb-menu-second .cate-lnb-sub > dl > dd a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -4px;  
  }
  /* 2025년 리뉴얼시 삭제 2025년 리뉴얼시 삭제 */

/* lnb menu 하단 아이콘 메뉴 */
  .cate-lnb-footer {
    width: 100%;
    position: sticky;
    left: 0px;
    bottom: 0px;
    background-color: #f6f6f6;
    box-shadow: 0px -3px 10px 3px rgb(0 0 0 / 8%);
  }
  .cate-lnb-footer > ul {
    display: flex;
    display: -webkit-flex;
    margin: 0px -5px;    
  }
  .cate-lnb-footer > ul > li {
    width: 25%;
    height: 60px;
    padding: 0px 5px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
  }

  .cate-lnb-footer > ul > li a {
    display: inline-block;
    text-align: center;
  }
  .cate-lnb-footer > ul > li a img {
    width: auto;
    height: 24px;
  }
  .cate-lnb-footer > ul > li a span {
    display: block;
    font-size: 11px;
    text-align: center;
    padding: 5px 0px 0px;
  }

/* modal popup layout
============================================================================= */
.transparency {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    cursor: pointer;
}

.transparency-nonclick {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}
/* bg와 팝업창 하나로 묶을시 사용 active값 추가 부모요소에 사용 */
.transparency-all-in-one {
    display: none;
}
.transparency-all-in-one.active {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

/* 키워드 팝업 */ 
.keyword-pop { 
    position: fixed; 
    top: 0; 
    left: -450px; 
    width: calc(100% + 1px); 
    max-width: 450px; 
    height: 100%; 
    background: #fff; 
    overflow: hidden; 
    z-index: 10002; 
    -webkit-transition: .3s ease; 
    transition: .3s ease; 
}
.keyword-pop.active { 
    display: block; 
    left: 50%; 
    transform: translateX(-50%); 
    -webkit-transition: .2s ease; 
    transition: .2s ease;
}
.keyword-pop .panel-heading { 
    position: relative; 
    width: 100%;
    padding: 15px; 
    text-align: center; 
    background: #fff; 
    border-bottom: 1px solid #e5e5e5; 
    z-index: 1000;
}
.keyword-pop .panel-heading span { 
    font-size: 16px; 
    font-weight: 600;
}
.keyword-pop .panel-heading .close-btn { 
    position: absolute; 
    top: 50%; 
    left: 5px; 
    margin-top: -15px; 
    width: 30px; 
    height: 30px; 
    text-indent: -9999px; 
    overflow: hidden;
    background: url(/resources/images/common/ico_back.svg) left 10px center/10px no-repeat;
}
.keyword-pop .panel-body { 
    height: 100vh; 
    padding: 20px 5px 100px;
    overflow-y: auto;
}

/* 메인이벤트 팝업 */
.wrap-main-banner-pop .layer-pop-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    cursor: pointer;
}

.wrap-main-banner-pop .main-banner-pop { 
    display:none; 
    width: 90%;
	max-width:500px;
    position: fixed; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%);
	background-color:#fff;
    transition: all 0.4s cubic-bezier(0.38, 0.09, 0.12, 1) 0s; 
    z-index: 10002; 
}

.wrap-main-banner-pop.layer-open .main-banner-pop { 
    visibility: visible; 
    display: block;
	overflow:hidden;
}

.wrap-main-banner-pop .main-banner-pop .swiper-main-banner-pop .layer-clsed {
	display:block;
	width:26px;
	height:26px;
    line-height: 26px;
    text-align: center;
	margin:0px 10px;
	background: rgba(0, 0, 0, 0.6);
	border-radius:100%;
	position:absolute;
    right: 10px;
    top: 10px;
    z-index: 10003;
    color: #fff;
}

.wrap-main-banner-pop .main-banner-pop .swiper-main-banner-pop a {
    display: block;
}

/* 메인쿠폰 팝업 */ 
.wrap-main-coupon .layer-pop-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    cursor: pointer;
}

.wrap-main-coupon .main-coupon { 
    display:none; 
    width: 90%;
	max-width:500px;
    position: fixed; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%);
	background-color:#fff;
    transition: all 0.4s cubic-bezier(0.38, 0.09, 0.12, 1) 0s; 
    z-index: 10002; 
}
.wrap-main-coupon.layer-open .main-coupon { 
    visibility: visible; 
    display: block;
	overflow:hidden;
    border-radius: 0.8em;
}	
.wrap-main-coupon .main-coupon .layer-header {
	align-items: center;
	position:relative;
	height:60px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	background-color:#f78cba;
}

.wrap-main-coupon .main-coupon .layer-header h3 {
	text-align:center;
	flex:1;
	font-size:14px;
	color:#fff;
	font-weight:600;
	padding:0px 0px 0px 46px;
}

.wrap-main-coupon .main-coupon .layer-header .layer-clsed {
	display:block;
	width:26px;
	height:26px;
	margin:0px 10px;
	background-color:#fff;
	border-radius:100%;
	position:relative;
}

.wrap-main-coupon .main-coupon .layer-header .layer-clsed::before {
	content: 'X';
    line-height: 1.0em;
    position:absolute;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
    font-size: 12px;
    color: #111;
}

.wrap-main-coupon .main-coupon .layer-contents {
    overflow: auto;
    max-height: 342px;
	padding:20px 20px 0px
}

.wrap-main-coupon .main-coupon .layer-contents > ul > li {
    width:100%;
	padding:0px 0px 20px;
}

.wrap-main-coupon .main-coupon .bt-area {
    width:100%;
	height:80px;
	padding:15px 20px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.wrap-main-coupon .main-coupon .bt-area .download {
    width:100%;
	height:50px;
	line-height:50px;
	display:block;
	text-align:center;
	font-size:15px;
	font-weight:600;
	color:#fff;
	background-color:#f78cba;
	border-radius:0.6em
}


/* 하단 모달 팝업 */
/*모바일피씨버전 호환수정*/
.footer-modal .modal-content { 
    width: 100%; 
    position: fixed; 
    left: 50%; 
    bottom: 0; 
    background: #fff; 
    border-radius: 28px 28px 0 0;
    transform: translate(-50%, 100%); 
    transition: all 0.4s cubic-bezier(0.38, 0.09, 0.12, 1) 0s;
    z-index: 10002; 
}
.footer-modal.modal-open .modal-content { 
    transform: translate(-50%, 0);
}
/*모바일피씨버전 호환수정*/

/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .footer-modal .modal-content { 
        width: 600px;
    }
}
/*모바일피씨버전 호환추가*/

.footer-modal .modal-content .modal-close { 
    display: block;    
    position: absolute; 
    left: 0px; 
    top: 0px; 
    width: 100%; 
    height: 35px; 
}
.footer-modal .modal-content .modal-close:before { 
    content: ''; 
    display: block; 
    position: absolute; 
    left: 50%; 
    top: 50%; 
    width: 50px; 
    height: 4px; 
    transform: translate(-50%, -50%); 
    border-radius: 2px; 
    background: #ddd; 
}
.footer-modal .modal-content .modal-body { 
    padding: 40px 20px 30px; 
}	
.footer-modal .modal-content .modal-body h2 { 
    font-size: 16px;
}	

.footer-modal .modal-content .order-body { 
    padding: 40px 0px 0px; 
}


/* 메인하단 고정 팝업 */
.bottom-pop {
    position: fixed;
    bottom: 0px;
	left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    margin: 0 auto !important;
    z-index: 10000;
}
/*모바일피씨버전 호환수정*/
@media only screen and (min-width: 600px) {
.bottom-pop {
    max-width: 600px;
}
}
/*모바일피씨버전 호환수정*/
.bottom-pop .swiper-bottom-pop {
    width:100%;
}
/*모바일피씨버전 호환수정*/
.bottom-pop .swiper-bottom-pop > ul > li img {
    border-radius: 12px 0px 0px 0px;
    width: 100%;
}
/*모바일피씨버전 호환수정*/
.bottom-pop .swiper-bottom-pop .swiper-bottom-pagination {
	right: 10px;
    bottom: 0px;
	top: 10px;
	margin-top:0px;
}
.bottom-pop .swiper-bottom-bt {
    width: 100%;
    padding: 15px 14px;
    background-color: #fff;
}

.bottom-pop .swiper-bottom-bt > ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.bottom-pop .swiper-bottom-bt > ul > li a {
    font-size: 14px;
    color: #111;
}
/* 전체화면 스크롤 팝업 
============================================================================= */
/* 레이아아웃 */
.fullpop-wrap .fullpop-area { 
    display:none; 
    width: 100%;
    height: 100dvh;
    position: fixed; 
    left: 0px; 
    top: 0px;
    overflow: hidden;
    background: #fff; 
    transition: all 0.4s cubic-bezier(0.38, 0.09, 0.12, 1) 0s; 
    z-index: 10002; 
}
/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .fullpop-wrap .fullpop-area {
        left: 50%;
        transform: translate(-50%, 0);
        width: 600px;
    }
}
/*모바일피씨버전 호환추가*/

.fullpop-wrap.active .fullpop-area { 
    visibility: visible; 
    display: block; 
}

.fullpop-wrap .fullpop-area .fullpop-header {
    display: flex;
	position:relative;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 50px;
	width:100%;
    border-bottom: 1px solid rgb(241, 241, 241);
    background: rgb(255, 255, 255);
    text-align: center;
    z-index: 10;
}
.fullpop-wrap .fullpop-area .fullpop-header .title {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
}
.fullpop-wrap .fullpop-area .fullpop-header .close-bt {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    background: url(/resources/images/common/ico_close_b.svg) no-repeat center center / 18px auto;
    z-index: 10005;
    cursor: pointer;
}

.fullpop-wrap .fullpop-area .fullpop-contents {
    width:100%;
    height: calc(100dvh - 50px);
    overflow-x: hidden;
	overflow-y: auto;
	padding:0px 0px 30px;
}

.fullpop-wrap .fullpop-area .fullpop-bottom-space {
    height: 20px;
}
.fullpop-wrap .fullpop-area .fullpop-bottom-space-15 {
    height: 15px;
}
.fullpop-wrap .fullpop-area .fullpop-bottom-btn {
    padding: 15px 20px;

}
.fullpop-wrap .fullpop-area .fullpop-bottom-btn.pd-0 {
    padding: 0px 0px;
}
.fullpop-wrap .fullpop-area .fullpop-bottom-btn.pd-0-0-15 {
    padding: 0px 0px 15px;
}
.fullpop-wrap .fullpop-area .fullpop-bottom-btn.center {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
}
.fullpop-wrap .fullpop-area .fullpop-bottom-btn.column-2 > ul {
    display: flex;
    display: -webkit-flex;
    margin: 0px -5px;
}
.fullpop-wrap .fullpop-area .fullpop-bottom-btn.column-2 > ul > li {
    width: 50%;
    padding: 0px 5px;
}
/* 전체화면 스크롤 팝업 커스트 마이징
============================================================================= */
/* 간격 높이 위치 조절 */

.fullpop-wrap .fullpop-area .fullpop-header.border_non {
    border-bottom: 0px solid rgb(241, 241, 241);
}
.fullpop-wrap .fullpop-area.center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} 

.fullpop-wrap .fullpop-area.wh-90per {
    width: 90%;
    height: auto;
    max-height: 90dvh;
}
/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .fullpop-wrap .fullpop-area.wh-90per {
        width: 570px;
    }
}
/*모바일피씨버전 호환추가*/
.fullpop-wrap .fullpop-area.w-100per-h-90per {
    width: 100%;
    height: auto;
    max-height: 90dvh;
}
/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .fullpop-wrap .fullpop-area.w-100per-h-90per {
        width: 600px;
    }
}
/*모바일피씨버전 호환추가*/
.fullpop-wrap .fullpop-area .pd-0-0 {
    padding: 0px 0px;
}

.fullpop-wrap .fullpop-area.pd-20-0-0 {
    padding: 20px 0px 0px;
}

.fullpop-wrap .fullpop-area .pd-15-15-15 {
    padding: 15px 15px 15px;
}
.fullpop-wrap .fullpop-area .pd-15-15-0 {
    padding: 15px 15px 0px;
}

.fullpop-wrap .fullpop-area .pd-20-20-0 {
    padding: 20px 20px 0px;
}

.fullpop-wrap .fullpop-area .pd-0-20 {
    padding: 0px 20px;
}
.fullpop-wrap .fullpop-area .fullpop-contents.h90-sp50 {
    height: auto;
    max-height: calc(90dvh - 50px);
}
.fullpop-wrap .fullpop-area .fullpop-contents.h90-sp65 {
    height: auto;
    max-height: calc(90dvh - 65px);
}
.fullpop-wrap .fullpop-area .fullpop-contents.h90-sp70 {
    height: auto;
    max-height: calc(90dvh - 70px);
}
.fullpop-wrap .fullpop-area .fullpop-contents.h90-sp100 {
    height: auto;
    max-height: calc(90dvh - 100px);
}

.fullpop-wrap .fullpop-area .fullpop-contents > ul.li-pd-0-15 > li + li {
    padding: 15px 0px 0px;
}

.fullpop-wrap .fullpop-area .fullpop-contents > ul.li-pd-0-20 > li + li {
    padding: 20px 0px 0px;
}

.fullpop-wrap .fullpop-area.round {
    border-radius: 1.8em;
}

.fullpop-wrap .fullpop-area.top-round {
    border-radius: 1.8em 1.8em 0 0;
}

.fullpop-wrap .fullpop-area.bottom {
    left: 0px;
    bottom: 0px;
    top: auto;
}

/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .fullpop-wrap .fullpop-area.bottom {
        left: 50%;
        transform: translate(-50%, 0);
    }
}
/*모바일피씨버전 호환추가*/

.fullpop-wrap .fullpop-area .fullpop-header .title.left {
    width: 100%;
    margin: 0px 50px 0px 0px;
    padding: 0px 0px 0px 20px;
    text-align: left;
}

/* 팝업 컨텐츠 */
.modal-info ~ .modal-info {
    margin: 20px 0px 0px;
}
.modal-info.header > ul > li {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.modal-info.header > ul > li + li {
    margin-top: 5px;
}

.modal-info.header > ul > li > h2 {
    font-size: 22px;
}
/* 팝업 컨텐츠 루프 */
.fullpop-data .loof {
    display: flex;
    display: -webkit-flex;    
}
.fullpop-data .loof.column-1-1 > li {
    flex: 1;
}

.fullpop-data.li-pd-10-10 {
    margin: -5px -5px;
}

.fullpop-data.li-pd-10-10 > ul > li {
    padding: 5px 5px;
}

.fullpop-data.li-pd-0-5 > ul > li + li {
    padding: 8px 0px 0px;
} 
.fullpop-data .memo {
    padding: 5px 0px 0px;
}

.enlarged-pop-pic > ul > li + li {
    padding: 15px 0px 0px;
}
.enlarged-pop-pic > ul > li img {
    width: 100%;
}
/* 팝업 타이틀 */
.fullpop-subtit {
    padding: 0px 0px 10px;
}
.fullpop-subtit.bg-gray {
    background-color: #f7f7f7;
    padding: 10px 10px;
    border-radius: 0.8em;
}
.fullpop-subtit.pd-0 {
    padding: 0px 0px;
}
.fullpop-subtit p + p {
    padding: 3px 0px 0px;
}

/* 쿠폰 코드 */
.coupon-code{
    padding:25px 10px 15px;
}
.code-accordion {
    display:flex;
	justify-content: space-between;
	align-items: center; 
	background-color:#333;
	width:100%;
	height:50px;
    border-radius:4px;
	padding:0px 18px;
}
.code-accordion.open {
    border-radius:4px 4px 0px 0px;
}
.code-accordion .text{
	color:#FFF;
	font-size:14px;
	font-weight:600;
}

.code-accordion .icon {
    width:16px;
	height:16px;
}

.code-accordion .icon i{
    display:block;
	width:2px;
	height:16px;
	background-color:#FFF;
	transition-duration:0.5s;
}
.code-accordion .icon i.x-line {
	transform:translateY(0px) rotate(89deg);
}

.code-accordion .icon i.y-line {
	transform:translateY(-16px) rotate(-179deg);
}

.code-accordion.open .icon i.y-line {
	opacity:0;
}

.code-contents {
  border-bottom:solid 1px #333;
  border-left:solid 1px #333;
  border-right:solid 1px #333;
  padding:18px 18px 30px 18px;
  border-radius:0px 0px 4px 4px;
}

.code-loof > ul > li:last-child {
    padding:15px 0px 0px 0px;
}

.code-contents .code-down {
    width:100%;
	height:46px;
	line-height:46px;
	text-align:center;
	background-color:#fff;
	border:solid 1px #000;
	display:block;
    border-radius: 4px;
	font-size:14px;
	color:#333;
	font-weight:600;
}

.code-input {
    width: 100%;
    height: 46px!important;
	line-height:46px!important;
    box-shadow: none;
    padding: 0px 18px!important;
    font-size: 14px!important;
    color: #333!important;
    border: 1px solid #d2d2d2!important;
    background: transparent;
    -webkit-appearance: none;
    border-radius: 4px!important;
}

.code-miss {
    display:block;
	padding:5px 0px 0px 0px;
	width:100%;
	text-align:left;
	font-size:12px;
	font-weight:600;
	color:#d40f2a;
}

/* 쿠폰 다운로드 리스트 */
.coupon-down-list .swiper-container {
    padding-left: 15px;
}

.coupon-down-list .swiper-container > ul {
    margin:0px -15px 0px 0px;
}

.coupon-down-list .swiper-container > ul > li {
	padding:0px 15px 0px 0px;
	max-width:320px;
	width:auto;
}

.mypage-wrap .coupon-down-list .swiper-container {
    padding-left: 0px;
}

.coupon-wrap {
    position: relative;
    height: 156px;
	width:100%;
	overflow:hidden;
	z-index:1;
}
.coupon-wrap.h-auto {
    height: auto;
    min-height: 156px;
}

.coupon-wrap:before, .coupon-wrap:after {
    content: ' ';
	display:block;
	position:absolute;
	width:14px;
	height:14px;
	background-color:#fff;
	border:solid 1px #e3e3e3;
	border-radius:100%;
	top:50%;
	z-index:5;
	margin-top:-7px;
}

.coupon-wrap:before {
	left:-7px;
}
.coupon-wrap:after {
	right:-7px;
}

.coupon-wrap .coupon-line {
    width:100%;
	height:100%;
	border:solid 1px #e3e3e3;
	border-radius:4px 4px;
    background-color: #fff;
}

.coupon-wrap h3 {
    width:100%;
    padding: 20px 20px 15px;
    color: #333;
    font-size: 15px;
	text-align:left;
}

/* 아이콘 쿠폰 제목 */
.coupon-wrap .coupon-ico-tit {
    padding: 20px 20px 15px;
    color: #333;
    font-size: 15px;
	width:100%;
    font-weight: 600;
	text-align:left;
}

.coupon-wrap .coupon-ico-tit .coupon-ico {
    display:inline-block;
	width:auto;
	height:24px;
	line-height:24px;
	border-radius: 12px 12px;
	padding:0px 15px 0px 35px;
	background-color:#a982ff;
	color:#fff;
	margin:0px 0px 8px;
	font-size:12px;
	position:relative;
}

.coupon-wrap .coupon-ico-tit .coupon-ico.gift:after{
    content: '';
	position:absolute;
	left:15px;
	top:50%;
	margin-top:-8px;
	display:block;
	width:16px;
	height:16px;
	background: url(/resources/images/icon/gift_icon.svg) no-repeat center center / 16px auto; 
}

.coupon-wrap .coupon-ico-tit .coupon-name {
    display:block;
	width:100%;
    font-size: 15px;
	color: #333;
}


/* 아이콘 쿠폰 제목 */
.coupon-wrap .coupon-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 36px;
}

.coupon-wrap .coupon-cont .txt {
    padding-right:15px;
	text-align:left;
}

.coupon-wrap .coupon-cont .coupon-per {
    color: #d1142a;
    font-size: 40px;
}

.coupon-wrap .coupon-cont .coupon-per:after {
    display: inline-block;
    content: '%';
    font-size: 16px;
    font-weight: 100;
}

.coupon-wrap .coupon-cont .coupon-price {
    color: #d1142a;
    font-size: 30px;
}
.coupon-wrap .coupon-cont .coupon-price:before {
    display: inline-block;
    content: '￥';
    font-size: 16px;
    font-weight: 400;
}
.coupon-wrap .btn-download {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 31px;
    padding: 0 20px;
    color: #666;
    font-size: 12px;
    text-align: left;
	background:#f7f7f7;
	border-bottom:solid 1px #e3e3e3;
	border-left:solid 1px #e3e3e3;
	border-right:solid 1px #e3e3e3;
	border-radius:0 0 4px 4px;
    display: flex;
    display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
}

.coupon-wrap .btn-download .ico-download {
    display:block;
	width:20px;
    height: 20px;
    background: #fff url(/resources/images/icon/ico_coupon_down.svg) center center/100% no-repeat;
    border-radius: 100%;
}

.coupon-wrap .btn-link {
    display: inline-block;
    position: relative;
    height: 20px;
    line-height: 20px;
    border-radius: 10px;
    font-size: 11px;
    color: #000;
    background-color: #fff;
    padding: 0px 20px 0px 10px;
}
.coupon-wrap .btn-link::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg)

}
/* 쿠폰적용 버튼  */
.coupon-wrap .btn-choice {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0px 30px;
    background-color: #fff;
    text-align: center;
    border: solid 1px #000;
    color: #000;
    border-radius: 0.2em;
}

/* 아이콘쿠폰 */
.coupon-wrap.icon-coupon {
    height: 186px;
}

/* 빅쿠폰  */
.coupon-wrap.big-coupon  {
    height: 163px;
}

.coupon-wrap.big-coupon .btn-download {
    height: 40px;
}
/* 스몰 쿠폰  */
.coupon-down-list .swiper-container.small-coupon-list > ul > li {
	max-width:250px;
	width:auto;
}

.coupon-wrap.small-coupon {
    height: 120px;
}
.coupon-wrap.small-coupon.h-auto {
    height: auto;
    min-height: 120px;
}

.coupon-wrap.small-coupon h3 {
    padding: 13px 15px 5px;
    font-size: 13px;
}
.coupon-wrap.small-coupon .coupon-cont {
    padding: 0 15px 36px;
}
.coupon-wrap.small-coupon .coupon-cont .txt {
    font-size:10px;
}
.coupon-wrap.small-coupon .coupon-per {
    font-size: 32px;
}
.coupon-wrap.small-coupon .coupon-ico-tit {
    padding: 13px 15px 5px;
    font-size: 12px;
}
.coupon-wrap.small-coupon .coupon-ico-tit .coupon-ico {
    display:inline-block;
	width:auto;
	height:22px;
	line-height:22px;
	border-radius: 11px 11px;
	padding:0px 15px 0px 35px;
	font-size:11px;
	
}
.coupon-wrap.small-coupon .coupon-ico-tit .coupon-ico.gift:after{
	margin-top:-7px;
	width:14px;
	height:14px;
	background: url(/resources/images/icon/gift_icon.svg) no-repeat center center / 14px auto; 
}
.coupon-wrap.small-coupon .coupon-ico-tit .coupon-name {
    font-size: 13px;
}
.coupon-wrap.small-coupon.icon-coupon {
    height: 155px;
}

/* 쿠폰컬러변경 */

.coupon-wrap.purple-coupon .coupon-line {
	border:solid 1px #9c69e0;
}

.coupon-wrap.purple-coupon:before, .coupon-wrap.purple-coupon:after {
	border:solid 1px #9c69e0;
}

.coupon-wrap.purple-coupon .btn-download {
    color: #666;
	background:#f2ebfb;
	border-bottom:solid 1px #9c69e0;
	border-left:solid 1px #9c69e0;
	border-right:solid 1px #9c69e0;
}

/* 팝업쿠폰 */
.pop-coupon-line {
    width:100%;
	height:5px;
	background-color:#ddd;
	margin:0px 0px 15px;
}

/* 크레딧 카드 리스트 */
.creditcard-list > ul > li {
    width: 200px;
}

.creditcard-list .creditcard-info {
    width: 100%;
    border: solid 1px #e0e0e0;
    background-color: #fff;
    border-radius: 0.4em;
    padding: 20px 15px;
    position: relative;
}
.creditcard-list .creditcard-info .card-ico {
    display: block;
    width: 100%;
    height: 45px;
    background:#fff url(/resources/images/common/credit_card_ico.svg) no-repeat left top / auto 45px; 
}

.creditcard-list .creditcard-info .card-info {
    display: block;
    width: 100%;
    padding: 10px 0px 0px;
    font-size: 12px;
}

/* swiper 
============================================================================= */
:root {
--swiper-theme-color: #fff;
--swiper-black-color: #000;
}

.swiper-container {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
}
.swiper-slide {    
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box; 
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/* pagination */
.swiper-pagination {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin:20px 0px 0px;
    text-align: center;
    line-height: 1;
    background: transparent;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    display: inline-block;
    border-radius: 100%;
    background: transparent;
    opacity: 0.8; 
    cursor: pointer;
    background: #e5e5e5;
}

.swiper-pagination-bullet-active{
    opacity: 1;
    background: #333;
}

/* fraction */
.swiper-pagination.swiper-pagination-fraction {
    position: absolute;
    left: initial;
    right: 10px;
    bottom: 15px;
    padding: 0px 15px;
    width: auto;
    height: 30px;
    line-height: 30px;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    border-radius: 15px;
    background: rgba(207, 207, 207, 0.5);
	margin:0px 0px 0px;
    z-index: 9;
}

/* pagination - design type */

/* pagination - design type 컬러 */
.swiper-pagination-b-w .swiper-pagination-bullet {
    background: #fff;
}
.swiper-pagination-b-w .swiper-pagination-bullet-active {
    background: #333; 
}


/* pagination - position */
.swiper-pagination-in-b10 .swiper-pagination {
    position: absolute;
    bottom: 10px;
}

.swiper-pagination-in-t20 .swiper-pagination {
    position: absolute;
	top:20px;
}


/* 슬라이드 두개 이상일때 pagination 노출 */
.swiper-wrapper.disabled { 
    transform: translate3d(0px, 0, 0) !important;
 }
.swiper-pagination.disabled { 
    display: none; 
}

/* button - base - prev-next */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0!important;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0!important;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after {
    content: '';
    width: 28px;
    height: 28px;
    border-top: 3px solid var(--swiper-theme-color);
    border-right: 3px solid var(--swiper-theme-color);
    transform: rotate(225deg);
}

.swiper-button-next{
  right: 10px;
  left: auto;
}
.swiper-button-next:after {
    content: '';
    width: 28px;
    height: 28px;
    border-top: 3px solid var(--swiper-theme-color);
    border-right: 3px solid var(--swiper-theme-color);
    transform: rotate(45deg);
}



/* swiper button white small */
.swiper-button-white .swiper-button-prev,
.swiper-button-white .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 10;
}
.swiper-button-white .swiper-button-prev:after,
.swiper-button-white .swiper-button-next:after {
    content: ' ';
    display: block;
    width: 18px;
    height: 18px;
    border-top: 2px solid var(--swiper-theme-color);
	border-right: 2px solid var(--swiper-theme-color);

}
.swiper-button-white .swiper-button-prev {
    left: 10px;
}
.swiper-button-white .swiper-button-prev:after {
    transform: rotate(225deg);
}
.swiper-button-white .swiper-button-next {
    right: 10px;
}
.swiper-button-white .swiper-button-next:after {
    transform: rotate(45deg);
}
.swiper-button-white .swiper-button-disabled {
    opacity: .4;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}   
.swiper-button-white .swiper-button-lock { 
    display: none; 
}

/* button - prev-next - bg-arr-style */
.bg-arr-1 .swiper-button-prev, 
.bg-arr-1 .swiper-button-next {
    width: 26px;
    height: 26px;
    margin-top: -13px;
	background-color:#333;
	opacity: .4;
	border-radius: 100% 100%;
}

.bg-arr-1 .swiper-button-prev:after, 
.bg-arr-1 .swiper-button-next:after {
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--swiper-theme-color);
    border-right: 2px solid var(--swiper-theme-color);
	opacity: 1;
}

.bg-arr-1 .swiper-button-prev:after {
    margin-left: 4px;
}

.bg-arr-1 .swiper-button-next:after {
    margin-right: 4px;
}


.bg-arr-1.big .swiper-button-prev, 
.bg-arr-1.big .swiper-button-next {
    width: 36px;
    height: 36px;
    margin-top: -18px;
}

.bg-arr-1.big .swiper-button-prev:after, 
.bg-arr-1.big .swiper-button-next:after {
    width: 14px;
    height: 14px;
}

.bg-arr-1.big .swiper-button-prev:after {
    margin-left: 6px;
}

.bg-arr-1.big .swiper-button-next:after {
    margin-right: 6px;
}


/* gallery opacity */
.gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/* 입금계좌 안내 function 공통사용 주문페이지 마이페이지
============================================================================= */
.payment-account-info .tit {
    padding: 5px 0px 5px;
    font-weight: 600;
}

/* notice
============================================================================= */
.notice-area > ul > li {
    display:flex;
	text-align:left;
}

.notice-area .exclamation-mark {
    display:block;
	width:26px;
	height:26px;
	margin:0px 10px 0px 0px;
}

/* 리뷰 포인트 지급안내*/
.wrap-review-reward .reward-top {
    margin:15px 15px 15px;
}
.wrap-review-reward .reward-top .point-icon {
    width:90px;
	display:block;
	margin:0 auto;
	padding:0px 0px 10px;
}
.wrap-review-reward .reward-top .point-icon img { width:100%;}

.wrap-review-reward .reward-top .reward-top-info {
    text-align:center;
}
.wrap-review-reward .reward-toggle-bt{
    height:40px;
	line-height:40px;
	background-color:#f8f9fb;
	color:#ff6699;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	border:solid 1px #eee;
}

.wrap-review-reward .reward-toggle-bt .toggle-icon {
    width:12px;
	height:9px;
	margin:0px 0px 0px 8px;
}

.wrap-review-reward .reward-toggle-bt .toggle-icon.down {
    background: url(/resources/images/icon/pink_arr_down.svg) no-repeat right center / 12px auto;
}

.wrap-review-reward .reward-toggle-bt .toggle-icon.up {
    background: url(/resources/images/icon/pink_arr_up.svg) no-repeat right center / 12px auto;
}

.wrap-review-reward .reward-info {
    padding:0px 0px 30px 0px;
	border-bottom:solid 1px #eee;
}

.wrap-review-reward .reward-info .content + .content {
    margin:15px 15px 0px;
	text-align:left;
}

.wrap-review-reward .reward-info .reward-terms {
    border-bottom:solid 1px #eee;
    border-left:solid 1px #eee;
    border-right:solid 1px #eee;
	padding:20px 15px;
	font-size:14px;
	text-align:left;
}

.wrap-review-reward .reward-info em {
    font-weight:700;
	color:#ff6699;
}

.wrap-review-reward .reward-info h3 {
    display:block;
	text-align:left;
	padding:0px 0px 5px 0px;
	font-weight:700;
}

/* 검색
============================================================================= */
.search-bar {
    width: 100%;
    height: 40px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(#fff, #fff), 
    linear-gradient(90deg, rgba(127,167,244,1) 0%, rgba(183,130,246,1) 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
}

.search-bar input{
    flex:1;
	text-align: left;
    padding: 0px 15px !important;
    height: 38px !important;
    line-height: 38px;
    font-size: 16px !important;
    color: #111 !important;
    font-weight: normal !important;
    border: solid 0px #FFF !important;
}

.search-bar a {
    width: 50px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar a img {
    width:28px;
	height:28px;
}


/* 검색 팝업 */
/*모바일피씨버전 호환수정*/
.search-pop .search-pop-body { 
    width: 100%;
    position: fixed;
    right: 0;
    transform: translateX(100%);
    top: 0px;  
	height:100dvh; 
    background: #fff; 
    transition: all 0.4s; 
    z-index: 10002; 
}

.search-pop.active .search-pop-body { 
    right: 50%;
    transform: translateX(50%);
}
/*모바일피씨버전 호환수정*/

/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .search-pop.active .search-pop-body {
        width: 600px;
    }
}
/*모바일피씨버전 호환추가*/

.search-pop-body .search-pop-header {
    display: flex;
	position:relative;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 50px;
	width:100%;
    border-bottom: 1px solid rgb(241, 241, 241);
    background: rgb(255, 255, 255);
    text-align: center;
    z-index: 10;
}

.search-pop-body .search-pop-header .title {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
}
.search-pop-body .search-pop-header .close-bt {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    background: url(/resources/images/common/ico_close_b.svg) center center/18px no-repeat;
    z-index: 10005;
    cursor: pointer;
}

.search-pop-body .search-bar-wrap {
    width: 100%;
	height:70px;
    background-color: #fff;
    padding: 0px 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.search-pop-body .search-pop-contents {
    width:100%;
    height: calc(100dvh - 120px);
	overflow-y: auto;
	padding:0px 0px 30px;
}

.search-pop-body .search-pop-contents .keyword-area {
    width:100%;
	height:auto;
}

.search-pop-body .search-pop-contents .keyword-area .title {
    height:40px;
	width:100%;
	background-color:#f5f5f5;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
	padding:0px 16px;
}

.search-pop-body .search-pop-contents .keyword-area .title span {
    display:inline-block;
	color:#333333;
	font-weight:600;
	font-size:14px;
}

.search-pop-body .search-pop-contents .keyword-area .title .all-del {
    display:inline-block;
	color:#999;
}

.search-pop-body .search-pop-contents .keyword-area .keyword {
    width:100%;
}

.search-pop-body .search-pop-contents .keyword-area .keyword > ul > li {
    margin-bottom: -1px;
    border-bottom: 1px solid #e8e8e8;
	padding:0px 16px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
}

.search-pop-body .search-pop-contents .keyword-area .swiper-keyword{
    padding:16px 0px 0px 10px;

}
.search-pop-body .search-pop-contents .keyword-area .swiper-keyword > ul > li {
	padding:0px 10px 0px 16px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	border:solid 1px #ddd;
	border-radius: 17px;
	width:auto;
}

.search-pop-body .search-pop-contents .keyword-area .keyword .column-1 {
    flex-flow: column wrap;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.search-pop-body .search-pop-contents .keyword-area .keyword .column-1 > li {
    width: 100%;
    display: flex;
	align-items: center;
}

.search-pop-body .search-pop-contents .keyword-area .keyword .column-2 {
    flex-wrap: wrap;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.search-pop-body .search-pop-contents .keyword-area .keyword .column-2 > li {
    width: 50%;
    display: flex;
	align-items: center;
}

.search-pop-body .search-pop-contents .keyword-area .keyword a {
    display: flex;
	align-items: center;
	position:relative;
	height:46px;
	line-height:46px;
	flex:1;
	text-align:left;
}

.search-pop-body .search-pop-contents .keyword-area .swiper-keyword a {
    display: flex;
	align-items: center;
	position:relative;
	height:34px;
	line-height:34px;
	flex:1;
	text-align:left;
}

.search-pop-body .search-pop-contents .keyword-area .keyword .del,
.search-pop-body .search-pop-contents .keyword-area .swiper-keyword .del {
    width:20px;
	height:20px;
	display:block;
	border-radius: 100%;
	margin:0px 0px 0px 10px;
	background:#e7e7e7 url(/resources/images/common/ico_close_w.svg) no-repeat center center / 10px auto;
}

.search-pop-body .search-pop-contents .keyword-area .keyword .search-bt {
    width:20px;
	height:20px;
	display:block;
	border-radius: 100%;
	margin:0px 10px 0px 0px;
	background:#eee url(/resources/images/common/ico_search.svg) no-repeat center center / 10px auto;
}

.search-pop-body .search-pop-contents .keyword-area .keyword a span {
	color: #f33f46;
	font-weight: 700;
	margin-right: 5px;
}

/* 상점검색 */
.wrap-swiper-shop {
    padding: 0px 0px 0px 16px;
}
.wrap-swiper-shop > ul {
    flex-flow: row nowrap;
	margin:0px 0px 0px -10px;
}

.wrap-swiper-shop > ul > li {
    width:auto;
	padding:0px 0px 0px 10px;
}

.shop-list.list-sm.swiper-shop-list { 
    padding: 10px 10px; 
	border:solid 1px #eee;
	border-radius: 8px 8px;
}

.shop-list.list-sm.swiper-shop-list .txt {
    width:160px;
}

/* mail magazin */
.magazin-title {
    width:100%;
	background:#fe9a9c url(/resources/images/mail_magazin/magazin_title_bg.png?v=2) no-repeat left top / 100% auto;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	padding:15px 15px;
	overflow:hidden;
}

.magazin-title.small {

}

.magazin-title i {
     width:60px;
	 height:60px;
	 margin:0px 15px 0px 0px;
	 display:block;
}

.magazin-title.small i {
     width:50px;
	 height:50px;
	 margin:0px 10px 0px 0px;
}

.magazin-title .text {
    flex:1;
	text-align:left;
}

.magazin-title .text h3 {
    color:#fff952;
	font-size:15px;
}

.magazin-title.small .text h3 {
	font-size:14px;
}

.magazin-title .text p {
    color:#fff;
	font-size:13px;
	padding:4px 0px 0px 0px;
	line-height:1.2em;
}

.magazin-title.small .text p {
	font-size:12px;
}

.wrap-magazin-contents {
    background-color:#fafafa;
	padding:10px 10px;
}
.magazin-contents {
    background-color:#fff;
	border-radius: 12px 12px;
	text-align:left;
	padding:15px 0px;
}
.magazin-contents .contents {
    padding:12px 15px;
}

.magazin-contents .contents.gray {
    padding:15px 15px !important;
    background-color:#fafafa;
}


.magazin-contents .contents h3 {
    font-size:14px;
	color:#111;
	padding:0px 0px 4px 0px;
}

.magazin-contents .contents p {
    font-size:12px;
	color:#333;
	line-height:1.4em;
}

.magazin-contents .contents p .count {
    color:#fe9a9c;
}

.magazin-contents .contents .info {
    color:#666;
	padding:4px 0px 0px 0px;
	font-size:12px;
}

.magazin-contents .contents .info a {
    color:#6699cc;
}

.magazin-contents .contents .magazin-input {
    width: 100%;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

.magazin-contents .contents .magazin-input input {
    flex: 1;
    text-align: left;
    padding: 0px 15px !important;
    height: 40px !important;
    line-height: 40px;
    font-size: 14px !important;
    color: #111 !important;
    font-weight: normal !important;
    border: solid 1px #bbb !important;
	border-radius:4px 0px 0px 4px;
}

.magazin-contents .contents .magazin-input .input-bt {
	height:40px;
	line-height:40px;
	padding:0px 10px;
	background-color:#fe9a9c;
	text-align:center;
	color:#fff;
	margin-left:-1px;
	border-radius:0px 4px 4px 0px;
}


.magazin-contents .contents .column1 {
	display: flex;
	display: -webkit-flex;
	flex-flow: column nowrap;
}

.magazin-contents .contents .column1 > li{
    padding:8px 0px;
	width:100%;
}

.magazin-contents .contents .column2 {
    margin:0px -2px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}

.magazin-contents .contents .column2 > li{
    padding:0px 2px;
	width:50%;
}

.magazin-contents .contents .magazine-bt {
    width:100%;
	border-radius: 8px 8px;
	background-color:#eee;
	display: flex;
	display: -webkit-flex;
	flex-flow: column wrap;
	justify-content: center;
	overflow:hidden;
	padding:15px 10px;
	color:#666;
	z-index:1;
}

.magazin-contents .contents .magazine-bt.on {
	background-color:#fe9a9c;
	color:#fff;
}

.magazin-contents .contents .magazine-bt.gray {
	background-color:#717171;
	color:#fff;
}

.magazin-contents .contents .magazine-bt i {
    width:100%;
	display:block;
	text-align:center;
	margin:0px 0px 8px 0px;
}

.magazin-contents .contents .magazine-bt i img {
    width:42px;
}

.magazin-contents .contents .magazine-bt span {
	display:block;
	width:100%;
	text-align:center;
	font-size:13px;
}

.magazin-contents .contents .btn-check {
    color:#666;
}

/* oder 주소검색 */
.wrap-post-search {
    width:100%;
	overflow:hidden;
	border:solid 1px #eee;
	border-radius: 4px 4px;
	margin:0px 0px 15px 0px;
}

.wrap-post-search .title {
    padding:10px 15px;
	background-color:#f8f8f8;
	text-align:left;
	font-size:15px;
}

.wrap-post-search > ul {
    display:block;
	max-height:150px;
	overflow:auto;
	margin:5px 0px;
}

.wrap-post-search > ul > li {
    padding:10px 15px;
	border-top:solid 1px #eee;
	margin-top:-1px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
}
 
.wrap-post-search > ul > li input[type="radio" i] {
    margin:0px 5px 0px 0px;
}

/* log-in
============================================================================= */
.login-line { border-bottom:solid 1px #f1f1f1;}

.wrap-login > ul > li{ padding:8px 15px;}

.login-contents > ul {margin:-12px 0px 0px;}

.login-contents > ul > li { padding:12px 0px 0px;}

.login-input {
    height:45px;
	line-height:45px;
	width:100%;
	font-size:15px;
	padding:0px 10px;
	border-radius:4px;
	border:solid 1px #CCCCCC;
}

.login-search {
    color:#777;
	font-size:15px;
	font-weight:500;
	display:inline-block;
}

.login-bt {
    width: 100%;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 15px 15px;
    border-radius: 4px;
	font-size:15px;
	font-weight:500;
	color:#fff;
}

.login-bt.dholic {
    background-color: #60A9E6;
    border: solid 0px #60A9E6;
}
.login-bt.sign-up {
    background-color: #ff6699;
    border: solid 0px #ff6699;
}

.login-bt.none {
    background-color: #777;
    border: solid 0px #777;
}
.login-bt.other-site {
    background-color: #fff;
    border: solid 1px #e5e5e5;
    color: #111;
}

.login-bt.icon-list {
    width: 100%;
}

.login-bt.icon-list > ul {
	display:flex;
	display: -webkit-flex;
    justify-content: center; 
}
.login-bt.icon-list > ul > li {
	display:flex;
	display: -webkit-flex;
    align-items: center;
}
.login-bt.icon-list > ul > li.icon {
    width: 26px;
}
.login-bt.icon-list > ul > li.icon img {
    width: 100%;
}
.login-bt.icon-list > ul > li + li {
    margin: 0px 0px 0px 5px;
}

.site-login-bt {
    width:100%;
	display:flex;
	display: -webkit-flex;
	flex-flow: row nowrap;
	align-items: center;
	padding:10px 10px;
	border:solid 1px #e5e5e5;
	border-radius: 4px 4px;
    background-color: #fff;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05); 
}

.site-login-bt.small{
	padding:6px 6px;
	font-size:12px;
}

.site-login-bt i {
    display:block;
	margin:0px 15px 0px 0px;
	width:32px;
	height:32px;
}

.site-login-bt.small i {
	margin:0px 8px 0px 0px;
	width:28px;
	height:28px;
}

.site-login-bt i img {
	width:100%;
}

.login-notice {
    padding:0px 15px;
	width:100%;
	color: #666;
	font-size:14px;
	font-weight:500;
	text-align:left;
}

.login-notice .title {
	color: #ff6699;
	font-size:16px;
	padding:0px 0px 5px;
}

.link-loof { padding:6px 6px;}
.link-loof > ul { margin:-8px 0px 0px 0px;}
.link-loof > ul > li { padding:8px 0px 0px 0px;}


/* 아이콘 인포 테이블 */
.notice-icon-box > dl {
    display: flex;
    display: -webkit-flex;
}

.notice-icon-box > dl > dt {
    flex-shrink: 0;
}
.notice-icon-box > dl > dt i {
    position: relative;
    display: block;
}
.notice-icon-box > dl > dt.exclamation {
    width: 24px;
}
.notice-icon-box > dl > dt.exclamation i {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: solid 1px #ddd;
    border-radius: 100%;
}
.notice-icon-box > dl > dt.exclamation i::before {
    content: '!';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.0em;
}
.notice-icon-box > dl > dd{
    flex-grow: 1;
    padding: 0px 0px 0px 10px;
}

.notice-icon-box > dl > dd p + p {
    padding: 8px 0px 0px;
}

/* 이미지 입력기
============================================================================= */
.wrap_img_input{ 
    width:100%; 
    margin:0 auto; 
    border-radius:0.6em;
    background-color: #f7f7f7;
    overflow: hidden;
    padding: 15px 15px;
}

.wrap_img_input .img_input .img_input_box > ul{
    margin:-10px -10px 0px;
}
.wrap_img_input .img_input .img_input_box > ul:after{
    display:block; 
    content:""; 
    clear:both;
}
.wrap_img_input .img_input .img_input_box > ul > li.thumb{ 
    float:left;
    width:25%; 
    padding: 10px 0px 0px 10px;
}

.wrap_img_input .img_input .img_input_box .thumb .thumb-wrap {
    position: relative;
    height: 0;
    padding-top: 100%;
    overflow: hidden;
    z-index:1;
    border-radius: 0.4em;
}

.wrap_img_input .img_input .img_input_box .thumb .thumb-wrap > img {
    width: 108%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index:2;
}
.wrap_img_input .img_input .img_input_box .thumb .thumb-wrap .close {
    position: absolute;
    display:inline-block;
    cursor: pointer;   
    top:0px; 
    right:0px; 
    z-index:3;    
    width:20px; 
    height:20px; 
    line-height:20px;
    text-align:center; 
    background-color:#111;  
    color:#fff; 
    font-size:10px;
    font-weight: 600;
}

.wrap_img_input .img_input .img_input_box .img_input_box_notice{ 
    display:flex; 
    justify-content: center; 
    align-items:center; 
    text-align:center; 
    width:100%; 
    color:#666;
    padding: 10px 0px 0px;
}
.wrap_img_input .img_input .img_input_box .img_input_box_notice .img_notice_hide_p{
    display:inline-block;
}
.wrap_img_input .img_input .img_input_box .img_input_box_notice .img_notice_hide_m{ 
    display:none;
}
.wrap_img_input .wrap_img_input_bt{ 
    width: 100%; 
     margin:0 auto;  
     padding:15px 0px 0px;
    }
.wrap_img_input .wrap_img_input_bt > ul{ 
    display:flex;
    flex-flow: row wrap;
    align-items:center;  
    margin:0px 0px 0px -15px;
}
.wrap_img_input .wrap_img_input_bt > ul > li{
    padding:0px 0px 0px 15px;
}

.wrap_img_input .wrap_img_input_bt .img_input_bt{ 
    padding: 0px 15px;
    height:34px;
    display:flex; 
    justify-content: center;
    align-items: center; 
    background-color:#FFFFFF; 
    border:solid 1px #ccc;
    border-radius:4px;
}
.wrap_img_input .wrap_img_input_bt .img_input_bt > .pl_icon{
    display:inline-block; 
    width:15px; 
    height:14px; 
    background: url(/resources/images/icon/camera_icon_b.svg) no-repeat left center / 15px auto;
}
.wrap_img_input .wrap_img_input_bt .img_input_bt > .re_icon{
    display:inline-block; 
    width:13px; 
    height:14px;
    background: url(/resources/images/icon/re_icon_b.svg) no-repeat left center / 13px auto;
}
.wrap_img_input .wrap_img_input_bt .img_input_bt > .itext_area{ 
    display: inline-block;
    padding: 0px 0px 0px 8px;
    color: #111;
}

.wrap_img_input .wrap_img_input_notice {
    padding: 10px 0px 0px;
    font-size: 12px;
    color: #777;
}

@media screen and (max-width: 768px) {
    .wrap_img_input .img_input .img_input_box .img_input_box_notice .img_notice_hide_p{ display:none;}
    .wrap_img_input .img_input .img_input_box .img_input_box_notice .img_notice_hide_m{display:inline-block;}
}

/* 배송지 관련
============================================================================= */
.order-adress-pop-loof > ul > li {
    border: solid 1px #ddd;
    border-radius: 0.4em;
    padding: 15px 15px;
    color: #2d2d2d;
}

.order-adress-pop-loof > ul > li + li {
    margin: 10px 0px 0px;
}

.save-adress p.name {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.save-adress p.name i {
    padding: 0px 10px 0px;
    margin: 0px 0px 0px 10px;
    border: solid 1px #2eb2f2;
    color: #2eb2f2;
    font-size: 11px;
    height: 16px;
    border-radius: 8px 8px;

}
.save-adress p + p {
    padding: 6px 0px 0px;
}

.save-adress .bt-area {
    padding: 15px 0px 0px;
}

.save-adress .bt-area > ul {
    display: flex;
    display: -webkit-flex;
}

.save-adress .bt-area > ul > li {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}
.save-adress .bt-area .column-7-3 > li {
    width: 70%;
}
.save-adress .bt-area .column-7-3 > li:last-child {
    width: 30%;
}
.save-adress .bt-area > ul > li.change-bt > button {
    display: inline-block;
    padding: 0px 15px 0px 0px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.save-adress .bt-area > ul > li.change-bt > button + button {
    padding: 0px 0px 0px 15px;
    border-left: solid 1px #c3c3c3;
}

.adress-edit {
    border: solid 1px #ddd;
    border-radius: 0.4em;
    padding: 15px 15px;
    color: #2d2d2d;
}

.adress-edit .contents > ul > li + li {
    padding: 6px 0px 0px;
}

.adress-edit .contents .pd-10-0-0 {
    padding: 10px 0px 0px;
}
.adress-edit .contents .pd-15-0-0 {
    padding: 15px 0px 0px;
}

.adress-edit .contents .tit-text {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.adress-edit .contents .tit-text ~ .tit-text {
    padding: 15px 0px 0px;
} 

.adress-edit .column {
    margin: -3px -3px 0px;
    display: flex;
    display: -webkit-flex;
    
}
.adress-edit .column > li {
    padding: 3px 3px 0px;   
}

.adress-edit .column.between {
    justify-content: space-between;
    align-items: center;
}

.adress-edit .column.column-7-3 > li {
    width: 70%;
}

.adress-edit .column.column-7-3 > li:last-child {
    width: 30%;
}

.adress-edit .column.tel > li {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.adress-edit .column.tel > li:nth-child(even) {
    width: 5%;
}

/* 야후로그인 임시알림
============================================================================= */
.yahoo-login-alarm {
    display: inline-block;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 0px 0px;
    color: #f85f9c;
    width: 100%;
}

/* 작성후기 게시판
============================================================================= */
/* 별점 */
.written-review-star {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    padding: 0px 0px 3px;
}

.written-review-star .star-bg {
    display: block;
    width: 71px;
    height: 12px;
    background: url(/resources/images/icon/star_per.svg) no-repeat -72px center / auto 12px ; 
}

.written-review-star .star-bg .star-over {
    display: block;
    width: 71px;
    height: 12px;
    background: url(/resources/images/icon/star_per.svg) no-repeat 0px center / auto 12px ; 
}
.written-review-star .star-point {
    display: inline-block;
    padding: 0px 0px 0px 8px;
    font-size: 12px;
    font-weight: 600;
}
/* 후기게시판 */
.written-review-list > ul > li {
    padding: 15px 15px 15px;
}
.written-review-list > ul > li + li {
    border-top: solid 1px #ddd;
}

.written-review-wrap .review-data ~ .review-data {
    padding: 10px 0px 0px;
}

.written-review-wrap .review-data.info {
    display: flex;
    display: -webkit-flex;
}

.written-review-wrap .review-data.info .pic {
    flex-shrink: 0;
    width: 60px;
    padding: 0px 10px 0px 0px;
}
.written-review-wrap .review-data.info .pic i {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 0.4em 0.4em;
}

.written-review-wrap .review-data.info .pic i img {
    width: 100%;;
}

.written-review-wrap .review-data.info .option {
    flex-grow: 1;
}
.written-review-wrap .review-data.info .option .data {
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    font-size: 12px;
    color: #666;
}
.written-review-wrap .review-data.info .option .data ~ .data {
    padding: 5px 0px 0px;
}
.written-review-wrap .review-data.info .option .data .loof, 
.written-review-wrap .review-data.info .option .data .tit {
    padding: 0px 5px 0px 0px;
}
.written-review-wrap .review-data.info .option .data .loof + .loof {
    padding: 0px 5px 0px 7px;
    position: relative;
}
.written-review-wrap .review-data.info .option .data .loof + .loof::before {
    content: "";
    display: block;
    width: 2px;
    height: 2px;
    background-color: rgb(102, 102, 102);
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.written-review-wrap .review-data .appraisal {
    background-color: #f7f7f7;
    border-radius: 0.4em 0.4em;
    padding: 8px 8px;
    font-size: 12px;
}
.written-review-wrap .review-data .appraisal > ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    margin: -5px 0px 0px 0px;  
}
.written-review-wrap .review-data .appraisal > ul > li {
    padding: 5px 6px 0px 0px;
    position: relative;
}
.written-review-wrap .review-data .appraisal > ul > li + li {
    padding: 5px 6px 0px 8px;
}
.written-review-wrap .review-data .appraisal > ul > li + li::before {
    content: "";
    display: block;
    width: 2px;
    height: 2px;
    background-color: rgb(102, 102, 102);
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 12px;
} 
.written-review-wrap .review-data .appraisal > ul > li span {
    color: #777;
}
.written-review-wrap .review-data .appraisal > ul > li span em {
    color: #111;
}
.written-review-wrap  .review-data.review {
    display: flex;
    display: -webkit-flex;
    cursor: pointer;
}

.written-review-wrap  .review-data.review .pic {
    position: relative;
    display: block;
}
.written-review-wrap  .review-data.review .pic,
.written-review-wrap  .review-data.review .pic img {
    width: 100%;
}

.written-review-wrap  .review-data.review .review-text p + p {
    padding: 6px 0px 0px;
}
.written-review-wrap  .review-data.review .review-text .review-more {
    font-weight: 600;
    color: #000;
    display: inline-block;
    padding: 0px 15px 0px 0px;
    position: relative;
}
.written-review-wrap  .review-data.review .review-text .review-more::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.written-review-wrap  .review-data.review .review-text .review-more.up::before {
    transform: rotate(315deg);
    margin-top: -2px;
}
.written-review-wrap  .review-data.review .review-text .review-more.down::before {
    transform: rotate(135deg);
    margin-top: -7px;
}

/* 후기닫힌상태 */
.written-review-wrap  .review-data.review.closed {
    flex-flow: row nowrap;
}
.written-review-wrap  .review-data.review.closed .review-text {
    flex-grow: 1;
}
.written-review-wrap  .review-data.review.closed .review-text .text {
	width:100%;
	word-wrap: break-word;
    word-break: break-all;
	display: block;
	display: -webkit-box;
	-webkit-box-orient : vertical;
	-webkit-line-clamp: 3;
	overflow:hidden;
	text-overflow: ellipsis;
}
.written-review-wrap  .review-data.review.closed .review-pic {
    flex-shrink: 0;
    width: 80px;
    padding: 0px 0px 0px 10px;
}
.written-review-wrap  .review-data.review.closed .pic {
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    height: 0;
    padding-top: 100%;
    border-radius: 0.4em;
}
.written-review-wrap  .review-data.review.closed .pic img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.written-review-wrap  .review-data.review.closed .pic .count {
    position: absolute;
    display: inline-block;
    bottom: 0px;
    right: 0px;
    z-index: 3;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: rgba(17, 17, 17, 0.8);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}
/* 후기오픈상태 */
.written-review-wrap  .review-data.review.open {
    flex-flow: column wrap;
}

.written-review-wrap  .review-data.review.open .review-text, .written-review-wrap  .review-data.review.open .review-pic {
    width: 100%;
}

.written-review-wrap  .review-data.review.open .review-pic > ul > li {
    padding: 10px 0px 0px;
}

/* 후기답변 */
.written-review-wrap  .review-data .review-answer-wrap {
    background-color: #f7f7f7;
    border-radius: 0.4em 0.4em;
    padding: 8px 8px;   
}

.written-review-wrap  .review-data .review-answer-wrap .review-answer {
    padding: 0px 0px 0px 35px;
    position: relative;
}
.written-review-wrap  .review-data .review-answer-wrap .review-answer .icon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--my-color-orange);
    border: solid 1px var(--my-color-orange);
    font-size: 16px;
    font-weight: 600;
}
.written-review-wrap  .review-data .review-answer-wrap .review-answer .answer {
    padding: 12px 12px;
    border-radius: 13px;
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    z-index: 2; 
}
.written-review-wrap  .review-data .review-answer-wrap .review-answer .answer::before {
    content: '';
    position: absolute;
    top: 11px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    z-index: 1;
    left: -5px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
/* 2025년 리뉴얼시 수정 */
.tag-search > ul {
    display: flex;
    display: -webkit-flex;
}

.tag-search > ul > li:nth-child(1) {
    flex-grow: 1;   
}

.tag-search > ul > li:nth-child(2) {
    flex-shrink: 0;
    width: 50px;
    padding: 0px 0px 0px 6px;
}

.tag-search .tag-search-btn {
    width: 100%;
    height: 40px;
    background-color: #f8f8f8;
    border: solid 1px #ddd;
    border-radius: 0.4em;
    position: relative;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}

.tag-search .tag-search-btn img {
    width: 15px;
}
/* 태그검색 버튼 */
.wrap-tag-search-sort {
    padding: 0px 15px 0px;
}
.wrap-tag-search-sort > ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    width: 100%;
    margin: -10px 0px 0px -8px;
}

.wrap-tag-search-sort > ul > li, .wrap-tag-search-sort > ul .tag-btn-show {
    width: auto;
    padding: 10px 0px 0px 8px;
    display: inline-block;
}

.wrap-tag-search-sort > ul > li.search-sort-hide {
    display: none;
}

.wrap-tag-search-sort > ul .tag-btn-show{
	display: none;
}

.wrap-tag-search-sort > ul .tag-btn-show .tag-btn {
    position: relative;
    width: 36px;
    height: 30px;
    background-color: #fff;
    border: solid 1px #c9c9c9;
    border-radius: 0.4em;
}

.wrap-tag-search-sort > ul .tag-btn-show .tag-btn::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    margin-top: -7px;
    left: 50%;
    margin-left: -5px;
}

.wrap-tag-search-sort > ul .tag-btn-show .tag-btn.closed::before {
    transform: rotate(315deg);
    margin-top: -3px;
}
/* 2025년 리뉴얼시 수정 */

/* 시스템 점검안내 */
.stsyem-check-wrap {
    width: 100%;
    height: 100dvh;
    background-color: #f1f3f4;
}

.stsyem-check-wrap .stsyem-check {
    width: 90%;
    max-width: 600px;
    min-width: 320px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 10px #e6e6e6;
    border-radius: 0.8em;
    padding: 25px 25px;
    background-color: #fff;
}

.stsyem-check-wrap .stsyem-check .stsyem-check-ico {
    text-align: center;
}

.stsyem-check-wrap .stsyem-check .stsyem-check-ico img {
    width: 70px;
}

.stsyem-check-wrap .stsyem-check .stsyem-check-tit {
    text-align: center;
    font-size: 24px;
    line-height: 1.3em;
    font-weight: 600;
}
.stsyem-check-wrap .stsyem-check .stsyem-check-info {
    padding: 12px 0px 0px;
    text-align: center;
    font-size: 14px;
    color: #5d5d5d;
}
.stsyem-check-wrap .stsyem-check .stsyem-check-date {
    margin: 15px 0px 0px;
    padding: 12px 15px;
    text-align: center;
    background-color: #f7f7f7;
    color: #d62430;
    font-size: 14px;
}

@media only screen and (min-width: 600px) {

    .stsyem-check-wrap .stsyem-check .stsyem-check-ico img {
        width: 140px;
    }
    
    .stsyem-check-wrap .stsyem-check .stsyem-check-tit {
        font-size: 30px;
    }
    .stsyem-check-wrap .stsyem-check .stsyem-check-info {
        padding: 15px 0px 0px;
        font-size: 16px;
    }
    .stsyem-check-wrap .stsyem-check .stsyem-check-date {
        margin: 20px 0px 0px;
        font-size: 18px;
    }
    
}

/* heading title */
.prod-title { 
    position: relative; 
    display: -webkit-flex; 
    display: flex; 
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 15px;
    cursor: pointer;
}

.mypage-wrap .prod-title {
    padding: 0px 0px;
}

.prod-title.cursor-none {
    cursor: auto;
}
.prod-title.pt-2-line{
    height: auto;
    padding: 15px 15px 15px;
}

.prod-title.pd-5-15-15 {
    height: auto;
    padding: 5px 15px 15px;   
}

.prod-title.pd-20-15-5 {
    padding: 20px 15px 5px;
}

.prod-title .prod-title-2line {
    display: -webkit-flex; 
    display: flex; 
	flex-flow: column wrap;
}
.prod-title h3 { 
    color: #333; 
    font-size: 15px; 
	flex:1;
    width: 100%;
    word-break: break-all;
    text-overflow: ellipsis;
	text-align:left;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}
.prod-title > span {
    color: #999;
}
.prod-title .sub-text {
    font-size:12px;
	color:#999;
	padding:0px 0px 0px;
	display:inline-block;
}
.prod-title .btn-more-t {
    display: -webkit-flex; 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    height: inherit;
	width:62px;
	font-size:12px;
	font-weight:700;
	color:#6699cc;
}
.prod-title .btn-more {
    display: -webkit-flex; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: absolute; 
    right: 0; 
    width: 50px; 
    height: inherit; 
    text-indent: -9999px; 
    overflow: hidden; 
}
.prod-title .btn-more:after { 
    content: ''; 
    display: block; 
    width: 10px; 
    height: 10px; 
    border-left: 2px solid #333; 
    border-top: 2px solid #333; 
    transform: rotate(135deg);
}

/* sub title */
.sub-title {
    margin: 15px 16px;
    font-size: 14px;
	text-align:left;
}
.sub-title > strong {
    display: block;
    margin-bottom: 2px;
}
.sub-title .ico {
    margin-right: 6px;
    vertical-align: -3px;
}
.sub-title h2 {
    display: inline-block;
    vertical-align: middle;
}
.sub-title h2 ~ * {
    margin-left: 6px;
}

.sub-title.type-2 > strong {
    font-size:18px;
}

.sub-title.type-2 h2 {
    font-size:12px;
	color:#999;
	font-weight:normal;
}

.detail-title {
    font-size: 18px;
    text-align: center;
    margin: 30px auto 10px;
    font-weight: 300;
    color: #333;
}

.detail-title.title-left {
    text-align: left;
    margin: 30px 15px 10px;
}

.sub-title-pic img {
    width:100%;
}

.detail-title-2 {
    margin: 20px 16px 10px;
    font-size: 16px;
}

/* notice-title */
.notice-title {
	width:100%;
}

.notice-title > dl {
    display: -webkit-flex;
    display: flex;
}

.notice-title > dl > dt {
	padding:0px 8px 0px 0px;
    display: -webkit-flex;
    display: flex;
	align-items: stretch;
}

.notice-title > dl > dd {
    display: -webkit-flex;
    display: flex;
	align-items: center;
    font-size: 12px;
    text-align: left;
    color: #333;
}

.notice-title .ico-speaker {
    display:inline-block;
	width:18px;
	height:18px;
	background:#fff url(/resources/images/icon/ico_speaker.svg) no-repeat left center / 18px auto; 
}

.notice-wrap .notice-type1 {
    font-size:12px;
	line-height:1.4em;
	color:#666;
	font-weight:600;
}

.notice-wrap .question-ico{
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    background: #fff url(/resources/images/icon/ico_question.svg) no-repeat center center/100%;
	margin-left:6px;
}

/* product list layout 
============================================================================= */
/* thumbnail master */
/* 2025년 리뉴얼시 수정 */
.thumbnail-master-wrap {
	width: 100%;
	padding:0px 15px;
}
/* 2025년 리뉴얼시 수정 */

.thumbnail-master-wrap > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start; 
    align-items: flex-start;
    flex-flow: row wrap;
	margin:0px -4px; 
}

.thumbnail-master-wrap > ul > li {
    width: 50%;
	padding:0px 4px;   
}

/*모바일피씨버전 호환추가*/
@media only screen and (min-width: 600px) {
    .thumbnail-master-wrap > ul > li {
        width: 33.33%;   
    }
}
/*모바일피씨버전 호환추가*/

.thumbnail-master-wrap .prod-item {
    width: 100%;        
    padding: 0px 0px 25px;
}

/* thumbnail-wrap 썸네일 커스터마이즈 */

.thumbnail-wrap {
	width: 100%;
	padding:0px 15px;
}

.thumbnail-wrap-zero {
    width: 100%;
}

.thumbnail-wrap-ps5 {
	width: 100%;
	padding:0px 5px;
}

.product-list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start; 
    align-items: flex-start;
}

/* col-1 */
.product-list.column-1 {
    flex-flow: column wrap; 
}
.product-list.column-1 > li {    
    width: 100%;    
}

.product-list.column-1-line { 
    flex-flow: column wrap; 
}

.product-list.column-1-line > li { 
    width:100%;
	border-bottom:solid 1px #eee;
}

.product-list.column-1-ps5 {
    flex-flow: column wrap;
}
.product-list.column-1-ps5 > li {    
    width: 100%;
	padding:0px 5px;    
}

/* col-2 */
.product-list.column-2 {
    flex-flow: row wrap;
	margin:0px -4px;
}
.product-list.column-2 > li {    
    width: 50%;
	padding:0px 4px;    
}

.product-list.column-2-ps5 {
    flex-flow: row wrap;
}
.product-list.column-2-ps5 > li {    
    width: 50%;
	padding:0px 5px;    
}

.product-list.column-2 .prod-item {
    width: 100%;        
    margin-bottom: 30px;
}

/* col-3 */
.product-list.column-3 {
    margin-left: -0.5px;
    margin-right: -0.5px;
    flex-flow: row wrap;
	width:100%; 
}
.product-list.column-3 > li {    
    width: 33.33%;
    padding: 0 0.5px;
}
.product-list.column-3 .prod-item {
    width: 100%;     
	margin-bottom: 20px;
}

.swiper-container .product-list.column-3 {
    margin-left: -0.5px;
    margin-right: -0.5px;
    flex-flow: row nowrap;
	width:auto;
}
.swiper-container .product-list.column-3 > li {    
    width: 31%;
    padding: 0 0.5px;
}

.swiper-container .product-list.column-3 .prod-item {
    width: 100%;     
	margin-bottom: 8px;
}

.swiper-container .product-list .prod-item {
    width: 100%;     
	margin-bottom: 8px;
}

/* 상품 이미지 */
.prod-item .item-pic {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0;
}
.prod-item .item-pic > a {
    position: relative;
    display: block;
    width: 100%;
}

.prod-item .item-pic.on > a {
    padding-top: 127%;
}

.prod-item .item-pic img {
    width: 100%;
}

.prod-item .item-pic.on img, .prod-item .item-pic.square img  {
    width: 100%;
    height: 100%;
    max-width: none;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* 상품 이미지 라운드 */
.product-img-radius .prod-item .item-pic a {
    border-radius: 15px;
}
.product-img-radius.column-1 {
    margin-left: -4px;
    margin-right: -4px;
}
.product-img-radius.product-list.column-2 .prod-item {
    margin-bottom: 8px;
}

/* 랭킹 순서 */
.prod-item .rank-cnt {
    display: none;    
    position: absolute;
    top: 0;
    left: 0;    
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-size: 11px;
    background: #111;
    background: rgba(0, 0, 0, 0.5);
}
.prod-item .rank-cnt.on {
    display: block;
}

/* 상품 정보 안내 */
.prod-item .item-desc {
    margin: 10px 3px 0;
    text-align: left;
    line-height: 1;
}
.prod-item .item-brand a, 
.prod-item .item-name {
	width:100%;
    word-break: break-all;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
	display: block;
}

.prod-item .item-name.line2{
    width: 100%;
    word-wrap: break-word;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
	line-height:1.3em;
}

.prod-item .item-brand {
    margin-bottom: 5px;
}
.prod-item .item-brand a {
    color: #222;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2em;
}
.prod-item .item-name {
    color: #777;
    font-size: 12px;
	line-height:1.2em;
}

.prod-item .item-gift span {
    color: #ff0000;
    font-size: 11px;
	padding:0px 0px 3px;
	display:inline-block;
	text-align:left;
}

.prod-item .item-color {
    display: none;
    margin-top: 4px;
	margin-left: 1px;
    line-height: 14px;
}
.prod-item .item-color.on {
    display: block;
}
.prod-item .item-color .chk-xs {
    margin-right: 4px;
}
.prod-item .item-price {
    margin-top: 5px;
    color: #888; 
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2em;
}
.prod-item .item-price b {
    color: #ff3333;
}

/*좋아요 리뷰 포인트*/
.prod-item .item-line-loof {
    margin: 7px 0px 0px;
}
.prod-item .item-line-loof > ul {
    display: flex;
    display: -webkit-flex;
}
.prod-item .item-line-loof > ul > li {
    padding: 0px 7px 0px 0px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    position: relative;
}
.prod-item .item-line-loof > ul > li + li {
    padding: 0px 7px 0px;
}

.prod-item .item-line-loof > ul > li + li::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background-color: #d6d6d6;
    left: 0px;
    top: 50%;
    margin-top: -5px;
}

.prod-item .item-line-loof .item-icon-info {
    display: flex;
    display: -webkit-flex;
}

.prod-item .item-line-loof .item-icon-info i {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}
.prod-item .item-line-loof .item-icon-info i.favorite {
    width: 11px;
}
.prod-item .item-line-loof .item-icon-info i.review {
    width: 12px;
}

.prod-item .item-line-loof .item-icon-info i img {
    width: 100%;
}

.prod-item .item-line-loof .item-icon-info span {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    padding: 0px 0px 0px 5px;
    font-size: 11px;
    color: #777;
    line-height: 12px;
}

/*슬라이딩 사이즈 조절*/
@media only screen and (max-width: 600px) {
    .prod-item .item-desc.sm .item-line-loof > ul > li {
        padding: 0px 4px 0px 0px;
    }
    .prod-item .item-desc.sm .item-line-loof > ul > li + li {
        padding: 0px 4px 0px;
    }
    .prod-item .item-desc.sm .item-line-loof .item-icon-info i.favorite {
        width: 10px;
    }
    .prod-item .item-desc.sm .item-line-loof .item-icon-info i.review {
        width: 11px;
    }
    .prod-item .item-desc.sm .item-line-loof .item-icon-info span {
        padding: 0px 0px 0px 3px;
        font-size: 11px;
        line-height: 1;
    }
}

/*슬라이딩 사이즈 조절*/

/*좋아요 리뷰 포인트*/
.prod-item .item-cart {
    margin-top: 12px;
}

.prod-item .item-cart button{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    font-size: 12px;
    color: #333;
    height: 22px;
    width: 100%;
}

.prod-item .item-cart button i{
    display: block;
    width: 20px;
    height: 20px;
    margin: 0px 5px 0px 0px;
    border-radius: 100%;
    background:#7ed5ff url(/resources/images/icon/ico_cart_w.svg) no-repeat center center / 12px auto;
}
.prod-item .item-badge {
    margin-top: 7px;
}
.prod-item .item-badge span {
    display: inline-block;
    height: 18px;
    line-height: 18px;    
    padding: 0 5px;
    margin: 2px 2px 0px 0px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
}
.prod-item .item-desc.sm .item-badge span {
    height: 16px;
    line-height: 16px;
    font-size: 10px;
}
.prod-item .item-badge .icon-color {
    color: #f22626 !important;
    font-size: 11px !important;
    padding: 0px 1px !important;
}

.prod-item .item-delivery {
    margin-top: 8px;
	margin-bottom: 12px;
    font-size: 11px;
    color: #CC66CC;
}

/* 상품 정보 안내 - small */
.prod-item .item-desc.sm .item-name {
    font-size: 11px;
}
.prod-item .item-desc.sm .item-price {
    font-size: 12px;
}

/* 최저가 아이콘 */
.prod-item .thumbnail_icon {
    z-index:11;
	display:block;
	position:absolute;  
	left:0px;
	bottom:0px;
	max-width:100%;
	padding:0px 5px;
	height:20px;
	line-height:20px;
	margin:0px 40px 0px 0px;
	color:#FFF;
	font-size:11px;
	letter-spacing:0.05em;
	font-family:var(--font-noto-hiragino);
}
.prod-item .thumbnail_icon.emblem_red {background: rgba(238, 82, 82, 0.9);}
.prod-item .thumbnail_icon.emblem_orange {background: rgba(248, 152, 101, 0.9);}
.prod-item .thumbnail_icon.emblem_blue {background: rgba(109, 141, 246, 0.9);}
.prod-item .thumbnail_icon.emblem_green {background: rgba(134, 208, 74, 0.9);}

/* 동영상 아이템 */
.prod-item .thumbnail_movie_icon {
    z-index:11;
	position:absolute;  
	left:9px;
	bottom:9px;
	width:20px; 
	height:20px; 
	border:solid 1px #FFFFFF; 
	border-radius: 100%;
	background:url(/images/icon/pic_movie_icon.svg) no-repeat;
	background-position:6px 50%;
	background-size:8px;
	box-shadow : 1px 1px 3px -1px rgba(0, 0, 0, 0.7);
}

/* 찜하기 - heart */
.prod-item .thumbnail_zzim_bt {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(/resources/images/icon/ico_like.svg?v=5) center center/20px no-repeat;
    cursor: pointer;
    z-index: 10;
	width:40px;
	height:40px;
}
.prod-item .thumbnail_zzim_bt.on {
    background-image: url(/resources/images/icon/ico_like_on.svg?v=8);
}

/* 상품 checked */
.prod-item .item-chk {
    display: none;
}
.prod-item .item-chk.on {
    display: block;
}
.prod-item .item-chk .btn-chk {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    background: url(/resources/images/icon/ico_zzim_chk.svg) center center/22px no-repeat;
    cursor: pointer;
    z-index: 10;
}
.prod-item .item-chk .checked {
    background: url(/resources/images/icon/ico_zzim_chked.svg) center center/22px no-repeat;
}
.prod-item .item-chk .disable {
    background: url(/resources/images/icon/ico_zzim_disable.svg) center center/22px no-repeat;
}

/* product thumbnail wrap */
.product-thumbnail-list {
    padding: 5px 0px 0px;
}

.product-thumbnail-list.margin-high {
    margin-top: 25px !important;
}
/* 2025년 리뉴얼시 수정 */
.product-slide-list {
    position: relative;
    padding: 5px 0px 0px;
}
.product-slide-list.line-thin:before {
    top: -5px;
}
.product-slide-list .swiper-container {
    padding: 0 0 15px 10px;
}
/* 2025년 리뉴얼시 수정 */
.line-thick + .product-slide-list { 
    margin-top: 5px;
}

/* main brand rank */
.product-slide-list .brand-swiper-wrap {
    padding: 0 0 0px 10px;
}

.swiper-brand-rank > ul > li {
    width: auto;
    margin-right: 15px;
}

.swiper-brand-rank .brand-rank-thum {
    width: 100px;
}

.swiper-brand-rank .brand-rank-thum a {
    display: block;
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
    z-index: 1;
    border-radius: 100%;
    border: solid 4px #fff;
    box-shadow: 0px 2px 7px 2px rgb(0 0 0 / 6%);
}

.swiper-brand-rank .brand-rank-thum a i {
    z-index: 3;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.swiper-brand-rank .brand-rank-thum a span {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
    font-size: 14px;
    color: #fff;
    text-align: center;
    padding: 0px 0px 0px;
}

.swiper-brand-rank .brand-rank-thum p {
    text-align: center;
    font-size: 12px;
    padding: 10px 0px 0px 0px;
}

/* product thumbnail multiplex */
.thumbnail-multiplex {
    margin: 0 15px;
}
.thumbnail-multiplex .thumb-main {
    margin-bottom: 1px;
}

/* 검색필터 
============================================================================= */
/* check 아이콘 */
.ico-chk { 
    position: relative; 
    margin-right: 6px; 
    vertical-align: middle; 
    background: #e9e9e9;
}
.ico-chk:after { 
    content: ''; 
    position: absolute; 
    right: 50%; 
    border-right: 2px solid #fff; 
    border-bottom: 2px solid #fff; 
    transform: translateX(50%) rotate(45deg); 
}

/* check 아이콘 사이즈 */
.chk-xs { 
    display: inline-block;
    width: 8px; 
    height: 8px; 
    border-radius: 100%; 
    border: 1px solid transparent;
}
.chk-sm { 
    display: inline-block;
    width: 22px; 
    height: 22px; 
    border-radius: 100%; 
    border: 1px solid transparent;
}
.chk-sm:after { 
    top: 4px; 
    width: 6px; 
    height: 10px; 
}
.chk-md { 
    display: inline-block; 
    width: 26px; 
    height: 26px; 
    border-radius: 100%; 
    border: 1px solid transparent;
}
.chk-md:after { 
    top: 4px; 
    width: 8px; 
    height: 13px; 
    border-color: transparent; 
}

/* check 아이콘 Modifier */
.btn-check.on .chk-sm { background: #ff8a8a; }
.color-check.on { color: #111; }
.color-check.on .chk-md:after { border-color: #fff; }
.color-check.on .c-white:after { border-color: #000; }

.salerate-check.on { color: #111; }
.salerate-check.on .chk-md:after { border-color: #fff; }
.salerate-check.on .c-white:after { border-color: #000; }

/* 컬러표 */
.c-white { background: #fff!important; border-color: #ccc!important;}
.c-black { background: #000!important; }
.c-beige { background: #cdb186!important; }
.c-gray { background: #a7a7a7!important; }
.c-brown { background: #883d00!important; }
.c-red { background: #ff3d3d!important; }
.c-orange { background: #ff9000!important; }
.c-yellow { background: #ffda25!important; }
.c-pink { background: #ff8ed6!important; }
.c-mint { background: #00c7b0!important; }
.c-green { background: #007b12!important; }
.c-blue { background: #5b81ff!important; }
.c-navy { background: #253380!important; }
.c-purple { background: #652d98!important; }
.c-gold { border:0; background: url(/resources/images/color/gold.png) no-repeat center center/100% auto; }
.c-silver { border:0; background: url(/resources/images/color/silver.png) no-repeat center center/100% auto; }
.c-multi { border:0; background: url(/resources/images/color/multi.png) no-repeat center center/100% auto; }
