/* 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 {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1000;
    -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-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#header.bg {
    top: -35px;
}

#header .head_inner {
    width: 100%;
    padding: 0 80px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -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-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#header .head_inner h1.logo {
}

#header .head_inner h1.logo a {
    display: flex;
}

#header .head_inner h1.logo a img {
    width: 135px;
}

#header .head_inner nav {
    height: 100%;
}

#header .head_inner nav>ul {
    display: flex;
    align-items: center;
    height: 100%;
}

#header .head_inner nav>ul>li {
    margin: 0 20px;
    height: 100%;
}

#header .head_inner nav>ul>li>a {
    display: block;
    font-size: 16px;
    color: #000;
    height: 100%;
    line-height: 70px;
    font-weight: 400;
}

#header .head_inner nav>ul>li.li_shop {
    position: relative;
}

#header .head_inner nav>ul>li.li_shop .sub_m {
    display: none;
    height: max-content;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 240px;
}

#header .head_inner nav>ul>li.li_shop .sub_m>li {
    padding: 0 30px;
    background-color: var(--white);
}

#header .head_inner nav>ul>li.li_shop .sub_m>li:last-child {
    padding: 0 30px 15px;
}

#header .head_inner nav>ul>li.li_shop .sub_m>li:hover a::after {
    width: 100%;
}

#header .head_inner nav>ul>li.li_shop .sub_m>li:hover>a {
    color: #000;
    font-weight: 500;
}

#header .head_inner nav>ul>li.li_shop .sub_m>li>a {
    display: block;
    transition: color .2s;
    width: max-content;
    font-size: 15px;
    font-weight: 300;
    color: #000;
    padding: 10px 0;
    position: relative;
    letter-spacing: -0.5px;
}

#header .head_inner nav>ul>li.li_shop .sub_m>li a::after {
    transition: width .6s;
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #000;
    position: absolute;
    bottom: 8px;
    left: 0;
    transform-origin: center center
}

#header .head_inner nav>ul>li.li_shop:last-child .sub_m>li:last-child>a {
    min-width: 175px;
}

#header .head_inner nav>ul>li.li_shop:nth-last-child(2) .sub_m > li:nth-child(3) > a{
    min-width: 103px;
}

#header .head_inner ul.user_icon {
    display: flex;
    align-items: center;
}

#header .head_inner ul.user_icon li {
    margin-left: 26px;
}

#header .head_inner ul.user_icon li a {
    display: block;
    position: relative;
}

#header .head_inner ul.user_icon li.li_wish .user_wish_count {
    position: absolute;
    display: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    line-height: 15px;
    top: -6px;
    right: -7px;
    font-size: 10px;
    text-align: center;
    background-color: var(--point01);
    color: var(--white);
}

#header .head_inner ul.user_icon li.li_cart a span {
    position: absolute;
    display: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    line-height: 15px;
    top: -6px;
    right: -7px;
    font-size: 10px;
    text-align: center;
    background-color: var(--point01);
    color: var(--white);
}

/* 헤더 서치 영역 */
#header .head_inner ul.user_icon li.li_search {
    margin: 0;
}

#header .head_inner ul.user_icon li.li_search .search fieldset {
    width: 0px;
    position: relative;
    transition: all .5s;
}

#header .head_inner ul.user_icon li.li_search .search fieldset input {
    transition: all .4s;
    width: 0;
    height: 100%;
    background: none !important;
    border: none !important
}

#header .head_inner ul.user_icon li.li_search .search fieldset a {
    text-indent: -9999px;
    background: url(/design/fordi/wib/pc/icon/header_search_icon.svg) no-repeat center top;
    background-size: contain;
    width: 24px;
    height: 23px;
    display: inline-block
}

/* 문의하기 */
#fix_area {
    position: fixed;
    right: -1%;
    bottom: 12%;
    opacity: 0;
    z-index: 20;
    transition: right .4s, opacity .6s;
}

#fix_area.show {
    opacity: 1;
    right: 2%;
}

#fix_area ul {
}

#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-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: 17px;
    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: #999;
    font-size: 11px;
}

/* 다찾다 검색 파인더 */
#allfinder-layer {
    position: fixed;
    top: -100%;
    left: 0;
    background: #fff;
    z-index: 1000;
    padding: 110px 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    transition: all 0.5s;
}

#allfinder-layer.on {
    top: 0;
}

#allfinder-layer .close_btn {
    display: block;
    position: absolute;
    top: 110px;
    right: 80px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url('/design/fordi/img/icon_close_big.png')no-repeat 50% 50%;
}

.finder-body {
    width: 1200px;
    margin: 0 auto;
}

.finder-search {
    border-bottom: 2px solid #120B19;
    position: relative;
    padding-right: 30px;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.finder-search tr {
    display: block;
    width: 100%;
}

.finder-search tr th {
    display: none;
}

.finder-search tr td {
    display: block;
    width: 100%;
}

.finder-search input[type="text"] {
    border: none;
    width: 100%;
    height: 29px;
    font-size: 14px;
}

.finder-search button {
    font-size: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: url('/design/fordi/img/icon_search.png')no-repeat right top;
    background-size: 27px;
}

#allfinder-layer table td {
    padding: 25px 0 15px;
    ; border-bottom: 1px solid #EBEBEB;
}

#allfinder-layer table th {
    padding: 25px 0;
    border-bottom: 1px solid #EBEBEB;
    text-align: left;
    font-size: 14px;
    color: #120B19;
    letter-spacing: -0.5px;
}

#allfinder-layer table td div > label {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

#allfinder-layer table td label > span {
    display: block;
    padding: 0 10px;
    font-size: 1px;
    color: #4C4D4E;
    letter-spacing: -0.5px;
    border: 1px solid #EBEBEB;
    background: #F8F8FA;
    line-height: 31px;
    border-radius: 3px;
}

#allfinder-layer table td label > span.on {
    border-color: #D35460;
    background: #D35460;
    color: #fff;
}

#allfinder-layer table td .finder-color label {
    font-size: 0;
    padding: 0;
    width: 27px;
    height: 27px;
    border: none;
    background: transparent;
}

#allfinder-layer table td .finder-color label span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    box-sizing: border-box;
    position: relative;
    font-size: 0;
}

#allfinder-layer table td .finder-color label span.on {
    border-color: transparent;
}

#allfinder-layer table td .finder-color label span.on:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/design/fordi/img/icon_option_chk.png')no-repeat 50% 50%;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-black, #allfinder-layer table td .finder-search-data > span.finder-option-color-black em {
    background-color: #000;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-white, #allfinder-layer table td .finder-search-data > span.finder-option-color-white em {
    background-color: #FFF;
    border: 1px solid #EBEBEB;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-white.on:after {
    background-image: url('/design/fordi/img/icon_option_chk_b.png');
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-gray, #allfinder-layer table td .finder-search-data > span.finder-option-color-gray em {
    background-color: #808080;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-beige, #allfinder-layer table td .finder-search-data > span.finder-option-color-beige em {
    background-color: #e5d0b2;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-brown, #allfinder-layer table td .finder-search-data > span.finder-option-color-brown em {
    background-color: #aa6810;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-navy, #allfinder-layer table td .finder-search-data > span.finder-option-color-navy em {
    background-color: #425583;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-blue, #allfinder-layer table td .finder-search-data > span.finder-option-color-blue em {
    background-color: blue;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-light-blue, #allfinder-layer table td .finder-search-data > span.finder-option-color-light-blue em {
    background-color: #62acff;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-red, #allfinder-layer table td .finder-search-data > span.finder-option-color-red em {
    background-color: red;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-orange, #allfinder-layer table td .finder-search-data > span.finder-option-color-orange em {
    background-color: orange;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-yellow, #allfinder-layer table td .finder-search-data > span.finder-option-color-yellow em {
    background-color: yellow;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-pink, #allfinder-layer table td .finder-search-data > span.finder-option-color-pink em {
    background-color: pink;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-purple, #allfinder-layer table td .finder-search-data > span.finder-option-color-purple em {
    background-color: purple;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-jaju, #allfinder-layer table td .finder-search-data > span.finder-option-color-jaju em {
    background-color: #a63f7f;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-khaki, #allfinder-layer table td .finder-search-data > span.finder-option-color-khaki em {
    background-color: #2f5e2f;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-green, #allfinder-layer table td .finder-search-data > span.finder-option-color-green em {
    background-color: green;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-light-green, #allfinder-layer table td .finder-search-data > span.finder-option-color-light-green em {
    background-color: #72dd95;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-silver, #allfinder-layer table td .finder-search-data > span.finder-option-color-silver em {
    background-color: #dfdfdf;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-gold, #allfinder-layer table td .finder-search-data > span.finder-option-color-gold em {
    background-color: #cfbc4e;
}

#allfinder-layer table td .finder-color .finder-option-color.finder-option-color-apricot, #allfinder-layer table td .finder-search-data > span.finder-option-color-apricot em {
    background-color: #fbceb1;
}

#allfinder-layer table td .finder-price-input {
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
    color: #4C4D4E;
}

#allfinder-layer table td .finder-price-input label {
    background: #fff;
    padding: 0 10px;
    margin: 0 10px 0;
    border: 1px solid #EBEBEB;
    border-radius: 3px;
    vertical-align: middle;
}

#allfinder-layer table td .finder-price-input label input {
    width: 95px;
    border: none;
    height: 31px;
}

#allfinder-layer table td.finder-search-data-wrap {
    background: #F8F8FA;
    border: none;
    padding: 25px 25px 15px 25px;
}

#allfinder-layer table td .finder-search-data {
    font-size: 0;
}

#allfinder-layer table td .finder-search-data > span {
    display: inline-block;
    vertical-align: top;
    background: #363636;
    border-radius: 3px;
    line-height: 33px;
    padding: 0 10px;
    font-size: 13px;
    color: #fff;
    letter-spacing: -0.5px;
    margin-right: 10px;
    margin-bottom: 10px;
}

#allfinder-layer table td .finder-search-data > span .fa-close {
    display: inline-block;
    vertical-align: middle;
    width: 11px;
    height: 11px;
    background: url('/design/fordi/img/icon_del_w.png')no-repeat center center;
    margin-left: 10px;
    margin-top: -3px;
    cursor: pointer;
}

#allfinder-layer table td .finder-search-data > span.finder-option-color {
    font-size: 0;
}

#allfinder-layer table td .finder-search-data > span.finder-option-color em {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.finder-btn-c {
    text-align: center;
    padding: 50px 0 0;
}

.finder-btn-c > * {
    display: inline-block;
    vertical-align: top;
    width: 200px;
    box-sizing: border-box;
    height: 60px;
    line-height: 58px;
    border: 1px solid #4C4D4E;
    border-radius: 4px;
    font-size: 16px;
    color: #363636;
    letter-spacing: -0.5px;
    font-weight: 500;
    margin-right: 10px;
    font-family: 'Inter','Noto Sans KR';
}

.finder-btn-c > *:last-child {
    margin: 0;
}

.finder-btn-c button {
    border-color: #D35460;
    background: #D35460;
    color: #fff;
}

.finder-search .search-auto-complete-list {
    position: absolute;
    top: 46px;
    left: 0;
    width: 100%;
    background: #F8F8FA;
    z-index: 9;
}

.finder-search .search-auto-complete-list ul {
    padding: 10px 15px 0;
}

.finder-search .search-auto-complete-list ul li a {
    font-size: 13px;
    color: #120B19;
    display: block;
    padding: 10px 0;
}

.finder-search .search-auto-complete-list .search-list-close {
    display: block;
    padding: 10px 15px 15px;
    font-size: 13px;
    color: #120B19;
    font-weight: 500;
}

.sec1_bar {
    border-bottom: 1px solid #eee;
    width: 100%;
    background-color: rgba(255, 255, 255, .8);
}
.sec1_bar a {
    color: #ffffff;
    font-size: 12px;
    font-family:'Suit';
}

.sec1_bar .swiper {
    margin: 0 auto;
    height: 35px;
}

.sec1_bar .swiper ul {
    width: 100%;
}

.sec1_bar .swiper ul li.swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    line-height: 35px;
}

.sec1_bar .swiper .btn {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 40;
}

.sec1_bar .swiper .btn>div {
    width: 25px;
    height: 22px;
    text-align: center;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sec1_bar .swiper .btn>div:first-child {
    border-bottom: 1px solid #eee;
}

.sec1_bar p span {
    display: flex;
    margin-right: 10px;
}

/* 전체 카테고리 영역 */
.allCategory { display: none;}
/* BASIC css end */

