/*1. noto sans*/

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url("../fonts/NotoSansKR-Light.woff2") format("woff2"),
    url("../fonts/NotoSansKR-Light.woff") format("woff"),
    url("../fonts/NotoSansKR-Light.otf") format("opentype");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/NotoSansKR-DemiLight.woff2") format("woff2"),
    url("../fonts/NotoSansKR-DemiLight.woff") format("woff"),
    url("../fonts/NotoSansKR-DemiLight.otf") format("opentype");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/NotoSansKR-Regular.woff2") format("woff2"),
    url("../fonts/NotoSansKR-Regular.woff") format("woff"),
    url("../fonts/NotoSansKR-Regular.otf") format("opentype");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/NotoSansKR-Medium.woff2") format("woff2"),
    url("../fonts/NotoSansKR-Medium.woff") format("woff"),
    url("../fonts/NotoSansKR-Medium.otf") format("opentype");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/NotoSansKR-Bold.woff2") format("woff2"),
    url("../fonts/NotoSansKR-Bold.woff") format("woff"),
    url("../fonts/NotoSansKR-Bold.otf") format("opentype");
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/NotoSansKR-Black.woff2") format("woff2"),
    url("../fonts/NotoSansKR-Bold.woff") format("woff"),
    url("../fonts/NotoSansKR-Bold.otf") format("opentype");
}


/* ] -------- 2. CSS 변수화 -------- [ */
:root {
    /*theme*/
    --mob-primary: #1A5632;
    --mob-font: #000000;
    --bg-white: #F6F7F8;
    --white: #ffffff;
    --font: #000;
    --bg-color: #f3f4f6;

    /*layout height*/
    --no-scroll-height: calc(100vh - var(--header-height) - var(--inset-top) - var(--inset-bottom));
    --header-height: 60px;
    --search-height: 54px;

    --inset-top: var(--safe-area-inset-top, var(--android-safe-area-inset-top, env(safe-area-inset-top, 0px)));
    --inset-bottom: var(--safe-area-inset-bottom, var(--android-safe-area-inset-bottom, env(safe-area-inset-bottom, 0px)));
}

@media screen and (min-width: 769px) {
    :root {
        --inset-top: 0px;
        --inset-bottom: 0px;
        --no-scroll-height: calc(100vh - var(--header-height) - var(--inset-top) - var(--inset-bottom));
    }
}

body {
    width: 100%;
    font-family: "Noto Sans", sans-serif;
    font-size: 3.7333333vw;
    font-weight: 400;
    background-color: #FAFAFA;
}

/* --- ] layout [ --- */
#AMP_TOP {
    position: fixed;
    width: 100vw;
    z-index: 100;
    background-color: var(--mob-primary);
}

#AMP_CONTENT {
    height: calc(100% - var(--header-height) - var(--inset-top));
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--font);
    letter-spacing: 0;
    background-color: transparent;
    /* 안전영역 위한 CSS 처리 */
    /*padding-top: calc(var(--header-height) + var(--inset-top));*/
}

.contents {
    padding-left: 4.2666667vw;
    padding-right: 4.2666667vw;
}

.ml-auto{margin-left:auto;}

.commonCheck{
    display:flex;
    align-items: center;
    font-size:0;
}
.commonCheck input[type=checkbox] {
    display: none;
}

.commonCheck input[type=checkbox] + label {
    background-image: url(../img/check_off.svg);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.commonCheck input[type=checkbox]:checked + label {
    background-image: url(../img/check_on.svg);
}

.commonCheck label,
.commonCheck .label{
    display: inline-block;
    background-size: contain;
    width: 5.333333vw;
    height: 5.333333vw;
}
.commonCheck .label{
    background-image: url(../img/check_off.svg);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.commonCheck .label.checked{
    background-image: url(../img/check_on.svg);
}
.commonCheck span{
    display:inline-block;
    margin-left: 2.1333333vw;
    font-size: 3.7333333vw;
}

/* 메인 헤더 */

header {
    /*width:100%;*/
    height:11.733333vw;
    background:#1A5632;
}
header .container{  position:relative;}
header h2{
    position:absolute;
    top:50%;
    left:0;
    display: flex;
    width:6.4vw;
    height:6.4vw;
    margin-top:-3.2vw;
    align-items: center;
}
header h2 a {
    display:block;
    width: 100%;
    height: 100%;
    font-size:0;
}
header h2 a img{  width:100%; }
header .title {
    position:absolute;
    top:50%;
    left:50%;
    font-weight:700;
    font-size:4.266667vw;
    line-height:3.733333vw;
    color:#fff;
    transform:translate(-50%, -50%);
}
header .headerBtn {
    position:absolute;
    top:50%;
    right:0;
    margin-top:-3.2vw;
}
header .headerBtn li {
    width:6.4vw;
    height:6.4vw;
    margin-left:2.666667vw;
    float:left;
}
header .headerBtn li button{
    display:block;
    width: 100%;
    height: 100%;
    font-size:0;
}
header .headerBtn li button img {width:100%;}


/*
header .logout{
    display:block;
    width:5.3333333vw;height:5.3333333vw;
    padding:1.3333333vw;
}
.navigation {
    display: flex;
    align-items:center;
}
.user{
    color:var(--white);
    font-size:3.7333333vw;
}
.user .userName{
    display:inline-block;
    margin-left:1.3333333vw;
    font-size:4.8vw;
    font-weight: 600;
} */




/* --- ] 팝업 [ --- */


/* 로딩 text */
#AMP_LOADING {
    z-index: 99999;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.loading_layer {
    width: 100vw;
    height: 100vh;
    opacity: 0.6;
    background-color: #000;
}

.loading_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20pt;
}


.modal.show {
    display: flex;
}

.dimmedArea {
    background: rgba(0, 0, 0, 0.5);
}

.cursor {
    cursor: pointer;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(51, 51, 51, 0.6);
}

.popupWrapper {
    position: relative;
    max-width: 90%;
    max-height: 95%;
    margin: auto;
    overflow: hidden;;
    border-radius: 5px;
    background-color: #F6F7FB;
}

.popupTitleWrapper {
    padding: 8vw 10.6666667vw 2.6666667vw;
    background: #fff;
}

.popupClose {
    position: absolute;
    top: 2.6666667vw;
    right: 2.6666667vw;
}

.popupContent {
    padding: 13.3333333vw 0 2.6666667vw;
    overflow-y: auto;
    word-break: keep-all;
    white-space: normal;
}

.popupButtons {
    display: flex;
    background: #F6F7FB;
    padding: 0 10.6666667vw 8vw;
    justify-content: center;
}

.popupButtons button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37.3333333vw;
    height: 10.6666667vw;
    background: #0BC904;
    border-radius: 3px;
    color: #fff;
    line-height: 1;
    text-align: center;
    font-size: 3.7333333vw;
}

.popupButtons button ~ button {
    margin-left: 2.6666667vw;
    background: #26b2e8;
}

.popupContent .popupBtn {
    /*position: absolute;*/
    /*margin-top: -1%;*/
    /*left: 68%;*/
    /*width: 100px;*/
    /*height: 34px;*/
    /*background: #6d7278;*/
    /*border-radius: 3px;*/
    /*color: #fff;*/
    /*text-align: center;*/
    /*font-size: 14px;*/
    /*cursor: pointer;*/
}

/* 팝업 - 고객정보 */
.customerAddr {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

ul.address {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ] switch [ */
.onoffswitch {
    position: relative;
    width: 90px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #999999;
    border-radius: 20px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 30px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "";
    padding-left: 10px;
    background-color: #34A7C1;
    color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "";
    padding-right: 10px;
    background-color: #EEEEEE;
    color: #999999;
    text-align: right;
}

.orderDetail:before {
    content: "신주소";
}

.orderDetail:after {
    content: "구주소";
}

.mainSwitch:before {
    content: "완료";
}

.mainSwitch:after {
    content: "품절";
}

.onoffswitch-switch {
    display: block;
    width: 18px;
    margin: 6px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 56px;
    border: 2px solid #999999;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0;
}

/* 로그인 후 최초 진입화면 */
.initial {
    height: calc(100vh - 17.0666667vw);
    overflow-y: hidden;
}

.top {
    padding: 2.6666667vw 6.4vw;
}

.scheduler {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 10.6666667vw;
}

.scheduler p {
    font-size: 6.4vw;
    color: #333;
}

.scheduler p span {
    font-weight: 600;
}

.dashboard {
    /*background*/
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 14.4vw;
    margin-top: 2.6666667vw;
    padding-bottom: 20.266667vw;
    overflow: hidden;
    border-radius: 1.3333333vw;
    background: var(--white);
    box-shadow: 2px 2px 4px rgba(204, 207, 217, 0.5);
}

.dashboard button {
    width: 25%;
    height: 100%;
    border-radius: 1.3333333vw;
    text-align: center;
}

.dashboard button span {
    display: block;
    width: 100%;
    color: var(--font);

}

.dashboard .count {
    margin-bottom: 0.5333333vw;
    line-height: 1.3;
    font-size: 4.8vw;
    font-weight: 600;

}

.scrolling {
    height: calc(100vh - 32vw);
    overflow: auto;
    background: var(--white);
}

.orderTable input {
    vertical-align: middle;
}

.orderTable thead th {
    height: 44px;
    padding: 0 2.6666667vw;
    background-color: var(--list-disabled);
    font-size: 3.2vw;
    font-weight: 500;
    white-space: nowrap;
    color: var(--mob-font);
    vertical-align: middle;
}

.orderTable tbody td {
    height: 14.9333333vw;
    padding: 0 2.6666667vw;
    font-size: 3.2vw;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    color: var(--mob-font);
    vertical-align: middle;
}

.orderTable tbody tr:nth-child(even) td {
    background-color: var(--list-even-bg);
}

.bottomHeight {
    background: var(--white);
}

.viewMore {
    display: block;
    width: 30px;
    height: 30px;
}

.viewMore img {
    transform: rotate(270deg);
}

/* 체크박스 스타일링 */
.mCheckbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.mCheckbox .checkmark {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("/img/mic_pack.svg#svgView(viewBox(24, 16, 24, 24))") no-repeat center;
    background-size: cover;
}


.mCheckbox input[type="checkbox"] {
    display: none;
}

.mCheckbox input[type="checkbox"]:checked + .checkmark {
    background: center / cover no-repeat url("/img/icons.svg#svgView(viewBox(144, 0, 24, 24))");
}

.mCheckbox .name {
    font-size: 12px;
    color: var(--mob-font);
    letter-spacing: -0.2px;
}

/* 라디오 스타일링 */
.mRadio {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-right: 5.333333vw;
}

.mRadio .checkmark {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url("/img/mic_pack.svg#svgView(viewBox(24, 16, 24, 24))") no-repeat center;
    background-size: cover;
}


.mRadio input {
    display: none;
}

.mRadio input[type="radio"]:checked + .checkmark {
    background: center / cover no-repeat url("/img/icons.svg#svgView(viewBox(144, 0, 24, 24))");
}

.mRadio .name {
    font-size: 20px;
    color: var(--mob-font);
    letter-spacing: -0.2px;
}

/* ] 화면 하단 floating button [ */
.floating {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 10px;
    background: var(--mob-primary);
    display: none;
}

.floating button {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 20%;
    height: calc(100% - 20px);
    border-radius: 5px;
    font-size: 14px;
    text-align: center;

}

.floating button span {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
}


/* 팝업 주소 */

.address li button {
    color: #ffffff;
}

.popupWrapper .popupContent {
    padding: 2.3333333vw 0 2.6666667vw;
}

.popupContent .customer {
    font-size: 25px;
    text-align: center;
    margin: 0 0 10px 0;
}

.popupContent .customerAddr {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 19.333333vw;
    height: 7.666667vw;
    background: #6d7278;
    border-radius: 3px;
    color: #ffffff;
    line-height: 1;
    text-align: center;
    font-size: 3.7333333vw;
    margin: 0px 10px 0px auto;
}

.popupCustomerInfo {
    border-collapse: unset !important;
    border-spacing: 10px !important;
}

.popupCustomerInfo tr td,
.popupCustomerInfo tr th {
    padding: 6px 16px;
}

/* .popupCustomerInfo tr th{
    width:20%;
} */

.popupCustomerInfo tr td {
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 2px 2px 4px rgba(204, 207, 217, 0.5);
    border-radius: 3px;
}

.popupCustomerInfo tr td .popupCustomerLine {
    text-align: center;
    color: #26B2E8;
}

.popupCustomerInfo tr td .popupCustomerText {
    width: 80%;
    text-align: right;
}

.popupCustomerInfo tr td img {
    height: 20px;
}


/* 배송상태 */

.popupContent .popupStatus {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.popupContent .popupStatus .popupStatusBtn {
    width: 30%;
    background: #FFFFFF;
    box-shadow: 2px 2px 4px rgb(204 207 217 / 50%);
    border-radius: 5.3333333vw;
    margin: 3.7333333vw;
    padding: 4vw;
    position: relative;
}

.popupContent .popupStatus .popupStatusBtn .popupStatusItem {
    margin: auto;
    text-align: center;
}

.popupContent .popupStatus .popupStatusBtn .popupStatusItem .upperRightBtn {
    position: absolute;
    top: 0;
    right: 0;
}

.popupContent .popupStatus .popupStatusBtn .popupStatusItem button img {
    border-top-right-radius: 5.3333333vw;
}

.deliveryStateBtn {
    position: fixed;
    left: 50%;
    padding:2.6666667vw 5.3333333vw;
    transform: translate(-50%, -50%);
    border: 1px solid;
    border-radius: 5.3333333vw;
    background: var(--mob-primary);
    color: #fff;
    font-size: 3.2vw;
    font-weight: 500;
}

.deliveryStateBtn.on {
    bottom: 10%;
}


/* common */
.mainContainer{
    padding-left: 4.2666667vw;
    padding-right: 4.2666667vw;
    padding-top: 8vw;
    background: url(../img/dashboard-bg.png) center -35.2vw / 100%;    
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.container {
    width: calc(100% - 8.533333vw);
    height: 100%;
    margin: 0 auto;
}

/* index main dashboard */

#dashboard header {
    position: relative;
    height: 11.733333vw;
    /*padding:0 5.3333333vw;*/
    background: #1A5632;
}

#dashboard .menuBtn {
    position: absolute;
    top: 50%;
    right: 5.3333333vw;
    width: 6.4vw;
    height: 6.4vw;
    margin-top:-3.2vw;
    font-size: 0;
}

#dashboard .menuBtn > img {
    height:100%;
    vertical-align: top;
}

#dashboard .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17.0666667vw;
    height: 7.7333333vw;
    transform: translate(-50%, -50%);
}


#dashboard .logo img {
    height: 100%;
    vertical-align: top;
}

#dashboard .main1 {
    padding-top: 8vw;
    background: #1A5632;
}

.hello {
    display:table;
    width: 100%;
    margin:0 0 9.6vw;
    font-weight: 400;
    font-size: 5.333333vw;
    line-height: 6.4vw;
    letter-spacing: -0.066667vw;
    color: #fff;
}

.hello .customerName {
    font-weight: 700;
}
.reloadBtn{
    display:table-cell;
    width: 37px;height:37px;
    padding:5px;
    vertical-align: middle;
    border-radius:10px;
    border:1px solid #fff;
    box-sizing: border-box;
}
.reloadBtn img{
    width: 25px;
    vertical-align: top;
}
#dashboard .main2 {
    padding: 9.6vw 0 0;
    background: #1A5632;
}

#dashboard .noticeBox {
    position: relative;
    width: 100%;
    height: 10.666667vw;
    background: #fff;
    border-radius: 0.8vw;
}

#dashboard .speaker {
    position: absolute;
    top: 3.2vw;
    left: 3.2vw;
    width: 4.266667vw;
    font-size: 0;
}

#dashboard .speaker img {
    width: 4.266667vw
}

#dashboard .noticeText {
    position: absolute;
    top: 3.2vw;
    left: 9.6vw;
    font-weight: 500;
    font-size: 3.2vw;
    line-height: 4.3vw;
    color: #000;
}

#dashboard .noticeDate {
    position: absolute;
    right: 3.2vw;
    top: 3.2vw;
    font-weight: 400;
    font-size: 2.933333vw;
    line-height: 4.3vw;
    color: #9F9F9F;
}

.appMenuList{
    display:flex;
    align-content: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12.2666667vw;
}
.appMenuList li{
    position: relative;
    width: 43.7333333vw;
    height: 43.7333333vw;
    overflow:hidden;
    background: #FFFFFF;
    border-radius: 5.333333vw;
    box-shadow: 5px 5px 20px rgba(204, 207, 217, 0.5);
}
.dashboardMenu .mainArrow{
    position: absolute;
    top:0;right:0;
    width: 10.9333333vw;height:10.9333333vw;
}
.dashboardMenu .icon{
    position: absolute;
    width: 17.0666667vw;
    height: 17.0666667vw;
    top:9.0666667vw;
    left:50%;
    margin-left:-8.5333333vw;
}
.dashboardMenu .mainTitle{
    position: absolute;
    top:30.4vw;
    left:0;
    width: 100%;
    font-size: 3.7333333vw;
    line-height: 4vw;
    font-weight: 700;
    color:#000;
    text-align: center;
}

.iconList{
    padding:5.3333333vw;
    border-radius:4.8vw;
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    box-sizing: border-box;
}
.iconList li{
    display:flex;
    align-items: center;
    margin-bottom:4.2666667vw;
}
.iconList li:last-child{margin-bottom:0;}
.iconList .iconImg{
    width: 13.3333333vw;height:13.3333333vw;
    margin-right:3.2vw;
}
.iconList .iconTitle{
    font-size: 3.7333333vw;
    font-weight: 500;
    color:#000;
}
.iconList .iconQtt{
    font-size:4.8vw;
    line-height:1;
    color:#1A5632;
}



/* 피킹목록 페이지 */
.pickList {
    position: relative;
    top: 11.733333vw;
}

.pickList .contents{
    padding-bottom: 6.9333333vw;
}
.pickList .nowTitle {
    height: 13.0666667vw;
    line-height: 12.8vw;
    text-align: center;
    font-size: 3.733333vw;
    color: #000;
    border-bottom: 0.266667vw solid #F1F1F1;
    box-sizing: border-box;
    background-color: #fff;
}

.pickList .nowTitle strong {
    margin-left: 2.666667vw;
    font-weight: 500;
    font-size: 4.8vw;
}

.pkTab {
    background-color: #fff;
}

.pkTab .pkStatueL {
    position: relative;
    width: 33.333%;
    height: 9.0666667vw;
    padding: 3.2vw 0 4.2666667vw;
    text-align: center;
    float: left;
}

.pkTab .pkStatueL p {
    line-height: 4.2666667vw;
    color: #000;
}

.pkTab .pkStatueL .fixText {
    font-size: 3.2vw;
}

.pkTab .pkStatueL .count {
    margin-top: 0.5333333vw;
    font-weight: 500;
    font-size: 4.2666667vw;
}

.pkTab .pkStatueL.on p {
    color: #1A5632;
    font-weight: 700;
}

.pkTab .pkStatueL.on:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1.066667vw;
    background: #1A5632;
}


/* swiper slider */
.ordStatueSlider {
    position: relative;
    margin-left: 4.2666667vw;
    margin-top: 4.2666667vw;
}

.ordStatueSlider .swiper-container {
    padding-right: 4.2666667vw;
    padding-bottom: 15.4666667vw;
}

.ordStatueList {
    /*padding:0 4.266667vw 0 4.266667vw !important; */
}

.ordStatueList .swiper-slide {
    width: 37.3333333vw;
    min-height: 22.4vw;
    text-align: left;

}

.ordStatueList .ordStatue {
    height: 100%;
    min-height: 22.4vw;
    padding: 3.2vw 2.666667vw;
    border: 1px solid #636569;
    border-radius: 1.6vw;
    box-shadow: 0 0.533333vw 1.066667vw 0 rgba(0, 0, 0, 0.15);
    background: #fff;
    box-sizing: border-box;
}
/*.swiper-slide.swiper-slide-active .ordStatueWrap{*/
/*    border: 2px solid #1A5632;*/
/*}*/
/*.swiper-slide.swiper-slide-active .itemNumber{*/
/*    font-weight: 700;*/
/*    color: #1a5632;*/
/*}*/
.ordStatue.active{
    border: 2px solid #1A5632;
}
.ordStatue.active .itemNumber {
    font-weight: 700;
    color: #1a5632;
}
.ordStatue.prev{
    background: #dedede;
}
.ordStatue p {
    color: #000;
    line-height: 4.2666667vw;
}
.ordStatue .itemNumber{
    margin-bottom: 2.6666667vw;
    font-weight: 500;
    font-size: 3.7333333vw;
}
.ordStatue .name,
.ordStatue .martName{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ordStatue .martName {
    font-size: 3.2vw;
}
.ordStatue .name {
    font-size: 3.7333333vw;
}

/* 피킹 페이지네이션 */
.ordPagination {
    position: absolute;
    left: 0;
    bottom: 8.5333333vw;
    width: 91.4666667vw;
    height: 1.6vw;
    text-align: center;
    font-size: 0;
}

.ordPagination .swiper-pagination-bullet {
    width: 1.6vw;
    height: 1.6vw;
    margin: 0 0.8vw;
    border-radius: 50%;
    opacity: 1;
    background-color: #CCCCCC;
    transition: width 200ms ease;
}

.ordPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 4.2666667vw;
    border-radius: 999px;
    background-color: #006633;
}

/* 피킹페이지 */
.ordInfoWrap {
    /*padding-top: 6.933333vw;*/
    /*background: #fafafa;*/
}

.changeDelivery{
    display:block;
    width: 100%;
    height: 12.8vw;
    margin-bottom: 6.4vw;
    line-height: 12.8vw;
    text-align: center;
    font-size: 3.7333333vw;
    font-weight: 500;
    color:#fff;
    background-color:#1A5632;
}

.ordInfoWrap .ordSearching {
    background: #fff;
    border-top: 0.266667vw solid #DEDEDE;
    border-left: 0.266667vw solid #DEDEDE;
    border-right: 0.266667vw solid #DEDEDE;
    box-sizing: border-box;
}



.ordStatueSlider .pagiBox {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5.333333vw;
    text-align: center;
}

.ordStatueSlider .swiper-pagination {
    display: inline-block;
    position: unset;
}

.ordStatueSlider .pagination .swiper-pagination-bullet {
    width: 1.6vw;
    height: 1.6vw;
    margin-right: 1.6vw;
    float: left;
    border-radius: 1.6vw;
    overflow: hidden;
    background: #CCCCCC;
    opacity: 1;
}

.ordStatueSlider .pagination .swiper-pagination-bullet-active {
    width: 4.267vw;
    background: #006633;
}

.ordStatueSlider .pagiNumber {
    display: inline-block;
    margin-left: 1.066667vw;
    letter-spacing: -0.064vw;
}

.ordStatueSlider .pagiNumber em {
    margin: 0 1vw;
}

.ordInfoView {
    background-color: #fff;
    border: 1px solid #DEDEDE;
    box-sizing: border-box;
}

.ordInfoView .ordTop {
    padding: 3.2vw 3.2vw 2.1333333vw 3.2vw;
}

.ordInfoBox {
    /*background:#fff;*/
    /*border-top:0.266667vw solid #DEDEDE; */
    /*border-left:0.266667vw solid #DEDEDE;    */
    /*border-right:0.266667vw solid #DEDEDE;       */
    /*box-sizing: border-box;*/
}

.ordInfo {
    width: 100%;
    padding: 3.2vw 3.2vw 0;
    box-sizing: border-box;
}

.ordInfo1 {
    /*padding-top: 6.933333vw;*/
    /*background: #fafafa;*/
}

.ordNameNumber {
    display: flex;
    align-items: center;
    padding-bottom: 3.2vw;
    border-bottom: 0.266667vw solid #f1f1f1;
}

.ordNameNumber p {
    color: #000;
    font-weight: 500;
    font-size: 3.2vw;
}

.ordNameNumber .border {
    display: block;
    width: 0.266667vw;
    height: 2.666667vw;
    margin: 1vw 2.666667vw 0;
    background: #dedede;
}

.ordInfoTable {
    display: flex;
    align-items: center;
    /* justify-content:flex-start; */
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 3.2vw;
    padding-bottom: 2.1333333vw;
    font-weight: 500;
    font-size: 3.2vw;
    color: #000;
    border-bottom: 0.266667vw solid #f1f1f1;
    box-sizing: border-box;
}

.ordInfoTable dl {
    display: flex;
    align-items: center;
}

.ordInfoTable dt {
    width: 12.8vw;
    height: 8.5333333vw;
    font-size: 3.2vw;
    font-weight: 500;
    line-height: 8.5333333vw;
    color: #000;

    line-height: 1.3;
    display: flex;
    align-items: center;
}

.ordInfoTable dd {
    /*height:8.533333vw;*/
    padding: 2.1333333vw 3.2vw;
    text-align: right;
    line-height: 4vw;
    border: 1px solid #dedede;
    background: #f3f3f3;
    box-sizing: border-box;
    font-weight: 700;
    font-style: normal;
    font-size: 3.2vw;
    color: #1a5632;
}

.ordInfoTable dd.point {
    width: 18.6666667vw;
}
.ordInfoTable dd.cntPrice{
    width: 35.7333333vw;
}
.ordInfoTable .count {
    width: 31.466667vw;
    /* margin-right: 4.5333333vw; */
}

.ordInfoTable .delivery {
    width: 100%;
    flex-wrap:wrap;
    margin-top: 3.2vw;
}
.ordInfoTable .delivery dd {
    position: relative;
    display:flex;
    align-items: center;
    width: calc(100% - 12.8vw);
    margin-bottom: 1.067vw;
    padding-right: 8.5333333vw;
    text-align: left;
    color:#000000;
    font-weight: 400;
}
.delivery dd.firstAddr{
    height: 13.8666667vw;
}
.delivery dd .addrInput{
    display:block;
    width: 65.3333333vw;
    padding:0;
    background:transparent;
    border:0;
}
.delivery dd .hidden{
    position: absolute;
    top: -9999em;
    left: -9999em;
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    text-indent: -9999em;
    /*font-size: 0;*/
    /*line-height: 0;*/
}
.locationFull {
    position: absolute;
    top: 50%;
    right: 1.067vw;
    display: block;
    width: 6.4vw;
    height: 6.4vw;
    margin-top: -3.2vw
}

.locationFull img {
    height: 100%;
}
.orderCarYear{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:3.2vw 0 4.2666667vw;
}
.orderCarYear p{
    font-size:3.2vw;
    line-height: 4.2666667vw;
    color:#000;
}
.orderCarYear .name{
    font-weight: 500;
}
.pickingStatus{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.6vw;
}
.pickingStatus button{
    display:flex;
    align-items: center;
    justify-content: center;
    height: 12.8vw;
    font-size: 3.7333333vw;
    font-weight: 500;
    color:#fff;
}
.pickingStatus button:disabled{
    background-color:#ccc;
}
.pickDone{
    /*width: 55.4666667vw; //before*/
    width: 100%;
    margin-right: 2.1333333vw;
    background: #1A5632;
}
.changeCar{
    width: 28vw;
    background: #80BC00;
}
.completedDelivery{
    width: 41.6vw;
    background: #1A5632;
}
.undelivered{
    width: 41.6vw;
    background:#80BC00;
}

.statusCheckBtn{
    display:flex;
    align-content: center;
}
.statusCheckBtn .puBtn{
    display:block;
    width: 14.9333333vw;height: 8vw;
    line-height: 7.4666667vw;
    font-size: 3.2vw;
    font-weight: 400;
    color:#000;
    text-align: center;
    border:1px solid #1A5632;
    box-sizing: border-box;
}
.statusCheckBtn .puBtn:first-of-type{margin-right:1.6vw;}

.ordInfo3 .container {
    padding: 4.266667vw 3.2vw 0;
    font-weight: 500;
    font-size: 3.2vw;
    color: #000;
    background: #fff;
    box-sizing: border-box;
    border-left: 0.266667vw solid #DEDEDE;
    border-right: 0.266667vw solid #DEDEDE;
}

.ordInfo3 a {
    padding: 3.74vw 3.2vw;
    text-align: center;
    color: #fff;
    font-size: 3.733333vw;
    font-weight: 500;
}

.ordInfo3-1 .container {
    padding: 4.266667vw 3.2vw;
    font-weight: 500;
    font-size: 3.2vw;
    color: #000;
    background: #fff;
    box-sizing: border-box;
    border-left: 0.266667vw solid #DEDEDE;
    border-right: 0.266667vw solid #DEDEDE;
    display: flex;
    display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.ordInfo3-1 .puBtn {
    display: flex;
    padding: 3vw 5.333333vw;
    text-align: center;
    background: #fff;
    border: 0.266667vw solid #dedede;
}


.ordBottom li {
    display:flex;
    align-items: flex-start;
    width: 100%;
    /*height: 15.466667vw;*/
    padding: 3.2vw 3.2vw 2vw;
    border-bottom: 0.266667vw solid #DEDEDE;
    color: #000;
    font-size: 2.933333vw;
    box-sizing: border-box;
}

.ordBottom li:nth-child(1) {
    border-top: 0.266667vw solid #DEDEDE;
}
.ordBottom li:last-child{
    border-bottom: 0;
}

.ordBottom .commonCheck {
    /*float: left;*/
    margin-right: 2.4vw;
}

.ordBottom .prdInfo {
    width: 56vw;
    /*padding-top: 0.5vw;*/
    /*float: left;*/
}

.ordBottom .prdName {
    font-weight: 500;
    font-size: 3.2vw;
    line-height: 4.9vw;
}

.ordBottom .prdEtc {
    color: #636569;
    line-height: 5.9vw;
}
.ordBottom .prdQuantity p{text-align: right;}
.ordBottom .prdQuantity p span{
    margin-right:1.0666667vw;
    font-size:4.8vw;font-weight:700;
}


.ordBottom .pickingProd.complete p,
.ordBottom .pickingProd.soldout p{
    color:#636569;
}
.ordBottom .pickingProd.soldout{
    background-color:#CCCCCC;
}

/* 피킹 체크박스 */
.pickingProd.complete .commonCheck input[type=checkbox] + label{
    background-image:url(../img/check_compl.svg);
}
.pickingProd.soldout .commonCheck input[type=checkbox] + label{
    background-image:url(../img/check_compl.svg);
}

.pickingProd.complete .commonCheck .label{
    background-image:url(../img/check_compl.svg);
}
.pickingProd.soldout .commonCheck .label .checked{
    background-image:url(../img/check_disa.svg);
}

/* 배송 */
.deliveryProd .commonCheck{display:none;}
.ordBottom .deliveryProd .prdInfo{
    width: 70.9333333vw;
}
.ordBottom .deliveryProd .prdQuantity{
    width: calc(100% - 70.9333333vw);
    text-align: right;
}

/* 배송/반품 수거 */
.deliveryList .ordInfo3 .askChange {
    padding: 3.74vw 12.533333vw;
}

.deliveryList .ordInfo3 .pickDone {
    width: calc(100% - 43.8vw);
}


/* 항목설정 팝업 */
.itemSetup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F6F7FB;
}

.itemSetup .header {
    width: 100%;
    height: 16vw;
}

.itemSetup .header .container {
    position: relative;
}

.itemSetup .header .title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.8vw;
    font-weight: 500;
    color: #000;
}

.itemSetup .header .close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    width: 6.4vw;
    height:6.4vw;
    font-size: 0;
}

.itemSetup .header .close img {
    height:100%;
}

.itemSetup .main1 {
    margin-top: 5.333333vw;
}
.itemSetup .body{
    position: relative;
    height:calc(100vh - 32vw);
}
.itemSetup .body .guide{
    position: absolute;
    bottom: 4.2666667vw;
    left:4.2666667vw;
    font-size: 3.2vw;
    color:#aaa;
}
.itemSetup .circleCheck{
    margin-right:0;
    margin-top: 5.533333vw;
}

.circleCheck{
    position:relative;
    display:flex;
    align-content: center;
}
.circleCheck input[type="checkbox"] {
    position: absolute;
    top: -9999em;
    left: -9999em;
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    text-indent: -9999em;
    font-size: 0;
    line-height: 0;
}
.circleCheck label{
    /* width: 6.4vw; */
    /* height:6.4vw; */
    margin-right: 0.5333333vw;
}

.circleCheck input[type=checkbox] + label {
    background-image:url(../img/circle-check-off.svg);
    background-size:6.4vw 6.4vw;
    background-position: center left;
    background-repeat: no-repeat;
}

.circleCheck input[type=checkbox]:checked + label {
    background-image: url(../img/circle-check-on.svg);
    background-size:6.4vw 6.4vw;
    background-position: center left;
    background-repeat: no-repeat;
}

.itemSetup .circleCheck label .text {
    font-size: 3.733333vw;
    font-weight: 400;
    color: #000;
    padding-left: 6.5333333vw;
}

.itemSetup .circleCheck .notice {
    font-size: 3.2vw;
}
.itemSetup .listTitle{
    height: 11.7333333vw;
    line-height: 11.7333333vw;
    font-size: 3.2vw;
    font-weight: 500;
    color:#000;
}
.itemSetup .listTitle:first-of-type{
    margin-top:1.0666667vw;
}
.itemSetup .listTitle:last-of-type{
    margin-top: 1.6vw;
}

.itemSetup .numbering{
    display:flex;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.itemSetup .numbering li {
    width: 44.2666667vw;
    height: 11.7333333vw;
    margin-bottom: 2.6666667vw;
    border-radius: 0.8vw;
    box-shadow: 0.533333vw 0.533333vw 1.066667vw rgba(204, 207, 217, 0.5);
    background: #fff;
    box-sizing: border-box;
}

.itemSetup .numbering label {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 11.5vw;
    font-size: 3.2vw;
    font-weight: 400;
    color: #000;
    font-style: normal;
    text-align: left;
    border-radius: 0.8vw;
    text-indent: 10.666667vw;
}

.itemSetup .numbering label span {

}

.itemSetup .numbering input[type=checkbox] {
    display: none;
}

.itemSetup .numbering input[type=checkbox] + label {
    background: url(../img/circle-check-off.svg) 2.666667vw no-repeat;
}

.itemSetup .numbering input[type=checkbox]:checked + label {
    background: url(../img/circle-check-on.svg) 2.666667vw no-repeat;
    outline: 0.178667vw solid #1A5632
}

.itemSetup .numbering input[type=radio] {
    display: none;
}

.itemSetup .numbering input[type=radio] + label {
    background: url(../img/circle-check-off.svg) 2.666667vw no-repeat;
}

.itemSetup .numbering input[type=radio]:checked + label {
    background: url(../img/circle-check-on.svg) 2.666667vw no-repeat;
    outline: 0.178667vw solid #1A5632
}

.itemSetup .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 14.4vw;
}

.itemSetup .footer button {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #1A5632;
    color: #fff;
    font-size: 3.733333vw;
    font-weight: 500;
    line-height: 13vw;
}


/* 픽킹 팝업 */
.darkBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.ppBox {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 82.933333vw;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 4;
}

.ppBox .close {
    position: relative;
    width: 100%;
}

.ppBox .close button {
    position: absolute;
    top: 4.266667vw;
    right: 4.266667vw;
    display: block;
    width: 6.4vw;
    height: 6.4vw;
    font-size: 0;
}

.ppBox .close img {
    width: 100%;
}

#pckPop .close {
    height: 12.8vw;
}

.ppBox .inner {
    width: calc(100% - 8.53333vw);
    margin: 0 auto;
}

#pckPop .ppTop {
    padding-bottom: 4.266667vw;
}

#pckPop .leftList {
    float: left;
}

#pckPop .leftList .itemName {
    font-weight: 500;
    font-style: normal;
    font-size: 3.2vw;
    line-height: 3.4vw;
}

#pckPop .leftList .itemEtc {
    margin-top: 0.533333vw;
    font-weight: 400;
    font-style: normal;
    font-size: 2.933333vw;
    line-height: 4.5vw;
    color: #636569;
}

#pckPop .rightList {
    float: right;
}

#pckPop .rightList p {
    font-weight: 400;
    line-height: 6.4vw;
    font-size: 2.933333vw;
    text-align: right;
    color: #000;
}

#pckPop .etcItem {
    margin-top: 3.2vw;
    font-weight: 500;
    font-size: 3.2vw;
    line-height: 4.266667vw;
    color: #1A5632;
}

.ppBottom {
    border-top: 0.266667vw solid #dedede;
    padding: 5.333333vw 0 6.4vw;
}

.ppBottom .btnList {
    margin-top: 3.2vw;
}

.ppBottom .btnList:nth-child(1) {
    margin-top: 0;
}

.ppBottom .btnList button {
    display: block;
    width: 100%;
    height: 11.7333333vw;
    border: 0.266667vw solid #1A5632;
    font-weight: 400;
    line-height: 11.2vw;
    font-size: 3.2vw;
    text-align: center;
    color: #000;
}


/* 미 배송 사유 선택 팝업 */
#nodeliPop .close {
    height: 14.933333vw;
}

#nodeliPop .ppTitle {
    position: absolute;
    top: 4.266667vw;
    left: 4.266667vw;
    font-weight: 700;
    font-size: 3.733333vw;
    line-height: 6.2vw;
    color: #1A5632;
}


/* 배송 토스트  */
#tstPop {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 82.933333vw;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 4;
    background: rgba(0, 0, 0, 0.75);
}

#tstPop .inner {
    padding: 8.533333vw;
}

#tstPop p {
    font-weight: 500;
    font-size: 3.733333vw;
    line-height: 4.8vw;
    color: #fff;
    text-align: center;
}


/* 배송 얼럿 */
#alrPop .ppBox {
    padding: 7.466667vw 0 6.4vw
}

#alrPop h3 {
    font-weight: 700;
    font-size: 3.733333vw;
    line-height: 4.266667vw;
    color: #1A5632;
    text-align: center;
}

.alrText {
    margin-top: 6.4vw;
}

.alrText p {
    font-weight: 400;
    font-size: 3.2vw;
    line-height: 4.266667vw;
    color: #000;
    text-align: center;
}

#alrPop .bottom{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8.533333vw;
}
#alrPop button{

    height: 11.733333vw;
    line-height: 10.733333vw;
    font-size: 3.2vw;
    font-weight: 400;
    text-align: center;
    box-sizing: border-box;
}

#alrPop .confirm {
    color: #fff;
    background: #1A5632;
}
#alrPop .cancel{
    border:1px solid #1A5632;;
    background:#fff;
    color:#000;
}
#alrPop .bottom button:first-child:nth-last-child(1){
    width: 100%;
}
#alrPop .bottom button:first-child:nth-last-child(2),
#alrPop .bottom button:first-child:nth-last-child(2) ~ button{
    width: calc(50% - 0.8533333vw);
}

.pickingNone{
    padding:26.6666667vw 0;
    text-align: center;
    font-size: 4.2666667vw;
    font-weight: 500;
    color:#000;
}

/* 지도 */
.mapFixed{
    position: fixed;
    top:0;left:0;right:0;bottom:0;
    background: #F6F7FB;
    z-index: 100;
}
.mapFixed .header{
    position: relative;
    height: 16vw;
    line-height: 16vw;
    text-align: center;
}
.mapFixed .header .close{
    position: absolute;top:50%;right:4.2666667vw;
    width: 6.4vw;height:6.4vw;
    margin-top:-3.2vw;
}
.mapFixed .header .close img{
    height: 100%;
    vertical-align: top;
}
.mapFixed .body{
    height: calc(100vh - 16vw);
}
/*토스트 메세지*/
.error{
    position: fixed;
    top:0;left:0;right:0;bottom:0;
}
.error p{
    position: absolute;
    top: 50%;left:50%;
    width:82.6666667vw;
    padding:8.5333333vw 0;
    margin-left:-41.3333333vw;
    background:rgba(0,0,0,0.75);
    color:#fff;
    font-size:3.7333333vw;
    line-height:4.8vw;
    text-align: center;
}

.checkConfirm {
    position: relative;
}

.checkConfirm::before {
    content: '';
    display: inline-block;
    position: absolute;
    right: -4px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 6.5vw;
    height: 6.5vw;
    background: url(../img/circle-check-confirm.svg) center center / contain no-repeat;
}
