/*=================================================
                색, 버튼
=================================================*/
/*****#####===== 색 =====#####*****/
:root {
    --helper-color-primary: #B28247;
    --helper-color-primarydark: #816038;
    --helper-color-primarylight: #EAEDFF;
    --helper-color-secondary: #666666;
    --helper-color-secondarymiddle: #999999;
    --helper-color-secondarylight: #AAAAAA;
    --helper-color-secondarydark: #222222;
    --helper-color-text: #3F222C;
    --helper-color-accent: #036EB8;
    --helper-color-bg-gray: #F0F0F0;
}

.point-color-secondarymiddle{
    color: var(--helper-color-secondarymiddle) !important;
}

.point-color-accent{
    color: var(--helper-color-accent) !important;
}

.keep-all{
    word-break: keep-all;
}

.btn{
    padding: 0.625rem;

    font-size: 0.875rem;
    line-height: 1.2;
}

.btn-sm{
    padding: 0.25rem 0.5rem;

    font-size: 0.875rem;
}

.btn-lg{
    font-size: 1rem;
}

.min-sm{
    min-width: 3.75rem;
}

.min-md{
    min-width: 5.625rem;
}

.btn-toggle{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;

    padding: 1.5rem 2rem;

    background: transparent;
    border: 0;
    border-bottom: 1px solid #DEE2E6;
}

.btn-toggle .front,
.btn-toggle[aria-expanded="true"] .back{
    display: inline-block;
}

.btn-toggle[aria-expanded="true"] .front,
.btn-toggle .back{
    display: none;
}

.btn-clear{
    padding: 0;

    background: transparent;
    border: 1px solid transparent;
}

.btn-thick{
    padding: 0.75rem;

    border-radius: 0;
}

.underline-btn{
    border-bottom: 1px solid #CCCCCC;
}

/*=================================================
                공통 CSS
=================================================*/
/*****#####===== sns 영역 =====#####*****/
.sns-wrap{
    padding-top: 5rem;

    text-align: center;
}

.sns-wrap .sns-title{
    margin-bottom: 0.625rem;

    font-size: 0.75rem;
    color: var(--helper-color-primary);
}

.sns-wrap .sns-item-wrap{
    display: flex;
    justify-content: center;
}

.sns-wrap .sns-item{
    padding: 0.75rem 1.5rem;

    border: 1px solid #DDDDDD;
    transition: all .3s;
}

.sns-wrap .sns-item:not(:last-child){
    border-right: 0;
}

.sns-wrap .sns-item:hover{
    background-color: var(--helper-color-primary);

    transition: all .3s;
}

.sns-wrap .sns-item:hover path{
    fill: #ffffff !important;

    transition: all .3s;
}

/*****#####===== 내용 영역 =====#####*****/
.page-content{
    margin: 0 auto;

    line-height: 2.5rem;
    word-break: keep-all;
    color: var(--helper-color-text);
}

/*****#####===== svg 영역 =====#####*****/
.svg-wrap svg{
    margin-top: -0.25rem;
}

/*****#####===== 탭메뉴 =====#####*****/
.tab-menu-block .tab-menu-item{
    width: 100%;
    padding: 1rem;

    font-size: 0.875rem;
    text-align: center;
    color: var(--helper-color-primary);

    background: transparent;
    border: 1px solid var(--helper-color-primary);
}

.tab-menu-block .tab-menu-item.active{
    color: #ffffff;

    background: var(--helper-color-primary);
}

/*****#####===== 밑줄 타이틀 =====#####*****/
.underline-title{
    padding-bottom: 1.125rem;

    font-size: 1.5rem;
    font-weight: 400;
    color: var(--helper-color-secondary);

    border-bottom: 1px solid #E2E2E2;
}

/*****#####===== 도큐먼트 항목 =====#####*****/
.document-title{
    margin-bottom: 1.5rem;
}

.document-title{
    margin-top: 0.625rem;

    font-size: 0.875rem;
}

/*****#####===== 브레드크럼 =====#####*****/
.breadcrumb-wrap{
    display: flex;
    align-items: center;
    gap: 1.375rem;

    padding: 0 2.125rem 3.125rem;

    font-size: 0.813rem;
    font-weight: 300;
    color: #666666;
}

.breadcrumb-item{
    position: relative;
}

.breadcrumb-item+.breadcrumb-item::before{
    content: '>';
    float: inherit;

    position: absolute;
    left: -1rem;
}

/*****#####===== 링크 항목 =====#####*****/
.link-text{
    font-size: 0.875rem;
    text-align: center;
    color: var(--helper-color-accent);
}

/*****#####===== 태그 항목 =====#####*****/
.item-tag{
    padding: 0.25rem 0.375rem;

    font-size: 0.75rem;
    font-weight: 500;
    color: #ffffff;

    background: var(--helper-color-primary);
}

.item-tag.gray{
    background: #888888;
}

/*****#####===== 페이지네이션 =====#####*****/
.pagination-wrap .page-item{
    width: 1.875rem;
    margin: 0 0.25rem;

    text-align: center;
}

.pagination-wrap .page-link{
    border: 1px solid #ffffff;
}

.pagination-wrap .page-link:hover,
.pagination-wrap .page-link:focus{
    border: 1px solid var(--helper-color-secondarymiddle);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link{
    border-radius: 0;
}

.pagination-wrap .page-item.active .page-link{
    color: #ffffff;

    background: var(--helper-color-secondarymiddle);
    border: 1px solid var(--helper-color-secondarymiddle);
}

.pagination-wrap .page-item.direct-page-item .page-link{
    border: 0;
}

/*****#####===== 슬라이드 =====#####*****/
/*****##### 버튼 영역 #####*****/
.slick-wrap .slick-dots{
    position: absolute;
    bottom: 0.5rem;
}

.slick-dots li,
.slick-dots li.slick-active, 
.slick-dots li.slick-active button,
.slick-dots li button{
    width: 0.5rem;
    height: 0.5rem;

    opacity: 1;
}

.slick-dots li button{
    background: #CCCCCC;
    border-radius: 0;
}

.slick-dots li.slick-active button{
    width: 0.429rem;

    background-color: var(--helper-color-primary);
}

/*****#####===== 토글 영역 =====#####*****/
.toggle-content{
    padding: 1.5rem 2rem;

    font-size: 0.875rem;
    line-height: 1.5;

    border-bottom: 1px solid #DEE2E6;
}

.toggle-content .info-item{
    padding: 1rem 0;

    border-bottom: 1px solid #DEE2E6;
}

.toggle-content .link-text{
    text-align: left;
}

.info-toggle-wrap .btn-toggle{
    grid-template-columns: 1fr auto;

    padding: 1rem 0;
    
    border-bottom: 0;
}

.info-toggle-wrap .collapse:not(:last-child){
    margin-bottom: 1.625rem;
}

/*****#####===== 카운트 영역 =====#####*****/
.count-wrap{
    width: auto;
    border: 1px solid var(--helper-color-secondary);
    border-radius: 0;
}

.count-wrap .form-control{
    text-align: center;

    border: 0;
}

.count-btn{
    padding: 0.625rem;

    background: transparent;
    border: 0;
}

/*****#####===== 페이지 타이틀 영역 =====#####*****/
.page-title-wrap{
    margin-bottom: 3.75rem;
}

.page-title-wrap .page-subtitle{
    color: var(--helper-color-secondary);
}

/*****#####===== 기본배송지 태그 =====#####*****/
.basic-tag{
    margin: 0 0 0 0.125rem;
    padding: 0.125rem 0.375rem;

    font-size: 0.625rem;
    color: var(--helper-color-primary);

    border: 1px solid var(--helper-color-primary);
    border-radius: 2rem;
}

/*****#####===== 드로워 =====#####*****/
.drawer-header{
    padding: 1rem;
}

/*****#####===== pretty =====#####*****/
.pretty.p-active input~.state label{
    color: var(--helper-color-secondary);

    border: 1px solid var(--helper-color-secondary);
}

.pretty.p-active input:checked~.state label{
    background-color: transparent;
}

/*****#####===== card-lists-item =====#####*****/
.card-lists-item .item-title-wrap{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1rem;
    padding-bottom: 0.75rem;

    border-bottom: 1px solid #DEE2E6;
}

.card-lists-item .item-content-wrap.underline{
    padding-bottom: 1rem;
    
    border-bottom: 1px solid #DEE2E6;
}

/*****#####===== 폼 =====#####*****/
.col-form-grid{
    grid-template-columns: 7rem 1fr;
}

.col-form-form{
    line-height: 1.5;
}

/*****#####===== 공지사항 =====#####*****/
.notice-item{
    padding: 1.375rem 0 0.75rem;

    border-bottom: 1px solid #DDDDDD;
}

.notice-item .info{
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.75rem;
}

.notice-item .date{
    font-size: 0.875rem;
    color: var(--helper-color-primary);
}

/*****#####===== 미디어쿼리=====#####*****/
/***** sm *****/
@media (min-width: 100px) and (max-width: 767.98px) {
    .page-title-wrap {
        margin-bottom: 3rem;
    }
}

/*=================================================
                네비게이션
=================================================*/
#gnb-wrap{
    background: #F0F0F0;
    border-bottom: none;
    box-shadow: 0px 4px 12px 0px #66666633;
}

#gnb-wrap .top-wrap{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0.875rem;

    position: relative;

    padding: 1.125rem 2rem;

    border-bottom: 1px solid #ffffff;
}

#gnb-wrap .logo-wrap{
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

#gnb-wrap img{
    width: 10rem;
}

#gnb-wrap .location-select{
    font-size: 0.813rem;
    color: var(--helper-color-secondary);

    border: none;
}

#gnb .gnb-layout{
    justify-content: center;
    gap: 0;
}

#gnb-wrap .menu-item{
    padding: 0.625rem 0.875rem;

    font-family: "Marcellus", Sans-Serif, serif;
    font-size: 0.875rem;
    color: var(--helper-color-secondary);
}

#gnb-wrap .menu-item:hover .front,
#gnb-wrap .menu-item .back{
    display: none;
}

#gnb-wrap .menu-item:hover .back{
    display: block;
}

#gnb-wrap .menu-item{
    width: 9rem;

    text-align: center;
}

#gnb-wrap .menu-item.wide{
    width: 12.5rem;
}

.m_menu_btn{
    position: absolute;
    top: 0;
    left: 0;

    font-size: 1.5rem;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/***** sm *****/
@media (min-width: 100px) and (max-width: 768px) {
    #gnb .gnb-layout,
    #gnb-wrap .location-select{
        display: none;
    }

    #gnb-wrap .top-wrap{
        padding: 0;

        border-bottom: 0;
    }
}

/*****#####===== 모바일 네비게이션 =====#####*****/
#m-gnb-wrap{
    position: fixed;
    top:0;
    left:-100%;

    width: 100%;
    height: 100vh;

    font-family: "Marcellus", Sans-Serif, serif;

    background: #ffffff;

    overflow-y: scroll;

    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease-in-out;

    z-index: 1031;
}

#m-gnb-wrap .gnb-top-wrap{
    position: relative;
    
    margin-bottom: 1rem;
    padding: 0.875rem;
}

#m-gnb-wrap .mobile-top-close{
    position: absolute;
    top: 0.625rem;
    left: 0;

    padding: 0.875rem;

    font-size: 1.125rem;
    
    cursor: pointer;
}

#m-gnb-wrap .logo-wrap img{
    width: 10rem;
}

#m-gnb-wrap .mem-btn-wrap{
    padding-bottom: 1rem;

    border-bottom: 1px solid #DEE2E6;
}

#m-gnb-wrap .m-item-wrap{
    border-bottom: 1px solid var(--helper-color-secondarylight);
}

#m-gnb-wrap .m-item-wrap .inner-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1.25rem 0;
    color: var(--helper-color-primary);

    font-weight: 500;
}

#m-gnb-wrap .submenu .submenu-item-wrap{
    display: none;
}

#m-gnb-wrap .submenu-item-wrap .menu-item:first-child{
    padding-top: 0.5rem;
}

#m-gnb-wrap .submenu-item-wrap .menu-item:not(:last-child){
    border-bottom: 1px solid #dddddd;
}

#m-gnb-wrap .submenu-item-wrap .menu-link{
    padding: 1.25rem 0;

    font-size: 0.875rem;

    color: var(--helper-color-secondary);
}

#m-gnb-wrap .submenu.active .submenu-item-wrap{
    display: block;
}

#m-gnb-wrap .bottom-item-wrap{
    display: block;

    padding: 0 0.5rem;

    font-size: 0.75rem;
}

#m-gnb-wrap .bottom-item-wrap i{
    margin-right: 0.25rem;
    font-size: 0.875rem;
}

#m-gnb-wrap .bottom-item-wrap:not(:last-child){
    margin-bottom: 1rem;
}

#m-gnb-wrap .m-item-wrap.active .front,
#m-gnb-wrap .m-item-wrap .back{
    display: none;
}

#m-gnb-wrap .m-item-wrap.active .back{
    display: block;
}

/*****##### show #####*****/
#m-gnb-wrap.show{
    left: 0;
}

#m-gnb-wrap.show::-webkit-scrollbar{
    display: none;
}

/*=================================================
                사이드 네비게이션
=================================================*/
#side-nav .menu-item:not([class*="submenu"]) > .menu-link.active{
    background-color: transparent;
}

/*=================================================
                푸터
=================================================*/
.footer-wrap{
    padding: 4.375rem 0 0;
    
    background-color: #999999;
}

.footer-wrap .info-list:not(:last-child){
    margin-bottom: 2rem;
}

.footer-wrap .title{
    margin-bottom: 0.625rem;
    padding-bottom: 0.625rem;

    font-size: 1rem;
    color: #ffffff;

    border-bottom: 1px solid #666666;
}

.footer-wrap .content{
    font-size: 0.75rem;
}

.footer-wrap .content:not(:last-child){
    margin-bottom: 0.375rem;
}

.footer-wrap .copyright{
    padding: 1rem 0;

    font-size: 0.5rem;
    text-align: center;
    color: #333333;
}

/*=================================================
                컴포넌트 정보 페이지
=================================================*/
/*****#####===== 상단 헤더 =====#####*****/
.component-layout .header-wrap{
    background-color: var(--helper-color-primary);

    color: #ffffff;
}

.component-layout .header-wrap .line-header{
    padding-top: 0.5rem;
}

.component-layout .header-wrap .version-wrap{
    font-size: 0.75rem;
}

/*****##### 메뉴 이동 영역 #####*****/
.component-layout .header-wrap .form-header{
    padding: 1.5rem 0;
}

/*****#####===== 아이템 영역 =====#####*****/
/*****##### 아이템 타이틀 #####*****/
.component-layout .part-title-wrap {
    padding: 2.5rem 0;
}

.component-layout .part-title-wrap .part-title{
    font-size: 3.125rem;
    font-weight: bold;
}

.component-layout .part-title-wrap .part-subtitle{
    margin-top: 0.25rem;

    color: #555555;
}

/*****##### 주의사항 및 약속 #####*****/
.component-layout .part-caution-wrap{
    padding: 1rem;

    background-color: #E1E7F8;
}

.component-layout .part-caution-wrap .caution-item{
    font-size: 0.875rem;
    line-height: 1.3125rem;
}

.component-layout .part-caution-wrap .caution-item::before{
    content: "·";
    margin-right: 0.5rem;
    font-weight: bold;
}

/*****##### 아이템 영역 #####*****/
.component-layout .part-item-wrap{
    margin-bottom: 5rem;
}

.component-layout .part-item-wrap .part-item{
    padding: 2.5rem 0;
}

.component-layout .part-item .part-item-content:not(:first-child){
    margin-top: 1rem;
}

