@charset "utf-8";

/* ---------- font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
/* -------------------------- */

:root{
    --color--primary: #222222;
    --color--D-gray: #626262;
    --color--gray: #767676;
    --color--L-gray: #E9E9E9;
    --color--text: #222222;
    --lnb-height:0;
}

/* common */
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, cite, code, del, em, img, ins, q, small, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, nav, section, summary, time, mark, audio, video, button,textarea,input,select{
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.025em;
}

.editor__cont *{
	font-family: revert-layer !important;
}

input[type="checkbox"],
input[type="radio"]
{
	accent-color: #222;
}
body.fixed{
    overflow: hidden;
}

/* 디폴트 디자인 초기화 */
button {
    border: 0;
    background: inherit;
}
ul{
    padding: 0;
}
li {
    list-style: none;
}

/* 헤더, 푸터, 메인, 리스트 페이지 focus 밑줄 제거 */
.header a:focus,
.footer a:focus,
.main__container a:focus,
.item__container a:focus{
    text-decoration: none !important;
}

.section__inner{
    width: calc(100% - 48px);
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
}
.main-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 156px;
    height: 60px;
}
.main-logo img{
    display: block;
    width: 136px;
}

.mo-show{
    display: none;
}

/* IR */
.screen-out{
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
}

/* header */
.header{
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #fff;
    /* overflow: hidden; */
    z-index: 900;
    border-bottom: 1px solid var(--color--L-gray);
}
.header.float{
    height: 150px;
}
.header.fixed{
    position: fixed;
    left: 0;
    top: 0;
    height: 100px;
}
.header.on{
    height: auto;
}
.header.fixed .header-top__banner{
    display: none;
}
.dim-layer{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 800;
}
.dim-layer.on{
    display: none;
}
.dim-layer-2{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 950;
}
.dim-layer-2.on{
    display: none;
}
.header-top__banner{
    width: 100%;
    height: 48px;
    background-color: var(--color--primary);
    font-size: 14px;
    line-height: 1.71;
    font-weight: 400;
}
.header-top__inner{
    position: relative;
    width: calc(100% - 48px);
    max-width: 1200px;
    margin: 0 auto;
}
.header-top-div {
    display: flex;
    line-height: 48px;
    justify-content: center;
}
.header-top__banner em{
    display: block;
    text-align: center;
    font-size: 14px;
    color: #fff;
}
.header-top__banner a{
    margin-left: 8px;
    color: inherit;
    font-weight: 500;
    color: #fff;
}
.btn-top-banner{
    position: absolute;
    right: 20px;
    top: 50%;
    padding-right: 28px;
    color: #fff;
    transform: translateY(-50%);
    background: url(../images/common/icon_close_wh.svg) no-repeat 100% center/13px;
}
.header-container-wrap{
	display: flex;
	justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}
.header__inner{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
    width: calc(100% - 48px);
}
.header__inner.header_gnb{
    height: 80px;
    margin-top: 0px;
	max-width: 1240px;
}
.header__left,
.header__right{
    display: flex;
    align-items: center;
    height: 100%;
}

.header .gnb{
    height: 100%;
}
.gnb__list{
    display: flex;
    align-items: center;
    height: 100%;
    column-gap: 8px;
}
.gnb__item{
    height: 100%;
}
.gnb__item>a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 140px;
    height: 100%;
    font-size: 18px;
    line-height: 2;
    color: var(--color--text);
    text-align: center;
    font-weight: 500;
}
.gnb__item>a::after{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: 0px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--color--primary);
    transform: translateX(-50%);
    transition: width 0.3s;
}
.gnb__item>a.on
.gnb__item>a:focus,
.gnb__item>a:active{
    font-weight: 600;
}
.gnb__item>a.on::after,
.gnb__item>a:focus::after,
.gnb__item>a:active::after{
    width: 48px;
}

.beta-badge {
    display: inline-block;
    padding: 0px 7px;
    background-color: black;
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
}

.lnb__wrap{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    overflow: hidden;
    width: 100%;
    /* height: 0; */
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    background: #fff;
    z-index: 900;
    /* opacity: 0; */
    /* transition: all 0.3s; */
}
.lnb__inner{
    display: flex;
    width: calc(100% - 80px);
    max-width: 1245px;
    height: 365px;
    margin: 0 auto;
    padding: 20px 0;
}
.lnb__left,
.lnb__right{
    display: flex;
}
.lnb__left{
    height: 100%;
    column-gap: 20px;
    border-right: 1px solid var(--color--L-gray);
}
.lnb__banner{
    overflow: hidden;
    width: 293px;
    height: 404px;
    border-radius: 8px;
    transition: width 0.3s, height 0.3s;
}
.lnb__banner>a{
    display: block;
    width: 100%;
    height: 100%;
}
.lnb__banner img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.depth-2__list{
    position: relative;
    width: 160px;
}
.depth-2__list>*+*{
    margin-top: 4px;
}
.depth-2__item{
    padding-right: 20px;
}
.depth-2__item>a{
    display: block;
    position: relative;
    padding: 12px 0;
    padding-left: 4px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--color--text);
}
.depth-2__item>a::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 0px;
    border-radius: 2px;
    background-color: var(--color--primary);
    transition: height 0.3s;
    transform: translateY(-50%);
}
.depth-2__item>a::after{
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -11px;
    border-radius: 2px;
    background: url(../images/common/lnb_arrow.svg) no-repeat center center/6.5px;
    transform: translateX(-10px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}
.depth-2__item>a.on,
.depth-2__item>a:hover{
    font-weight: 600;
}
.depth-2__item>a.on::before,
.depth-2__item>a:hover::before{
    height: 24px;
}
.depth-2__item.side-lnb>a.on::after,
.depth-2__item.side-lnb>a:hover::after{
    transform: translateX(0px);
    opacity: 1;
}
.gnb__item:nth-child(2) .depth-2__list{
    margin-left: calc(145px*1)
}
.gnb__item:nth-child(3) .depth-2__list{
    margin-left: calc(145px*2);
}
.gnb__item:nth-child(4) .depth-2__list{
    margin-left: calc(145px*3);
}

.gnb_right .gnb__item:nth-child(1) .depth-2__list{
    margin-left: calc(145px*4 + 153px);
}
.gnb_right .gnb__item:nth-child(2) .depth-2__list{
    margin-left: calc(145px*5 + 153px);
}
.gnb_right .gnb__item:nth-child(3) .depth-2__list{
   margin-left: calc(145px*6 + 153px);
}

.lnb__right{
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 100%;
    top: 0;
}
.lnb__right.on{
    opacity: 1;
    visibility:visible;
}
.depth-3__col{
    width: 200px;
    padding: 0 20px;
    border-right: 1px solid var(--color--L-gray);
    text-align: center;
}
.depth-3__col:last-child{
    border-right: none;
}
.depth-3__title{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 4px;
    padding: 12px 0;
    cursor: pointer;
}
.depth-3__item>a{
    display: block;
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 24px;
    color: var(--color--D-gray);
}
.depth-3__item>a:hover,
.depth-3__item>a:focus,
.depth-3__item>a:active{
    background-color: var(--color--primary);
    color: #fff;
}

.btn-item-add{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 40px;
    border: 1px solid var(--color--primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color--text);
    transition: background-color 0.3s, color 0.3s;
}
.btn-item-add:hover,
.btn-item-add:focus,
.btn-item-add:active,
.btn-item-add.on{
    background-color: var(--color--primary);
    color: #FAFAFA;
}
.header-btn__list{
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-left: 20px;
}
.header-btn__item>a{
    display: block;
    min-width: 70px;
    color: var(--color--D-gray);
    text-align: center;
}
.header-btn__item>a>.count{
    color: #F53743;
    font-weight: 500;
}
.header-btn__item{
    position: relative;
}
.header-btn__item::after{
    content: "";
    display: block;
    position: absolute;
    right: -3px;
    top: 50%;
    width: 1px;
    height: 12px;
    background-color: var(--color--D-gray);
    transform: translateY(-50%);
}
.header-btn__item:last-child::after{
    display: none;
}
.btn-header-search > a{
    cursor: pointer;
    margin-left: 4px;
}
.btn-header-search-ico{
    width: 17px;
    height: 17px;
    margin-left: 9px;
}
.header-search__box{
    width: 700px;
}
.header-search__box>form{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    padding: 0 20px;
    width: 100%;
    height: 100%;
	margin-left: 10px;
}
.header-search__box .common-select{
    width: 120px;
    padding-left: 20px;
}
.header-search__box .common-select .list>li{
    padding: 0 20px;
}
.header-search__box .item-search{
    width: 100%;
    padding-left: 20px;
}

/* footer */
.footer{
    padding: 40px 0;
    background-color: var(--color--primary);
    color: #FAFAFA;
}
.footer__inner{
    display: flex;
    justify-content: space-between;
    width: calc(100% - 48px);
    max-width: 1200px;
    margin: 0 auto;
}
.footer__left{
    max-width: 813px;
}
.footer-info__list{
    display: flex;
    column-gap: 21px;
    margin-top: 20px;
}
.footer-info__list>li{
    position: relative;
}
.footer-info__list>li::after{
    content: "";
    display: block;
    position: absolute;
    right: -11px;
    top: 50%;
    width: 1px;
    height: 12px;
    background-color: var(--color--gray);
    transform: translateY(-50%);
}
.footer-info__list>li:last-child::after{
    display: none;
}
.footer-info__list .mo-br{
    display: none;
}
.footer-info__list a{
    font-size: 14px;
    line-height: 40px;
    color: var(--color--gray);
}
.footer-info__list a.privacy{
    font-weight: 500;
    color: #FAFAFA;
}
.company-info__wrap{
    margin-top: 20px;
    margin-bottom: 20px;
}
.company-info__row{
    display: flex;
    column-gap: 21px;
}
.company-info__row>dl{
    display: flex;
    position: relative;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 4px;
}
.company-info__row>dl::after{
    content: "";
    display: block;
    position: absolute;
    right: -11px;
    top: 50%;
    width: 1px;
    height: 12px;
    background-color: #FAFAFA;
    transform: translateY(-50%);
}
.company-info__row>dl:last-child::after{
    display: none;
}
.company-info__row:first-child>dl{
    font-size: 16px;
    line-height: 2;
    margin-top: 0;
    margin-bottom: 8px;
}
.company-info__row .mo-br{
    display: none;
}
.copyright__wrap{
    color: var(--color--gray);
}
.copyright__wrap>.copyright-info{
    font-size: 13px;
    line-height: 20px;
}
.copyright__wrap>.copyright{
    font-size: 12px;
    line-height: 20px;
    margin-top: 8px;
}

.footer__right{
    text-align: right;
}
.footer-sns__list{
    display: flex;
    justify-content: right;
    column-gap: 20px;
    margin-bottom: 20px;
}
.footer-sns__list.mo-show{
    display: none;
}
.footer-sns__list a{
    display: block;
    width: 40px;
    height: 40px;
}
.footer-sns__list a>img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.footer-cs__title{
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 40px;
    font-weight: 500;
}
.footer-cs__title > a{
	color : #fff;
}
.cs-info__list>*+*{
    margin-top: 4px;
}
.cs-info__list>li{
    font-size: 16px;
    line-height: 2;
}
.cs-info__text{
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
    color: var(--color--gray);
}

/* floating menu */
.floating-menu{
    position: fixed;
    right: 95px;
    top: 55%;
    width: 120px;
    transform: translateY(-50%);
    z-index: 700;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.floating-menu.on{
    opacity: 1;
    visibility: visible;
}
.floating-menu__inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.latest__wrap{
    width: 100%;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 8px;
    padding: 20px 0;
    text-align: center;
    box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.12);
}
.latest__wrap>span{
    font-size: 14px;
    line-height: 24px;
}
.floating-slider__wrap{
    margin-top: 20px;
}
.floating-slider__wrap .bx-wrapper{
    padding: 16px 0;
}
.floating-slider__wrap .bx-wrapper .bx-controls{
    position: static;
}
.floating-slider__wrap .bx-prev,
.floating-slider__wrap .bx-next{
    position: absolute;
    left: 50%;
    overflow: hidden;
    width: 100%;
    height: 24px;
    color:transparent;
    text-indent: -9999px;
    transform: translateX(-50%);
}
.floating-slider__wrap .bx-prev{
    top: -12px;
    background: url(../images/common/slider_up.svg) no-repeat center center/14px;
}
.floating-slider__wrap .bx-next{
    bottom: -8px;
    background: url(../images/common/slider_down.svg) no-repeat center center/14px;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
.floating-slider>li{
    text-align: center;
}
.floating-slider>li>a{
    overflow: hidden;
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
}
.floating-slider>li img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.quick-btn__list{
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 8px;
}
.quick-btn__list>li{
    border-radius: 8px;
}
.btn-quick-view{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    background-color: #fff;
    font-size: 14px;
    color: var(--color--text);
    text-decoration: none !important;
    box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.12);
}
.btn-quick-view:hover,
.btn-quick-view:focus,
.btn-quick-view:active{
    color: inherit;
    text-decoration: none !important;
}
.btn-quick-view.open-list{
    position: relative;
    padding-left: 0;
    padding-right: 12px;
}
.btn-quick-view.open-list::after{
    content: "";
    display: block;
    position: absolute;
    right: 13px;
    top: 50%;
    width: 14px;
    height: 8px;
    margin-top: -3.5px;
    background: url(../images/common/slider_down.svg) no-repeat center center/contain;
}
.btn-quick-view.open-list.on::after{
    transform: rotate(-180deg);
}
.my-state__list{
    display: none;
    margin-top: 4px;
    padding: 6px 18px;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    background-color: #FAFAFA;
    box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.12);
}
.my-state__list>li{
    display: flex;
    justify-content: space-between;
}
.my-state__label,
.my-state__text{
    font-size: 12px;
    line-height: 2;
    color: var(--color--D-gray);
}
.my-state__list>li>a{
    font-size: 12px;
    line-height: 2;
    color: var(--color--D-gray);
    width: 100%;
    justify-content: space-between;
    display: flex;
}
.my-state__list>li>a:hover{
    text-decoration: underline !important;
}
.floating-menu .btn-top
,.floating_on_btn .btn-top{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    margin-top: 20px;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    background-color: var(--color--primary);
    font-size: 14px;
    color: #fff;
    box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.12);
}
.floating-menu .btn-top::after
,.floating_on_btn .btn-top::after{
    content: "";
    width: 24px;
    height: 24px;
    margin-left: 4px;
    background: url(../images/common/slider_up.svg) no-repeat center center/11px;
    filter: brightness(0) invert(1);
}

/* fixed menu */
/* 모바일웹/ios 앱 분기 */
/* 모바일웹 */
.fixed-menu{
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 64px;
    border-top: 1px solid #DDDDDD;
    background-color: #fff;
    z-index: 999;
    
    padding-top: 10px;
    padding-bottom: 10px;
}

#quickTop{
	display:none;
}

/* ios 앱(padding-bottom 추가 여백) */
.fixed-menu.pb-30,
.mo-search__inner.pb-30{
    padding-bottom: 30px;
}

.fixed-menu a:focus{
    text-decoration: none !important;
}
.fixed-menu__list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10.5px;
    width: calc(100% - 48px);
    max-width: 500px;
    height: 100%;
    margin: 0 auto;
}
.fixed-menu__item>a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 54px;
}
.fixed-menu__item span{
    font-size: 12px;
    line-height: 20px;
    color: var(--color--text);
}
.fixed-menu__img{
    position: relative;
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}
.header-btn__item .marker
,.fixed-menu__img .marker{
    position: absolute;
    right: -6px;
    top: 0;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #F53743;
}
.fixed-menu__img>img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: contain;
}
.mo-search__wrap{
    display: none;
    position: fixed;
    left: 0;
    bottom: -64px;
    width: 100%;
    height: 120px;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 950;
}
.mo-search__wrap>form{
    width: 100%;
    height: 100%;
}
.mo-search__inner{
    display: flex;
    justify-content: center;
    position: relative;
    column-gap: 8px;
    width: calc(100% - 32px);
    height: 100%;
    padding: 48px 0 24px;
    margin: 0 auto;
}
.mo-search__inner .common-select{
    width: 80px;
    height: 40px;
    line-height: 40px;
    padding: 0 8px;
    font-size: 14px;
}
.mo-search__inner .common-select::after{
    right: 8px;
}
.mo-search__inner .item-search{
    width: calc(100% - 84px);
    padding-left: 8px;
}
.btn-search-close{
    position: absolute;
    width: 16px;
    height: 16px;
    right: 16px;
    top: 16px;
    background: url(../images/common/icon_close.svg) no-repeat center center/14px;
    z-index: 10;
}

/* side menu */
.mobile-nav{
    display: none;
    width: 66%;
    max-width: 240px;
    min-width: 240px;
    height: 100dvh;
    position: fixed;
    left: -100%;
    top: 0;
    background-color: #fff;
    z-index: 1000;
}
.mobile-nav__header{
    position: relative;
    padding: 16px 0;
    border-bottom: 2px solid var(--color--L-gray);
}
.btn-menu-close{
    position: absolute;
    right: 16px;
    top: 18px;
    width: 24px;
    height: 24px;
    background: url(../images/common/icon_close.svg) no-repeat center center/13px;
    padding: 0;
}
.mobile-nav__header>p{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    text-align: center;
}
.mobile-nav__wrap{
    overflow-y: auto;
    max-height: calc(100dvh - 60px);
}
.mobile-nav__wrap::-webkit-scrollbar {
    width: 6px;
}
.mobile-nav__wrap::-webkit-scrollbar-thumb {
    background-color: var(--color--gray);
    border-radius: 10px;
    background-clip: padding-box;
    border: 1px solid transparent;
}
.mobile-nav__wrap::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus,
.mobile-nav__list a:active{
    text-decoration: none !important;
}
.mobile-nav__list .depth-1{
    border-bottom: 1px solid var(--color--L-gray);
}
.mobile-nav__list .depth-1>a{
    display: flex;
    align-items: center;
    position: relative;
    height: 56px;
    padding: 0 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color--text);
}
.mobile-nav__list .depth-1>a::after{
    content: "";
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    background: url(../images/common/slider_down.svg) no-repeat center center/14px;
    transition: transform 0.3s;
}
.mobile-nav__list>.depth-1.open>a::after{
   transform: rotateX(180deg);
}
.mobile-nav__list .depth-1.no-depth>a::after{
    transform: rotate(-90deg);
}
.depth-2__menu{
    display: none;
    border: none;
    border-top: 1px solid var(--color--L-gray);
}
.depth-1>.depth-2__menu{
    padding: 16px 24px;
}
.depth-1>.depth-2__menu>*+*{
    margin-top: 16px;
}
.depth-2>a{
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: var(--color--text);
}
.dropdown-depth-2::after{
    content: "";
    display: block;
    position: absolute;
    right: -8px;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    background: url(../images/common/slider_down.svg) no-repeat center center/14px;
    transition: transform 0.3s;
}
.depth-3__menu{
    display: none;
    flex-direction: column;
    border-top: none;
    padding: 16px 8px;
}
.depth-2.open .dropdown-depth-2::after{
    transform: rotateX(180deg);
 }
.depth-3__menu>a{
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: var(--color--D-gray);
}
.depth-3__menu>a+a{
    margin-top: 16px;
}

/* mypage menu */
.mypage-menu{
    display: none;
    width: 246px;
    height: 100dvh;
    position: fixed;
    right: -100%;
    top: 0;
    background-color: #fff;
    z-index: 1000;
}
.mypage-menu.on{
    display: none;
}
.mypage-menu__inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.mypage-menu__header{
    position: relative;
    width: 100%;
    padding: 16px 0;
    border-bottom: 2px solid var(--color--L-gray);
}
.mypage-menu__header>p{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    text-align: center;
}
.mypage-content__wrap{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-y: auto;
    width: 100%;
    height: calc(100dvh - 60px);
}
.mypage-content__wrap::-webkit-scrollbar {
    width: 6px;
}
.mypage-content__wrap::-webkit-scrollbar-thumb {
    background-color: var(--color--gray);
    border-radius: 10px;
    background-clip: padding-box;
    border: 1px solid transparent;
}
.mypage-content__wrap::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}
.mypage-menu-user{
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--color--L-gray);
}
.user-name__wrap{
    display: flex;
    align-items: center;
    column-gap: 4px;
    width: 100%;
}
.user-name__wrap.login{
    flex-direction: column;
    align-items: flex-start;
}
.login-btn__wrap{
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.login-btn__wrap>a{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color--text);
}
.login-btn__wrap>.bar{
    display: block;
    width: 1px;
    height: 8px;
    background-color: #999999;
}
.user-name__wrap.login>p{
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
    color: #9F9F9F;
}
.user-name__box{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    padding: 4px 8px;
    border: 1px solid var(--color--L-gray);
    border-radius: 6px;
    font-size: 12px;
    line-height: 20px;
    color: var(--color--D-gray);
}
.user-name__box>.user-name{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color--text);
}
.user-name__wrap>a{
    padding: 6px 8px;
    border: 1px solid var(--color--L-gray);
    border-radius: 6px;
    font-size: 12px;
    line-height: 20px;
    color: #9F9F9F;
}
.user-grade__wrap{
    margin-top: 16px;
}
.user-grade__row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    line-height: 20px;
    color: var(--color--D-gray);
}
.user-grade__row .icon-user-grade{
    width: 13px;
    margin-left: 4px;
}
.user-grade__row>span:nth-child(2){
    color: var(--color--text);
}
.mypage-menu-info{
    padding: 16px;
    border-bottom: 1px solid var(--color--L-gray);
}
.mypage-menu__list{
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}
.mypage-menu__item{
    width: 45px;
}
.mypage-menu__item>a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mypage-menu__img{
    width: 24px;
}
.mypage-menu__img>img{
    width: 100%;
}
.mypage-menu__item>a>span{
    font-size: 10px;
    line-height: 14px;
    color: var(--color--D-gray);
    text-align: center;
}
.my-state__wrap{
    display: flex;
    column-gap: 4px;
}
.my-state__box>a{
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: var(--color--text);
}
.my-state__wrap .my-state__list{
    display: block;
    background-color: #fff;
    padding: 8px;
    box-shadow: none;
}
.my-state__wrap .my-state__item>span,
.my-state__wrap .my-state__item>a{
    font-size: 12px;
    line-height: 20px;
    color: var(--color--D-gray);
}
.my-state__wrap .my-state__item>a{
    width: 83px;
    text-align: right;
    color: var(--color--text);
}
.mypage-menu__sub{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    margin: 16px 0;
}
.mypage-menu__sub>a{
    font-size: 12px;
    line-height: 20px;
    color: var(--color--D-gray);
}
.mypage-menu__sub>.bar{
    display: block;
    width: 1px;
    height: 8px;
    background-color: #9F9F9F;
}
.mypage-menu__footer{
    width: 100%;
    padding: 16px;
    border-top: 1px solid var(--color--L-gray);
}
.mypage-menu__footer>p{
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--color--D-gray);
}
.mypage-footer__list>li{
    margin-top: 8px;   
}
.mypage-footer__list>li>span{
    display: block;
    font-size: 12px;
    line-height: 20px;
    color: var(--color--D-gray);
}
.mypage-footer__list>li:last-child>span{
    color: #9F9F9F;
}

.mypage-guest-p {
    padding-top: 20px;
    font-size: 16px;
    font-weight: 500;
}

.mypage-guest-p-sub {
    font-size: 10px;
    padding: 3px 0px 20px 0px;
}

a.mypage-guest-btn {
    padding: 6px 28px;
    border: 1px solid var(--color--L-gray);
    border-radius: 6px;
    font-size: 12px;
    line-height: 20px;
    color: var(--color--D-gray);;
}


/* main */
.main{
    position: relative;
    padding-top: 20px;
    padding-bottom: 40px;
}
.main.scroll{
    padding-top: 120px;
}


/* visual */
.visual__inner{
    display: flex;
    column-gap: 22px;
    width: calc(100% - 48px);
    max-width: 1880px;
    aspect-ratio: 3.917 / 1;
    margin: 0 auto;
}
.visual-swiper{
    width: 73.4%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.visual-swiper .bx-wrapper{
    height: 100%;
}
.visual-swiper .bx-viewport{
    height: 100% !important;
}
.visual-swiper .swiper-wrapper{
    height: 100%;
}
.visual-swiper .swiper-wrapper>li{
    height: 100%;
    background-color: #aaa;
}
.visual-swiper .swiper-wrapper>li img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.visual-swiper__text{
    position: absolute;
    left: 50%;
    top: 25%;
    display: flex;
    flex-direction: column;
    width: calc(100% - 60px);
    max-width: 660px;
    transform: translateX(-50%);
    color: #fff;
}
.visual-swiper__title{
    opacity: 0;
}
.visual-swiper__title>.title-info{
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.5;
}
.visual-swiper__title>.title{
    display: block;
    margin-bottom: 8px;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
}
.visual-swiper__date{
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0;

}
.visual-swiper__text .visual__link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
}
.swiper-slide-active .visual-swiper__title{
    animation: fadeUp 0.6s ease-out both;
}
.swiper-slide-active .visual-swiper__date{
    animation: fadeUp 0.6s 0.3s ease-out both;
}
.swiper-slide-active .visual-swiper__text .visual__link{
    animation: fadeUp 0.6s 0.6s ease-out both;
}

.visual-swiper__button{
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 40px;
    column-gap: 4px;
    width: calc(100% - 60px);
    max-width: 660px; 
    transform: translateX(-50%);
    z-index: 10;
}
.visual-swiper .swiper-pagination-fraction{
    position: static;
    width: fit-content;
    margin-right: 4px;
    padding: 0 12px;
    border-radius: 8px;
    background-color:  rgba(0, 0, 0, 0.3);
    font-size: 14px;
    line-height: 36px;
    color: #9F9F9F;
}
.visual-swiper .swiper-pagination-current{
    color: #fff;
}
.visual-swiper .swiper-button-prev,
.visual-swiper .swiper-button-next{
    position: static;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-top: 0;
}
.visual-swiper .swiper-button-prev:after,
.visual-swiper .swiper-button-next:after{
    overflow: hidden;
    color:transparent;
    text-indent: -9999px;
}
.visual-swiper .swiper-button-prev{
    background: url(../images/common/slider_prev.svg) no-repeat center center/8px rgba(0, 0, 0, 0.3);
}
.visual-swiper .swiper-button-next{
    background: url(../images/common/slider_next.svg) no-repeat center center/8px rgba(0, 0, 0, 0.3);
}
.visual-swiper .swiper-button-start,
.visual-swiper .swiper-button-stop{
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.visual-swiper .swiper-button-start{
    background: url(../images/common/icon_play.svg) no-repeat center center/10px rgba(0, 0, 0, 0.3);
}
.visual-swiper .swiper-button-stop{
    background: url(../images/common/icon_stop.svg) no-repeat center center/10px rgba(0, 0, 0, 0.3);
}

.visual-swiper .swiper-button-start.active{
    display: none;
}
.visual-swiper .swiper-button-stop.active{
    display: none;
}

.main-banner__wrap{
    position: relative;
    overflow: hidden;
    width: 26.6%;
    height: 100%;
    border-radius: 8px;
    /*box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);*/
}
.main-banner__wrap>img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.main-banner__bg{
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(100% - 60px);
    max-width: 320px;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
}
.main-banner__text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(100% - 60px);
    max-width: 320px;
    height: 100%;
    color: #fff;
    transform: translateX(-50%);
}
.main-banner__title{
    opacity: 0;
    animation: fadeUp 0.6s ease-out both;
}
.main-banner__title>.title-info{
    display: block;
    position: relative;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}
.main-banner__title>.title-info::before,
.main-banner__title>.title-info::after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%);
}
.main-banner__title>.title-info::before{
    left: -14px;
}
.main-banner__title>.title-info::after{
    right: -14px;
}
.main-banner__title>.title{
    display: block;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
}
.main-banner__date{
    margin: 40px 0;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 0.6s 0.3s ease-out both;
}
.main-banner__date>*+*{
    margin-top: 20px;
}
.main-banner__date>.date-info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-banner__date>.date-info>span:nth-child(1){
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;   
}
.main-banner__date>.date-info>span:nth-child(2){
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.7;
}
.main-banner__link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 8px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: var(--color--text);
    opacity: 0;
    animation: fadeUp 0.6s 0.6s ease-out both;
    margin-top: 90%;
}
.main-banner__link:hover,
.main-banner__link:focus,
.main-banner__link:active{
    color: var(--color--text);
}

.content__wrap{
    position: relative;
}
/* category */
.category__section{
    padding: 70px 0px;
}
.category__list{
    display: flex;
    gap: 40px;
    justify-content: center;
	align-items: center;
}
.secHand_category_container{
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 20px 0px;
}
.secHand_category__list{
	display: flex;
	justify-content: space-around;
}
.category__item {
	align-items: center;
	height: 100%;
}
.category__item a {
	align-items: center;
    display: flex;
    flex-direction: column;
}
.category__img{
    width: 80px;
    height: 80px;
    border: 1px solid var(--color--L-gray);
    border-radius: 50%;
    background-color: #FAFAFA;
    transition: border 0.3s, font-weight 0.3s;
}
.category__img>img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.category__item>a>span{
    display: block;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color--text);
    text-align: center;
    white-space: nowrap;
}

.category__item.on .category__img,
.category__item:hover .category__img{
    background-color: #fff;
    border-color: var(--color--primary);
}
.category__item.on>a>span,
.category__item:hover>a>span{
    font-weight: 500;
}

/* 해당 페이지의 카테고리 표시 */
.category__item.current .category__img{
    background-color: #fff;
    border-color: var(--color--primary);
}
.category__item.current>a>span{
    font-weight: 600;
}

.category__item.mcurrent>a>span{
	border-bottom: 2px solid;
}

/* best item */
.main__title{
    font-size: 40px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}
.main__sub-text{
    position: relative;
    margin-top: 4px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 24px;
    color: var(--color--gray);
    text-align: center;
}
.view-more__link{
    position: absolute;
    right: 0;
    top: 0;
    padding-right: 23px;
    font-size: 16px;
    line-height: 2;
    color: var(--color--D-gray);
    background: url(../images/common/icon_more.svg?var=24) no-repeat calc(100% - 5px) center/14px;
}
.view-more__link:hover,
.view-more__link:focus,
.view-more__link:active{
    color: var(--color--D-gray);
}

.best-item__section,
.live-item__section{
    padding-bottom: 100px;
}
.item__grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}
.item__grid.repeat4{
    grid-template-columns: repeat(4, 1fr);
	width: 100%;
}
.item__grid_4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 110px;
}
.item__grid_6{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.item__img{
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    background-color: #fff;
}
.live-item__section .item__img{
	aspect-ratio: 1/1.4;
}
.item__img>img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: contain;
}
.item__grid_4 .item__img>img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.item__box .item__img{
    margin-bottom: 11px;
}
.item__img .btn-item-like{
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    border: 1px solid var(--color--L-gray);
    background: url(../images/common/icon_heart_off.png) no-repeat center center/24px #FAFAFA;
}
.item__img .btn-item-like.on{
    background: url(../images/common/icon_heart_on.png) no-repeat center center/24px #FAFAFA;
}
.btn-like.on{
	background: url(../images/common/icon_heart_on.png) no-repeat calc(50% - 30px) center/24px #d9d9d9 !important;
}
.item__img>.state{
    position: absolute;
    left: 8px;
    top: 8px;
    padding: 4px 12px;
    border-radius: 4px;
    background-color: #F53743;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
}
.item__img>.state.live{
	background-color: #ff0a00;
}
.item__img>.state.gray{
	background-color: var(--color--gray);
}
.item__img>.live_time{
    position: relative;
    left: calc(50% - 55px);
    bottom: 40px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}
.item__img>.live_in{
    position: relative;
    left: calc(50% - 75px);
    bottom: 42px;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 16px;
    color: #fff;
    background-color: var(--color--primary);
}
.item-text__wrap .item__title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color--text);
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	word-break: break-all;
/*     height: 50px; */
}
.item-text__wrap .item__title>em{
    font-size: inherit;
    line-height: inherit;
    font-weight: 500;
    color: #F53743;
    padding-right: 0.225em;
}
.item-text__wrap .item__price{
    margin-top: 4px;
}
.item-text__wrap .item__price>span{
    font-size: 16px;
    line-height: 2;
    color: var(--color--text);
}
.item-text__wrap .item__price>.price{
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--color--text);
    margin-right: 2px;
}
.item__grid .item-info__wrap,
.item__grid_4 .item-info__wrap,
.item__grid_6 .item-info__wrap{
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.71;
    color: var(--color--D-gray);
}
.item__grid .item-info__wrap>.bar,
.item__grid_4 .item-info__wrap>.bar,
.item__grid_6 .item-info__wrap>.bar{
    width: 1px;
    height: 12px;
    background-color: #9F9F9F;
}
.item__grid .item-info__wrap .item-info.time,
.item__grid_4 .item-info__wrap .item-info.time,
.item__grid_6 .item-info__wrap .item-info.time{
    padding-left: 28px;
    background: url(../images/common/icon_time.svg) no-repeat 3px center/16px;
}
.item__grid .item-info__wrap .item-info .count,
.item__grid_4 .item-info__wrap .item-info .count,
.item__grid_6 .item-info__wrap .item-info .count{
    margin-right: 2px;
}

.item_off_no {
    height: auto;
    display: flex;
    align-items: center;
}

.item_off_no_image{
	position: absolute;
    left: 10px;
    top: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, .5);
    border-radius: 20px;
    color: #fff;
    text-align: center;
}

/* banner slider */
.slide-banner__section{
    width: 100%;
    padding: 100px 0;
    padding-left: 80px;
    background-color: #FAFAFA;
    opacity: 1 !important;
}
.slide-banner__section>.section__inner{
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.slide-banner__text{
    width: 400px;
}
.slide-banner__text>h2{
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.5;
    font-weight: 600;
}
.slide-banner__text>em{
    margin-bottom: 8px;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 600;
}
.slide-banner__text>p{
    margin-top: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color--gray);
}
.slide-banner__link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--color--primary);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.slide-banner__link:hover,
.slide-banner__link:focus,
.slide-banner__link:active{
    color: #fff;
}

.banner-swiper__wrap{
    overflow: hidden;
    width: 100%;
    max-width: 680px;
    /* padding-right: 80px; */
}
.banner-swiper{
    width: 100%;
}
.banner-swiper .swiper-slide{
    display: flex;
    column-gap: 20px;
    overflow: hidden;
    aspect-ratio: 1.85/1;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--color--L-gray);
    background-color: #fff;
}
.banner-swiper .swiper-slide_full{
    display: inline-block;
    column-gap: 20px;
    overflow: hidden;
    aspect-ratio: 1.85/1;
    border-radius: 8px;
    border: 1px solid var(--color--L-gray);
    background-color: #fff;
    padding:0px;
}
.banner-swiper__img{
    overflow: hidden;
    width: 240px;
    height: 240px;
    border-radius: 8px;
}
.banner-swiper__img_full{
    overflow: hidden;
    height: auto;
    border-radius: 8px;
}
.banner-swiper__img>img,
.banner-swiper__img_full>img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: contain;
}
.banner-swiper__text{
    width: calc(100% - 260px);
    padding-top: 20px;
}
.banner-swiper__text>span{
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color--D-gray);
    opacity: 0;
}
.banner-swiper__text>em{
    display: block;
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--color--text);
    opacity: 0;
}
.swiper-slide-active .banner-swiper__text>span{
    animation: fadeUp 0.6s 0.3s ease-out both;
}
.swiper-slide-active .banner-swiper__text>em{
    animation: fadeUp 0.6s 0.6s ease-out both;
}

.aos-animate .swiper-slide-active .banner-swiper__text>span{
    animation: fadeUp-2 0.6s 0.3s ease-out both;
}
.aos-animate .swiper-slide-active .banner-swiper__text>em{
    animation: fadeUp-2 0.6s 0.6s ease-out both;
}

.banner-swiper__button{
    display: flex;
    justify-content: right;
    align-items: center;
    column-gap: 20px;
    margin-top: 40px;
}
.banner-swiper__wrap .swiper-button-prev,
.banner-swiper__wrap .swiper-button-next{
    position: static;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-top: 0;
}
.banner-swiper__wrap .swiper-button-prev:after,
.banner-swiper__wrap .swiper-button-next:after{
    overflow: hidden;
    color:transparent;
    text-indent: -9999px;
}
.banner-swiper__wrap .swiper-button-prev{
    background: url(../images/common/slider_prev.svg) no-repeat center center/8px var(--color--primary);
}
.banner-swiper__wrap .swiper-button-next{
    background: url(../images/common/slider_next.svg) no-repeat center center/8px var(--color--primary);
}
.banner-swiper__wrap .swiper-button-next.swiper-button-disabled, 
.banner-swiper__wrap .swiper-button-prev.swiper-button-disabled{
    opacity: 1;
}
.banner-swiper__wrap .bar-wrap {
    position:relative; 
    width: calc(100% - 112px);
    height:4px;
    border-radius: 4px;
    background-color:#fff;  
}
.banner-swiper__wrap .bar {
    position:absolute; 
    top: -2px;
    left:0; 
    height:8px; 
    border-radius: 8px;
    background-color: var(--color--primary);
    transition:left 0.3s;
}
.pick__section{
    padding: 100px 0;
}

.notice-banner{
    display: flex;
    column-gap: 40px;
}
.notice-banner>a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 260px;
    border-radius: 8px;
    font-size: 20px;
    color: #fff;
}
.guide_contact_wrap .banner-guide{
    background: url(../images/banner_guide_img.jpg) no-repeat center center/cover;
}
.guide_contact_wrap .banner-contact{
    background: url(../images/banner_contact_img.jpg) no-repeat center center/cover;
}
.notice__box{
    display: flex;
    align-items: center;
    width: 100%;
    height: 64px;
    margin-top: 40px;
    padding: 12px 20px;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    background-color: #fff;
}
.notice-box__title{
    font-size: 14px;
    font-weight: 500;
}
.notice-swiper{
    display: flex;
    width: calc(100% - 72px);
    margin-left: 20px;
    margin-right: 0;
}
.notice-swiper.swiper-vertical>.swiper-wrapper{
    height: 40px;
}
.notice-swiper .swiper-slide{
    display: flex;
    column-gap: 9px;
}
.notice-swiper .swiper-slide>div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
    max-width: calc((100% - 18px)/3);
}
.notice-swiper .swiper-slide>div::after{
    content: "";
    display: block;
    position: absolute;
    right: -5px;
    top: 50%;
    width: 1px;
    height: 12px;
    background: var(--color--D-gray);
    transform: translateY(-50%);
}
.notice-swiper .swiper-slide>div:last-child::after{
    display: none;
}
.notice-swiper__button{
    display: flex;
    column-gap: 8px;
    width: fit-content;
    margin-left: 20px;
}
.notice-swiper .swiper-button-prev,
.notice-swiper .swiper-button-next{
    position: static;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-top: 0;
}
.notice-swiper .swiper-button-prev:after,
.notice-swiper .swiper-button-next:after{
    overflow: hidden;
    color:transparent;
    text-indent: -9999px;
}
.notice-swiper .swiper-button-prev{
    background: url(../images/common/slider_up.svg) no-repeat center center/11px;
}
.notice-swiper .swiper-button-next{
    background: url(../images/common/slider_down.svg) no-repeat center center/11px;
}

.notice-swiper__link{
    overflow: hidden;
    font-size: 14px;
    line-height: 22px;
    color: var(--color--text);
    text-overflow: ellipsis;
    white-space: nowrap;
}
.notice-swiper__link:hover,
.notice-swiper__link:focus,
.notice-swiper__link:active{
    color: var(--color--text);
}

.community_area{
	display: flex;
	gap: 25px;
}

.community_area div:nth-child(1) {
    flex-grow: 6;
    max-width: 800px;
}

.community_menus{
	display: flex;
	gap: 7px;
	align-items: center;
	white-space: nowrap;
}

.community_menus .scrollable-menu{
	display: flex;
	overflow-x: auto;
	width: 100%;
	gap: 7px;
}

.community_menus .menu_plus{
	margin-left: 10px;
    color: var(--color--text);
}

.community_menus a:not(.menu_plus){
	color: var(--color--text);
	border: 1px solid #d9d9d9;
    padding: 5px 16px;
    border-radius: 30px;
    font-weight: 500;
}
.community_menus .menu_plus:before{
	content: "더보기";
}

.community_menus a.active{
	background: #d9d9d9;
}

.community_content{
	border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 10px;
}


.article_gallery_wrap{
   	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.article_list_wrap li {
    display: flex;
    justify-content: space-between;
    line-height: 2;
    align-items: center;
}
.article_list_wrap li a{
	color: var(--color--text);
}

.article_gallery_wrap li {
    display: flex;
    flex-direction: column;
}
.article_gallery_wrap li img {
	width: 100%;
	height: 162px;
	object-fit: cover;
	border-radius: 10px;
	object-fit: contain;
}
.article_gallery_wrap li p {
	color: var(--color--text);
}
.article_gallery_wrap li .title {
	font-weight: 500;
    margin: 5px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2em;
    height: 2.4em;
}

.article_gallery_wrap li .date {
	font-size: 12px;
}

.guide_contact_wrap{
	flex-grow: 11;
	max-width: 375px;
}

.guide_contact_wrap a {
	color: #fff;
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 53px 0px;
    text-align: center;
 	font-size: 16px;
 	border-radius: 12px;
}

/* subpage - itemList */
.item__container .visual__inner{
    aspect-ratio: 3/1;
}
.item-list__section>.section__inner{
    overflow: hidden;
}
.item__container .visual__inner{
    max-width: 1200px;
}
.item__container .visual-swiper{
    width: 100%;
}
.item__container .visual-swiper__text{
    top: 10%;
    max-width: 880px;
}
.item__container .visual-swiper__button{
    max-width: 880px;
}

.navi-history__wrap.backcolor{
    background: #f4f4f4;
    padding: 20px 10px;
    border-radius: 10px;
}
.navi-history__list{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 32px;
}
.navi-history__item{
    position: relative;
}
.navi-history__item::before{
    content: "";
    display: block;
    position: absolute;
    left: -24px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: url(../images/common/history_arrow.svg) no-repeat center center/5px;
    transform: translateY(-50%);
}
.navi-history__item:first-child::before{
    display: none;
}

.navi-history__item>span{
    font-size: 14px;
    line-height: 24px;
    color: var(--color--primary);
}
.common-select{
    float: none;
    height: 40px;
    padding-left: 8px;
    padding-right: 32px;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    background-color: #fff;
    font-size: 14px;
    color: var(--color--primary);
}
.common-select .current{
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--color--text);
}
.common-select .list{
    overflow-y: auto;
    width: auto;
    min-width: 100%;
    max-height: 200px;
    max-width: 40vh;
}
.common-select .list::-webkit-scrollbar {
    width: 6px;
}
.common-select .list::-webkit-scrollbar-thumb {
    background-color: var(--color--gray);
    border-radius: 10px;
    background-clip: padding-box;
    border: 1px solid transparent;
}
.common-select .list::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}
.common-select .list>li{
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 8px;
}
.common-select::after{
    content: "";
    border: none;
    width: 14px;
    height: 8px;
    background: url(../images/common/slider_down.svg) no-repeat center center/contain;
    transform: rotate(0deg);
    margin-top: -4px;
    right: 13px;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;

}
.common-select.open::after{
    transform: rotateX(180deg);
}
.navi-history__item .common-select{
    width: 100%;
    min-width: 140px;
    padding-left: 8px;
}
.item-filter__area{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    margin: 40px 0;
    border-bottom: 1px solid var(--color--L-gray);
}
.item-search__box{
    display: flex;
    align-items: center;
    column-gap: 40px;
    min-width: fit-content;
    white-space: nowrap;
}
.item-search__box>span{
    font-size: 16px;
    line-height: 24px;
    color: var(--color--text);
}
.item-search__box>span>b{
    font-weight: 500;
    color: #F53743;
}
.item-search{
    display: flex;
    align-items: center;
    width: 260px;
    height: 40px;
    padding-right: 8px;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    padding-left: 8px;
    background: #ffff;
}
.item-search__input{
    width: calc(100% - 32px);
    border: none;
    font-size: 16px;
    color: var(--color--text);
    outline: none;
}
.item-search__input[type="text"]:focus{
    font-size: 16px;
}
.item-search__input::placeholder{
    font-size: 13px;
    font-weight: 300;
    color: var(--color--D-gray);
}
.item-search .btn-search{
    width: 24px;
    height: 24px;
    margin-left: 8px;
    background: url(../images/common/icon_search.svg) no-repeat center center/16px;
}
.item-select__box{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.type-btn__wrap,
.item-select{
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.btn-view-gallery{
    width: 40px;
    height: 40px;
    background: url(../images/common/view_gallery_off.png) no-repeat center center/24px;
}
.btn-view-list{
    width: 40px;
    height: 40px;
    background: url(../images/common/view_list_off.png) no-repeat center center/24px;
}
.btn-view-gallery.on{
    background: url(../images/common/view_gallery_on.png) no-repeat center center/24px;
}
.btn-view-list.on{
    background: url(../images/common/view_list_on.png) no-repeat center center/24px;
}
.item-select__box div.common-select:nth-of-type(1){
    width: 120px;
}
.item-select__box div.common-select:nth-of-type(2){
    width: 140px;
}

/* list */
.common-checkbox[type=checkbox]{
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: 0;
    outline: none;
    border-radius: 2px;
    border: 2px solid var(--color--D-gray);
    cursor: pointer;
    background: #fff;
}
.common-checkbox[type=checkbox]:focus{
    outline: none;
}
.common-checkbox[type=checkbox]:checked{
    border: 2px solid var(--color--primary);
    background: url(../images/common/icon_check.png) no-repeat center center/cover;
}

.item__list .item__box{
    display: flex;
    column-gap: 20px;
    padding: 40px;
    width: 100%;
    border-bottom: 1px solid var(--color--L-gray);
}
.item__list .item__img{
    width: 196px;
    height: 196px;
    margin-bottom: 0;
}
.item__list .item-text__wrap{
    display: flex;
    width: calc(100% - 417px);
}
.item-info__area{
    width: 100%;
}
.item__list .item__title{
    display: block;
    overflow: visible;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--color--text);
}
.item__list .item__title.mo-show{
    display: none;
}
.item-price__box{
    display: flex;
    column-gap: 20px;
    margin-top: 20px;
}
.item-price__box .item-price{
    width: 50%;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color--D-gray);
}
.item-price__box .item-price.bold{
    color: var(--color--text);
}
.item-price__box .item-price.bold>span:nth-child(1),
.item-price__box .item-price.bold>span:nth-child(2){
    font-weight: 500;
}
.item-info__box{
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    margin-top: 20px;
}
.item-time__box {
    width: 50%;
}
.item-time__box .item-time{
    font-size: 16px;
    line-height: 1.5;
    color: var(--color--D-gray);
}
.item-time__box .item-time{
    padding-left: 25px;
    background: url(../images/common/icon_time_black.svg) no-repeat 0% center/16px;
    color: var(--color--text);
}
.item-time__box .item-time>span:nth-child(1){
    font-weight: 500;
}
.item-time__box .item-time>span:nth-child(2)>b{
    font-weight: 500;
}
.sub-info__box{
    display: flex;
    column-gap: 10px;
    align-items: center ;
    width: 50%;
    font-size: 16px;
    line-height: 24px;
}
.sub-info__box>.bar{
    width: 1px;
    height: 12px;
    background-color: #9F9F9F;
}
.item-btn__box{
    padding-left: 40px;
    border-left: 1px solid var(--color--L-gray);
}
.item-btn__box>*+*{
    margin-top: 8px;
}
.item-btn__box>a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.71;
    font-weight: 500;
    color: #fff;
}
.item-btn__box .btn-view-detail{
    border: 1px solid var(--color--L-gray);
    background-color: var(--color--primary);
    color: #fff;
}
.item-btn__box .btn-item-like{
    border: 1px solid var(--color--L-gray);
    color: var(--color--text);
}
.btn-item-like .icon-heart{
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/common/icon_heart_off.png) no-repeat center center/20px #fff;
    margin-right: 4px;
}
.btn-item-like.on .icon-heart{
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/common/icon_heart_on.png) no-repeat center center/20px #fff;
    margin-right: 4px;
}
.item__list+.button__wrap{
    margin-top: 40px;
}
.btn-like-add{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding: 12px 25px;
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    background: var(--color--primary);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #fff;
}

.emptyList{
	margin: 70px auto;
	text-align: center;
}

/* pager */
.pager{
    margin: 40px 0 0;
}
.pager .pagination{
    margin: 8px 0;
}
.pager li > a, .pager li > span{
    margin: 0 4px;
    padding: 4px 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    line-height: 24px;
    color: var(--color--text);
}
.pager li > a::after, .pager li > span::after{
    content: attr(data-page);
    display: block;
    font-weight: 500;
    height: 0px;
    visibility: hidden;
}
.pager li > a:hover, .pager li > a:focus{
    background-color: #FAFAFA;
    font-weight: 500;
    color: var(--color--text);
}

.pager .btn-pager{
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 8px;
}
.pager .btn-pager.btn-pager-first{
    background: url(../images/common/pager_first.svg) no-repeat center center/cover;
}
.pager .btn-pager.btn-pager-prev{
    background: url(../images/common/pager_prev.svg) no-repeat center center/cover;
}
.pager .btn-pager.btn-pager-next{
    background: url(../images/common/pager_next.svg) no-repeat center center/cover;
}
.pager .btn-pager.btn-pager-last{
    background: url(../images/common/pager_last.svg) no-repeat center center/cover;
}

.section__inner .category-text{
	text-align: center;
	margin-right: 25px;
}

.section__inner .category-text div:nth-child(1){
	font-size:28px;
    font-weight: 500;
}

/* 물품 상세페이지 */
.product-detail-spec.tight{
	padding-left: 70px;
}
.product-sub-info{
	text-align: right;
	margin-top: 10px;
	margin-bottom: 20px;
}
.product-sub-info a{
	border-radius: 6px;
	margin-left: 5px;
}
.product-price {
    display: flex;
    align-items: baseline;
    gap: 13%;
    padding-left: 32px;
    text-align: center;
}
.product-price #btnReload{
	border: 2px solid #d9d9d9;
    color: #666;
    margin-left: 5px;
    padding: 5px;
    border-radius: 7px;
}
.product-price #lsBidCmoney{
	font-weight: 500;
	font-size: 32px;
}
.product-info-box{
    background: #FAFAFA;
    padding: 30px 35px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 16px;
}

.product-info-box .product-info{
    display: flex;
    margin-bottom: 8px;
    align-items: center;
    gap: 10%;
    height: 40px;
}

.product-info-box .product-info > span:nth-child(1){
	width: 76px;
    white-space: nowrap;
    color: #777;
}

.product-info-line{
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 10px;
}

.product-info-box .product-info .time-info {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.product-info-box .product-info .time-info > p{
    line-height:1;
}

.product-info-box .product-info .time-info > p:nth-child(1){
    font-weight: bold;
    font-size: 16px;
	padding-bottom: 5px;
}

.product-info-box .product-info .time-info > p:last-child{
    color:#666;
    font-size: 15px;
}

.product-info-box .product-btn{
    width: 100%;
    margin-bottom: 8px;
}

.product-info-box .product-btn > a{
    width : 100%;
    border-radius: 6px;
    padding: 10px 0px;
    font-size: 16px;
}

.product-info-box .product-btn-half{
    display: flex;
    width: 100%;
    gap: 10px;
}

.product-info .bid-input-group{
	display: flex;
	align-items: center;
}

.plusMinus-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
}

.plusMinus-btn button {
    padding: 0px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    margin-top: 0px; /* 버튼 사이의 간격을 조정 */
}

#bidPlus{
    background-color: #eeeeee;
    color: #444444;
    padding: 2px;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
	margin-left: 10px;
	border: 1px solid #dbdbdb;
}
#bidPlus:active {
    background-color:#888;
    color: #fff;
}
#unitMinus{
    background-color: #eeeeee;
    color: #444;
    margin-right: 10px;
	padding: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #dbdbdb;
}
#unitMinus:active {
    background-color: #888;
    color: #fff;
}

.product-info-box .user-info{
	display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
}

input#bidmount_comma {
    text-align: right;
    width: 180px;
    height: 34px;
    border: 1px solid #dbdbdb;
    border-radius: 6px 0px 0px 6px;
    border-right: none;
    font-size: 16px;
}

span.bidmount_won {
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-left: none;
    height: 34px;
    vertical-align: baseline;
    font-size: 16px;
    padding: 5px 3px 0px 0px;
    border-radius: 0px 6px 6px 0px;
}

.bidmount_announce{
	background-color: #fafafa;
	border: 1px solid #e1e1e1;
	padding: 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 8px;
}

.product-info .extend-box{
	display: flex;
	align-items: center;
	gap: 10px;
}

.extend-box .extend-red{
	background:#fc0014;
	color:#fff;
	border:1px solid #fc0014;
    padding: 3px 7px;
    border-radius: 7px;;
}

.extend-box .extend-time{
	font-size: 16px;
	font-weight: bold;
	color: #fc0014;
}

.CreditRatingTable th
, .CreditRatingTable td
, .CreditRatingTable a{
	font-size: 11px !important;
}

 .hint-box {
    position: relative;
    display: inline-block;
}

.hint-box .hint-text {
    display: none;
    width: 300px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    margin-left: -75px;
    opacity: 1;
    transition: opacity 0.3s;
}

.hint-box .hint-text::after {
    content: "";
    position: absolute;
    top: 100%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    left: 45%;
}

/* .hint-box:hover .hint-text{ */
/*     display: block; */
/*     opacity: 1; */
/* } */

@media screen and (max-width:1919px){
    
}
@media screen and (max-width:1800px){
    .floating-menu{
        right: 0;
    }
/*     .lnb__inner{
        width: calc(100% - 40px);
        max-width: 1460px;
    }
    .lnb__banner{
        width: 306px;
        height: 249px;
    } */
}
@media screen and (max-width:1520px){
/*     .lnb__inner{
        max-width: 1420px;
    }
    .lnb__banner{
        width: 284px;
        height: 231px;
    } */
    .visual-swiper__text{
        top: 18%;
    }
    .gnb__list{
    	gap: 0px;
    }
    .gnb__item>a{
    	width: 113px;
    }
    .cateW .depth-3__col {
    	width: 179px;
    }
    .gnb__item:nth-child(2) .depth-2__list{
	    margin-left: calc(103px* 1);
	}
	.gnb__item:nth-child(3) .depth-2__list{
	    margin-left: calc(103px* 2);
	}
	.gnb__item:nth-child(4) .depth-2__list{
	    margin-left: calc(103px* 3);
	}
	
    .gnb_right .gnb__item:nth-child(1) .depth-2__list{
	    margin-left: calc(145px*4 + 105px);
	}
    .gnb_right .gnb__item:nth-child(2) .depth-2__list{
	    margin-left: calc(145px*5 + 105px);
	}
	.gnb_right .gnb__item:nth-child(3) .depth-2__list{
   		margin-left: calc(145px*6 + 105px);
   	}
	
}
@media screen and (max-width:1375px){
/* 	.cateW .depth-3__col {
        width: 151px;
    } */
}

@media screen and (max-width:1250px){
	.cateW .depth-3__col{
        width: 140px;
    }
    .gnb__item:nth-child(2) .depth-2__list {
        margin-left: 0;
    }
    .gnb__item:nth-child(3) .depth-2__list {
        margin-left: 0;
    }
    .gnb__item:nth-child(4) .depth-2__list {
        margin-left: 0;
    }
}
@media screen and (max-width:1200px){
    .floating-menu{
        display: none;
    }
    
    .floating_on_btn{
    	display: none;
    }

    header
    .gnb__item>a{
        width: 100px;
        font-size: 14px;
    }
    .depth-2__list {
        position: relative;
        width: 120px;
    }
    .depth-2__item>a{
        font-size: 14px;
    }
    .depth-2__item>a.on::before, 
    .depth-2__item>a:hover::before, 
    .depth-2__item>a:focus::before, 
    .depth-2__item>a:active::before{
        height: 20px;
    }
    .depth-2__item>a::after{
        right: -12px;
    }
    .gnb__item:nth-child(2) .depth-2__list{
        margin-left: calc(110px*1);
    }
    .gnb__item:nth-child(3) .depth-2__list{
        margin-left: calc(110px*2 - 5px);
    }
    .gnb__item:nth-child(4) .depth-2__list{
        margin-left: calc(110px*3 - 10px);
    }
    .depth-3__col{
        width: 160px;
        padding: 0 10px;
    }
    .depth-3__title{
        font-size: 14px;
    }
    .depth-3__item>a{
        font-size: 12px;
        line-height: 20px;
    }
    .lnb__inner{
        max-width: 1200px;
    }
    .lnb__banner {
        width: 176px;
        height: 143px;
    }

    .visual-swiper__text{
        max-width: 880px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .visual-swiper__button{
        left: auto;
        top: 20px;
        right: 20px;
        width: fit-content;
        height: fit-content;
        transform: none;
    }
    .main-banner__title>.title-info {
        font-size: 12px;
    }
    .main-banner__title>.title {
        font-size: 20px;
    }
    .main-banner__date{
        margin: clamp(14px,1.64vw,24px);
    }
    .main-banner__date>*+*{
        margin-top: 0;
    }
    .main-banner__date>.date-info>span:nth-child(1){
        font-size: 14px;
    }
    .main-banner__date>.date-info>span:nth-child(2){
        font-size: 12px;
    }

    .item__container .visual-swiper__text{
        top: 50%;
    }

    .category__list {
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
        margin: 0 auto;
    }
    .category__item>a{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
}

@media screen and (max-width:1200px){
    .dim-layer{
        z-index: 1000;
    }
    .dim-layer.on,
    .dim-layer-2.on{
        display: block;
        top: 0;
    }
    .floating-menu{
        display: none;
    }
    .header__inner, .header-container-wrap{
        justify-content: center;
		height: 100px;
		margin-bottom: 10px;
    }
    .gnb{
        display: none;
    }
    .btn-item-add{
    	display: none;
    }
    .header-search__wrap{
	    display: none;
    }
    .header_gnb{
	    display: none;
    }
    .header__right{
        display: none;
    }
    .fixed-menu{
        display: block;
    }
    .mo-search__wrap{
        display: block;
    }
    .mo-search__wrap.on{
        display: block;
    }
    .mobile-nav{
        display: block;
    }
    .mobile-nav.on{
        display: block;
    }
    .mypage-menu{
        display: block;
    }
    .mypage-menu.on{
        display: block;
    }

    .footer{
        padding: 40px 0 104px;
    }

    .visual-swiper__title>.title-info{
        font-size: 12px;
    }
    .visual-swiper__title>.title{
        font-size: clamp(22px,2.6vw,32px);
    }
    .visual-swiper__date{
        font-size: 12px;
    }
    .category__section{
        padding: 64px 0;
    }
    .best-item__section,
    .live-item__section{
        padding-bottom: clamp(40px,8.3vw,100px);
    }
    .main-banner__title>.title-info::before{
        left: -8px;
    }
    .main-banner__title>.title-info::after{
        right: -8px;
    }
    .main__title{
        font-size: clamp(24px,3.33vw,40px);
        line-height: 1.33;
    }
    .main__sub-text{
        font-size: 14px;
        line-height: 22px;
    }
    .item__grid,
    .item__grid_4,
    .item__grid_6{
        gap: 16px 8px;
    }
    .pick__section{
        padding: clamp(40px,8.3vw,100px) 0;
    }
    .slide-banner__section{
        padding: 24px 0;
    }
    .slide-banner__section>.section__inner{
        flex-direction: column;
        row-gap: 24px;
    }
    .slide-banner__text{
        width: 100%;
        text-align: center;
    }
    .slide-banner__text>h2{
        margin-bottom: 4px;
        font-size: clamp(24px,3.33vw,40px);
    }
    .slide-banner__text>em{
        margin-bottom: 4px;
        font-size: clamp(18px,2.33vw,32px);
    }
    .slide-banner__text>p{
        margin-top: 4px;
        margin-bottom: 16px;
        font-size: 14px;
    }
    .slide-banner__link{
        width: 100%;
        max-width: 312px;
        margin: 0 auto;
    }
    .banner-swiper__button{
        margin-top: 16px;
    }

    .navi-history__list{
        flex-wrap: wrap;
        justify-content: left;
        column-gap: 40px;
        row-gap: 12px;
    }
    .navi-history__item::before{
        left: -28px;
    }
    .item__list .item__box{
        padding: 20px;
        flex-wrap: wrap;
    }
    .item__grid .item-info__wrap,
    .item__grid_4 .item-info__wrap,
    .item__grid_6 .item-info__wrap{
        font-size: 12px;
    }
    /* list */
    .item__list .item__box{
        height: auto;
    }
    .item-title__box.mo-show{
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
    .item__list .item__title.pc-show{
        display: none;
    }
    .item__list .item-text__wrap{
        width: calc(100% - 341px);
    }
    .item-info__area{
        display: flex;
        flex-direction: column;
        justify-content: center;
        row-gap: 20px;
    }
    .item-info__box{
        margin-top: 0;
    }
    .common-checkbox[type=checkbox]{
        width: 12px;
        height: 12px;
    }
    .item__list .item__img{
        width: 120px;
        height: 120px;
    }

    .item-price__box{
        margin-top: 0;
    }
    .item-price__box .item-price{
        max-width: 200px;
        font-size: 16px;
        line-height: 24px;
    }
    .item-time__box .item-time{
        width: 100%;
        font-size: 14px;
        line-height: 22px;
    }
    .sub-info__box{
        width: 100%;
        max-width: 200px;
        column-gap: 4px;
        font-size: 14px;
        line-height: 22px;
    }
    .item-btn__box{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 20px;
    }
    #quickTop{
    	display:block;
    }

}
@media screen and (max-width: 1023px){
    .pc-show{
        display: none;
    }
    .mo-show{
        display: block;
    }
    .mo-show.ib{
        display: inline-block;
    }

    .main{
        padding-top: 24px;
        padding-bottom: 80px;
    }
    .header{
        height: 64px;
    }
    .header.float{
        height: 104px;
    }
    .header-top__banner{
        height: 40px;
    }
    .header-top-div{
        line-height: 40px;
    }
    .header__inner, .header-container-wrap{
        height: 50px;
    }
    .header.fixed{
        height: 64px;
    }
    .main.scroll{
        padding-top: 88px;
    }
    .main-logo{
        width: 104px;
        height: 40px;
    }
    .main-logo img{
        width: 110px;
    }

    /* footer */
    .footer{
        padding-top: 48px;
        padding-bottom: 112px;
    }
    .footer__inner{
        flex-direction: column;
        position: relative;
    }
    .footer__left{
        border-bottom: 1px solid #505050;
    }
    .footer-info__list{
        flex-wrap: wrap;
        column-gap: 9px;
    }
    .footer-info__list>li::after{
        height: 8px;
        right: -5px;
    }
    .footer-info__list a{
        font-size: 12px;
        line-height: 20px;
    }
    .company-info__wrap{
        margin-top: 16px;
        margin-bottom: 16px;
    }
    .company-info__row>dl{
        font-size: 12px;
        line-height: 20px;
    }
    .company-info__row:first-child>dl{
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 0;
    }
    .company-info__row>dl::after{
        height: 8px;
    }
    .footer-sns__list.pc-show{
        display: none;
    }
    .footer-sns__list.mo-show{
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        column-gap: 2px;
    }
    .footer__right{
        margin-top: 16px;
        text-align: left;
    }
    .footer-cs__title{
        margin-bottom: 0;
        font-size: 18px;
        line-height: 26px;
    }
    .cs-info__text{
        font-size: 12px;
        line-height: 20px;
    }
    .cs-info__list{
        margin-top: 8px;
    }
    .cs-info__list>li{
        font-size: 12px;
        line-height: 20px;
    }
    .cs-info__list>li:last-child{
        color: #999999;
    }
    .copyright__wrap{
        margin-top: 16px;
    }
    .copyright__wrap>.copyright-info{
        font-size: 12px;
        line-height: 20px;
    }
    .copyright__wrap>.copyright-info>br{
        display: none;
    }
    .copyright__wrap>.copyright{
        margin-top: 4px;
        color: var(--color--gray);
    }

    .visual__inner{
        flex-direction: column;
        row-gap: 16px;
    }
    .visual-swiper,
    .main-banner__wrap{
        width: 100%;
    }
    .visual-swiper{
        height: clamp(240px,66.6vw,681px);
        border-radius: 8px;
    }
    .visual-swiper__text{
        height: 100%;
        padding-top: 6.6%;
    }
    .visual-swiper__title>.title-info{
        font-size: 14px;
    }
    .visual-swiper__title>.title {
        font-size: clamp(22px, 6.11vw, 36px);
    }
    .visual-swiper__date{
        font-size: 14px;
    }
    .visual-swiper__date{
        margin-bottom: 16px;
    }
    .visual-swiper__text .visual__link{
        width: 120px;
        height: 36px;
    }
    .main-banner__link{
        width: 120px;
        height: 36px;
        margin-top: 33%;
    }

    .main-banner__wrap{
        height: clamp(160px,44.4vw,454px);
    }
    .main-banner__bg{
        width: calc(100% - 92px);
    }
    .main-banner__text{
        width: calc(100% - 32px);
    }
    .main-banner__title>.title-info{
        font-size: 14px;
    }
    .main-banner__title>.title {
        font-size: clamp(24px, 6.66vw, 32px);
    }

    .main-banner__date{
        display: none;
    }
    .category__img{
        width: 40px;
        height: 40px;
    }
    .category__item>a>span{
        font-size: 14px;
        line-height: 22px;
        margin-top: 4px;
        white-space: normal;
        word-break: keep-all;
    }
    .item__grid, .item__grid.repeat4{
/*         max-width: 720px; */
        grid-template-columns: repeat(2, 1fr);
/*         margin: 0 auto; */
        gap: 40px;
    }
    .item__grid_4{
        max-width: 720px;
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        gap: 40px;
    }
    .item__grid_6{
        max-width: 720px;
        grid-template-columns: repeat(3, 1fr);
        margin: 0 auto;
        gap: 40px;
    }
    .item-text__wrap .item__title{
        font-size: 14px;
        line-height: 22px;
        height: 43px;
    }
    .item-text__wrap .item__price>span{
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
    }
    .item-text__wrap .item__price>.price{
        font-size: 16px;
        line-height: 24px;
    }
    .item__grid .item-info__wrap,
    .item__grid_4 .item-info__wrap,
    .item__grid_6 .item-info__wrap{
        font-size: 11px;
        line-height: 19px;
        margin-top: 8px;
    }
    .item__grid .item-info__wrap .item-info.time,
    .item__grid_4 .item-info__wrap .item-info.time,
    .item__grid_6 .item-info__wrap .item-info.time{
        background-size: 13px;
        background-position: 0% center;
        padding-left: 18px;
    }
    .item__img .btn-item-like{
        right: 8px;
        bottom: 8px;
        width: 32px;
        height: 32px;
        border-radius: 32px;
    }
    .slide-banner__section>.section__inner{
        width: 100%;
    }
    .banner-swiper{
        margin-left: 24px;
    }
    .banner-swiper .swiper-slide{
        padding: 16px;
        column-gap: 8px;
        aspect-ratio:initial;
    }
    .banner-swiper .swiper-slide_full{
    	margin-right: 40px;
    	padding:0px;
    }
    .banner-swiper__img{
        width: clamp(136px,37.7vw,240px);
        height: clamp(136px,37.7vw,240px);
    }
    .banner-swiper__img_full{
    	height: clamp(168px,46vw,270px);
    }
    .item__img>.state{
        font-size: 12px;
        line-height: 20px;
        padding: 0 8px;
    }
    .banner-swiper__text{
        width: calc(100% - clamp(136px,37.7vw,240px) - 8px);
        padding-top: 0;
    }
    .banner-swiper__text>span{
        font-size: 12px;
    }
    .banner-swiper__text>em{
        font-size: 14px;
        margin-top: 4px;
    }
    .banner-swiper__button{
        width: calc(100% - 48px);
        justify-content: left;
        column-gap: 8px;
        margin-left: auto;
        margin-right: auto;
    }
    .banner-swiper__wrap .bar-wrap{
        margin-right: 48px;
    }
    .banner-swiper__wrap .swiper-button-prev, .banner-swiper__wrap .swiper-button-next{
        width: 24px;
        height: 24px;
        border-radius: 4px;
    }
    
    .community_area{
    	flex-direction: column;
    }
    
    .community_menus a:not(.menu_plus){
    	font-size: 13px;
    	padding: 3px 8px;
    }
    
    .community_menus .menu_plus{
    	font-weight: bold;
    	font-size: 20px;
    }
	.community_menus .menu_plus:before{
		content: none;
	}
    
    .article_list_wrap li a{
        display: -webkit-box;
	    -webkit-line-clamp: 1;
	    -webkit-box-orient: vertical;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    line-height: 1.2em;
	    height: 1.2em;
    }
    
    .article_gallery_wrap{
        display: flex;
   	 	overflow-x: auto;
    }
    
    .article_gallery_wrap li{
    	flex: 0 0 50%;
    }
    
    .guide_contact_wrap{
    	width: 100%;
    	max-width: 100%;
    }
    
    .guide_contact_wrap a{
        padding: 33px 0px;
    }
    
    .notice-banner{
        flex-direction: column;
        row-gap: 16px;
    }
    .notice-banner>a{
        flex: none;
        height: clamp(140px,38.8vw,298px);
        font-size: 18px;
    }
    .notice__box{
        position: relative;
        flex-direction: column;
        height: 202px;
        padding: 24px 16px;
    }

    .notice-swiper{
        position: static;
        width: 100%;
        margin-left: 0;
    }
    .notice-swiper .swiper-slide{
        flex-direction: column;
        row-gap: 16px;
    }
    .notice-swiper .swiper-slide>div{
        flex: none;
        justify-content: left;
        width: 100%;
        max-width: initial;
    }
    .notice-swiper .swiper-slide>div::after{
        display: none;
    }
    .notice-swiper.swiper-vertical>.swiper-wrapper{
        height: 100%;
    }
    .notice-swiper__button{
        position: absolute;
        right: 16px;
        top: 28px;
        column-gap: 16px;
    }
    .notice-box__title{
        width: 100%;
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid var(--color--L-gray);
        font-size: 16px;
        line-height: 24px;
    }
    .notice-swiper .swiper-button-prev, .notice-swiper .swiper-button-next{
        width: 16px;
        height: 16px;
    }
    .notice-swiper .swiper-button-prev,
    .notice-swiper .swiper-button-next {
        background-size: 14px;
    }

    .item__container .visual-swiper{
        height: clamp(240px, 66.6vw, 681px);
    }
    .item-filter__area{
        position: relative;
        column-gap: 13px;
        height: auto;
        padding: 64px 0 24px;
        margin: 24px 0;
    }
    .item-filter__area .item-search{
        position: absolute;
        top: 0;
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
    .item-price__box{
        flex-direction: column;
    }
    .item-info__area{
        row-gap: 10px;
    }
    .item-info__box{
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .sub-info__box{
        max-width: initial;
    }
    .item-time__box{
        width: 100%;
    }
    
    .section__inner .category-text div:nth-child(1){
    	font-size: clamp(24px,3.33vw,40px);
    }
    
    .section__inner .category-text{
    	font-size:14px;
	    font-weight: 700;
		text-align: center;
		margin-bottom: 20px;
		margin-right: 0px;
	}
	
	.secHand_category_container{
		border-top: none;
		border-bottom: none;
	}
	
	.secHand_category_container.fixed{
		position: fixed;
        background: #fff;
        z-index: 100;
        width: 100%;
        top: 64px;
        left: 0;
        padding: 5px 10px;
	}
	
	.secHand_category__list {
	    overflow: scroll;
	    gap: 30px;
	}
	
	.secHand_category__list::-webkit-scrollbar{
		display:none
	}
}

@media screen and (max-width: 991px){
	.product-detail-spec.tight {
	    padding-left: 0;
	}
    .product-price{
        flex-direction: column;
        padding-left: 0;
		align-items: center;
    }	
}
@media screen and (min-width: 902px) and (max-width: 1199px) {
  .navi-history__list {
    justify-content: center;
  }
}

@media screen and (max-width: 900px){
    .navi-history__list{
        row-gap: 8px;
        column-gap: 21px;
    }
    .navi-history__item{
        width: calc(100%/3 - 14px);
    }
    .navi-history__item::before{
        left: -21px;
    }
    .navi-history__item>span{
        display: block;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
    }
    .navi-history__item .common-select{
    	min-width: 70px;
        width: 100%;
    }
    .navi-history__item .common-select::after{
        right: 11px;
        width: 9px;
        height: 5px;
        margin-top: -2px;
    }
    .item-select__box div.common-select::after{
        right: 11px;
        width: 9px;
        height: 5px;
        margin-top: -2px;
    }
}
@media screen and (max-width: 767px){
    .common-select{
        padding-left: 8px;
        padding-right: 20px;
        height: 36px;
        line-height: 36px;
        font-size: 12px;
    }
    .common-select::after{
        right: 8px;
    }
    /* header */
    .header-top__inner{
        width: 100%;
    }
    .header-top__banner em{
        font-size: 12px;
        overflow: hidden;
		white-space: nowrap;
	    text-overflow: ellipsis;
	    flex: 5;
	    padding-left: 15px;
    }
    .header-top-div a{
        font-size: 12px;
        flex: 2;
    }
    .header-top__inner>em>a{
        display: none;
    }
    .btn-top-banner{
        width: 24px;
        height: 24px;
        overflow: hidden;
        right: 16px;
        padding: 0;
        color:transparent;
        background-position: center center;
        text-indent: -9999px;
    }
    
    /* footer */
    .company-info__row{
        flex-wrap: wrap;
    }
    
    .visual-swiper__text{
        width: 100%;
        max-width: initial;
        left: 0;
        top: 0;
        padding: 16px;
        transform: none;
    }
    .visual-swiper__button{
        right: 16px;
        top: 16px;
    }
    .visual-swiper .swiper-button-prev, .visual-swiper .swiper-button-next{
        display: none;
    }
    .visual-swiper .swiper-button-start, .visual-swiper .swiper-button-stop{
        width: 24px;
        height: 24px;
        border-radius: 4px;
    }
    .visual-swiper .swiper-pagination-fraction{
        font-size: 12px;
        line-height: 20px;
        padding: 2px 8px;
        border-radius: 4px;
    }
    .visual-swiper__text .visual__link{
        border-radius: 6px;
    }
    .visual-swiper__title>.title {
        font-size: 22px;
    }
    .main-banner__title>.title-info{
        font-size: 12px;
        line-height: 20px;
    }
    .main-banner__title>.title{
        font-size: 24px;
        line-height: 32px;
    }

    .main-banner__link{
        border-radius: 6px;
    }
    
    .category__list{
	    display: grid;
		grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        justify-content: center;
        gap: 20px;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .category__list.grid5{
    	grid-template-columns: repeat(5, 1fr);
    }
    
    .category__item>a{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }   
    .main__sub-text{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        row-gap: 24px;
        margin-bottom: 6px;
    }
    .main__sub-text>span{
        width: 100%;
    }
    .view-more__link{
        display: block;
        position: static;
        width: fit-content;
        padding-right: 26px;
        font-size: 12px;
        line-height: 20px;
    }

    .item__container .visual-swiper__text{
        top: 0;
    }
    .common-select .list{
        max-height: 150px;
    }
    .item__grid_6{
        max-width: 720px;
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        gap: 40px;
    }
    
    .item__grid,
    .item__grid_4,
    .item__grid.repeat4,
    .item__grid_6{
        gap: 30px 8px;
    }
    .item__grid .item-info__wrap,
    .item__grid_4 .item-info__wrap,
    .item__grid_6 .item-info__wrap{
        column-gap: 4px;
    }
    .item-search__box>span{
        font-size: 12px;
        line-height: 20px;
    }
    .type-btn__wrap{
        column-gap: 2px;
    } 
    .item-select{
        column-gap: 4px;
    }
    .btn-view-gallery,
    .btn-view-list{
        width: 16px;
        height: 16px;
        background-size: cover;
    }
    .btn-view-gallery.on,
    .btn-view-list.on{
        background-size: cover;
    }
    .item-select__box{
        column-gap: 13px;
    }
    .item-select__box div.common-select:nth-of-type(1),
    .item-select__box div.common-select:nth-of-type(2){
        width: 92px;
    }
    .item__img>.live_time{
  	    left: calc(50% - 55px);
	    bottom: 35px;
	    position: relative;
	    font-size: 16px;
    }

    /* list */
    .item-title__box.mo-show{
        margin-bottom: 8px;
    }
    .item__list .item__title{
        font-size: 14px;
        line-height: 22px;
    }
    .item-info__area{
        row-gap: 4px;
    }
    .item__list .item__box{
        padding: 16px 0;
    }
    .item-price__box>*+*{
        margin-top: 4px;
    }
    .item-price__box .item-price{
        width: 100%;
    }
    .item-time__box .item-time{
        width: 100%;
        padding-left: 18px;
        background-position: 1px center;
        background-size: 13px;
        font-size: 12px;
        line-height: 20px;
    }
    .sub-info__box{
        font-size: 12px;
        line-height: 20px;
        margin-top: 4px;
    }

    /* pager */
    .pager .pagination{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 4px 0;
    }
    .pager li > a, .pager li > span{
        font-size: 12px;
        line-height: 20px;
        padding: 2px 9px;
        margin: 0 2px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 630px){
    .item__list .item__box{
        column-gap: 4px;
        border-bottom: none;
    }
    .item__list .item__box:first-child{
        padding-top: 0;
    }
    .item__list .item__box:last-child{
        padding-bottom: 0;
    }
    .item__list .item-text__wrap{
        width: calc(100% - 124px);
    }
    .item-btn__box{
        flex-direction: row-reverse;
        justify-content: left;
        width: 100%;
        border-left: none;
        padding-left: 0;
        column-gap: 4px;
        margin-top: 8px;
    }
    .item-btn__box>a{
        flex: 1;
        color: #fff;
    }
    .item-btn__box>a+a{
        margin-top: 0;
    }
    .btn-like-add{
        font-size: 14px;
        width: 100%;
        height: 40px;
    }
    .pager+.button__wrap{
        margin-top: 40px;
    }
}
@media screen and (max-width: 550px){
    .footer-info__list .mo-br{
        display: block;
        width: 100%;
    }
    .footer-info__list .mo-br::after{
        display: none;
    }
    .company-info__row .mo-br{
        display: block;
        width: 100%;
    }
    .company-info__row:first-child>.mo-br+dl{
        margin-top: 4px;
    }
    .company-info__row .mo-line::after{
        display: none;
    }
    
    .product-info-box{
        padding: 20px 15px;
        font-size: 14px;
    }
    
    .product-info-box .product-info{
    	gap: 5%;
    }
    
    .product-info-box .user-info{
   		font-size: 13px;
   		gap: 3px;
    }
    input#bidmount_comma {
	    width: 120px;
	}
	
	.item__img>.live_in{
		left: calc(50% - 60px);
		padding: 5px 15px;
	}
}

@keyframes fadeUp {
    0%{
        opacity: 0;
        transform: translateY(30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeUp-2 {
    0%{
        opacity: 0;
        transform: translateY(30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes blink-effect {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blink {
  animation: blink-effect 1s infinite;
}

/* 추가 css 변경 */
.btn.btn-like{
	border:1px solid #d9d9d9;
	color:#222;
	background: url(../images/common/icon_heart_off.png) no-repeat calc(50% - 30px) center/24px #d9d9d9;
}

.like-text{
    transform: translateX(10px);
    display: inline-block;
}

.black_500{
	color: #222;
	font-weight: 500;
}

.row a{
	color: #666;
}

.itemTitle{
	display: flex;
	justify-content: space-between;
    margin-bottom: 15px;
}

.itemTitle a{
	margin-top: 25px;
}

.kuser{
	font-weight: 600;
    color: #114da5;
}

.floating_on_btn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    text-align: center;
    z-index: 700;
}

.floating_on_btn button
, .floating_off_btn {
    border: 1px solid var(--color--L-gray);
    border-radius: 8px;
    background-color: var(--color--primary);
    color: white;
    font-size: 13px;
}

.floating_on_btn .btn-top {
    margin-left: 23px;
}

.recommend-product {
	background: #FAFAFA;
	padding: 20px;
}

.recommend-swiper .swiper-slide {
    width: 20%;
}

.recommend-swiper .swiper-slide .thum {
    width: 100%;
    height: 70%;
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.recommend-swiper .swiper-slide .thum img {
	width: 100%;
	height: 100%;
    object-fit: contain;
}

.recommend-swiper .swiper-slide .price {
    display: inline-grid;
    color: #333;
}

.itemList-img img{
	max-width: 188px;
	max-height: 188px;
}

.newItemseq {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}


.delivery-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.delivery-title img {
    margin-top: -5px;
}

.delivery-title .delivery-message {
    font-weight: bold;
}

.delivery-title .highlight {
    color: #F14A00;
    font-weight: bold;
}

.delivery-subtext {
    font-size: 14px;
    color: #757575;
    margin-top: 5px;
}

.question-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.delivery-break {
    display: none;
}

@media screen and (max-width: 1024px) {
    .delivery-break {
        display: block;
    }
}
.delivery-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.delivery-tooltip {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 305px;
    padding: 19px 40px 19px 15px;
    border: 1px solid #d7d7d7;
    background-color: #ffffff;
    box-sizing: border-box;
    display: none;
}

.delivery-tooltip-text {
    font-size: 12px;
    text-align: left;
}

.delivery-tooltip::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -2px;
    border: solid #d7d7d7;
    border-width: 1px 1px 0 0;
    background-color: #ffffff;
    transform: rotate(-45deg);
}

.delivery-tooltip-close {
    position: absolute;
    top: 11px;
    right: 10px;
    font-weight: bold;
    padding: 5px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .delivery-tooltip {
        left: auto;
        right: -50px;
        transform: none;
        width: 90vw;
    }

    .delivery-tooltip::before {
        left: auto;
        right: 50px;
    }
}

@media screen and (max-width: 380px) {
    .delivery-tooltip {
        left: auto;
        right: -20px;
        transform: none;
        width: 90vw;
    }

    .delivery-tooltip::before {
        left: auto;
        right: 50px;
    }
}

.sellpick_ad {
    position: absolute;
    border: 2px solid #ccc;
    padding: 2px 20px;
    color: #777;
    font-weight: bold;
    cursor: pointer;
    z-index: 800;
}