/* BASIC css start */
:root {
    --fff: #fff;
    --000: #000;
    --border: #ededed;
    --main-color: #121212; 
    --light-txt:#999999;
    --point-color:#FF6448;
    --txt:#656565;
    --line-color:#EDEDED;
}

.displaynone {display: none !important;}

.move {
    -webkit-transition: all 0.3s ease;
    -khtml-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-trans            ition: all 0.3s ease;
    transition: all 0.3s ease;
}
.move2 {
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.secinner {width:1400px;margin:0 auto;}
.title h2 {font-size:32px;font-weight:600;margin:120px 0 40px;line-height:32px;height:32px;}
/* header 배너 */
body.scroll .top-banner {top:-100%!important;transition: all 0.3s;}
#top_banner.top-banner {position: absolute; top: 0; left: 0; right: 0;height:36px;line-height:36px;background-color:var(--000);text-align:center;  z-index: 2; }
#top_banner.top-banner a {color:var(--fff);font-size:14px;font-weight:500;}
#top_banner.top-banner a strong {font-weight:800;}
/* header */
#header {position:sticky;top:0;left:0;right:0;background:transparent;padding-top: 36px;z-index:57; }
.header {border-bottom:1px solid var(--line-color);}
#header.fixed {background-color:var(--fff);border-bottom:1px solid var(--line-color);}
#header .headertop { display:flex;position:relative;justify-content:space-between;max-width:1400px;;margin:0 auto; height:80px;padding:30px 0 20px;box-sizing: border-box;}
#header .headertop .hd_menu {vertical-align: middle;height: 28px;line-height: 28px;}
#header .headertop .hd_menu li {display:inline-block;padding-left:20px;}
#header .headertop .hd_menu li a {font-size:13px;}
#header .headertop .hd_menu li.join {position:relative;}
#header .headertop .hd_menu li.join span {position:absolute;top:-18px;left:20%;height:18px;line-height:18px;background-color:var(--main-color);color:var(--fff);font-size:11px;border-radius: 30px;padding:0 6px;}
#header .headertop .hd_menu li.join span:after {position:absolute;top:18px;left:50%;transform:translateX(-50%);content: "";border-top: 3px solid #000; border-left: 3px solid transparent; border-right: 3px solid transparent; 
border-bottom: 0px solid transparent;}
#header .hd_menu li.join span {animation: motion 0.9s linear 0s infinite alternate;}
  @keyframes motion {
	0% {margin-top: 0px;} /* 처음 위치 */
	100% {margin-top: -5px;} /* 마지막 위치 */
  }

/* 메뉴 */
#header .headergnb { margin:0 auto; position:relative; width:1400px; height:60px;display:flex;justify-content: space-between;padding:16px 0;box-sizing: border-box;}
#header .headergnb .nav_cate {}
#header .headergnb .nav_cate li { padding-right:40px; display:inline-block;align-items: center;}
#header .headergnb .nav_cate li a { font-size:14px; }
#header .headergnb .nav_menu li { display:inline-block;padding-left:20px;align-items: center; }
#header .headergnb .nav_menu li.cart {position:relative; }
#header .headergnb .nav_menu li.cart .basket_quantity {display:grid;align-items: center;font-size:11px;text-align:center;position:absolute;right:0;bottom:0;display:block;line-height:16px;height:16px;width:16px;border-radius: 20px;background-color:var(--000);color:var(--fff); }
#header .headergnb .nav_menu li.cart .basket_quantity .user_basket_quantity {display:block;width:18px;text-align:center;} 
/* 햄버거메뉴 */
#hd_aside {position:fixed;top:0;left:0;width:400px;transform: translateX(-100%);visibility: hidden;background-color:var(--fff);height:100%;z-index:101;box-sizing: border-box;padding:28px 32px;transition: all 0.3s;}
#hd_aside .aside {}
#hd_aside .aside_menu {margin-bottom:28px;}
#hd_aside .aside_menu li {display:inline-block;padding:0 0 0 20px;height:16px;line-height:16px;}
#hd_aside .aside_menu li:first-child {padding-left:0;}
#hd_aside .aside_menu li a {font-size:14px; }
#hd_aside .aside_menu li:after {content:'';width:1px;height:10px;background-color:var(--line-color);display: inline-block;margin-left:20px;align-items: center;}
#hd_aside .aside_menu li:last-child::after {content: none;}
#hd_aside .aside_closed {position:absolute;top:20px;right:32px;}
#hd_aside .aside_cate {}
#hd_aside .aside_cate li {padding:12px 0;position:relative;}
#hd_aside .aside_cate li a {font-size:18px;font-weight:600;}
#hd_aside .aside_cate li.sub .aside_subcate {padding:10px 0 0;display:none;}
#hd_aside .aside_cate li.sub.is-active .aside_subcate {display:block;}
#hd_aside .aside_cate li.sub.is-active span img {transform: rotate(180deg);transition: 0.5s;}
#hd_aside .aside_cate li.sub .aside_subcate li a {font-size:15px;font-weight:400;color:var(--txt);}
#hd_aside .aside_cate li span {position:absolute;right:0;}
#hd_aside .aside_cs {margin-top:40px;}
#hd_aside .aside_cs h2 {font-size:18px;font-weight:600;margin-bottom:10px;}
#hd_aside .aside_cs p {font-size:14px;font-weight:400;color:var(--txt);height:22px;line-height:22px;}
#hd_aside.active {visibility: visible;transition: all 0.3s; transform: translateX(0px);}
/* 배경 */
#layer_background {display:none; position:fixed; top:0; left:0; right:0; bottom:0; width:100%; height:100%; background:rgba(0,0,0,0.7); z-index:99 }
#layer_background.active {display:block; }

.search_box {position: fixed; left: 0; top: 0;transform:translateY(-100%); background:var(--fff) ;width:100%; transition: all 0.5s; z-index: 101;opacity: 0; visibility:hidden;}
.search_box.active {transform:translateY(0px);opacity: 1; visibility: visible;}
.search_box .search_inner {width:680px;margin: 0 auto;padding: 60px 0;}
.search_box .search_inner .search_close { position: absolute;right: 328px; top: 20px; cursor: pointer;}
.search_box .search_inner .search_input { position: relative;height:48px;border-bottom: 1px solid #121212;}
.search_box .search_inner .search_input input { position: absolute;top:0;left:0;width:100%; height: 48px;border: none;color:var(--light-txt);font-size: 16px;}
.search_box .search_inner .search_input input::placeholder { color:var(--light-txt);}
.search_box .search_inner .search_input a {position: absolute;bottom:10px;right:0;}
.search_box .search_inner .keyword { display: flex;gap:48px;  margin-top: 54px;justify-content: space-between;}
.search_box .search_inner .keyword h3 { font-weight: 600; font-size: 18px; margin-bottom: 24px;}
.search_box .search_inner .keyword .recmd_search {flex: 1;}
.search_box .search_inner .keyword .recmd_search ul {}
.search_box .search_inner .keyword .recmd_search ul li { display: inline-block;}
.search_box .search_inner .keyword .recmd_search ul li a {box-sizing: border-box;font-size: 13px; display: block; padding: 6px 16px; border: 3px solid #f5f5f5;background-color: #f5f5f5;  margin: 0 6px 6px 0; border-radius: 40px;}
.search_box .search_inner .keyword .recmd_search ul li a:hover {border: 3px solid #f5f5f5;background-color:var(--fff);-webkit-transition: all 1s;-moz-transition: all 1s; -ms-transition: all 1s; -o-transition: all 1s; transition: all 1s;}
.search_box .search_inner .keyword .best_search { width:316px;}
.search_box .search_inner .keyword .best_search ol {}
.search_box .search_inner .keyword .best_search ol li {display:flex;margin-bottom: 16px;}
.search_box.active .search_inner .keyword .best_search ol li { margin-bottom: 16px;opacity:0;animation: fadeIn 1s forwards;margin-left:0px;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(1) {animation-delay: 0.1s;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(2) {animation-delay: 0.2s;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(3) {animation-delay: 0.3s;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(4) {animation-delay: 0.4s;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(5) {animation-delay: 0.5s;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(6) {animation-delay: 0.6s;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(7) {animation-delay: 0.7s;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(8) {animation-delay: 0.8s;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(9) {animation-delay: 0.9s;}
.search_box.active .search_inner .keyword .best_search ol li:nth-child(10) {animation-delay: 1s;}
.search_box .search_inner .keyword .best_search ol li:last-child {margin-bottom: 0;}
.search_box .search_inner .keyword .best_search ol li a {font-size: 14px;font-weight:500;}
.search_box .search_inner .keyword .best_search {counter-reset : numbering;list-style-type:none;}
.search_box .search_inner .keyword .best_search ol li:before {counter-increment:numbering;content:counter(numbering);width:25px;font-size:14px;align-items: center;}
.search_box .search_inner .keyword .best_search ol li:nth-child(n+4) a {color:#656565;font-weight:400;}

@keyframes fadeIn {
    from {
        opacity: 0;
        margin-left:15px;
    }

    to {
        opacity: 1;
        margin-left:0px;
    }
}

.product-item {display:flex;flex-flow: row wrap;justify-content:start;gap:0 24px;}
.product-item .item-cont.list3 {width:450px;margin-top:80px;}
.product-item .item-cont.list3:nth-child(-n+3) {margin-top:0;}
.product-item .item-cont.list4 {width:332px;margin-top:80px;}
.product-item .item-cont.list4:nth-child(-n+4) {margin-top:0;}

/* 상품 목록 영역 */
.item-cont .item-list .thumb {position:relative;}
.item-cont .item-list .thumb .prd-wish img{position:absolute;right:10px;top:10px;display:block;z-index:50;}
.item-cont .item-list .thumb .prd-wish .my-wish-list .wish_off {transition: all 0.5s; opacity: 1; visibility:visible;}
.item-cont .item-list .thumb .prd-wish .my-wish-list .wish_on { opacity: 0; visibility:hidden;}
.item-cont .item-list .thumb .prd-wish .my-wish-list.wish-on .wish_off { opacity: 0; visibility:hidden;}
.item-cont .item-list .thumb .prd-wish .my-wish-list.wish-on .wish_on {transition: all 0.5s; opacity: 1; visibility:visible;}
.item-cont .item-list .thumb .prd-wish .my-wish-count {display:none;} 
.item-cont .item-list .thumb .main_icons img {width:100%;}
.item-cont .item-list .prd-info .prd-name {margin:16px 0 8px;}
.item-cont .item-list .prd-info .prd-name a {font-size:16px;font-weight:500;overflow-wrap:break-word;white-space:normal;}
.item-cont .item-list .prd-info .prd-subname {margin-bottom:16px;}
.item-cont .item-list .prd-info .prd-subname a {font-size:13px;color:var(--light-txt);}
.item-cont .item-list .prd-info .prd-price strike {display:block;font-size:12px;color:var(--light-txt);}
.item-cont .item-list .prd-info .prd-price .discount {color:var(--point-color);font-size:16px;font-weight:800;margin-right:5px;}
.item-cont .item-list .prd-info .prd-price .price {font-size:16px;font-weight:800;}




/* 다찾다 자동완성*/
.search-auto-complete-list { display:none; z-index:1; position:absolute; top:40px; left:0; border:1px solid #ddd; border-top:1px solid #000; line-height:14px; background:#fff; }
.search-auto-complete-list ul { width:202px; padding:4px 0 6px; border-bottom:1px solid #ddd; }
.search-auto-complete-list ul li { text-align:left; }
.search-auto-complete-list ul li.on { background:#f3f3f3; }
.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; }
.search-auto-complete-list ul li a strong { color:#ab3e41; }
.search-auto-complete-list ul li a:hover { background:#f2f2f2; }
.search-auto-complete-list ul li a:hover span { border-bottom:1px solid #000; }
.search-auto-complete-list .search-list-close { display:block; padding:10px 11px; text-align:right; color:var(--light-txt); font-size:11px; }


/* 다찾다 검색 파인더 */
#allfinder-layer { z-index: 9999; position: fixed; top: 50px; right: 110px; width: 1000px; zoom: 1; overflow: hidden; }
#allfinder-layer .finder-body { display:none; z-index:1; position: relative; width: 998px; *width:918px; padding:35px 40px 5px; max-height: 800px; overflow-x: hidden; overflow-y: auto; box-sizing: border-box; border:1px solid #666; background:#fff; }
#allfinder-layer .finder-body .finder-close { position: absolute; top: 15px; right: 10px; font-size:24px; color:#000; *width:19px; *height:24px; *background:url('/images/common/btn_h11_close.gif') no-repeat center center; *background-size:19px 24px; }
#allfinder-ctr { z-index: 10000; position: fixed; top: 50px; right: 0; width: 103px; height:86px; }
#allfinder-ctr a { display:block; width:100%; height:100%; background:url('/images/common/allfinder_ctrl_pc.png') no-repeat right top; border:none; outline:none; font-size:0; }


.all-finder-layer .finder-body .finder-tbl table { border:1px solid #ccc; border-top:1px solid #000; }
.all-finder-layer .finder-body .finder-tbl th, 
.all-finder-layer .finder-body .finder-tbl td { height: 40px; border-top: 1px solid #e5e5e5; font-size: 13px; font-family:'Malgun Gothic'; color: #000; }
.all-finder-layer .finder-body .finder-tbl tr:first-child th,
.all-finder-layer .finder-body .finder-tbl tr:first-child td { border-top:none; }
.all-finder-layer .finder-body .finder-tbl th { padding: 5px 0; background: #f4f4f4; text-align: left; vertical-align:top; }
.all-finder-layer .finder-body .finder-tbl th .txt-l { position:relative; height:34px; line-height:34px; padding: 0 20px; margin:3px 0; }
.all-finder-layer .finder-body .finder-tbl th .txt-l .fa { position:absolute; top:50%; right:15px; margin-top:-6px; }
.all-finder-layer .finder-body .finder-tbl th .txt-l .finder-tooltip-btn { display:inline-block; width:20px; height:20px; line-height:22px; border:1px solid #cecece; border-radius:20px; color:#666; font-size:11px; background:#fff; text-align:center; outline:none; }
.all-finder-layer .finder-body .finder-tbl th .txt-l .finder-comm-layer { display:none; position:absolute; top:33px; left:52px; width:270px; padding:0 20px 18px; border:1px solid #000; background:#fff; text-align:left; font-weight:normal; color:#000; z-index:1}
.all-finder-layer .finder-body .finder-tbl th .txt-l .finder-comm-layer .finder-btn-close { display:inline-block; position:absolute; top:14px; right:20px; margin:0; font-size:21px; color:#000; outline:none; *width:19px; *height:22px; *background:url('/images/common/btn_h11_close.gif') no-repeat center center; }
.all-finder-layer .finder-body .finder-tbl th .txt-l .finder-comm-layer .finder-layer-tit { padding:18px 0; border-bottom:1px solid #e5e5e5; font-size:15px; font-weight:bold; line-height:15px; }
.all-finder-layer .finder-body .finder-tbl th .txt-l .finder-comm-layer .finder-layer-cnt { padding-top:16px; line-height:1.5; font-size:13px; }
.all-finder-layer .finder-body .finder-tbl td { padding: 5px 10px; }
.all-finder-layer .finder-body .txt-input { height: 21px; line-height: 21px; padding: 0 5px; font-size: 13px; font-family:'Malgun Gothic'; }
.all-finder-layer .finder-body .finder-category { height:40px; overflow:hidden; }
.all-finder-layer .finder-body .finder-category.open { height:100%; overflow:visible; }
.all-finder-layer .finder-body tr.finder-child-category {display:none;}
.all-finder-layer .finder-body tr.finder-child-category th,
.all-finder-layer .finder-body tr.finder-child-category td { border-top:none; }
.all-finder-layer .finder-body tr.finder-child-category td { background:#fbfbfb; }
.all-finder-layer .finder-body tr.finder-child-category td .finder-category2 .finder-cate2 { display:inline-block; margin:3px 5px 3px 0; padding: 5px 10px; cursor:pointer; line-height:22px; vertical-align:top; word-break:break-all; color:#9a9a9a; }
.all-finder-layer .finder-body tr.finder-child-category td .finder-category2 .finder-cate2 .fa-check { display:none; }
.all-finder-layer .finder-body tr.finder-child-category td .finder-category2 .finder-cate2.on { font-weight:bold; color:#000; border:0; border-radius:0; box-shadow: unset; }
.all-finder-layer .finder-body tr.finder-child-category td .finder-category2 .finder-cate2.on .fa-check { display:inline-block; margin-right:3px; }

.all-finder-layer .finder-body .finder-color { padding-left:10px; }
.all-finder-layer .finder-body .finder-price .finder-price-input { display: inline-block; padding-top:5px}
.all-finder-layer .finder-body .finder-price .finder-price-input label { display: inline-block; width: 110px; padding: 0 10px; border: 1px solid #ccc; border-radius:3px; color: #666; }
.all-finder-layer .finder-body .finder-price .finder-price-input label .txt-input { display: inline-block; width: 90px; height: 29px; line-height: 29px; padding: 0; border: none; background: none; color: #333; text-align: right; }
.all-finder-layer .finder-body .finder-search { position:relative; padding-left:5px; }
.all-finder-layer .finder-body .finder-search label { display: inline-block; width: 320px; padding: 0 10px; border: 1px solid #ccc; border-radius:3px; }
.all-finder-layer .finder-body .finder-search label .txt-input { display: block; width:100%; height: 29px; line-height: 29px; padding: 0; border: none; background: none; color: #333; text-align: left; }
.all-finder-layer .finder-body .finder-btn-c { padding: 30px 0; text-align: center; }
.all-finder-layer .finder-body .finder-btn-c a.reset { display: inline-block; width: 140px; height: 60px; line-height: 57px; border:none; border-radius:3px; background: #999; color: #fff; font-size: 18px; font-weight: bold; letter-spacing: 1px; font-family:'Malgun Gothic'; margin-right:15px; }
.all-finder-layer .finder-body .finder-btn-c button { display: inline-block; height: 60px; line-height: 57px; padding:0 30px; *padding:0; border:none; border-radius:3px; background: #000; color: #fff; font-size: 18px; font-weight: bold; letter-spacing: -0.5px; font-family:'Malgun Gothic'; cursor:pointer; }
.all-finder-layer .finder-body .finder-btn-c button span.ico-search { visibility:visible; display:inline-block; width:16px; height:15px; margin-right:10px; margin-top:-4px; *margin-top:0; vertical-align:middle; background:url('/images/common/btn_h15_search.png') no-repeat 0 0; }
.all-finder-layer .finder-body .finder-btn-c button span.finder-count { visibility:visible; display:inline-block; height:60px; color:#ffd800; font-size:23px; *vertical-align:middle; }
.all-finder-layer .finder-body .finder-btn-c button span.finder-count-toggle { visibility:visible; display:none; }


.all-finder-layer .finder-body .finder-options { display:inline-block; margin:3px 5px 3px 0; padding: 5px 10px; cursor:pointer; line-height:22px; border: 1px solid #fff; vertical-align:top; word-break:break-all; }
.all-finder-layer .finder-body .finder-options.on { font-weight: bold; border: 1px solid #000; border-radius: 20px; box-shadow:2px 2px 3px #d2d2d2; }
.all-finder-layer .finder-body .finder-option-color em { display: inline-block; width: 22px; height: 22px; border-radius:20px; font-size:0; vertical-align:top; }
.all-finder-layer .finder-body .finder-option-color.color-picker { width:22px; height:22px; padding: 0; border: none; } 
.all-finder-layer .finder-body .finder-option-color.color-picker.on { border: none; }
.all-finder-layer .finder-body .finder-option-color.color-picker .fa-check { display:none; width:22px; height:22px; margin-top:-17px; color:#fff; text-align:center; }
.all-finder-layer .finder-body .finder-option-color.color-picker.on .fa-check { display:block; }
.all-finder-layer .finder-body .finder-option-color.color-picker.on.finder-option-color-white .fa-check { color:#000; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-black em { background-color: #000; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-white em { background-color: #FFF; width: 20px; height: 20px; border: 1px solid #e5e5e5; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-gray em { background-color: #808080; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-beige em { background-color: #e5d0b2; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-brown em { background-color: #aa6810; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-navy em { background-color: #425583; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-blue em { background-color: #0000ff; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-light-blue em { background-color: #62acff; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-red em { background-color: #ff0000; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-orange em { background-color: #ffa500; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-yellow em { background-color: #ffff00; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-pink em { background-color: #ffc0cb; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-purple em { background-color: #800080; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-jaju em { background-color: #a63f7f; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-khaki em { background-color: #2f5e2f; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-green em { background-color: #008000; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-light-green em { background-color: #72dd95; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-silver em { background-color: #dfdfdf; }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-gold em { background-color: #cfbc4e;  }
.all-finder-layer .finder-body .finder-option-color.finder-option-color-apricot em { background-color: #fbceb1;  }

.all-finder-layer .finder-body .search-auto-complete-list { display:none; z-index:1; position:absolute; top:30px; left:5px; border:1px solid #ddd; line-height:14px; background:#fff; }
.all-finder-layer .finder-body .search-auto-complete-list ul { width:340px; padding:4px 0 6px; border-bottom:1px solid #ddd; }
.all-finder-layer .finder-body .search-auto-complete-list ul li { text-align:left; }
.all-finder-layer .finder-body .search-auto-complete-list ul li.on { background:#f3f3f3; }
.all-finder-layer .finder-body .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 .finder-body .search-auto-complete-list ul li a strong { color:#ab3e41; }
.all-finder-layer .finder-body .search-auto-complete-list ul li a:hover { background:#f2f2f2; }
.all-finder-layer .finder-body .search-auto-complete-list ul li a:hover span { border-bottom:1px solid #000; }
.all-finder-layer .finder-body .search-auto-complete-list .search-list-close { display:block; padding:10px 11px; text-align:right; color:#999; font-size:11px; }

.all-finder-layer .finder-body .finder-search-data .finder-options { border: 1px solid #e5e5e5; box-shadow:none; }
.all-finder-layer .finder-body .finder-search-data .finder-options .fa-close { margin-left:10px; color: #999; }




/* BASIC css end */

