@charset "utf-8";
/*폰트*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* reset */
@import url('./normalize.css');

/* ###### Reset CSS ###### */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    /* 62.5% of 16px = 10px */
}
body {
    font-family: "Noto Sans KR", sans-serif;
    line-height: 1.6;
    font-size: 1.6rem;
    /* (reset font-size = 10px) * 1.6 = 16px */
    font-weight: 500;
    color: #111827;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
ul,li {
    list-style: none;
}
input {
    border: none;
    outline: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox  */
input[type='number'] {
    -moz-appearance: textfield;
}
input::placeholder {
    font-size: 1.4rem;
}
em {
    font-style: normal;
}
button {
    border: none;
    cursor: pointer;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding-left: 12px;
    padding-right: 40px;
    background: url(../img/select_arrow.png) no-repeat center right 8px;
    background-size: 21px auto;
    font-size: 1.4rem;
}

/* ###### Variables CSS ###### */
:root {
    /* Primary Color */
    --pc: #16a34a;
    --pc02: #166534;

    /* Font Color */
    --tp: #111827;
    --ts: #1f2937;
    --tt: #374151;
    --tdis: #6b7280;
    --tsi: #4B5563;

    /* Bg Color */
    --bgs: #F3F4F6;
    --bgt: #e5e7eb;
    --bgf : #374151;
    --info-sub: #bfdbfe;
    --suc-sub: #bbf7d0;
    --p-sub: #fecdd3;
	--w-subtle: #fef08a;

    /* Border Color */
	--bp: #6b7280;
	--bs: #9ca3af;
	--bt: #d1d5db;
    --bdis: #6b7280;
    --focus-ring: #be123c;

    /* */
    --suc: #16a34a;
    --info: #2563eb;
    --danger: #dc2626;
    --warning: #ca8a04; 
}
/* ###### Layout CSS ###### */
.inner {
    width: 1180px;
    margin: 0 auto;
}

/* ###### Common CSS ###### */
/* 헤더/푸터 영역 */
/* 헤더 */
header {
    position: fixed;
    z-index: 100;
    width: 100%;
    background-color: #fff;
}
.header_top {
    position: relative;
    text-align: center;
}
.header_top .logo_wrap {
	display: inline-block;
}
.header_top .logo {
    width: 180px;
    margin: 0 auto;
    padding: 12px 0;
    display: flex;
}
.header_top .logo img {
    width: 100%;
}

/* Trigger Button */
input[id=trigger] {
    display: none;
}
label[for=trigger] {
    display: none;
}

/*gnb*/
nav {
    border-bottom: 1px solid var(--bt);
}
.nav_bg {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0,0.4);
    display: none;
}
.gnb {
    display: flex;
    width: 1180px;
    margin: 0 auto;
}
.gnb > li {
    flex: 1;
    text-align: center;
    position: relative;
    transition: 0.2s;
}
.gnb > li a {
    display: block;
    padding: 16px 0;
}
.gnb > li > a {
    border-bottom: 4px solid transparent;
    transition: 0.3s;
    font-size: 1.8rem;
}
.gnb > li:hover > a {
    border-bottom: 4px solid var(--pc);
    color: var(--pc);
}
.gnb::before {
    content: '';
    position: fixed;
    left: 0;
    top: 129px; 
    width: 100%;
    border-bottom: 1px solid var(--bt);
}
.lnb {
    display: none;
    position: relative;
    height: calc(100% - 61px);
}
.lnb::before,
.gnb > li:first-child .lnb::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 16px);
    background-color: var(--bt);
}
.gnb > li:first-child .lnb::after {
    left: 0;
    height: calc(100% - 16px);
}
.lnb li {
    text-align: center;
}
.lnb li a {
    display: block;
    padding: 16px 0;
    height: 100%;
    background: url(../img/right_arrow.png) no-repeat center left -16px;
    background-size: 12px;
    transition: 0.3s;
}
.lnb li a:hover {
    padding-left: 12px;
    background: url(../img/right_arrow.png) no-repeat center left 20px;
    background-size: 12px;
    font-weight: 700;
}
.lnb li span {
    display: block;
}
/* 푸터 */
footer {
    color: #fff;
    background-color: #1D2821;
    width: 100%;
}
/*
.footer_top {
    border-bottom: 1px solid #ffffff60;
}
.fnb {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.fnb li {
    font-weight: 400;
    font-size: 1.4rem;
}
.fnb li a {
    display: block;
    padding: 16px 0;
    color: #ffffff96;
}
*/
.footer_bottom .logo {
    padding: 16px 0;
}
.footer_bottom .logo img{
    width: 160px;
}
.footer_bottom ul {
    display: flex;
    font-size: 1.4rem;
    gap: 12px;
}
.footer_bottom ul + ul {
    margin-top: 8px;
}
.footer_bottom ul,
.footer_bottom p,
.footer_bottom a {
    font-weight: 300;
}
.footer_bottom ul span {
    font-weight: 400;
}
ul.location_info li {
    display: flex;
    gap: 12px;
}
ul.location_info li > div {
    display: flex;
    gap: 6px;
}
.copy_admin {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright {
    opacity: 0.86;
    font-size: 1.4rem;
}
.admin_shortcut {
    padding: 8px 16px; 
    background-color: #000;
    border-radius: 8px;
    border: 1px solid #000;
    transition: 0.3s;
}
.admin_shortcut:hover {
    border: 1px solid #fff;
    background-color: transparent;
}

/* ## 말줄임 ##*/
/* 한 줄일때 */
.shorten {
    /* 블럭요소에서만 사용 가능 */
    white-space: nowrap;
    overflow: hidden; /*너비를 넘어가면 안보이게*/
    text-overflow: ellipsis; /* 글자가 넘어가면 말줄임(...) 표시*/
}
/* 두 줄일때 */
/* .shorten02 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
} */

/* 토탈 검색박스 CSS */
.total_search_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.total {
    font-size: 1.4rem;
}
.total span {
    font-weight: 800;
}
.search_box {
    display: flex;
    align-items: center;
}
.search_box select {
    height: 42px;
    border-radius: 4px;
    border: 1px solid var(--bgt);
    margin-right: 4px;
}
.search_box span {
    display: flex;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--bgt);
}
.search_box span input {
    display: inline-block;
    padding-left: 8px;
    width: calc(100% - 40px);
}
.search_box span button {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--bgt) url(../img/search.png) no-repeat center center;
    background-size: 18px;
}
/* button css */
.btn_type {
    border-radius: 4px;
    padding: 12px;
}
.btn_type_01 {
    border: 1px solid var(--pc);
    background-color: transparent;
    color: var(--pc);
}
.btn_type_02 {
    background-color: var(--pc02);
    color: #fff;
}
/* ###### 메인*/
.mainSec {
    /* padding-top: 140px; */
}
/* ###### 서브 layout ###### */
.subSec {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: calc(100vh - 250px);
}
.subSec .inner {
    display: flex;
    justify-content: space-between;
}
.subLeft {
    width: 280px;
}
.subRight {
    width: calc(100% - 300px);
}
/* 서브: 좌측 사이드바 */
.subLeft {
    position: relative;
}
.subLeft_wrap {
    /*position: sticky;
    top: 140px;*/
}
.subLeft_01,
.subLeft_02,
.subLeft_03 {
    border-radius: 8px;
    border: 1px solid var(--bt);
    margin-bottom: 12px;
    overflow: hidden;
}
.subLeft_01 {
    padding: 0 12px;
}
.subLeft_01 h3 {
    padding: 16px 0;
}
/* snb 메뉴 시작*/
.snb_wrap {
    border-top: 1px solid var(--bgt);
}
.snb li:last-of-type .sub_menu {
    margin-bottom: 12px; 
}
.snb li a {
    display: block;
    padding: 8px 0;
    white-space: nowrap;
}
.snb > li.active {
    color: var(--pc);
}
.snb > li.active .sub_menu li {
    color: var(--tp);
}
.sub_menu_wrap {
    display: none;
}
.sub_menu {
    background-color: var(--bgs);
}
.sub_menu li {
    padding: 0 12px;
    font-size: 1.4rem;
    font-weight: 500;
}
.sub_menu li:hover {
    font-weight: 800;
}
.sub_menu li.active {
    font-weight: 800;
}
.snb > li.active .sub_menu {
    display: block;
}

/* snb 메뉴 끝 */
.inquiry_info h4 {
    background-color: var(--pc);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px;
} 
.contact_us > div {
    padding: 8px 12px;
}
.email_info p > a:hover {
    color: var(--info);
    text-decoration: underline;
}
.inquiry_info span {
    color: var(--tsi);
    font-weight: 400;
    font-size: 14px;
}
.inquiry_info .call_info {
    border-bottom: 1px solid var(--bt);
}
.inquiry_info .call_info p {
    color: var(--warning);
    font-weight: 600;
    font-size: 2.4rem;
}
.inquiry_info .email_info p {
    font-size: 1.8rem;
    font-weight: 600;
}
/*
.inquiry_kakao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px;
    background-color: #FEE500;
}
.inquiry_kakao img {
    width: 14px;
    height: 13px;
}
.inquiry_kakao p {
    color: #262200;
    font-weight: 600;
}
*/
/* 선택한 상품 */
.order_list_title {
    background-color: var(--bgs);
    padding: 12px;
}
.order_list_title button.delete_btn {
    display: none;
}
.order_items li {
    padding: 12px;
    font-weight: 400;
}
.order_items li + li {
    border-top: 1px solid var(--bt);
}
.order_items .no_list span {
    font-size: 1.4rem;
    color: var(--tdis);
}
.order_items li .item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.order_items .item_name {
    width: calc(100% - 32px);
    font-size: 1.4rem;
}
.order_items button.delete_btn {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: var(--bgs) url(../img/delete.png) no-repeat center center;
    background-size: cover;
    border-radius: 999px;
}
.counter {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
}
.counter .count {
    border: 1px solid var(--bt); 
    width: 80px;
    border-radius: 4px;
    text-align: center;
    display: inline-block;

}
.counter button {
    width: 26px;
    border-radius: 4px;
}
.counter .minusBtn {
    background: var(--bgt) url(../img/decrease-btn.png) no-repeat center center;
    background-size: cover;
}
.counter .plusBtn {
    background: var(--bgt) url(../img/increase-btn.png) no-repeat center center;
    background-size: cover;
}
.order_write {}
.order_write .order_btn {
    display: block;
    width: 100%;
    padding: 16px;
    color: #fff;
    background-color: var(--bgf);
    font-size: 1.6rem;
}


/* 플로팅 버튼*/
.floatings {
    position: fixed;
    bottom: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
}
.orderList_open_wrap {
    position: relative;
    display: none;
}
.orderList_open_btn {
    margin-left: auto;
    width: 60px;
    height: 60px;
    background: #494949 url(../img/cart.png) no-repeat center center;
    background-size: 24px;
    border-radius: 999px;
    box-shadow: 0 0 10px #00000024;
}
.orderList_open_wrap .badge {
    position: absolute;
    right: -4px;
    top: -10px;
    min-height: 24px;
    min-width: 24px;
    padding: 0 4px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    border-radius: 999px;
    background-color: var(--danger);
}
.estimate_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height:60px;
    border-radius: 4px;
    background-color: var(--bgt);
    box-shadow: 0 4px 10px #00000024;
}
.estimate_wrap img {
    width: 24px;
}
.estimate_wrap span {
    display: block;
    font-size: 1rem;
    text-align: center;
    margin-top: 4px;
}

.inquiry_kakao_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-color: #FEE500;
    box-shadow: 0 4px 10px #00000024;
}
.inquiry_kakao_wrap img {
    width: 24x;
    height: 24px;
}
.inquiry_kakao_wrap p {
    color: #262200;
    font-weight: 600;
    font-size: 1rem;
}




/* 서브: productList */
.category {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}
.category li:nth-child(3) {
    font-weight: 800;
}
.productList .subRight_02 {
    margin-top: 12px;
}
.product_list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.product_list li {
    width: calc(33% - 8px);
}
.product_list li:hover .product_name {
    color: var(--pc);
}
.product_list li:hover .thumbnail {
    border: 1px solid var(--pc02);
}
.product_list li a {
    display: block;
}
.product_list .thumbnail {
    width: 100%;
    border: 1px solid var(--bgt);
    aspect-ratio: auto 1/1;
    border-radius: 6px;
}
.product_list .thumbnail img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.product_list .product_name {
    padding: 8px;
}
.page_wrap {
    display: flex;
    justify-content: center;
    padding: 48px 0;
}
.page_nation {
    display: flex;
    gap: 4px;
}
.page_nation a {
    border: 1px solid var(--bgt);
    display: inline-block;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.4rem;
}
.page_nation a:hover,
.page_nation a.active {
    color: var(--pc);
    border: 1px solid var(--pc);
}
.page_nation a.first_page {
    background: url(../img/first_page.png) no-repeat center center;
    background-size: 16px;
}
.page_nation a.prev_page {
    background: url(../img/chevron_left.png) no-repeat center center;
    background-size: 16px;
}
.page_nation a.next_page {
    background: url(../img/chevron_right.png) no-repeat center center;
    background-size: 16px;
}
.page_nation a.last_page {
    background: url(../img/last_page.png) no-repeat center center;
    background-size: 16px;
}


/* 서브: productDetail */
.productDetail .subRight_01 {
    display: flex;
    justify-content: space-between;
}
.product_imgs {
    width: 40%;
}
#displayArea {
    width: 100%;
    /*aspect-ratio: auto 1/1;*/
    height: 352px;
    border: 1px solid var(--bgt);
    border-radius: 4px;
    font-size: 0;
}
#displayedImage {
    width: inherit;
    height: inherit;
    object-fit: contain;
    position: relative;
    z-index: -1;
}
#displayedImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#imageContainer {
    display: flex;
    gap: 4px;
    justify-content: flex-start;
    margin-top: 4px;
}
#imageContainer > div {
    border: 1px solid var(--bgt);
    width: 25%;
    aspect-ratio: auto 1/1;
    border-radius: 4px;
}
#imageContainer > div.active {
    border: 1px solid var(--pc);
}
#imageContainer > div > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#magnifier {
    width: 200px; /* 돋보기의 너비 */
    height: 200px; /* 돋보기의 높이 */
    border: 2px solid #000; /* 테두리 스타일 */
    position: absolute; /* 상대적으로 배치할 요소임을 명시 */
    display: none; /* 처음에는 숨겨진 상태 */
    pointer-events: none; /* 돋보기 요소에 대한 이벤트를 비활성화하여 이미지 위에서 동작하도록 함 */
    background-size: 400% 400%; /* 돋보기 배경 이미지의 크기 */
    background-repeat: no-repeat;
    background-repeat: center;
    background-color: #fff;
    z-index: 1; /* 다른 요소 위에 표시되도록 함 */
}
.product_features {
    padding-left: 16px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product_features .category {
    margin-bottom: 6px;
}
.product_features .category li {
    color: var(--tdis);
    font-weight: 400;
    font-size: 1.4rem;
}
.product_features .name {
    border-bottom: 1px solid var(--bt);
    padding-bottom: 12px;
}
.product_features .name h1 {
    font-size: 2rem;
}
.features_list {
    padding: 12px 0;
}
.features_list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.features_list li {
    display: flex;
    gap: 12px;
    font-weight: 500;/
}
.features_list li span {
    min-width: 80px;
    font-weight: 700;
}
.features_list li.point {
    color: var(--focus-ring);
    font-weight: 700;
}
.action_things {
    display: flex;
    gap: 4px;
}
.action_things .input_wrapper {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--bs);
    border-radius: 4px;
}
.action_things .input_wrapper input {
    width: calc(100% - 24px);
    text-align: center;
    font-size: 1.6rem;
}
.input_wrapper div {
    width: 24px;
    display: flex;
    height: 100%;
    flex-direction: column;
    border-left: 1px solid var(--bs);
}
.input_wrapper button {
    display: inline-block;
    background-color: var(--bgs);
    flex: 1;
    width: 100%;
}
.input_wrapper button#decrease_btn {
    background: url(../img/arrow_drop_down-1.png) no-repeat center center;
    background-size: cover;
    display: block;
}
.input_wrapper button#increase_btn {
    background: url(../img/arrow_drop_down.png) no-repeat center center;
    background-size: cover;
    display: block;
    border-bottom: 1px solid var(--bs);
}
.action_btns {
    width: 70%;
    display: flex;
    gap: 4px;
}
.action_btns button {
    flex: 1;
    font-size: 1.8rem;
}
.action_btns .btn_type_01:hover {
    background-color: var(--pc);
    color: #fff;
}
.action_btns .btn_type_02:hover {
    background-color: #042611;
    color: #fff;
}
.productDetail .subRight_02 {
    margin-top: 32px;
}
.tabs {
    display: flex;
    border-right: 0;
    border-left: 0;
}
.tabs li {
    flex: 1;
    text-align: center;
    border: 1px solid #000;
    padding: 16px;
    background-color: var(--bgs);
    border: 1px solid var(--bt);
    border-left: 0;
    border-right: 0;
    cursor: pointer;
    font-size: 1.8rem;
}
.tabs li.current{
    font-weight: 700;
    background-color: transparent;
    border: 1px solid var(--bp);
    border-bottom: 0;
}
.tab_content {
    display: none;
    padding-top: 24px;
    padding-bottom: 100px;
}
.tab_content.current {
    display: block;
}

.product_content img {
	max-width: 100%;
}
.guide h4 {
    font-size: 1.8rem;
}
.guide_04 .box {
    padding: 16px;
    border-radius: 8px;
    background-color: var(--bgs);
    margin-top: 12px;
}
.guide_04 .box p {
    font-weight: 400;
    color: var(--tsi);
}
.guide_04 .box > span {
    color: var(--pc);
}
.guide_04 ul {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}
.guide_04 ul li {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid var(--bt);
    padding: 12px;
    color: var(--tt);
}
.guide_04 ul h5 {
    font-size: 1.6rem;
    font-weight: 600;
}
.guide_04 ul p {
    font-weight: 400;
    margin-top: 6px;
}
.guide_04 ul .sub_desc {
    margin-top: 12px;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--focus-ring);
}
.guide_04 ul .sub_desc em {
    display: block;
}
.guide_04 ul .sub_desc span {}



/* 서브: noticeBoard/orderHistory */
.board_list {
    margin-top: 12px;
}
.board_list table {
    width: 100%;
	border-collapse: collapse;
}
.board_list thead {
	height: 56px;
	min-height: 56px;
	font-weight: 200;
	background-color: var(--bgs);
    color: var(--tt);
}
.board_list thead th {
	text-align: center !important;
}
.board_list tbody td {
    padding: 16px 0;
	height: 45px;
	min-height: 45px;
	line-height: 24px;
	text-align: center;
	font-size: 1.6rem;
    font-weight: 400px;
	border-right: none;
	border-bottom: 1px solid var(--bt);
}
tbody td.t-title {
	text-align: left;
}
tbody td.t-title a {
	display: block;
}
tbody td.t-title a:hover {
	color: var(--pc);
}
.board_list .title {
	margin-bottom: 0;
	float: left;
}
.board_list td.t-date,
.board_list td.t-hit {
    color: var(--tdis);
    font-size: 1.4rem;
    font-weight: 400;
}
.bo-date-hit-box {
	display: none;
	clear: both;
}
.orderHistory .subRight_02 {
    margin-top: 12px;
}
/* 비밀번호 입력 모달 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
}
.modal.active {
    display: block;
}
.modal_content {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px #00000024;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    max-height: calc(80vh - 120px);
    max-width: calc(100% - 32px);
    padding: 24px;
}
.modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.modal_header h4 {
    font-size: 1.8rem;
}
.modal_header a {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: var(--bgs) url(../img/delete.png) no-repeat center center;
    background-size: cover;
    border-radius: 4px;
}
.modal_input {}
.modal_input p {}
.modal_input div {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
}
.modal_input input {
    border: 1px solid var(--bt);
    padding: 12px;
    flex: 1;
}
.modal_input button {
    border: 1px solid var(--bgf);
    background-color: var(--bgf);
    padding: 12px 16px;
    display: inline-block;
    font-size: 1.4rem;
    flex: 1;
    color: #fff;
}
.errorMsg {
    display: inline-block;
    margin-top: 8px;
    font-size: 1.4rem;
    color: var(--danger);
}

/* 서브: orderWrite */
.order_notice {
    margin-bottom: 12px;
}
.order_notice h1 {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.order_notice h1 img {
    width: 32px;
}
.order_notice h1 span {
    font-size: 1.8rem;
}
.order_notice .notice_txt {
    padding: 16px;
    background-color: #FFF2F2;
    border-radius: 8px;
}
.order_notice .notice_txt p {
    color: var(--focus-ring);
}
.orderWrite .board_list {
    margin-top: 0;
}
.orderWrite .board_list tbody td {
	border-bottom: 1px solid var(--bgs);
    padding: 6px 0;
    font-weight: 400;
}
.orderWrite .board_list {
    border-bottom: 1px solid var(--bt);
}
.agree_btns {
    display: flex;
    justify-content: center;
    padding: 32px 0;
    gap: 8px;
}
.agree_btns a {
    border: 1px solid var(--bs);
    background-color: var(--bgt);
    color: var(--bdis);
    border-radius: 6px;
    min-width: 30%;
    max-width: 50%;
    padding: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.4rem;
    word-break: keep-all;
}
.agree_btns a em {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../img/check02.png) no-repeat center center;
    background-size: 100% auto;

}
.agree_btns a.active {
    color: var(--pc);
    background-color: var(--suc-sub);
    border: 1px solid var(--pc);
}
.agree_btns a.active em {
    background: url(../img/check01.png) no-repeat center center;
    background-size: 100% auto;
} 
/* process 견적문의 절차 */
.total_process {
    margin-top: 32px;
    margin-bottom: 48px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bt);
}
.total_process h1 {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}
.total_process h1 span {
    font-size: 1.8rem;
}
.total_process h1 img {
    width: 18px;
}
.process_wrap {
    display: flex;
    justify-content: space-between;
}
.process {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.process .box_txt {
    flex: 1;
    height: 100%;
    padding: 12px;
    border-top: 2px solid #374151;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: #F5F5F5;
}
.process .box_txt h1 {
    color: var(--tt);
    font-size: 1.8rem;
    word-break: keep-all;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
}
.process .box_txt span {
    color: var(--focus-ring);
    font-size: 1.4rem;
    word-break: keep-all;
    display: flex;
    gap: 2px;
}
.process .box_txt span em {
    color: var(--focus-ring);
    font-size: 1.4rem;
    word-break: keep-all;
}
.process .box_arrow {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/process_arrow.png) no-repeat center center;
    background-size: cover;
}
.process:last-of-type .box_arrow {
    display: none;
}


/* form_field */
.form_field {
    margin-top: 24px;
    border-top: 2px solid var(--bs);
}
.field span {
    padding: 8px;
    display: inline-block;
    flex: 1;
}
.field select {
    padding: 8px;
    padding-right: 36px;
    background: url(../img/select_arrow.png) no-repeat center right 4px;
    background-size: 21px auto;
    border: 1px solid var(--bt);
    min-width: 200px;
    border-radius: 4px;
}
.field {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--bt);
    align-items: stretch;
}
.field.answer {
}
.field label {
    background-color: var(--bgs);
    padding: 12px;
    display: block;
    min-width: 180px;
    font-weight: 700;
    font-size: 1.4rem;
}
.field .check_boxes label {
    background-color: transparent;
}
.field input:not(input[type=checkbox]) {
    border: 1px solid var(--bt);
    padding: 8px;
    width: 100%;
    border-radius: 4px;
}
.field_02 {
    flex: 1;
    display: flex;
}
.check_boxes {
    display: flex;
}
.check_boxes label {
    font-weight: 600;
    font-size: 1.4rem;
    min-width: auto;
}
.check_boxes input[type=checkbox] {
    margin-right: 8px;
}
.text_box {
    padding: 8px;
    width: 100%;
}
.text_box textarea {
    width: 100%;
    border: 1px solid var(--bt);
    padding: 8px;
    height: 100%;
    border-radius: 4px;
}
.form_btns {
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
}
.form_btns button {
    padding: 12px;
    display: inline-block;
    min-width: 160px;
    border-radius: 4px;
    transition: 0.2s;
    font-size: 1.4rem;
}
.form_btns .btn_01 {
    color: var(--danger);
    background-color: #FFF2F2;
    border: 1px solid var(--focus-ring);
}
.form_btns .btn_01:hover {
    background-color: var(--focus-ring);
    color: #fff;
}
.form_btns .btn_02 {
    border: 1px solid var(--bgf);
    color: #fff;
    background-color: var(--bgf);
}
.form_btns .btn_02:hover  {
    font-weight: 500;
    color: var(--bgf);
    border: 1px solid var(--bs);
    background-color: var(--bgt);
}
/*orderCheck: 견적/주문조회 하단 버튼 css*/
.orderCheck .form_btns {}
.orderCheck .form_btns button {
    font-weight: 600;
    font-size: 1.4rem;
    border: 1px solid transparent;
}
.orderCheck .form_btns > div {}
.orderCheck .form_btns > div button {
    background-color: var(--bgs);
    border: 1px solid var(--bt);
}
.orderCheck .form_btns > div button.modify:hover {
    border: 1px solid var(--bgf);
}
.orderCheck .form_btns > div button.delete {
    color: var(--danger);
}
.orderCheck .form_btns > div button.delete:hover {
    border: 1px solid var(--danger);
    background-color: #FFF2F2;
}
.orderCheck .form_btns > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--bgf);
    background-color: var(--bgs);
    transition: 0.3s;
}
.orderCheck .form_btns > button:hover {
    border: 1px solid var(--pc);
    color: var(--pc02);
    background-color: var(--suc-sub);
}
.orderCheck .form_btns > button:hover img {
    display: none;
}
.orderCheck .form_btns > button:hover span {
    font-size: 1.6rem;
}
.orderCheck .form_btns > button img {
    width: 18px;
    height: 18px;
}
.orderCheck > button span {}



/* 개인정보 수집 이용 동의 모달 */
.orderWrite .modal {
    background-color: #00000046;
}
.orderWrite .modal_header {
    padding: 16px;
    position: sticky;
    top: 0;
    background-color: #fff;
    border-bottom: 1px solid var(--bt);
    margin-bottom: 0;
}
.orderWrite .modal_content {
    padding: 0;
}
.orderWrite .modal_input div {
    margin-top: 0;
}
.orderWrite .modal_input p {
    background-color: var(--bgs);
    padding: 16px;
    font-size: 1.4rem;
    color: var(--tt);
}
.orderWrite .modal_btn {
    padding: 16px;
    position: sticky;
    bottom: 0;
    background-color: var(--bgs);
    display: block;
    text-align: center;
}
.orderWrite .modal_btn button {
    border-radius: 6px;
    padding: 12px 64px;
    max-width: 100%;
}


/* 서브: orderCheck */
.biz_name {
    display: flex;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bt);
    font-size: 1.8rem;
}
.biz_name label {
    font-weight: 800;
}

/* 서브: shopList */
.shopList .total_search_box {
	padding: 12px;
	background-color: var(--bgt);    
	border-left: 0;
	border-right: 0; 
	border-top: 1px solid var(--pc02); 
	border-bottom: 1px solid var(--pc02);  
}
.shopList .search_box {
	gap: 6px;
}
.shopList .total_search_box span {
	color: var(--pc);
}
.shopList .search_box select {
	background-color: #fff;
	border: 1px solid var(--bgf);   
}
.shopList .board_list thead {
	border-bottom: 1px solid var(--bgf); 
}
.shopList .board_list thead tr:nth-of-type(2) {
	border-top: 1px solid var(--bs); 
}

.shopList .board_list th {
	border-top: 1px solid var(--bgf); 
	border-right: 1px solid var(--bgf); 
	padding: 8px;
}
.shopList .board_list th:last-of-type {
	border-right:1px solid transparent; 
}
.shopList .board_list td {
	border-right:1px solid var(--bt);
	border-bottom: 1px solid var(--bs);
	padding: 8px; 
	font-weight: 400;
	font-size: 1.4rem;
}
.shopList .board_list td:last-of-type {
	border-right:1px solid transparent;
}
.shopList .board_list td.borderCustom {
	border-bottom: 1px solid var(--bt);
}






/* ## 메인 ## */
/*슬라이드 영역*/
.visual {
    background-color: #EEF2F0;
    width: 100vw;
    max-width: 100%;
    height: 680px;
    padding-top: 200px;
    position: relative;
}
.visual .inner {
    
}
.main_slider {
      
}
.numcount {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 16px;
    background-color: #fff;
    border-radius: 999px;
    box-shadow: 0 0 10px #00000006;
}
.numcount span.now {
    color: var(--pc);
}
.main_slider {
    height: 100%;
}
.main_slider > div {
    
}
.slideTxt {
    float: left;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 410px;
}
.sm_txt {
    font-weight: 400;
    font-size: 2rem;
}
.lg_txt {
    font-family: 'GmarketSansMedium';
    font-size: 5.2rem;
    line-height: 5.8rem;
    margin-top: 8px;
    margin-bottom: 24px;
    background: linear-gradient(to left, #56A679, #166534); 
    color: transparent;
    -webkit-background-clip: text;
}
.md_txt {
    font-size: 2.6rem;
    margin-bottom: 4px;
    font-weight: 600;
}
.product_shortcut {
    background-color: #000;
    border: 1px solid transparent;
    color: #fff;
    display: inline-block;
    width: fit-content;
    padding: 10px 32px;
    font-weight: 400;
    border-radius: 999px;
    margin-top: 36px;
    transition: 0.3s;
}
.product_shortcut:hover {
    color: var(--pc);
    background-color: #fff;
    border: 1px solid var(--pc);
}
.slideImg {
    float: left;
    width: 60%;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 410px;
}
/* .slideImg img {
    width: 80%;
    height: inherit;
    object-fit: cover;
} */
.slick-prev,
.slick-next {
    /*display: none !important;*/
    height: 36px;
    width: 36px;
}
.slick-prev {
	left: -64px;
}
.slick-prev,
.slick-prev:hover, .slick-prev:focus{
	background: url('../img/prev_bg.png') no-repeat center center;
	background-size: 80%;
}
.slick-prev:before,
.slick-next:before {
	display: none;
}
.slick-next {
	right: -64px; 
}
.slick-next,
.slick-next:hover, .slick-next:focus {
	background: url('../img/next_bg.png') no-repeat center center;
	background-size: 80%;
}
.mobile_menu {
    display: none;
}

/* 메인 플로팅 */
/* 왼쪽 배너 */
.main_floatings {
    position: fixed;
    bottom: 50%;
    left: 16px;
    z-index: 1;
}
.inquiry_info_wrap {
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 0 10px #00000024;
}
.inquiry_info_wrap h4 {
    display: flex;
    align-items: center;
    background: linear-gradient( to right top, #7C93B7 ,#00A950);
    padding: 8px;
    gap: 4px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}
.inquiry_info_wrap h4 img {
    width: 16px;
    height: 16px;
}
.inquiry_info_wrap h4 span {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
}
.main_contact_us span {
    font-size: 1.2rem;
    color: var(--bdis);
}
.main_contact_us p {
    font-size: 1.4rem;
}
.inquiry_info_wrap > div > div {
    padding: 4px 8px;
} 
.inquiry_info_wrap .call_info p {
    color: var(--warning);
}
.inquiry_info_wrap .email_info {
    border-top: 1px solid var(--bt);
}
/* 메인: mainsec01 */
.mainSec01 {
    background: linear-gradient(to top, #F2F2F2, #FFFFFF);
    padding: 140px 0;
    overflow-x: hidden;
}
.mainSec01 .inner {
    display: flex;
    gap: 5%;
    justify-content: space-between;
}
.mainSec01 .inner .left_bg {
    width: 20%;
    background: url(../img/bg.png) no-repeat center center;
    background-size: cover;
    min-height: 520px;
}
.mainSec01 .inner .left_bg img {}
.mainSec01 .inner .right_slogans {
    width: 70%;
    position: relative;
}
.slogan {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.en_slogan {
    color: #9BB3A4;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
}
.slogan h2 {
    font-size: 6.4rem; 
    background: linear-gradient(to right, #00A950, #7C93B7);
    color: transparent;
    -webkit-background-clip: text;
    display: inline-block;
    font-weight: 800;
    font-family: 'GmarketSansMedium';
}
.mark_wrap {
	display: flex;
	align-items: center;
	gap: 6px; 
}
.mark_wrap img {
	width: 64px;
}

.adv_items {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 64px;
}
.adv_item {
    width: 18%;
    border-radius: 8px;
    text-align: center;
}
.adv_icon {
    padding: 12px;
    aspect-ratio: auto 1/1;
    box-shadow: 0 0 10px #00000016;
    background-color: #fff;
    text-align: center;
    border-radius: 8px;
}
.adv_icon img {
    width: 60%;
}
.adv_item p {
    margin-top: 24px;
    font-size: 2.4rem;
    font-weight: 700;
    word-break: keep-all;
}
.adv_icon01 {
    background: #fff url(../img/mark_01.png) no-repeat center center;
    background-size: 64%;
}
.adv_icon02 {
    background: #fff url(../img/mark_02.png) no-repeat center center;
    background-size: 60%;
}
.adv_icon03 {
    background: #fff url(../img/mark_03.png) no-repeat center center; 
    background-size: 80%; 
}
.adv_icon04 {
    background: #fff url(../img/mark_04.png) no-repeat center center;
    background-size: 100%;
}
.bg_txt {
    position: absolute;
    bottom: -32px;
}
.bg_txt h1 {
    font-size: 8.8rem;
    white-space: nowrap;
    color: #EAEAEA;
    font-weight: 900;
}

/* 메인: mainsec02 */
.mainSec02 {
    padding: 120px 0;
}
.mainSec02_header {
    border-bottom: 1px solid #000000;
    padding-bottom: 32px;
    display: flex;
    justify-content: space-between;
}
.mainTitle h1 {
    font-size: 3.2rem; 
    margin-bottom: 8px;
}
.mainTitle span {
    font-size: 1.4rem;
}
.mapIcon {
    width: 10%;
    background: url(../img/map.png) no-repeat center right;
    background-size: contain;
}
.mainSec02_content {
    display: flex;
    padding-top: 36px;
    gap: 16px;
}
.map_section {
    width: 50%;
}
.map_section_header p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
.map_section_header em { 
	font-size: 2rem;
}
.map_section_header p img {
    width: 24px;
}
.map_section_header p span {
    font-size: 2rem; 
    color: var(--pc);
    font-weight: 700;
}
.map {
    margin-top: 24px;
}
.map iframe {
    width: 100%;
    max-width: 100%;
    height: 300px;
}



/* 위에서 아래로 이동 */
.hide.t_to_b {
    opacity: 0;
    transform: translateY(-40px);
}
.hide.t_to_b.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.hide.t_to_b.show.delay_01 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-in-out 0.5s, transform 1s ease-in-out 0.5s;
}
.hide.t_to_b.show.delay_02 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-in-out 1s, transform 1s ease-in-out 1s;
}
.hide.t_to_b.show.delay_03 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-in-out 1.5s, transform 1s ease-in-out 1.5s;
}
.hide.t_to_b.show.delay_04 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-in-out 2s, transform 1s ease-in-out 2s;
}

/* 위치그대로 */
.hide.opa {
    opacity: 0;
}
.hide.opa.show {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.hide.opa.show.delay_01 {
    opacity: 1;
    transition: opacity 1s ease-in-out 1s;
}
.hide.opa.show.delay_02 {
    opacity: 1;
    transition: opacity 1.2s ease-in-out 1s;
}
.hide.opa.show.delay_03 {
    opacity: 1;
    transition: opacity 1.4s ease-in-out 1s;
}
.hide.opa.show.delay_04 {
    opacity: 1;
    transition: opacity 1.6s ease-in-out 1s;
}

/* 서브: noticeDetail */
.noticeDetail .form_field {
    margin-top: 0;
}
.noticeDetail .form_field input[type=text] {
    border: 1px solid transparent;
}
.noticeDetail .form_field  textarea {
    border: none;
}
.noticeDetail .form_btns button {
    background-color: var(--bgt);
    color: var(--tp);
    font-weight: 600;
}
.file_field {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--bt);
    align-items: stretch;
}
.file_field label {
    background-color: var(--bgs);
    padding: 12px;
    display: block;
    min-width: 180px;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}
.file_field > div {
	padding: 8px; 
	display: flex;
	align-items: center; 
	gap: 4px; 
	width: 100%;
}
.file_field input {
	border: 1px solid var(--bt);
	padding: 8px; 
	border-radius: 4px;
	display: inline-block;
	width: calc(80% - 2px);   
}
.field span.sm_span {
    font-size: 1.4rem;
    color: var(--bdis);
    display: flex;
    align-items: center;
    flex-wrap: 400px;
}
.noticeDetail .form_btns {
    justify-content: flex-end;
}
.noticeDetail .text_box {
    min-height: 200px;
}
.noticeDetail .text_box p {
    
}




/* 서브: estimatePrint */
/*.page {
	margin: 0 auto;
}
.page[data-size="A4"] {
	width: 21cm;
	height: 29.7cm; 
}*/
.tem_inner {
	padding-top: 24px;
	width: 1000px;
	padding: 20px;
	margin: 0 auto;
}
.template {
	border: 1px solid #000;
}
.template_title {
	padding: 24px 0;
	border-bottom: 2px solid #000;
}
.template_title h1 {
	text-align: center; 
}
.template_content .top_content {
	display: flex;
	gap: 24px;
	padding: 24px; 
}
.template_content .top_content .left_box {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.left_box span {
	font-weight: 800;
}
.left_box .biz {
	display: flex;
	align-items: center;
}
.left_box .biz em {
	display: inline-block;
	width: 80px;
	text-align: center;
	font-weight: 800;
}

.template_content .top_content .right_box {
	border:1px solid #000;
	width: 70%; 
	display: flex;
}
.provider {
	border-right: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	width: 20%;
	font-weight: 800;
}
.provider_info {
	width: 80%;
}
.provider_info > div {
	border-bottom: 1px solid #000;
}
.provider_info > div:last-of-type {
	border-bottom: none;
}
.info_box {
	width: 100%;
	display: flex;
	font-size: 1.4rem;
}
.info_type {
	padding: 8px;
	width: 80px;
	border-right: 1px solid #000;
	display: flex;
	align-items: center;
}
.info_type span {
	font-weight: 700;
}
.info_detail {
	padding: 8px; 
	width: calc(100% - 80px);
	display: flex;
	align-items: center;
}
.info_detail span {
	word-break: keep-all;
}
.info_box.boxes > div:nth-of-type(1){
	border-right: 1px solid #000;
} 
.info_box.boxes .info_type {
	width: 80px;
}
.info_box.boxes .info_detail {
	width: calc(100% - 80px);
}
.stamp {
	position: relative;
}
.stamp_sec {
	position: absolute;
	right: 0; 
	width: 50px;
	height: 50px;
}
.stamp_sec img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mid_content {
	padding: 24px;
}
.total_estimate {
	display: flex;
}
.total_estimate > div {
	border: 1px solid #000;
	text-align: center; 
	padding:8px 0;
}
.total_estimate > div:nth-of-type(1),
.total_estimate > div:nth-of-type(4) {
	flex: 1;
}
.total_estimate > div:nth-of-type(2),
.total_estimate > div:nth-of-type(3){
	flex: 2;
}
.total_estimate span,
.total_estimate em {
	font-weight: 800;
}
.list_estimate table {
	border-collapse : collapse ;
	width: 100%;
}
.list_estimate table span {
	display: block;
	font-weight: 400;
	font-size: 1.2rem;
}
.list_estimate table th {
	border: 1px solid #000;
	font-weight: 400;
	font-size: 1.4rem;
}
.list_estimate table td {
	border: 1px solid #000; 
	padding: 4px;
	height: 36px;
	font-size: 1.4rem;
}
.td_right {
	text-align: right;
}
.centering {
	text-align: center;
}
.total_td_label {
	font-size: 1.8rem !important;
	text-align: center;
	font-weight: 700;
}
.total_td h1 {
	font-size: 1.8rem;
	text-align:right;
}
.list_bigo {
	border: 1px solid #000; 
	display: flex;
}
.list_bigo h4 {
	border-right: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
}
.list_bigo ul {
	width: calc(100% - 120px);
}
.list_bigo ul li {
	padding: 4px;
	font-weight: 400;
	font-size: 1.4rem;
}
.list_bigo ul li + li {
	border-top: 1px solid #000;
}
.template_btns {
	display: flex;
	justify-content: space-between;
	padding: 24px 0;
}
.template_btns button {
	display: inline-block; 
	padding: 12px 32px;
	border-radius: 4px;
	cursor: pointer;
}
.tem_btn_01 {
	background: var(--bgs);
	border: 1px solid var(--bp);
}
.tem_btn_02 {
	background: var(--bgt);
	color: var(--tt);
	border: 1px solid var(--bgf);
}
.tem_btn_03 {
	background: var(--bgf);
	color: #fff;
	border: 1px solid transparent;
}


/*#### 발주서 orderPrint ####*/
.orderPrint .tem_inner {
	border: 1px solid #000;
}
.tem_info_wrap {
	display: flex;
	margin-bottom: 24px;
}
.tem_info_top {
	font-size: 1.8rem;
	padding: 32px 0;
}
.tem_info_01,
.tem_info_02 {
	width: 50%;
}
.tem_info_04 {
	text-align: center;
	margin: 32px 0;
}
.tem_info_04 em {
	position: relative;
	display: inline-block;
}

.tem_info_04 em:after,
.tem_info_04 em:before {
	content: '';
	position: absolute;
	width: 200px;
	height: 1px;
	top: 50%;
	transform: translateY(-50%);
	background: #000;
}
.tem_info_04 em:after {
	right: calc(100% + 24px);
}
.tem_info_04 em:before {
	left: calc(100% + 24px);
}

.orderPrint table {
	border-collapse : collapse ;
	width: 100%;
}

.orderPrint table th {
	border: 1px solid #000;
	font-weight: 400;
	font-size: 1.8rem;
	font-weight: 700;
	padding: 4px 0;
}
.orderPrint table td {
	border: 1px solid #000; 
	padding: 4px;
	height: 36px;
	font-size: 1.4rem;
}
.orderPrint table td:nth-of-type(3),
.orderPrint table td:nth-of-type(4),
.orderPrint table td:nth-of-type(6) {
	text-align: center;
}
.address_detail {
	margin-top: 12px;
}
.address_detail ul {
	margin-bottom: 12px;
}

.address_detail ul li + li {
	margin-top: 4px;
}
.address_detail p {
	border-top: 1px solid #000;
	padding-top: 12px;
}




/*#### index.jsp 팝업창 .pop ####*/

.pop {
	display: none;
    position: fixed; 
    z-index: 200; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}
.pop.active {
	display: block;
}
.pop_content {
	position: absolute;
    background-color: #fff;
    width: 1000px;
    max-width: calc(100% - 24px);
    max-height: calc(100% - 24px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}
.pop_img {
	width: 100%;
}
.pop_img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display:block;
}
.pop_btns {
	display: flex;
	align-items: stretch;
}
.stop_show {
	background: var(--bgt); 
	width: calc(100% - 60px);
	padding: 12px;
}
.stop_show label {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
}
.pop_close {
	width: 60px;
	background: var(--bgt) url(../img/delete.png) no-repeat center center;
	background-size: cover;
}
.pop_close:hover {
	width: 60px;
	background: var(--bgs) url(../img/delete.png) no-repeat center center;
	background-size: cover;
}









