/* BASIC css start */
@charset "utf-8";
/* Pretendard - 영문(소문자,대문자) */
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    unicode-range: U+0041-005A, U+0061-007A;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    unicode-range: U+0041-005A, U+0061-007A;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    unicode-range: U+0041-005A, U+0061-007A;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    unicode-range: U+0041-005A, U+0061-007A;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    unicode-range: U+0041-005A, U+0061-007A; 
}


/* Suit - 한글, 숫자, 특수문자 */
@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    unicode-range: U+AC00-D7A3, U+003-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E; 
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Light.woff2') format('woff2');
    font-weight: 300;
    unicode-range: U+AC00-D7A3, U+003-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: 400;
    unicode-range: U+AC00-D7A3, U+003-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Medium.woff2') format('woff2');
    font-weight: 500;
    unicode-range: U+AC00-D7A3, U+003-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-SemiBold.woff2') format('woff2');
    font-weight: 600;
    unicode-range: U+AC00-D7A3, U+003-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Bold.woff2') format('woff2');
    font-weight: 700;
    unicode-range: U+AC00-D7A3, U+003-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    unicode-range: U+AC00-D7A3, U+003-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

body { font-family: 'SUIT', 'Pretendard', sans-serif;}

/* header */
:root {
    --header-h: 80px; /* sec1_bar + header */
}

/* 스크롤 시 header 높이 변경 */
#header.is-scrolled + #asi { --header-h: 50px;}
#header{ -webkit-transition: all 0.3s ease;
    -khml-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff; width: 100%; position: fixed; z-index: 100; min-width: 320px;left: 50%; transform: translateX(-50%); margin: 0 auto; top: 0;
}
#header.bg{ background: #fff; border-bottom: 1px solid #eee;top: -30px;}
#header .head_inner{width: 100%; height: 50px; display: flex; align-items: center; padding: 0 15px; position: relative;}
#header .head_inner .left{display: flex; position: absolute; left: 15px; top: auto;}
#header .head_inner .left .asi_close {display: none;}
#header .head_inner .left .ham {margin-right: 10px;}
#header.show .head_inner .left .asi_close {margin-right: 10px; display: block;}
#header.show .head_inner .left .ham {margin-right: 10px; display: none;}
#header .head_inner .left .ham a{display: block;}
#header .head_inner .logo { display: block; width: 100%; text-align: center;}
#header .head_inner .right { position: absolute; right: 15px; top: auto;}
#header .head_inner .right ul{display: flex; align-items: center;}
#header .head_inner .right ul li{white-space: nowrap;margin-left: 13px;}
#header .head_inner .right ul li a{display: block;}
#header .head_inner .right ul li.li_cart a{position: relative;}
#header .head_inner .right ul li.li_cart a span{ display: none; position: absolute; right: -5px; top: -3px; padding: 0 2px; background: var(--point01); border-radius: 100px; width: 13px; height: 13px; box-sizing: border-box; text-align: center; line-height: 13px; color: var(--white); font-size: 9px;}
#header .head_inner .right ul li.li_wish a {position: relative;}
#header .head_inner .right ul li.li_wish a span{ display: none; position: absolute; right: -5px; top: -3px; padding: 0 2px; background: var(--point01); border-radius: 100px; width: 13px; height: 13px; box-sizing: border-box; text-align: center; line-height: 13px; color: var(--white); font-size: 9px;}

#header .ham img,
#header .asi_close img,
#header .li_search img,
#header .head_inner .right ul li a img { width: 17px; height: 17px;}

#header .head_inner .logo img { width: 100px;}


/* 상단 띠배너 */
.sec1_bar a {color: #3b3b3b;}
.sec1_bar .swiper { margin:0 auto; height: 30px; } 
.sec1_bar .swiper ul { width: 100%; } 
.sec1_bar .swiper ul li.swiper-slide a { display: flex; align-items: center; justify-content: center; height:30px; font-size: 14px; font-weight: 500; line-height: 30px;} 


/* 사이드메뉴 */
#asi{ width: 100%;min-width: 320px; max-width: 850px;opacity: 0; transition: opacity .6s, left .5s; height: 100%; overflow-y: auto; background-color: #fff; position: fixed; left: -1000%; top:0; z-index: 50; 
    padding-top: var(--header-h); transition: padding-top 0.3s ease;
}
#asi.show{opacity: 1; left: 0;}
#asi .asi_inner{width: 100%; height: 100%; padding: 33px 0 0;}
#asi .asi_inner>div{padding: 0 6%; margin-bottom: 30px;}
#asi .asi_inner .as1{padding-bottom:50px}
#asi .asi_inner .as1 ul.main_m > li { border-bottom: 1px solid var(--line);}
#asi .asi_inner .as1 ul.main_m > li > a{ display: block; color: var(--black); font-size: 16px; font-weight: 400; line-height: 40px; position: relative;}
#asi .asi_inner .as1 ul.main_m > li > a span{display: inline-block; float: right; transition: transform .3s;}

#asi .asi_inner .as1 ul.main_m > li > a span::after {content: '';position: absolute;right: 3px;top: 50%;width: 1px;height: 6px;background: var(--black);transform: translateY(-50%);opacity: 1;transition: opacity 0.2s ease;}
#asi .asi_inner .as1 ul.main_m > li > a span::before {content: '';position: absolute;right: 0;top: 50%;width: 6px;height: 1px;background: var(--black);transform: translateY(-50%) rotate(-180deg) ; }
#asi .asi_inner .as1 ul.main_m > li > a.clicked span::after { opacity: 0;}

#asi .asi_inner .as1 ul.sub_m{display: none; padding-left: 16px;}
#asi .asi_inner .as1 ul.sub_m > li:last-of-type {padding-bottom: 6px;}
#asi .asi_inner .as1 ul.sub_m > li a { font-size: 14px; font-weight: 300; line-height: 30px; color: var(--black);}


/* fixed 메뉴 */
#fix_area{position: fixed; right: -1%; bottom: 12%; opacity: 0; z-index: 20; transition: right .4s, opacity .6s; }
#fix_area.show{opacity: 1; right: 5%;}
#fix_area ul li{width: 44px;margin-top: 6px;}
#fix_area ul li a{display: block; width: 100%;}
#fix_area ul li a img{width: 100%;}


/* 검색창 */
.search {height:42px;position:relative;text-align:center;border-bottom: 1px solid #000;margin: 0 6%;padding: 0 45px 0 0 !important;}
.search .searchBox { position:relative; width:100%;}
.search .searchBox input {width: 100%;height:30px;border:0px none;margin-top: 6px;padding: 0 5px;}
.search .btn_search {width:45px;height:42px;line-height:50px;position:absolute;top:0;right:0;color: #000;text-align:center;}


/* 다찾다 - 레이어 */
.all-finder-close {position: absolute; top:19px; left:15px;z-index: 2;display: block;width:13px;height:22px;}
.all-finder-close img{width:13px;}
.all-finder-layer { z-index:1006; position:fixed; top:0; right:0; width:100%; height:100%;  overflow-y:auto; }
.all-finder-layer .finder-hd { z-index: -1; position: fixed; top: 0; right: 0; width: 100%; height: 60px;line-height: 60px;border-bottom: 1px solid #D4D4D4; background: #fff;}
.all-finder-layer  #allfinder-ctr { position: fixed;top:19px;right: 15px;z-index: 2; display: inline-block; width: 22px; height:22px; text-align: center;border:0;background:#fff }
.all-finder-layer  #allfinder-ctr img {display:block;width: 100%;vertical-align: middle;}
.all-finder-layer .finder-opt > dl:nth-child(1) input.txt-input.keyword.smart_finder_auto_completion {height: 45px;margin: 0;border:0;font-size:15px;color:#120B19}
.all-finder-layer .finder-btn-c { line-height:1;z-index:1; position: fixed; bottom:0; right:0;left:0; padding: 10px 15px; text-align: center; font-size:0;background: #fff; }
.all-finder-layer .finder-btn-c a.reset {display: inline-block; width: 33%; height: 45px;line-height: 45px; background: #fff;  color: #4C4D4E;  font-size: 13px; font-weight: 400; border:0;text-align:left; }
.all-finder-layer .finder-btn-c a.reset img{width:19px;margin-right:7px;vertical-align: middle;}
.all-finder-layer .finder-btn-c button {display: inline-block; width: 67%; height: 45px;line-height: 45px; background: #d35460; color: #fff; font-size: 14px; font-weight: 400; border: 1px solid #d35460;border-radius:3px;}
 
 /*다찾다 옵션*/
.all-finder-layer .finder-opt { padding: 0 15px 67px; color: #120B19;  left:0;right: 0;  top: 60px; height: 100%; background: #fff; overflow-y: auto; position: absolute;}
.all-finder-layer .finder-opt > dl{width:100%;padding:25px 0;border-bottom:1px solid #EBEBEB}
.all-finder-layer .finder-opt > dl:last-child{border-bottom:0}
.all-finder-layer .finder-opt > dl:nth-child(1){z-index: 2; position: fixed; top: 7px;left: 38px; width: 77%; height: 46px;  display: block; line-height: 60px; padding: 0;border-bottom: 0;}
.all-finder-layer .finder-opt > dl:nth-child(1) dt{font-size:0;}
.all-finder-layer .finder-opt > dl:nth-child(1) dd{margin:0;}
.all-finder-layer .finder-opt > dl:nth-child(1) dd .fa-search{display:none;}
.all-finder-layer .finder-opt > dl dt{font-size:15px;color:#120B19;font-weight:500;line-height:1;}
.all-finder-layer .finder-opt > dl dt.on{background:none !important;}
.all-finder-layer .finder-opt > dl dd{width:100%;margin-top:20px;display: none ; line-height: 1;}
.all-finder-layer .finder-opt > dl dd.on{display:block;}
.all-finder-layer .finder-opt > dl:nth-child(6) dt,
.all-finder-layer .finder-opt > dl:nth-child(7) dt,
.all-finder-layer .finder-opt > dl:nth-child(8) dt,
.all-finder-layer .finder-opt > dl:nth-child(9) dt,
.all-finder-layer .finder-opt > dl:nth-child(10) dt{background:url('/design/fordi/img/icon_arrow_down_12.png')no-repeat center right / 12px;}
.all-finder-layer .finder-opt > dl:nth-child(1) dd,
.all-finder-layer .finder-opt > dl:nth-child(2) dd,
.all-finder-layer .finder-opt > dl:nth-child(3) dd,
.all-finder-layer .finder-opt > dl:nth-child(4) dd,
.all-finder-layer .finder-opt > dl:nth-child(5) dd{display:block !important;}
.all-finder-layer .finder-opt > dl > dd > label,.all-finder-layer .finder-opt > dl > dd > div >label {display:inline-block;width:auto;margin-right:6px;}
.all-finder-layer .finder-opt .finder-options {display: inline-block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; border:1px solid #EBEBEB;line-height: 1; padding:12px 18px; word-break: break-all; border-radius: 60px;background: #F8F8FA; color: #120B19; text-align: center;font-size: 13px; }
.all-finder-layer .finder-opt .finder-options.on {border: 1px solid #363636; background: #363636; color: #fff; border-radius: 60px;}
.all-finder-layer .finder-opt > dl > dd  label{margin-top:10px;}
.all-finder-layer .finder-opt > dl > dd  label:nth-child(1),
.all-finder-layer .finder-opt > dl > dd  label:nth-child(2),
.all-finder-layer .finder-opt > dl > dd  label:nth-child(3){margin-top:0;}

 /*다찾다 - 색상*/
.all-finder-layer .finder-opt > dl:nth-child(3){padding: 25px 0; }
.all-finder-layer .finder-opt .finder-color{width:100%; /*width: calc(100% + 14px); margin-left: -7px;*/}
.all-finder-layer .finder-opt .finder-color label { display:inline-block;  text-align:center; line-height:10px;width:13.58%;margin-right:0 !important; }
.all-finder-layer .finder-opt .finder-option-color em { display: inline-block; width: 37px; height: 37px; border-radius:50%; font-size:0; vertical-align:middle; }
.all-finder-layer .finder-opt .finder-option-color.color-picker { width:37px; height:37px; padding: 0; border: none; } 
.all-finder-layer .finder-opt .finder-option-color.color-picker .fa-check {position: relative; display:none; width:37px; height:37px; margin-top:-37px; color:#fff; text-align:center; font-size:16px; }
.all-finder-layer .finder-opt .finder-option-color.color-picker .fa-check:before{position: absolute;top:0;width: 37px;height:37px;content:"";display:block;background:url('/design/fordi/img/icon_color_check.png')no-repeat center center / 14px;}
.all-finder-layer .finder-opt .finder-option-color.color-picker.finder-option-color-white .fa-check:before{background:url('/design/fordi/img/icon_color_check_b.png')no-repeat center center / 14px;}
.all-finder-layer .finder-opt .finder-option-color.color-picker.on{background:none;}
.all-finder-layer .finder-opt .finder-option-color.color-picker.on .fa-check { display:block; }
.all-finder-layer .finder-opt .finder-option-color.color-picker.on.finder-option-color-white .fa-check { color:#000; }

/*다찾다 - 자동완성*/
.all-finder-layer .search-auto-complete-list { display:none; z-index:1; position:absolute; top:52px; left: -38px; width: calc(100% + 86px); border:1px solid #ddd; line-height:14px; background:#fff; }
.all-finder-layer .search-auto-complete-list ul { width:100%; padding:4px 0 6px; border-bottom:1px solid #ddd; }
.all-finder-layer .search-auto-complete-list ul li { text-align:left; }
.all-finder-layer .search-auto-complete-list ul li.on { background:#f3f3f3; }
.all-finder-layer .search-auto-complete-list ul li a{ display:block; padding:8px 14px 7px; color:#000; background:none; font-family:'dotum'; font-size:12px; letter-spacing:-1px; }
.all-finder-layer .search-auto-complete-list ul li a strong { color:#ab3e41; }
.all-finder-layer .search-auto-complete-list ul li a:hover { background:#f2f2f2; }
.all-finder-layer .search-auto-complete-list ul li a:hover span { border-bottom:1px solid #000; }
.all-finder-layer .search-auto-complete-list .search-list-close { display:block; padding:10px 11px; text-align:right; color:#999; font-size:11px; }

.finder-option-color.finder-option-color-black em { background-color: #000; }
.finder-option-color.finder-option-color-white em { background-color: #FFF; width: 20px; height: 20px; border: 1px solid #e5e5e5; }
.finder-option-color.finder-option-color-gray em { background-color: #808080; }
.finder-option-color.finder-option-color-beige em { background-color: #e5d0b2; }
.finder-option-color.finder-option-color-brown em { background-color: #aa6810; }
.finder-option-color.finder-option-color-navy em { background-color: #425583; }
.finder-option-color.finder-option-color-blue em { background-color: blue; }
.finder-option-color.finder-option-color-light-blue em { background-color: #62acff; }
.finder-option-color.finder-option-color-red em { background-color: red; }
.finder-option-color.finder-option-color-orange em { background-color: orange; }
.finder-option-color.finder-option-color-yellow em { background-color: yellow; }
.finder-option-color.finder-option-color-pink em { background-color: pink; }
.finder-option-color.finder-option-color-purple em { background-color: purple; }
.finder-option-color.finder-option-color-jaju em { background-color: #a63f7f; }
.finder-option-color.finder-option-color-khaki em { background-color: #2f5e2f; }
.finder-option-color.finder-option-color-green em { background-color: green; }
.finder-option-color.finder-option-color-light-green em { background-color: #72dd95; }
.finder-option-color.finder-option-color-silver em { background-color: #dfdfdf; }
.finder-option-color.finder-option-color-gold em { background-color: #cfbc4e; }
.finder-option-color.finder-option-color-apricot em { background-color: #fbceb1; }

/*다찾다 가격대*/
.all-finder-layer .finder-opt > dl:last-child > dd > div{line-height:1;}
.all-finder-layer .finder-opt > dl:last-child > dd > div label{display: inline-block;margin-right:6px;margin-bottom:10px;}
.all-finder-layer .finder-opt > dl:last-child > dd > div .finder-price-input{font-size:13px;color:#282828;margin-top:20px;}
.all-finder-layer .finder-opt > dl:last-child > dd > div .finder-price-input span:nth-of-type(1){display:block;margin-bottom:10px;}
.all-finder-layer .finder-opt > dl:last-child > dd > div .finder-price-input label{display: inline-block;width:calc(50% - 11px);}
.all-finder-layer .finder-opt > dl:last-child > dd > div .finder-price-input label:last-child{margin-right:0 !important;}
.all-finder-layer .finder-opt > dl:last-child > dd > div .finder-price-input label input{width: calc(100% - 20px);border-radius:3px;border:1px solid #e1e1e1}

.dn{display:none !important;} 
/* BASIC css end */

