@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');

@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', 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;
}
div, ul, li {
    font-family: inherit;
}
img {
    border: 0;
    max-width: 100%;
}
img, svg {
    vertical-align: top;
}
/* visible */
.d-block{display:block}
.hide { 
    display: none!important;
}
.hide.on { 
    display: block!important;
}
.hidden { 
    display: none;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
}
@media only screen and (min-width: 1025px) {
.space{ width:100%; height:20px;}
}

/* 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 {
    width: 100%;
    background-color: transparent;
    border: 0;
}

hr.mb-30{
    margin-bottom:30px;
}

hr.line-thick-gray {
    height: 6px;
    background: #f5f5f5;
}

hr.line-thin-g {
    height: 1px;
    background: #ddd;
}
hr.line-thin {
    height: 1px;
    background: #eee;
}

.line-thin-top{ border-top:solid 1px #eee;}
.line-thin-bottom{border-bottom:solid 1px #eee;}

hr.line-thick {
    height: 6px;
    background: #f5f5f5;
}



.line-thick {
    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;
}

/* heading group */
h6, h5, h4, h3, h2, h1 {
    margin: 0;
    font-weight: 600;
}

h1.maincate-reset {
    margin: 0;
	font-weight: 500;
}

/* interval */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.pb-15 { padding-bottom:0px;}
.ps-10 { padding:0px 10px;}
.pa-15 { padding:15px 15px;}
.pa-10-15 { padding:10px 15px;}

/* width */
.w-100{ width:100%;}
.w-512{ max-width:512px; margin:0 auto;}
@media only screen and (min-width: 1025px) {
.main-section {
    max-width:1025px;
	margin:0 auto;
}
}

/* txt size */
.txt-14 { font-size:14px;}

/* 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-red { color: #d6122e!important; }
.txt-red2 { color: #e25a67!important; }
.txt-red3 { color: #ff0000!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-blue { color: #6699cc!important; }
.txt-blue2 { color: #3aabd5!important; }
.txt-skyblue { color: #30b3f3!important; }
.txt-navy { color: #0000ff!important; }
.txt-gray { color: #999!important; }
.txt-gray7 { color: #777!important; }
.txt-orange { color: #ffa71f!important; }
.txt-yellow { color: #fecf1d!important; }

/* background color */
.bg-yellow { background: #ffb902; }
.bg-green { background: #71d01d; }
.bg-pink { background: #f85f9c; }
.bg-mint { background: #3fd8c5; }
.bg-gray { background: #f3f3f3; }

/* icon */
.banner-ico-position {
    position: relative;
}

.banner-end-ico {
    position: absolute;
    display: inline-block;
}

.banner-end-ico.small{
    width: 30px;
    height: 30px;
}

.banner-end-ico.middle{
    width: 40px;
    height: 40px;
}

.banner-end-ico.big{
    width: 55px;
    height: 55px;
}

.banner-end-ico.left-center {
    left: 15px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.banner-end-ico.left-top {
    left: 0px;
    top: -55px;
}

.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;
}

.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%;
}

/* text */
.ellipsis {
	width:100%;
    word-break: break-all;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
	display: block;
}

.ellipsis_line1 {
	width:100%;
	word-wrap: break-word;
	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;
	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;
}

.text-start {
    text-align: left!important;
}
.text-center {
    text-align: center!important;
}
.text-end {
    text-align: right!important;
}

b, strong {
    font-weight: 700;
}  
small {
    font-size: 11px;
}

/* button common
============================================================================= */
.btn {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    font-size: 13px;
    text-align: center;
    font-weight: 400;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
}  
.btn:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

/* 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-apply:hover, 
.btn-apply:focus {
    color: #fff !important;
    background-color: #e98fcd;
    border-color: #e98fcd;
}

.btn-dark {
    color: #fff !important;
    background-color: #333;
    border-color: #333;
}
.btn-dark:hover, 
.btn-dark:focus {
    color: #fff !important;
    background-color: #333;
    border-color: #333;
}

.btn-blue {
    color: #fff !important;
    background-color: #60A9E6;
    border-color: #60A9E6;
}
.btn-blue:hover, 
.btn-blue:focus {
    color: #fff !important;
    background-color: #60A9E6;
    border-color: #60A9E6;
}

.btn-line-light {
    color: #111 !important;
    background-color: #fff;
    border-color: #ddd;
}
.btn-line-light:hover, 
.btn-line-light:focus {
    color: #111 !important;
    background-color: #f4f4f4;
    border-color: #ddd;
}

/* button size */
.btn-sm { 
    padding: 3px 8px; 
    font-size: 11px; 
}
.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 radius */
.btn-round { 
    border-radius: 50px; 
}

.btn-round-4 { 
    border-radius: 4px 4px; 
}

/* more_button */
.wrap_search_more_bt {
    width: 150px;
    text-align: center;
    margin: 0 auto;
    vertical-align: middle;
	cursor:pointer;
}
.search_more_bt {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #6699CC;
    padding: 0px 22px 0px 10px;
	position:relative;
}

.search_more_bt:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 0px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #6699cc;
    border-right: 2px solid #6699cc;
    transform: rotate(135deg);
}

/* button design
============================================================================= */
/* more button */
.product-more { 
    width: 100%;
    display: block;
    margin: 0 auto 20px;
    text-align: center;
}
.product-more .btn-more {
    font-size: 15px;
    font-weight: 500;
    padding: 0px 15px 15px 15px;
    color: #6699cc;
}
.product-more .btn-more:after {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 0px;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    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;
    background: #fff url(/resources/images/icon/ico_question.svg) no-repeat center center/100%;
}

/* radio bt design
============================================================================= */
.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; font-size: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;
}

/* 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;
}

.label-check-middle [type="checkbox"]  {
    width:19px;
	height:19px;
	position:relative;
	display:inline-block;
    border: 0;
}

.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;
}

/* 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;
	cursor: pointer;
}
.select-box .select-option-name, .select-box .select-option-rows {
    font-size: 15px;
    color: #111;
}

.select-box.select-box-small .select-option-name, .select-box.select-box-small .select-option-rows{
    font-size: 13px;
    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 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 i {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #fff 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 2.3em 0 1em;
    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;
    border: 1px solid #000; 
}
input::-moz-placeholder {
    color: #ddd; 
}
input::-webkit-input-placeholder {
    color: #ddd; 
}
input:-ms-input-placeholder {
    color: #ddd; 
}
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;
}


/* 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 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: 36px;
    height: 36px;
    color: #c1c1c1;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 1px;
    cursor: pointer;
}
.pagination-wrap .active {    
    color: #000;
	font-weight:600;
	border: 2px 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;
}

.pager-wrap {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
	position:relative;
	height:50px;
	border: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 0px;
	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 {
    margin: 20px 0;    
    color: #333;
    text-align: left;
}
.bu-list li + li {
    margin-top: 6px;
}

.bu-list-sm {
    margin-top: 20px;    
    color: #666;
    text-align: left;
    font-size: 11px;
}
.bu-list-sm li + li {
    margin-top: 2px;
}

/* 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;
}

/* bullet mark type */
.bu-mark li {
    position: relative;
    padding-left: 16px;        
}
.bu-mark li:before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}

.bu-mark-sm {
    margin: 10px 0;
}
.bu-mark-sm li {
    position: relative;
    padding-left: 16px;   
    font-size: 11px;     
}
.bu-mark-sm li:before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}

/* bullet wrap area */
.bu-wrap {    
    padding: 18px 15px; 
    background: #f9f9f9;
}
.bu-wrap .bu-list {    
    margin: 0;
    color: #555;
    font-size: 13px;
}
.bu-wrap .bu-list + .bu-list {    
    margin-top: 15px;
}

/* sort design
============================================================================= */
.snb-sort {
    width: 100%;
    padding: 30px 0px 0px;
}

/* sort 레이아웃  */
.snb-sort > ul{
    width: 100%;
    display:flex;
	flex-flow: row wrap;
	align-items: center;
	margin:-5px -5px; 
}

.snb-sort > ul > li {
	padding:5px 5px;
}

.snb-sort .column-2 > li{
    width:50%;
}

.snb-sort .column-3 > li{
    width:33.3%;
}

.snb-sort .column-4 > li{
    width:25%;
}

.snb-sort .column-5 > li{
    width:20%;
}

.snb-sort .column-6 > li{
    width:16.66%;
}

.snb-sort .column-10 > li{
    width: 10%;
}

.snb-sort .column-f > li{
    flex: 1;
}


/* sort size  */
.snb-sort.sort-medium > ul > li a {
    border-radius:19px 19px;
    height:38px;
    line-height:38px;
    padding:0px 12px;
    font-size:14px;
    font-weight:500;
}

.snb-sort.sort-medium2 > ul > li a {
    border-radius:16px 16px;
    height:32px;
    line-height:32px;
    padding:0px 12px;
    font-size:14px;
    font-weight:500;
}

/* black bt sort  */
.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:#333;
	color:#fff;
	border:solid 1px #333;
}

/* toamto bt sort  */
.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;
}
/* red bt sort  */
.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;
}

/* snb sort 메뉴  */
.snb-sort-column2{
    max-width:100%; 
	margin:30px auto;
}

.snb-sort-column2 > dl {
    display:flex;
	justify-content: space-between;
	align-items: center;
}

.snb-sort-column2 > dl > dt {
    display:flex;
	width:60%;
	margin:0px -5px;
	align-items: center;
}

.snb-sort-column2 > dl > dt a {
    display:block;
	border-radius:20px 20px;
	flex:1;
	height:40px;
	line-height:40px;
	text-align:center;
	font-size:16px;
	font-weight:500;
	color:#000;
	background-color:#fff;
	border:solid 1px #eee;
	margin:0px 5px;
}

.snb-sort-column2 > dl > dt a.on{
	background-color:#333;
	color:#fff;
	border:solid 1px #333;
}


.snb-sort-column2 > dl > dd {
    display:flex;
	flex:1;
	justify-content: flex-end;
	align-items: center;
	padding:0px 10px 0px 0px;
}

.snb-sort-column2 > dl > dd a{
    display:inline-block;
	padding:0px 20px 0px 0px;
	height:40px;
	line-height:40px;
	font-size:16px;
	font-weight:500;
	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;
}

/* 상품정렬 sort */

.prod-sort-wrap {    
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
    margin: 20px 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 18px 0px 8px;
    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;
	font-size:15px;
}

/* 필터 sort */
.fiter-sort {
    padding:20px 0px 25px 15px;
}
.fiter-sort > ul {
    margin:0px -9px;
}
.fiter-sort > ul > li {
    width:auto;
	padding:0px 9px;
}

.fiter-sort > ul > li .text-menu {
    display:inline-block;
	height:30px;
	line-height:30px;
	padding:0px 12px 0px 12px;
	color:#333;
	font-size:12px;
}

.fiter-sort > ul > li .text-menu em{
     font-weight:600;
	 font-size:13px;
}

.fiter-sort > ul > li button {
    width:auto;
	height:30px;
	line-height:30px;
    border:solid 1px #e5e5e5;
	border-radius:15px;
	padding:0px 12px 0px 12px;
	color:#888;
	font-size:14px;
	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 30px 0px 12px;
    background:#f9f9f9 url(/resources/images/icon/refresh_icon.svg) no-repeat right 12px center / 11px auto;
    border:solid 1px #e5e5e5;
	color:#333;
}
.fiter-sort > ul > li button.sel-icon {
    padding:0px 30px 0px 12px;
}
.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: -6px;
    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: 25px 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: 50px;
    height: 50px;
    margin: 0px 25px 8px;
    border-radius: 100%;
}

.sns-share-area .ico-line {
    background: #1ac64a url(/resources/images/icon/ico_line.svg) no-repeat center center/28px;
}

.sns-share-area .ico-twitter {
    background: #2aa8e0 url(/resources/images/icon/ico_twitter.svg) no-repeat center center/26px;
}

.sns-share-area .ico-facebook {
    background: #1877f2 url(/resources/images/icon/ico_facebook_w.svg) no-repeat center center/15px;
}

/* header layout 
============================================================================= */
/* header main - black */

.header-area {
    height:70px;
}

.header-wrap {
    position: relative;
    width: 100%;
    height: 70px;
    z-index: 1002;
	margin:0 auto;
}

.header-wrap .header-article {
    position: relative;
    width: 100%;
    height: 70px;
	max-width:1025px;
	margin:0 auto;
    background: #fff;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}


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.event-logo a {
    display: inline-block;
}

.header-wrap .header-title.event-logo a img {
    height: 40px;
}

.header-wrap .header-title .logo {
    font-size: 18px;
    font-weight: 800;
}

.header-wrap .header-title .title {
    font-size: 16px;
    font-weight: 600;
	width:100%;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}

.header-wrap .header-title .logo a {
    display: block;
    width: 110px;
    text-indent: -9999px;
    background: url(/resources/images/common/logo.svg) center center/100% no-repeat;
    overflow: hidden;
}

/* dholicday logo */
.header-wrap .dday-title {
    height: 70px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-wrap .dday-title .wrap-dday-logo {
    display: flex;
    flex-direction: column;
    margin: 10px 0px 0px;
}
.header-wrap .dday-title .wrap-dday-logo .dday-logo {
    font-size: 18px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px -2px 0px;
}
.header-wrap .dday-title .wrap-dday-logo .dday-logo i {
    position: relative;
    top: 0;
    display: inline-block;
    animation: dday-logo-bounce 900ms ease infinite alternate;
    padding: 0px 2px 0px;
}

.header-wrap .dday-title .wrap-dday-logo .dday-logo i img {
    width: auto;
    height: 21px;
}

.header-wrap .dday-title .wrap-dday-logo .dday-logo i:nth-child(2) { animation-delay: 100ms; }
.header-wrap .dday-title .wrap-dday-logo .dday-logo i:nth-child(3) { animation-delay: 200ms; }
.header-wrap .dday-title .wrap-dday-logo .dday-logo i:nth-child(4) { animation-delay: 300ms; }
.header-wrap .dday-title .wrap-dday-logo .dday-logo i:nth-child(5) { animation-delay: 400ms; }
.header-wrap .dday-title .wrap-dday-logo .dday-logo i:nth-child(6) { animation-delay: 500ms; }

@keyframes dday-logo-bounce {
    100% {
      top: -10px;
    }
  }

  .header-wrap .dday-title .wrap-dday-logo .dday-logo-sub {
    display: inline-block;
    margin: 0 auto;
    height: 10px;
  }

  .header-wrap .dday-title .wrap-dday-logo .dday-logo-sub img {
    height: 10px;
    width: auto;
  }
/* dholicday logo */

.header-wrap .bar-left, 
.header-wrap .bar-right {
    position: absolute;
}
.header-wrap .bar-left { left: 12px; }
.header-wrap .bar-right { 
    display: -webkit-flex;
    display: flex;
    right: 5px; 
}

.header-wrap [class*="btn-"] {
    position: relative;
    display: -webkit-flex;
    display: flex;
    align-items: center;
	justify-content: center;
    padding: 10px 25px 10px 7px;
}

.header-wrap [class*="btn-"] img {
    height:20px;
}

.header-wrap .btn-search img {
    height:21px;
}

.header-wrap .btn-menu img {
    height:21px;
}

.header-wrap .btn-cart {
    padding: 9px 9px 9px 0px;
}

.header-wrap .btn-cart img {
    height:22px;
}

.header-wrap .count {
    display:inline-block;
	padding:3px 0px 0px 5px;
    font-size:14px;
	color:#999;
	font-weight:500;
}

.header-wrap .btn-shop{
    width:100px;
	font-size:12px;
	padding:3px 0px 0px 23px;
	color:#555;
}
.header-wrap .btn-shop:before {
    content: '';
	position:absolute; 
	left:5px; 
	top:50%;
	margin-top:-7px;
	width:14px;
	height:14px;
	background: url(/resources/images/icon/ico_star_zzim.svg) left center/14px no-repeat;
}


/* 메뉴 sticky */
.headerFix .header-wrap.is-hidden {	
    -webkit-transform: translateY(-100%); 
    -ms-transform: translateY(-100%); 
    transform: translateY(-100%); 
}

.headerFix .header-wrap { 
    position: fixed; 
    top:0px;;
	left:0px;
	width: 100%; 
    -webkit-transition: -webkit-transform .3s; 
    transition: -webkit-transform .3s; 
    transition: transform .3s; 
    transition: transform .3s,-webkit-transform .3s;
 }
 
.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: 1025px) {
.mainFix .main-cate {
    max-width: 1025px;
}
}

.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(70px); 
    -ms-transform: translateY(70px); 
    transform: translateY(70px);
}

/* 디폴트 메인 메뉴 sticky 별도  */
.main-cate-hidden {
    display:none;
}
.mainFix .main-cate-hidden{
    display:block;
}


/* gnb 메뉴 */
.gnb-menu {
    max-width:1025px; 
    padding: 0px 5px;
	margin:0 auto
}

.gnb-menu:after {
    display: block;
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    border-bottom: 0px solid #eee;
}

.gnb-menu .swiper-slide {
    padding: 5px 25px 8px 14px;
	width: auto;
}

.gnb-menu a {
    width: auto;    
	color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.6rem;
    display: -webkit-flex;
    display: flex;
	align-items: center;
	position:relative;
}

.gnb-menu a.on {
    color: #D6122E;
    font-weight: 500;
}
.gnb-menu a.on:after {

    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #EC6467;
}

.gnb-menu [class*="ico-"] {
    margin-right:8px;
	display:block;
}

.gnb-menu a .ico-shop {
    width:20px;
	height:17px;
    background: url(/resources/images/common/ico_t_shop.svg) left center/20px no-repeat; 
}

.gnb-menu a.on .ico-shop {
    background: url(/resources/images/common/ico_t_shop_red.svg) left center/20px no-repeat; 
}

/* top banner 
============================================================================= */
.top-banner {
    position: relative;
    width: 1025px;
    margin: 0 auto;
    text-align: center;
}
.top-banner a {
    display:block;
	width: 100%;
}
.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;;
}
/* footer layout 
============================================================================= */
.footer-section {
    width: 100%;
	margin:25px 0px 0px;
}
.footer-wrap {
    position: relative;
    width: 1025px;
    padding: 20px 20px 80px;
    border-top: 1px solid #e4e4e4;
    background: #f7f7f7;
	margin:0 auto;
}
.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 */
.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); }

/* appicon menu */
.footer-accor-menu .appicon-list {
    display: -webkit-flex;
    display: flex;
    margin: 15px 0 25px;
}

.footer-accor-menu .appicon-list a {
	display:block;
	margin-right: 20px;
}

.footer-accor-menu .appicon {
    display: -webkit-flex;
    display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.footer-accor-menu .appicon p {
    padding:0px 10px 0px 0px;
}

.footer-accor-menu .appicon > dl > dt {
    display: -webkit-flex;
    display: flex;
	justify-content: center;
}

.footer-accor-menu .appicon > dl > dd {
    color: #555;
    font-size: 12px;
}

.footer-accor-menu .appicon  [class*="ico-"] {
    width:30px;
	height:30px;
	display:inline-block;
	overflow:hidden;
	border-radius: 100%;
	background-color:#FF0000;
	margin-bottom:2px;
}
.footer-accor-menu .appicon .ico-iphone {
    background: url(/resources/images/common/ico_ipon.svg) center center/50px no-repeat; 
}
.footer-accor-menu .appicon .ico-android {
    background: url(/resources/images/common/ico_android.svg) center center/50px no-repeat; 
}

/* snsicon menu */
.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 {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}
.footer-accor-menu .accor-list .info [class*="col"] {
    flex: 1 0 auto;
}
.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: fixed;
    right: 11px;
    bottom: 128px;
    width: 52px;
    height: 52px;
    border-radius: 100%;
	background-color:#76a3e5;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.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: fixed;
    right: 15px;
    bottom: 75px;
    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;
}

.footer-nav-fixed .top-move.gv_top {
    bottom: 125px!important;
}

.footer-nav-fixed .top-move.cart_top {
    bottom: 135px!important;
}

.footer-nav-fixed {
    display: block;
    position: fixed;
    bottom: 0;
	left:0px;
    width: 100%;
    margin: 0 auto;
    transition: transform .2s;
    z-index: 1002;
}

/* 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 {
position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 640px;
    background-color: rgb(255, 255, 255);
    transition: transform 0.4s ease-in-out 0s;
    transform: translateX(640px);
    z-index: 10003;
}
.lnb-filter.active .filter-body {
    transform: translateX(0px);
}

.filter-body .filter-header {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    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: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 50px 0px 110px;
}

.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:15px 0px;
}

.filter-body .filter-menu .type1 {
    padding:3px 0px;
}
.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: 25%;
	padding:5px 5px;
}

.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-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-bottom {
    visibility: visible;
    transform: translate3d(0px, 0px, 0px);
    position: fixed;
    right: 0px;
    left: 0px;
    bottom: 0px;
    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
============================================================================= */
/* manu list */
.lnb-wrap {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    max-width: 840px;
    height: 100%;
    text-align: left;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all, 0.4s;
    -webkit-transition: all, 0.4s;
    z-index: 10003;
}
.lnb-wrap.active {
    left: 0;
}
.lnb-wrap .lnb-header {
    position: fixed;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 840px;
    height: 50px;
    padding: 0 20px;
    background: #ef88b8; 
    z-index: 10; 
}
.lnb-wrap .lnb-header > a {
    position: relative;
    padding-right: 10px;
    font-size: 16px;
    color: #fff;
	font-weight: 500; 
}
.lnb-wrap .lnb-header > a:after {
    content: ' ';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.lnb-wrap .lnb-header .btn-close {
    position: absolute;
    right: 0;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: url(/resources/images/common/ico_close_w.svg) center center/16px no-repeat;
}

.lnb-wrap .lnb-content {
    margin: 50px 0 80px;
}

.lnb-wrap .lnb-menu-wrap {
    padding: 0px 0;
}

.lnb-wrap .lnb-menu-wrap:not(:last-child) {
    border-bottom: 6px solid #f5f5f5;
}

/* lnb thumb */
.lnb-wrap .thumb-square {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 5px;
    padding: 2px;
    background: #f7f7f7;
}

/* lnb menu */
.lnb-wrap .lnb-menu {
    border-bottom: 1px solid #f3f3f3;
}
.lnb-wrap .lnb-menu a {
position: relative;
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.lnb-wrap .lnb-menu a:after {
    content: ' ';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    width: 9px;
    height: 9px;
    border: 1px solid #666;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(48deg);
    transform: rotate(48deg);
}
/* lnb menu */

/* lnb cate menu */
.lnb-wrap .lnb-accordion + .lnb-accordion {
    margin-top: -1px;
    border-top: 1px solid #f3f3f3;
}

.lnb-wrap .lnb-accordion > .lnb-heading {
    position: relative;
    display: flex;
	align-items: center;
    padding: 14px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}
.lnb-wrap .lnb-accordion > .lnb-heading:after {
    content: ' ';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    width: 9px;
    height: 9px;
    border: 1px solid #666;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.lnb-wrap .lnb-accordion.active > .lnb-heading:after {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.lnb-wrap .title {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    margin-left: 15px;
    line-height: 1.4em;
    text-align: left;
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

/* lnb cate column-1 */
.lnb-column-1{
    background: rgb(251, 251, 251);
	width:100%;
}

.lnb-column-1 > ul{
    display: -webkit-flex;
    display: flex;
	flex-flow: column wrap;
}

.lnb-column-1 > ul > li{
    width:100%;
    border-top: solid 1px #eee;
}


.lnb-column-1 > ul > li > a {
    position: relative;
    padding: 15px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.lnb-column-1 > ul > li > a:after{
    content: ' ';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 22px;
    margin-top: -3px;
    width: 9px;
    height: 9px;
    border: 1px solid #666;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* lnb cate column-2 */
.lnb-column-2{
    background: rgb(251, 251, 251);
	width:100%;
}

.lnb-column-2 > ul{
    display: -webkit-flex;
    display: flex;
	flex-flow: row wrap;
}

.lnb-column-2 > ul > li{
    width:25%;
    border: 1px solid #f1f1f1;
    border-width: 0 0 1px 0;
}


.lnb-column-2 > ul > li:nth-child(-n+2) {
    border-top: 1px solid #f1f1f1;
}

.lnb-column-2 > ul > li:nth-child(odd) {
    border-right: 1px solid #f1f1f1;
}

.lnb-column-2 > ul > li > a {
    position: relative;
    color: rgb(51, 51, 51);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    padding: 11px 20px;
}

.lnb-column-2 > ul > li > a small {
    margin-top: 1px;
    margin-left: 2px;
    color: #b1b1b1;
    font-size: 10px;
    font-weight: 500;
}

.lnb-column-2 > ul > li > a:after {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -3px;
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    border-style: solid;
    border-color: rgb(102, 102, 102);
    border-image: initial;
    border-width: 1px 1px 0px 0px;
}


/* lnb icon menu */
.lnb-wrap .lnb-icon-menu > ul {
    display: -webkit-flex;
    display: flex;
	flex-flow: row wrap;
	padding:18px 6px;
	border-bottom: 7px solid #f5f5f5;
}

.lnb-wrap .lnb-icon-menu > ul > li {
	width:20%;
	padding:10px 2px;
}

.lnb-wrap .lnb-icon-menu > ul > li > a{
    display: -webkit-flex;
    display: flex;
	flex-flow: column wrap;
	width:100%;
	align-items: center;
	justify-content: center;
}

.lnb-wrap .lnb-icon-menu > ul > li > a img {
    width:auto;
	height:24px;
}

.lnb-wrap .lnb-icon-menu > ul > li > a span {
    display:inline-block;
	padding:5px 0px 0px;
	font-size: 11px;
    color: #555;
	width:100%;
	text-align:center;
}

/* 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;
}

/* 키워드 팝업 */ 
.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;
}

/* 중앙 모달 팝업 */
.center-modal .modal-content { 
    display:none; 
    width: 90%; 
    position: fixed; 
    left: 50%; 
    top: 50%; 
    text-align:center; 
    background: #fff; 
    border-radius: 2.2em;
    transform: translate(-50%, -50%); 
    transition: all 0.4s cubic-bezier(0.38, 0.09, 0.12, 1) 0s; 
    z-index: 10002; 
}

@media only screen and (min-width: 1025px) {
.center-modal .modal-content { 
	max-width:1025px;
}

}

.center-modal.modal-open .modal-content { 
    visibility: visible; 
    display: block; 
}
.center-modal .modal-content .modal-close { 
    display: block;     
    position: absolute; 
    right: 20px; 
    top: 20px; 
    width: 20px; 
    height: 20px; 
    background: url(/resources/images/common/ico_close_b.svg) center center/100% no-repeat;
    z-index: 1; 
    cursor: pointer; 
}
.center-modal .modal-content .modal-header { 
    padding: 45px 20px 15px; 
}	
.center-modal .modal-content .modal-header > h2 { 
    font-size: 25px;
}	
.center-modal .modal-content .modal-header p { 
    margin-top: 5px;
    font-size: 18px;
    font-weight: 500;
}	
.center-modal .modal-content .modal-body { 
    margin: 20px 20px 30px; 
}	
.center-modal .modal-content > h2 { 
    padding: 50px 25px 0;
    font-size: 18px;
}	

.center-modal .modal-content.scroll-y { 
    max-height: 500px;
}
.center-modal .modal-content.scroll-y .modal-body { 
    max-height: 390px;
    overflow-y: auto;
}	

/* sns 아이디 연계 팝업창 */

.open-center-modal .modal-content { 
	display:none;
    width: 500px; 
	max-height:500px;
    position: fixed; 
    left: 50%; 
    top: 50%; 
    text-align:center; 
    background: #fff; 
    border-radius: 1.2em;
    transform: translate(-50%, -50%); 
    transition: all 0.4s cubic-bezier(0.38, 0.09, 0.12, 1) 0s; 
    z-index: 10002; 
}

.open-center-modal.modal-open .modal-content { 
    visibility: visible;
    display: block; 
}

.open-center-modal .modal-content .content {
	padding:20px 20px 20px 20px;
	overflow:hidden;
}

.open-center-modal .modal-content .content .info {
    font-size:14px;
	line-height:1.4em;
	max-height:390px;;
    overflow-x: hidden;
    overflow-y: auto;
	padding:20px 15px;
	position:relative;
	z-index:1;
	background-color:#f4f4f4;
	border-radius: 1.2em;
	text-align:left;
}

.open-center-modal .modal-content .content .bt-loof {
    padding:20px 0px 0px 0px;
	width:100%;
}

.open-center-modal .modal-content .content .bt-loof > ul {
    margin:0px -8px;
    display: -webkit-flex;
    display: flex;
}

.open-center-modal .modal-content .content .bt-loof > ul > li {
    width:50%;
	padding:0px 8px;
}

.open-center-modal .modal-content .content .bt-loof a{
    background-color:#555;
	color:#fff;
	display:block;
	text-align:center;
	width:100%;
	height:50px;
	line-height:50px;
	border-radius:8px 8px;
}

/* 메인이벤트 팝업 */
.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: 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:30px;
	height:30px;
    line-height: 30px;
    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 > ul > li a {
    display: block;
}

.wrap-main-banner-pop .main-banner-pop .swiper-main-banner-pop > ul > li img {
    width: 100%;
}


/* 메인쿠폰 팝업 */ 
.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: 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;
}	
.wrap-main-coupon .main-coupon .layer-header {
	align-items: center;
	position:relative;
	height:70px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	background-color:#9c69e0;
}

.wrap-main-coupon .main-coupon .layer-header h3 {
	text-align:center;
	flex:1;
	font-size:15px;
	color:#fff;
	font-weight:600;
	padding:0px 0px 0px 50px;
}

.wrap-main-coupon .main-coupon .layer-header .layer-clsed {
	display:block;
	width:30px;
	height:30px;
	margin:0px 10px;
	background-color:#6e31bf;
	border-radius:100%;
	position:relative;
}

.wrap-main-coupon .main-coupon .layer-header .layer-clsed i{
    width:14px;
	height:14px;
	position:absolute;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
	background: url(/resources/images/common/ico_close_w.svg) no-repeat center center / 100% auto;
}

.wrap-main-coupon .main-coupon .layer-contents {
    overflow: auto;
    max-height: 340px;
	padding:20px 30px 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:90px;
	padding:15px 30px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.wrap-main-coupon .main-coupon .bt-area .download {
    width:100%;
	height:60px;
	line-height:60px;
	display:block;
	text-align:center;
	font-size:15px;
	font-weight:600;
	color:#fff;
	background-color:#9c69e0;
	border-radius:0.6em
}

/* 하단 모달 팝업 */
.footer-modal .modal-content { 
    width: 100%; 
    position: fixed; 
    left: 0; 
    right:0; 
    bottom: 0;
	margin:0 auto; 
    background: #fff; 
    border-radius: 28px 28px 0 0; 
    transform: translateY(100%); 
    transition: all 0.4s cubic-bezier(0.38, 0.09, 0.12, 1) 0s;
    z-index: 10002; 
}

@media only screen and (min-width: 1025px) {
.footer-modal .modal-content { 
	max-width:1025px;
}
}

.footer-modal.modal-open .modal-content { 
    transform: translateY(0); 
}
.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: 1025px) {
.bottom-pop {
    max-width: 1025px;
}
}

.bottom-pop .swiper-bottom-pop {
    width:100%;
}
.bottom-pop .swiper-bottom-pop > ul > li img {
    border-radius: 12px 0px 0px 0px;
}
.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: 550px;
    max-height: 100%;
    min-height: 500px;
    position: fixed; 
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff; 
    transition: all 0.4s cubic-bezier(0.38, 0.09, 0.12, 1) 0s;
    z-index: 10002; 
}
.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) center center/18px no-repeat;
    z-index: 10005;
    cursor: pointer;
}

.fullpop-wrap .fullpop-area .fullpop-contents {
    width:100%;
    height: calc(100% - 50px);
	overflow-y: auto;
	padding:0px 0px 30px;
}

.fullpop-wrap .fullpop-area .fullpop-contents.pd-15-15-15 {
    padding: 15px 15px 15px;
}

/* 쿠폰 코드 */
.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:30px 18px;
  border-radius:0px 0px 4px 4px;
}

.code-loof > ul {
    display:flex;
	margin:0px -8px;
}

.code-loof > ul > li {
    padding:0px 8px;
}

.code-loof > ul > li:first-child{ flex:1;}

.code-loof > ul > li:last-child{ width:200px;}

.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 {
	width:100%;
	padding:10px 0px 0px 0px;
	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 {
    width: 320px;
	padding:0px 15px 0px 0px;
}

.coupon-wrap {
    position: relative;
    height: 156px;
	width:100%;
	overflow:hidden;
	z-index:1;
}

.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;
}

.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:#9c69e0;
	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%;
    color: #333;
    font-size: 15px;
}
/* 아이콘 쿠폰 제목 */
.coupon-wrap .coupon-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.coupon-wrap .coupon-cont .txt {
    margin-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-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.big-coupon  {
    height: 163px;
}

.coupon-wrap.big-coupon .btn-download {
    height: 40px;
}

/* 스몰쿠폰 */
.coupon-wrap.small-coupon {
    height: 136px;
}

.coupon-wrap.small-coupon h3 {
    padding: 15px 20px 6px;
    font-size: 14px;
}
.coupon-wrap.small-coupon .coupon-cont .txt {
    font-size:12px;
}

/* 아이콘쿠폰 */
.coupon-wrap.icon-coupon {
    height: 186px;
}

/* 쿠폰컬러변경 */

.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;
}

/* 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-horizontal {
    touch-action: pan-y;
}

.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;
}

/* 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-out-t20-b15 .swiper-pagination {
	margin: 20px 0px 15px; 
}
.swiper-pagination-in-b10 .swiper-pagination {
    position: absolute;
    bottom: 10px;
}

/* 슬라이드 두개 이상일때 pagination 노출 */
.swiper-wrapper.disabled { 
    transform: translate3d(0px, 0, 0) !important;
 }
.swiper-pagination.disabled { 
    display: none; 
}

/* pagination - 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);
}

/* button - 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);
}

/* small button - prev-next */

.swiper-button-small .swiper-button-prev,
.swiper-button-small .swiper-button-next {
  width: 32px;
  height: 32px;
  margin-top: -32px;
}

.swiper-button-small .swiper-button-prev:after, .swiper-button-small .swiper-button-next:after {
    width: 22px;
    height: 22px;
    border-top: 2px solid var(--swiper-theme-color);
    border-right: 2px solid var(--swiper-theme-color);
}

/* cate button - prev-next */
.swiper-cate-button .swiper-button-prev,
.swiper-cate-button .swiper-button-next {
    width:36px;
    height: 52px;
    margin-top: -26px;
    background: #f9f9f9;
    border-bottom: 1px solid #f3f3f3;
    border-top: 1px solid #f3f3f3;
    opacity: .90;
}

.swiper-cate-button .swiper-button-prev {
  left: 0px;
  right: auto;
}
.swiper-cate-button .swiper-button-next{
  right: 0px;
  left: auto;
}

.swiper-cate-button .swiper-button-prev:after, .swiper-cate-button .swiper-button-next:after {
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--swiper-black-color);
    border-right: 2px solid var(--swiper-black-color);
}

/* bg button - prev-next */
.bg_arrows .swiper-button-prev, 
.bg_arrows .swiper-button-next {
    width: 36px;
    height: 36px;
    margin-top: -18px;
	background-color:#333;
	opacity: .4;
	border-radius: 100% 100%;
}

.bg_arrows .swiper-button-prev:after, 
.bg_arrows .swiper-button-next:after {
    width: 14px;
    height: 14px;
    border-top: 2px solid var(--swiper-theme-color);
    border-right: 2px solid var(--swiper-theme-color);
	opacity: 1;
}

.bg_arrows .swiper-button-prev:after {
    margin-left: 6px;
}

.bg_arrows .swiper-button-next:after {
    margin-right: 6px;
}

.bg_arrows2 .swiper-button-prev, 
.bg_arrows2 .swiper-button-next {
    width: 26px;
    height: 26px;
    margin-top: -13px;
	background-color:#333;
	opacity: .4;
	border-radius: 100% 100%;
}

.bg_arrows2 .swiper-button-prev:after, 
.bg_arrows2 .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_arrows2 .swiper-button-prev:after {
    margin-left: 4px;
}

.bg_arrows2 .swiper-button-next:after {
    margin-right: 4px;
}


/* gallery opacity */
.gallery-thumbs .swiper-slide {
    height: 100%;
	width:100%;
	position:relative;
	overflow:hidden;
}

.gallery-thumbs .swiper-slide:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background: #fff;
}

.gallery-thumbs.black .swiper-slide:before {
    opacity: 0.4;
    background: #000;
}

.gallery-thumbs .swiper-slide-thumb-active:before,
.gallery-thumbs.black .swiper-slide-thumb-active:before {
    opacity: 0;
}


/* notice
============================================================================= */
.notice-area > ul > li {
    display:flex;
	text-align:left;
}

.notice-area .exclamation-mark {
    width:18px;
	height:18px;
	margin:0px 10px 0px 0px;
}

/* review
============================================================================= */
.wrap-review {
    margin:0px 0px;
}

.wrap-review > ul {
    display:flex;
    display: -webkit-flex;
	flex-direction: column;
}

.wrap-review > ul > li + li {
    border-top: solid 1px #eee;
}

.review-content {
    padding:20px 15px;
}

.review-content .review-info {
    display:flex;
    display: -webkit-flex;
	flex-flow: row nowrap;
	padding:0px 0px 15px;
}

.review-content .review-info .pr-pic a{ 
    width:80px;
	height:auto;
	display:block;
	margin:0px 15px 0px 0px;
	overflow:hidden;
	border-radius:4px;
}

.review-content .review-info .info{
    flex:1;
	display:flex;
	flex-direction: column;
}
.review-content .review-info .info .grade {
	text-align:left;
    display:flex;
    display: -webkit-flex;
	flex-flow: row wrap;
	align-items: center;
	line-height: 1.0em;
	font-size:12px;
	color: #777;
	padding:0px 0px 4px;
}
.review-content .review-info .info .grade + .grade {
    padding:4px 0px 0px;
	line-height: 1.4em;
}

.review-content .review-info .info .star {
    background-image: url(/images/icon/star_per_m.png);
    background-repeat: no-repeat;
    -webkit-background-size: 142px 12px;
    background-size: 142px 12px;
    background-position: -72px 0px;
    width: 70px;
    height: 12px;
    display: inline-block;
    vertical-align: top;
}

.review-content .review-info .info .star-value {
    background-image: url(/images/icon/star_per_m.png);
    background-repeat: no-repeat;
    -webkit-background-size: 142px 12px;
    background-size: 142px 12px;
    background-position: 0px 0px;
    width: 70px;
    height: 12px;
    display: inline-block;
    vertical-align: top;
}

.review-content .review-info .info .star-count {
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-left: 7px;
	color:#333;
}

.review-content .review-info .info .grade .option {
    display:inline-block;
	padding:0px 8px 0px 0px;
	position:relative;

}

.review-content .review-info .info .grade .option + .option {
	padding:0px 8px 0px;
}

.review-content .review-info .info .grade .option + .option:before {
    content: '';
    position: absolute;
	top:50%;
	margin-top:-6px;
	width: 1px;
    height: 12px;
    left: 0px;
    background-color: #ddd;
}

.review-content .review-info .info .grade .option > em {
    color:#333;
}

.review-content .review-click {
    display:block;
}

.review-content .review-writer {
    display:flex;
    display: -webkit-flex;
    flex-flow: row nowrap;
	padding:20px 25px;
	background-color:#fafafa;
	border-radius: 4px;
}

.review-content .review-writer.open {
    flex-flow: column nowrap;
}


.review-content .review-writer .writer {
    flex:1;
	display:flex;
	flex-direction: column;
}

.review-content .review-writer .writer p {
    color:#666;
	line-height:1.4em

}

.review-content .review-writer .writer .bt {
    text-align:left;
	padding:5px 0px 0px;
}

.review-content .review-writer .writer .bt .more{
    display:inline-block;
    position: relative;
	color: #6699cc;
	font-size:12px;
	padding:0px 15px 0px 0px;
}

.review-content .review-writer .writer .bt .more:after {
    position: absolute;
	top:1px;
    right: 0px;
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #6699cc;
    border-right: 1px solid #6699cc;
    transform: rotate(135deg);
}

.review-content .review-writer.open .writer .bt .more:after {
	top:5px;
	transform: rotate(315deg);
}

.review-content .review-writer .pic {
    width:90px;
	margin:0px 0px 0px 35px;
	overflow:hidden;
	text-align:right;
}

.review-content .review-writer.open .pic {
    width:100%;
	margin:15px 0px 0px;
	text-align:left;
}

.review-content .review-writer.open .pic img { max-width:500px;}

.review-content .review-writer.open .press {
    display:flex;
    display: -webkit-flex;
    flex-flow: row wrap;
	margin:-7px 0px 0px;
	padding:10px 0px 0px;
}

.review-content .review-writer.open .press span {
    display: inline-block;
    line-height: 2.0em;
	padding:0px 14px;
	margin:7px 7px 0px 0px;
    border: solid 1px #dadada;
    color: #555;
    background-color: #fff;
    border-radius: 1.0em 1.0em;
}
/* 리뷰 포인트 지급안내*/

.wrap-review-reward .reward-top {
    margin:15px 15px 15px;
}
.wrap-review-reward .reward-top .point-icon {
    width:100px;
	display:block;
	margin:0 auto;
	padding:0px 0px 15px;
}
.wrap-review-reward .reward-top .point-icon img { width:100%;}

.wrap-review-reward .reward-top .reward-top-info {
    text-align:center;
	font-size:14px;
}
.wrap-review-reward .reward-toggle-bt{
    height:50px;
	line-height:50px;
	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:25px 15px;
	font-size:14px;
	text-align:center;
}

.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: 14px !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 { 
    display:none; 
    width: 500px;
	position:absolute;
	right:0px;
    top: 70px;  
    background: #fff;
	border:solid 1px #eee;
    transition: all 0.4s cubic-bezier(0.38, 0.09, 0.12, 1) 0s; 
    z-index: 10002; 
}
.search-pop.active{ 
    visibility: visible; 
    display: block; 
}

.search-pop .search-pop-body {
    position:relative; 
}

.search-pop .search-pop-body .pop-closed {
    position: absolute;
    bottom: -30px;
    right: -1px;
	padding:0px 18px;
    height: 30px;
	line-height:30px;
    background-color: #fff;
    display: block;
    border-bottom: solid 1px #eee;
    border-left: solid 1px #eee;
    border-right: solid 1px #eee;
	border-radius: 0px 0px 6px 6px;
	font-size:12px;
}

.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%;
	display: flex;
	display: -webkit-flex;
	align-items: flex-start;
}

.search-pop-body .search-pop-contents .keyword-area {
    width:50%;
	height:auto;
}

.search-pop-body .search-pop-contents .keyword-area.grow {
    width:100%;
}

.search-pop-left-border {
	border-left:solid 1px #eee;
}

.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;
	border-bottom:solid 1px #eee;
	border-top:solid 1px #eee;
}

.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 #eee;
	padding:0px 16px;
	display: flex;
	display: -webkit-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 .keyword .del {
    width:20px;
	height:20px;
	display:block;
	border-radius: 100%;
	margin:0px 0px 0px 10px;
	background:#eee 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%;
	height: 154px;
	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:0px 30px;
	overflow:hidden;
}

.magazin-title.small {
    height: 130px;
}

.magazin-title i {
     width:100px;
	 height:100px;
	 margin:0px 28px 0px 0px;
	 display:block;
}

.magazin-title.small i {
     width:80px;
	 height:80px;
	 margin:0px 20px 0px 0px;
}

.magazin-title .text {
    flex:1;
	text-align:left;
}

.magazin-title .text h3 {
    color:#fff952;
	font-size:22px;
}

.magazin-title.small .text h3 {
	font-size:16px;
}

.magazin-title .text p {
    color:#fff;
	font-size:16px;
	padding:4px 0px 0px 0px;
	line-height:1.4em;
}

.magazin-title.small .text p {
	font-size:14px;
}

.wrap-magazin-contents {
    background-color:#fafafa;
	padding:30px 30px;
}
.magazin-contents {
    background-color:#fff;
	border-radius: 12px 12px;
	text-align:left;
	padding:20px 0px;
}
.magazin-contents .contents {
    padding:15px 30px;
}

.magazin-contents .contents.gray {
    padding:30px 30px !important;
    background-color:#fafafa;
}


.magazin-contents .contents h3 {
    font-size:16px;
	color:#111;
	padding:0px 0px 4px 0px;
}

.magazin-contents .contents p {
    font-size:14px;
	color:#333;
	line-height:1.4em;
}

.magazin-contents .contents p .count {
    color:#fe9a9c;
}

.magazin-contents .contents .info {
    color:#666;
	padding:2px 0px 0px 0px;
}

.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: 50px !important;
    line-height: 50px;
    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:50px;
	line-height:50px;
	padding:0px 30px;
	background-color:#fe9a9c;
	text-align:center;
	color:#fff;
	margin-left:-1px;
	border-radius:0px 4px 4px 0px;
}

.magazin-contents .contents .column2 > li{
    padding:0px 8px;
	width:50%;
}

.magazin-contents .contents .column1 {
	display: flex;
	display: -webkit-flex;
	flex-flow: column nowrap;
}

.magazin-contents .contents .column1 > li{
    padding:10px 0px;
	width:100%;
}

.magazin-contents .contents .column2 {
    margin:0px -8px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}

.magazin-contents .contents .column2 > li{
    padding:0px 8px;
	width:50%;
}

.magazin-contents .contents .magazine-bt {
    width:100%;
	height:66px;
	border-radius: 33px 33px;
	background-color:#eee;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	padding:0px 8px;
	color:#666;
	position:relative;
	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:50px;
	height:50px;
	position:absolute;
	top:8px;
	left:8px;
	z-index:2;
}
.magazin-contents .contents .magazine-bt span {
    flex:1;
	display:block;
	text-align:center;
	font-size:15px;
}

.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:10px 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:10px 0px;}

.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;
}

.site-login-bt {
    width:100%;
	display:flex;
	display: -webkit-flex;
	flex-flow: row nowrap;
	align-items: center; 
	padding:0px 10px;
	height:56px;
	border:solid 1px #e5e5e5;
	border-radius: 4px 4px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.site-login-bt.small {
	height:44px;
}

.site-login-bt i {
    display:block;
	margin:0px 15px 0px 0px;
	width:34px;
	height:34px;
}

.site-login-bt.small i {
	width:30px;
	height:30px
}

.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:10px 10px; width:50%;}
.link-loof > ul { margin:-10px 0px 0px 0px;}
.link-loof > ul > li { padding:10px 0px 0px 0px;}
