@charset "utf-8";

* {
    font-family: "SUIT", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #383b40;
}

body {
    margin: auto;
    background: #f2f4f6;
}

main {
    padding-bottom: 64px;
}

main .inner {
    padding: 0 15px;
}

.intro {
    background-image: url("../images/intro_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding: 0;
}

main .container .intro_ct {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: none;
}

.intro_ct .logo {
    width: 207px;
}

.intro_ct p {
    font-weight: 800;
    font-size: 16px;
    margin-top: 12px;
}

main.login {
    padding: 0;
}

.login_ct {
    padding: 100px 0;
    min-height: 100vh;
}

.login_ct .top .logo {
    width: 207px;
    margin: auto;
}

.login_ct .top p {
    font-weight: 800;
    font-size: 16px;
    margin-top: 12px;
    text-align: center;
}

.login_ct .input_wrap {
    margin-top: 40px;
}

.login_ct .input_wrap .input_box {
    margin-top: 24px;
}

.login_ct .input_wrap .input_box:first-child {
    margin-top: 0;
}

.login_ct .input_wrap .input_box p {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}

.login_ct .input_wrap .input_box input {
    height: 44px;
    width: 100%;
    border-radius: 8px;
    background: #f2f4f6;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
}

.login_ct .input_wrap .input_box input::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #adb2bb;
}

.login_ct .auto_chk {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

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

.login_ct .auto_chk label {
    position: relative;
    padding-left: 28px;
    font-size: 13px;
}

.login_ct .auto_chk input[type="checkbox"] + label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background-image: url("../images/chk_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    z-index: 1;
}

.login_ct .auto_chk input[type="checkbox"] + label::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    border: solid 1px #d8dadd;
    background-color: #fff;
}

.login_ct .auto_chk input[type="checkbox"]:checked + label::before {
    background-image: url("../images/chk_on.png");
}

.login_ct .auto_chk input[type="checkbox"]:checked + label::after {
    border: none;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
}

button.apply_btn {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 100%;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    border-radius: 8px;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
    line-height: 1;
}

button.apply_btn span {
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}

header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

header.head .inner {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

header.head .logo {
    width: 110px;
}

header .set_btn {
    width: 18px;
    height: 18px;
    background: none;
    display: flex;
    align-items: center;
}

header.sub_head .inner {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    position: relative;
}

header.sub_head .loc_tit {
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

header.sub_head .filter_btn {
    background: none;
    width: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    display: flex;
    align-items: center;
}

header.sub_head .prev_btn {
    background: none;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    display: flex;
    align-items: center;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.06);
}

footer .ft {
    display: flex;
}

footer .ft li {
    width: 100%;
}

footer .ft li a {
    background: #fff;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 11px;
    font-weight: 400;
    color: #737478;
    position: relative;
}

footer .ft li a::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
    background-position: center;
    background-repeat: no-repeat;
}

footer .ft li.on a::after {
    content: "";
    display: block;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
    position: absolute;
    top: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
}

footer .ft li:nth-child(1) a::before {
    background-image: url("../images/ft_ico1.png");
    background-size: 24px;
}

footer .ft li:nth-child(2) a::before {
    background-image: url("../images/ft_ico2.png");
    background-size: 24px;
}

footer .ft li:nth-child(3) a::before {
    background-image: url("../images/ft_ico3.png");
    background-size: 24px;
}

footer .ft li:nth-child(4) a::before {
    background-image: url("../images/ft_ico4.png");
    background-size: 28px;
}

footer .ft li:nth-child(5) a::before {
    background-image: url("../images/ft_ico5.png");
    background-size: 24px;
}

footer .ft li.on:nth-child(1) a::before {
    background-image: url("../images/ft_ico1_on.png");
    background-size: 24px;
}

footer .ft li.on:nth-child(2) a::before {
    background-image: url("../images/ft_ico2_on.png");
    background-size: 24px;
}

footer .ft li.on:nth-child(3) a::before {
    background-image: url("../images/ft_ico3_on.png");
    background-size: 24px;
}

footer .ft li.on:nth-child(4) a::before {
    background-image: url("../images/ft_ico4_on.png");
    background-size: 28px;
}

footer .ft li.on:nth-child(5) a::before {
    background-image: url("../images/ft_ico5_on.png");
    background-size: 24px;
}

.container > section {
    background: #fff;
}

.container > section + section {
    margin-top: 8px;
}

.container > section + script + section {
    margin-top: 8px;
}

.main_ft {
    position: sticky;
}

.main_ct1 {
    padding-top: 12px;
    padding-bottom: 24px;
}

.main_ct1 .date_wrap {
    display: flex;
    align-items: center;
}

.main_ct1 .date_wrap span {
    font-size: 13px;
    margin: 0 10px;
}

.main_ct1 .date_wrap input {
    height: 44px;
    width: 100%;
    border-radius: 8px;
    background: #f2f4f6;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
}

.main_ct1 .menu_wrap ul {
    margin: 0 -6px;
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.main_ct1 .menu_wrap ul li {
    width: 100%;
}

.main_ct1 .menu_wrap ul li a {
    margin: 0 6px;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
    border-radius: 8px;
    height: 114px;
    display: flex;
    align-items: center;
    padding: 15px;
}

.main_ct1 .menu_wrap ul li .ico {
    width: 30px;
}

.main_ct1 .menu_wrap ul li .segment p {
    color: #fff;
    opacity: 0.7;
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 5px;
}

.main_ct1 .menu_wrap ul li .segment h6 {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

.main_ct1 .menu_wrap ul.menu1 li a {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.main_ct1 .menu_wrap ul.menu2 li a {
    height: 74px;
}

.main_ct1 .menu_wrap ul.menu2 li .segment {
    margin-left: 15px;
}

.main_ct1 .menu_wrap ul.menu2 li .segment p {
    margin-top: 0;
}

.main_ct2 {
    padding: 24px 0;
}

.main_ct2 .ct_title {
    font-weight: 800;
    font-size: 13px;
}

.main_ct2 ul {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

.main_ct2 ul li {
    width: calc(50% - 5px);

    border: 1px solid #0f55ae;
    background: #fff;
    border-radius: 8px;
}

.main_ct2 ul li a {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_ct2 ul li a img {
    width: 16px;
    margin-right: 10px;
}

.main_ct2 ul li a p {
    font-size: 14px;
    font-weight: 800;
    color: #0f55ae;
    line-height: 1;
}

.main_ct3 ul {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

.main_ct3 ul li {
    width: calc(50% - 5px);
}

.main_ct3 ul li a {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_ct3 ul li a img {
    width: 16px;
    margin-right: 10px;
}

.main_ct3 ul li a p {
    font-size: 14px;
    font-weight: 800;
    color: #0f55ae;
    line-height: 1;
}

/*추가 2024-08-07*/

.sub_ct03 ul {
    display: flex;
    justify-content: space-between;
}

.sub_ct03 .button_area li {
    width: 100%;
    border: 1px solid #0f55ae;
    background: #fff;
    border-radius: 8px;
}

.sub_ct03.inner .button_area li a {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub_ct03 .button_area li a img {
    width: 16px;
    margin-right: 10px;
}

.sub_ct03 .button_area li a p {
    font-size: 14px;
    font-weight: 800;
    color: #0f55ae;
    line-height: 1;
}

.sub_ct03 .button_area li {
    width: 100%;
    border: 1px solid #0f55ae;
    background: #fff;
    border-radius: 8px;
}

.sub_ct03 .button_area li a {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub_ct03 .button_area li a img {
    width: 16px;
    margin-right: 10px;
}

.sub_ct03 .button_area li a p {
    font-size: 14px;
    font-weight: 800;
    color: #0f55ae;
    line-height: 1;
}

.sub_ct0 .search {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.sub_ct0 .search .input_box {
    width: calc(100% - 52px);
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d8dadd;
    overflow: hidden;
    display: flex;
}

.sub_ct0 .search .input_box input {
    height: 100%;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
}

.sub_ct0 .search .input_box input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #adb2bb;
}

.sub_ct0 .search .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sub_ct0 .search .input_box button img {
    width: 16px;
}

.sub_ct0 .search > a {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-image: linear-gradient(180deg, #228ed7, #0f55ae);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.sub_ct0 .search > a img {
    width: 16px;
}


/*추가 끝 */

.main_ct2 .search_area {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.main_ct2 .search_area .input_box {
    width: calc(100% - 52px);
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d8dadd;
    overflow: hidden;
    display: flex;
}

.main_ct2 .search_area .input_box input {
    width: calc(100% - 40px);
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
}

.main_ct2 .search_area .input_box input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #adb2bb;
}

.main_ct2 .search_area .input_box button.search {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.main_ct2 .search_area .input_box button.search img {
    width: 16px;
}

.main_ct2 .search_area > a {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-image: linear-gradient(180deg, #228ed7, #0f55ae);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.main_ct2 .search_area > a img {
    width: 16px;
}

.main_ct3 {
    padding: 24px 0;
}

.main_ct3 .ct_title {
    font-weight: 800;
    font-size: 13px;
}

.main_ct3 a {
    width: 100%;
    height: 48px;
    border: 1px solid #0f55ae;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #0f55ae;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
}

.set_pop {
    position: fixed;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    background: #fff;
    top: 56px;
    max-width: calc(768px - 30px);
    width: calc(100% - 30px);
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 16px;
    display: none;
    z-index: 10;
}

.set_pop .inner {
    padding: 20px;
}

.set_pop .inner .user {
    display: flex;
    align-items: center;
}

.set_pop .inner .user .profile {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 16px;
    flex-shrink: 0;
}

.set_pop .inner .user .profile img {
    object-fit: cover;
}

.set_pop .inner .user .segment .name {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
}

.set_pop .inner .user .segment p {
    font-weight: 400;
    font-size: 12px;
    color: #747983;
    display: flex;
    flex-wrap: wrap;
}

.set_pop .inner .user .segment p + p {
    margin-top: 4px;
}

.set_pop .inner .user .segment p span {
    font-weight: 400;
    font-size: 12px;
    color: #747983;
    display: flex;
    align-items: center;
}

.set_pop .inner .user .segment p span + span::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background: #adb2bb;
    border-radius: 100%;
    margin: 0 7px;
}

.set_pop .inner button {
    height: 44px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d8dadd;
    background: #fff;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #737478;
    line-height: 1;
}

.set_pop .inner button img {
    width: 12px;
    margin-right: 8px;
}

main.barcode {
    padding: 0;
}

main.barcode.pop_basic {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 201 !important;;
}

.barcode_select_pop {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 202 !important;
}

.barcode_input_pop {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 202 !important;
}

main.barcode.pop_basic header {
    z-index: 150;
}

main.barcode .barcode_scan {
    overflow: hidden;
}

main.barcode .barcode_scan .camera {
    background: #ddd;
    height: 100vh;
    width: 100%;
}

main.barcode .barcode_scan .barcode_tool {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 25px 15px;
    background: #fff;
    border-radius: 18px 18px 0 0;
    z-index: 5;
}

main.barcode .barcode_scan .barcode_tool > p.text {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
}

main.barcode .barcode_scan .barcode_tool ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

main.barcode .barcode_scan .barcode_tool ul .close {
    width: 14px;
}

main.barcode .barcode_scan .barcode_tool ul .barcode_tool_btn {
    width: 64px;
    height: 64px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

main.barcode .barcode_scan .barcode_tool ul .add button {
    font-size: 14px;
    font-weight: 700;
    color: #0f55ae;
    line-height: 1;
}

main.barcode .barcode_scan .barcode_tool ul button {
    background: none;
    line-height: 1;
}

main.barcode .barcode_scan .barcode_tool .barcode_tip {
    font-size: 12px;
    font-weight: 800;
    color: #0f55ae;
    background: #fff;
    border-radius: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    text-wrap: nowrap;
}

main.sub1 .sub_ct1 {
    padding-top: 12px;
    padding-bottom: 24px;
}

main.sub1 .sub_ct1 .filter .date_filter {
    display: flex;
    align-items: center;
    margin: 0 -3px;
}

main.sub1 .sub_ct1 .filter .date_filter button {
    width: calc(100% / 5 - 3px);
    height: 32px;

    margin: 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e8ec;
    font-size: 12px;
    font-weight: 400;
    color: #737478;
    transition: all 0.2s;
    line-height: 1;
}

main.sub1 .sub_ct1 .filter .date_filter button.on {
    font-weight: 800;
    color: #0f55ae;
    border-color: #0f55ae;
}

main.sub1 .sub_ct1 .filter .date_wrap {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

main.sub1 .sub_ct1 .filter .date_wrap span {
    font-size: 13px;
    margin: 0 10px;
}

main.sub1 .sub_ct1 .filter .date_wrap input {
    height: 44px;
    width: 100%;
    border-radius: 8px;
    background: #f2f4f6;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
}

main.sub1 .sub_ct2 {
    padding-bottom: 24px;
}

main.sub1 .sub_ct2 .list_tab .tab_btn {
    display: flex;
    align-items: center;
}

main.sub1 .sub_ct2 .list_tab .tab_btn button {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    color: #747983;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s;
    background: #fff;
    line-height: 1;
}

main.sub1 .sub_ct2 .list_tab .tab_btn button::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #e5e8ec;
    bottom: 0;
    position: absolute;
    transition: all 0.2s;
}

main.sub1 .sub_ct2 .list_tab .tab_btn button.on {
    font-weight: 800;
    color: #383b40;
}

main.sub1 .sub_ct2 .list_tab .tab_btn button.on::before {
    height: 3px;
    background: #383b40;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .tab_item {
    display: none;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li h6 {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
}

main.sub1 .sub_ct2 .list li h6 span {
    font-size: 12px;
    color: #383b40;
    font-weight: 800;
    line-height: 18px;
    display: block;
    transition: all 0.2s;
}

main.sub1 .sub_ct2 .list li p {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

main.sub1 .sub_ct2 .list li p span {
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    width: 95px;
}

main.sub1 .sub_ct2 .list li.on {
    border-color: #0f55ae;
}

main.sub1 .sub_ct2 .list li.on h6,
main.sub1 .sub_ct2 .list li.on h6 span {
    color: #0f55ae;
}

main.sub1 .sub_ct2 .list li label {
    position: relative;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 15px;
}

main.sub1 .sub_ct2 .list li label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background-image: url("../images/chk_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    z-index: 1;
}

main.sub1 .sub_ct2 .list li label::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: solid 1px #d8dadd;
    background-color: #fff;
}

main.sub1 .sub_ct2 .list li label.on::before {
    background-image: url("../images/chk_on.png");
}

main.sub1 .sub_ct2 .list li label.on::after {
    border: none;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
}

main.sub1 .sub_ct2 .list li label input {
    display: none;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li .segment .dec {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li .segment .dec + .dec {
    margin-top: 2px;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li .segment .dec p {
    width: calc(50% - 3px);
    font-size: 11px;
    font-weight: 400;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li .btn_box {
    width: 100%;
    display: flex;
    margin-top: 16px;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li .btn_box button {
    height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li .btn_box button.blue {
    color: #0f55ae;
    border-color: #0f55ae;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li .btn_box button.red {
    color: #f94242;
    border-color: #f94242;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li .btn_box button + button {
    margin-left: 8px;
}

main.sub1 .sub_ct2 .list_tab .tab_wrap .list li.btn {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.filter_pop {
    position: fixed;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    background: #f2f4f6;
    top: 56px;
    max-width: calc(768px - 30px);
    width: calc(100% - 30px);
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 16px;
    max-height: calc(100vh - 104px);
    z-index: 300;
    overflow: hidden;
}

.filter_pop .sub_ct1 {
    overflow: hidden;
}

.filter_pop .sub_ct1 .inner {
    padding: 20px;
}


.filter_pop .sub_ct1 .inner .pop_tit {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 24px;
}

.filter_pop .sub_ct1 .inner .search_wrap {
    margin-top: 24px;
}

.filter_pop .sub_ct1 .inner .search_wrap li {
    margin-top: 24px;
}

.filter_pop .sub_ct1 .inner .search_wrap li > p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 20px;
    font-weight: 700;
}

.filter_pop .sub_ct1 .inner .search_wrap li .input_box {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background: #f2f4f6;
    overflow: hidden;
    display: flex;
}

.filter_pop .sub_ct1 .inner .search_wrap li .input_box input {
    height: 100%;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
    background: #f2f4f6;
}

.filter_pop .sub_ct1 .inner .search_wrap li .input_box input::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #adb2bb;
}

.filter_pop .sub_ct1 .inner .search_wrap li .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.filter_pop .sub_ct1 .inner .search_wrap li .input_box button img {
    width: 16px;
}

.filter_pop .sub_ct2 {
    overflow: hidden;
}

.filter_pop .sub_ct2 .inner {
    padding: 20px;
}

.filter_pop .sub_ct2 .inner .list_wrap {
    overflow: auto;
    height: calc(100vh - 400px);
    padding-bottom: 60px;
}

.filter_pop .sub_ct2 .inner .list {
}

.filter_pop .fix_btn {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 50;
    width: 100%;
    padding: 10px;
    justify-content: space-between;
    transform: translateX(-50%);
    border-top: 1px solid #eaeaea;
    background: #fff;
}
.filter_pop .first_btn {
    border-radius: 8px;
}
.filter_pop .double_btn button:first-child {
    border-radius: 8px 0px 0px 8px;
}
.filter_pop .double_btn button:last-child {
    border-radius: 0px 8px 8px 0px;
}
.filter_pop .fix_btn a,
.filter_pop .fix_btn button {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 100%;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
    line-height: 1;}
.filter_pop .fix_btn .false {color:#707c93; background:#e5e9f1}
.filter_pop .fix_btn .true {color:#fff; background:linear-gradient(135deg, #22d7d3, #0f55ae)}
.filter_pop .fix_btn .dis {color:#b5b5b5; background-color:#e9e9e9}
.filter_pop .fix_btn button:first-child,
.filter_pop .fix_btn a:first-child {flex:1; border-right:1px solid #d5d5d5}
.filter_pop .fix_btn button:last-child,
.filter_pop .fix_btn a:last-child {flex:1.6; border-right:none}

main.sub2 .sub_ct1 {
    padding-bottom: 24px;
    padding-top: 12px;
}

main.sub2 .sub_ct1 .acc_wrap {
    margin: 0 -15px;
}

main.sub2 .sub_ct1 .acc_wrap .depth1 {
    border-top: 1px solid #e5e8ec;
    border-bottom: 1px solid #e5e8ec;
}

main.sub2 .sub_ct1 .acc_wrap .depth1 > button {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    font-size: 14px;
    font-weight: 800;
    background: #fff;
    padding: 0 15px;
}

main.sub2 .sub_ct1 .acc_wrap .depth1 > button img {
    width: 12px;
    transition: all 0.3s;
}

main.sub2 .sub_ct1 .acc_wrap .depth1.on > button img {
    transform: rotate(180deg);
}

main.sub2 .sub_ct1 .acc_wrap .depth1 .depth2 {
    display: none;
}

main.sub2 .sub_ct1 .acc_wrap .depth1 .depth2 > ul {
    display: flex;
    background: #f4f6f8;
    padding: 15px;
}

main.sub2 .sub_ct1 .acc_wrap .depth1 .depth2 > ul > li {
    width: 100%;
}

main.sub2 .sub_ct1 .acc_wrap .depth1 .depth2 > ul > li > button {
    width: 100%;
    border: 1px solid #e5e8ec;
    border-radius: 8px;
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #737478;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.2s;
}

main.sub2 .sub_ct1 .acc_wrap .depth1 .depth2 ul li.on > button {
    border-color: #383b40;
    font-weight: 600;
    color: #383b40;
}

main.sub2 .sub_ct1 .acc_wrap .depth1 .depth2 > ul > li + li {
    margin-left: 12px;
}

/* 추가 끝*/

main.sub2 .sub_ct1 select {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 65px;
    height: 16px;
    background-image: url("../images/select.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 10px;
    font-size: 11px;
    font-weight: 400;
    color: #737478;
    margin-left: auto;
    display: block;
}

main.sub2 .sub_ct1 .list li {
    position: relative;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s;
    border: 2px solid transparent;
    word-break: break-all;
}

main.sub2 .sub_ct1 .list li h6 {
    font-size: 16px;
    color: #383b40;
    font-weight: 800;
    line-height: 26px;
    transition: all 0.2s;
    padding-right: 35px;
}

main.sub2 .sub_ct1 .list li h6 span {
    font-size: 12px;
    color: #383b40;
    font-weight: 800;
    line-height: 18px;
    display: block;
    transition: all 0.2s;
}

main.sub2 .sub_ct1 .list li .txt {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 6px;
}

main.sub2 .sub_ct1 .list li > span {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 2px;
    color: #0f55ae;
    display: block;
}

main.sub2 .sub_ct1 .list li .num {
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    margin-top: 8px;
    color: #f94242;
}

main.sub2 .sub_ct1 .list li label {
    position: relative;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 15px;
}

main.sub2 .sub_ct1 .list li label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background-image: url("../images/chk_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    z-index: 1;
}

main.sub2 .sub_ct1 .list li label::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: solid 1px #d8dadd;
    background-color: #fff;
}

main.sub2 .sub_ct1 .list li label.on::before {
    background-image: url("../images/chk_on.png");
}

main.sub2 .sub_ct1 .list li label.on::after {
    border: none;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
}

main.sub2 .sub_ct1 .list li label input {
    display: none;
}

main.sub2 .sub_ct1 .list li.on {
    border-color: #0f55ae;
}

main.sub2 .sub_ct1 .list li.on h6,
main.sub2 .sub_ct1 .list li.on h6 span {
    color: #0f55ae;
}

main.sub4 {
    padding-bottom: 0;
}

main.sub4 .sub_ct1 {
    padding-bottom: 24px;
    overflow: hidden;
}

main.sub4 .input_wrap li {
    margin-top: 24px;
}

main.sub4 .input_wrap li:nth-child(1) {
    margin-top: 12px;
}

main.sub4 .input_wrap li > p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 20px;
    font-weight: 700;
}

main.sub4 .input_wrap li .input_box {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background: #f2f4f6;
    overflow: hidden;
    display: flex;
}

main.sub4 .input_wrap li .input_box input {
    height: 100%;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
    background: #f2f4f6;
}

main.sub4 .input_wrap li .input_box.red,
main.sub4 .input_wrap li .input_box.red input {
    background: #ffeded;
}

main.sub4 .input_wrap li .input_box input::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #adb2bb;
}

main.sub4 .input_wrap li .input_box input:read-only {
    background: #adb2bb;
    color: #fff;
}

main.sub4 .input_wrap li .input_box input:read-only {
    background: #adb2bb;
    color: #fff;
}

main.sub4 .input_wrap li .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub4 .input_wrap li .input_box button img {
    width: 16px;
}

main.sub4 .sub_ct2 {
    padding: 24px 0;
    overflow: hidden;
}

main.sub4 .sub_ct2 .ct_title {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

main.sub4 .sub_ct2 .ct_title label {
    position: relative;
    display: inline-block;
    margin-left: 7px;
}

main.sub4 .sub_ct2 .ct_title label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background-image: url("../images/chk_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    z-index: 1;
}

main.sub4 .sub_ct2 .ct_title label::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: solid 1px #d8dadd;
    background-color: #fff;
}

main.sub4 .sub_ct2 .ct_title label.on::before {
    background-image: url("../images/chk_on.png");
}

main.sub4 .sub_ct2 .ct_title label.on::after {
    border: none;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
}

main.sub4 .sub_ct2 .ct_title label input {
    display: none;
}

main.sub4 .sub_ct2 ul.list li {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

main.sub4 .sub_ct2 ul.list li .close {
    width: 10px;
    background: none;
    position: absolute;
    top: 20px;
    right: 15px;
    display: flex;
}

main.sub4 .sub_ct2 ul.list h6 {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
    padding-right: 25px;
}

main.sub4 .sub_ct2 ul.list .quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main.sub4 .sub_ct2 ul.list .quantity p {
    font-weight: 700;
    font-size: 16px;
}

main.sub4 .sub_ct2 ul.list .quantity .quantity_count {
    display: flex;
    align-items: center;
    background: #f2f4f6;
    border-radius: 4px;
    overflow: hidden;
    width: 94px;
    height: 32px;
}

main.sub4 .sub_ct2 ul.list .quantity .quantity_count input,
main.sub4 .sub_ct2 ul.list .quantity .quantity_count button {
    background: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

main.sub4 .sub_ct2 .add_btn {
    margin-top: 24px;
    display: flex;
    align-items: center;
}

main.sub4 .sub_ct2 .add_btn button {
    width: calc(100% - 52px);
    height: 44px;
    border-radius: 8px;
    border: 1px solid #0f55ae;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 800;
    font-size: 14px;
    color: #0f55ae;
    background: #fff;
}

main.sub4 .sub_ct2 .add_btn button img {
    width: 12px;
    margin-right: 6px;
}

main.sub4 .sub_ct2 .add_btn a {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-image: linear-gradient(180deg, #228ed7, #0f55ae);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

main.sub4 .sub_ct2 .add_btn a img {
    width: 16px;
}

main.sub5 {
    padding-bottom: 0;
}

main.sub5 .sub_ct1 .ct_title {
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    padding: 12px 0;
}

main.sub5 .sub_ct1 .acc_wrap {
    margin: 0 -15px;
}

main.sub5 .sub_ct1 .acc_wrap .depth1 {
    border-top: 1px solid #e5e8ec;
}

main.sub5 .sub_ct1 .acc_wrap .depth1 > button {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    font-size: 14px;
    font-weight: 800;
    background: #fff;
    padding: 0 15px;
}

main.sub5 .sub_ct1 .acc_wrap .depth1 > button img {
    width: 12px;
    transition: all 0.3s;
}

main.sub5 .sub_ct1 .acc_wrap .depth1.on > button img {
    transform: rotate(180deg);
}

main.sub5 .sub_ct1 .acc_wrap .depth1 .depth2 {
    display: none;
}

main.sub5 .sub_ct1 .acc_wrap .depth1 .depth2 > ul {
    display: flex;
    background: #f4f6f8;
    padding: 15px;
}

main.sub5 .sub_ct1 .acc_wrap .depth1 .depth2 > ul > li {
    width: 100%;
}

main.sub5 .sub_ct1 .acc_wrap .depth1 .depth2 > ul > li > button {
    width: 100%;
    border: 1px solid #e5e8ec;
    border-radius: 8px;
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #737478;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.2s;
}

main.sub5 .sub_ct1 .acc_wrap .depth1 .depth2 ul li.on > button {
    border-color: #383b40;
    font-weight: 600;
    color: #383b40;
}

main.sub5 .sub_ct1 .acc_wrap .depth1 .depth2 > ul > li + li {
    margin-left: 12px;
}

main.sub5 .sub_ct2 {
    padding: 24px 0;
}

main.sub5 .sub_ct2 .ct_title {
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 13px;
}

main.sub5 .sub_ct2 ul.list li {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 8px;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

main.sub5 .sub_ct2 ul.list li label {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

main.sub5 .sub_ct2 ul.list li label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background-image: url("../images/chk_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    z-index: 1;
}

main.sub5 .sub_ct2 ul.list li label::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: solid 1px #d8dadd;
    background-color: #fff;
}

main.sub5 .sub_ct2 ul.list li label.on::before {
    background-image: url("../images/chk_on.png");
}

main.sub5 .sub_ct2 ul.list li label.on::after {
    border: none;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
}

main.sub5 .sub_ct2 ul.list li label input {
    display: none;
}

main.sub5 .sub_ct2 ul.list li p {
    font-size: 13px;
    font-weight: 800;
    margin-right: 2px;
}

main.sub5 .sub_ct2 ul.list li p span {
    font-size: 13px;
    font-weight: 400;
}

main.sub5 .sub_ct2 .add_btn {
    margin-top: 8px;
}

main.sub5 .sub_ct2 .add_btn button {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #0f55ae;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 800;
    font-size: 14px;
    color: #0f55ae;
    background: #fff;
}

main.sub5 .sub_ct2 .add_btn button img {
    width: 12px;
    margin-right: 6px;
}

main.sub7 {
    padding-bottom: 0;
}

main.sub7 .sub_ct1 {
    padding-bottom: 24px;
    padding-top: 12px;
}

main.sub7 .sub_ct1 select {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 65px;
    height: 16px;
    background-image: url("../images/select.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 10px;
    font-size: 11px;
    font-weight: 400;
    color: #737478;
    margin-left: auto;
    display: block;
}

main.sub7 .sub_ct1 .list li {
    position: relative;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s;
    border: 1px solid #383b40;
    word-break: break-all;
}

main.sub7 .sub_ct1 .list li h6 {
    font-size: 16px;
    color: #0f55ae;
    font-weight: 800;
    line-height: 24px;
    margin-bottom: 8px;
}

main.sub7 .sub_ct1 .list li p {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

main.sub7 .sub_ct1 .list li p span {
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    width: 75px;
}

main.sub7 .sub_ct1 .barcode_img {
    margin-top: 15px;
}

main.sub7 .sub_ct1 .barcode_img img {
    display: block;
    margin: auto;
}

main.sub8 .sub_ct1 {
    padding-top: 12px;
    padding-bottom: 24px;
}

main.sub8 .sub_ct1 .filter .date_filter {
    display: flex;
    align-items: center;
    margin: 0 -3px;
}

main.sub8 .sub_ct1 .filter .date_filter button {
    width: calc(100% / 5 - 3px);
    height: 32px;

    margin: 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e8ec;
    font-size: 12px;
    font-weight: 400;
    color: #737478;
    transition: all 0.2s;
    line-height: 1;
}

main.sub8 .sub_ct1 .filter .date_filter button.on {
    font-weight: 800;
    color: #0f55ae;
    border-color: #0f55ae;
}

main.sub8 .sub_ct1 .filter .date_wrap {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

main.sub8 .sub_ct1 .filter .date_wrap span {
    font-size: 13px;
    margin: 0 10px;
}

main.sub8 .sub_ct1 .filter .date_wrap input {
    height: 44px;
    width: 100%;
    border-radius: 8px;
    background: #f2f4f6;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
}

main.sub8 .sub_ct2 {
    padding-bottom: 70px;
}

main.sub8 .sub_ct2 .list_tab .tab_btn {
    display: flex;
    align-items: center;
}

main.sub8 .sub_ct2 .list_tab .tab_btn button {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    color: #747983;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s;
    background: #fff;
    line-height: 1;
}

main.sub8 .sub_ct2 .list_tab .tab_btn button::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #e5e8ec;
    bottom: 0;
    position: absolute;
    transition: all 0.2s;
}

main.sub8 .sub_ct2 .list_tab .tab_btn button.on {
    font-weight: 800;
    color: #383b40;
}

main.sub8 .sub_ct2 .list_tab .tab_btn button.on::before {
    height: 3px;
    background: #383b40;
}

main.sub8 .sub_ct2 .list_tab .tab_wrap .tab_item {
    display: none;
}

main.sub8 .sub_ct2 .list_tab .tab_wrap .tab_item .barcodeArea {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

main.sub8 .sub_ct2 .list_tab .tab_wrap .tab_item .barcodeArea li {
    border: 1px solid #0f55ae;
    background: #fff;
    border-radius: 8px;
}

main.sub8 .sub_ct2 .list_tab .tab_wrap .tab_item .barcodeArea li a {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

main.sub8 .sub_ct2 .list_tab .tab_wrap .tab_item .barcodeArea li a img {
    width: 16px;
    margin-right: 10px;
}

main.sub8 .sub_ct2 .list_tab .tab_wrap .tab_item .barcodeArea li a p {
    font-size: 14px;
    font-weight: 800;
    color: #0f55ae;
    line-height: 1;
}

main.sub8 .sub_ct2 .tab_wrap .list li {
    position: relative;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s;
    border: 2px solid transparent;
    word-break: break-all;
}

main.sub8 .sub_ct2 .tab_wrap .list li h6 {
    font-size: 16px;
    color: #383b40;
    font-weight: 800;
    line-height: 24px;
    transition: all 0.2s;
    padding-right: 35px;
    margin-bottom: 8px;
}

main.sub8 .sub_ct2 .tab_wrap .list li h6 span {
    font-size: 12px;
    color: #383b40;
    font-weight: 800;
    line-height: 18px;
    display: block;
    transition: all 0.2s;
}

main.sub8 .sub_ct2 .tab_wrap .list div.lb {
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

main.sub8 .sub_ct2 .tab_wrap .list div.location {
    display: none;
}

main.sub8 .sub_ct2 .tab_wrap .list div.lb.input {
    float: left;
}

main.sub8 .sub_ct2 .tab_wrap .list li strong {
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    width: 120px;
}

main.sub8 .sub_ct2 .tab_wrap .list div.lb.input strong {
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    margin-top: 6px;
    color: #f94242;
}

main.sub8 .sub_ct2 .tab_wrap .list li p {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}


main.sub8 .sub_ct2 ul.list .quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: right;
}

main.sub8 .sub_ct2 ul.list .quantity p {
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    color: #f94242;
    margin-right: 10px;
}

main.sub8 .sub_ct2 ul.list .quantity .quantity_count {
    display: flex;
    align-items: center;
    background: #f2f4f6;
    border-radius: 4px;
    overflow: hidden;
    width: 94px;
    height: 32px;
}

main.sub8 .sub_ct2 ul.list .quantity .quantity_count input,
main.sub8 .sub_ct2 ul.list .quantity .quantity_count button {
    background: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    padding: 0;
}

main.sub8 .sub_ct2 .tab_wrap .list li .btn_box {
    width: 100%;
    display: flex;
    margin-top: 16px;
}

main.sub8 .sub_ct2 .tab_wrap .list li .btn_box button {
    height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
}

main.sub8 .sub_ct2 .tab_wrap .list li .btn_box button.blue {
    color: #0f55ae;
    border-color: #0f55ae;
}

main.sub8 .sub_ct2 .tab_wrap .list li.on {
    border-color: #0f55ae;
}

main.sub8 .sub_ct2 .tab_wrap .list li.on h6,
main.sub8 .sub_ct2 .tab_wrap .list li.on h6 span {
    color: #0f55ae;
}

main.sub8 .sub_ct2 .tab_wrap .list li label {
    position: relative;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 15px;
}

main.sub8 .sub_ct2 .tab_wrap .list li label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    background-image: url("../images/chk_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    z-index: 1;
}

main.sub8 .sub_ct2 .tab_wrap .list li label::after {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    box-sizing: border-box;
    border: solid 1px #d8dadd;
    background-color: #fff;
}

main.sub8 .sub_ct2 .tab_wrap .list li label.on::before {
    background-image: url("../images/chk_on.png");
}

main.sub8 .sub_ct2 .tab_wrap .list li label.on::after {
    border: none;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
}

main.sub8 .sub_ct2 .tab_wrap .list li label input {
    display: none;
}

main.sub8 .sub_ct2 .tab_wrap .tab_item .fix_btn {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    margin-top: 0;
    display: inline;
    padding: 0 15px;
}

main.sub8 .sub_ct2 .tab_wrap .tab_item .fix_btn .barcode_scan {
    height: 44px;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #383b40;
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    margin-top: 12px;
}

main.sub8 .sub_ct2 .tab_wrap .tab_item .fix_btn .barcode_scan img {
    width: 12px;
    margin-right: 10px;
}

main.sub8 .sub_ct2 .tab_wrap .tab_item .fix_btn button.apply_btn {
    margin-top: 12px;
}

main.sub8 .sub_ct2 .tab_wrap .tab_item .fix_btn button.apply_btn:nth-child(1) {
    margin-top: 24px;
}

main.sub9 {
    padding-bottom: 0;
}

main.sub9 .sub_ct1 {
    padding-bottom: 24px;
    overflow: hidden;
}

main.sub9 .input_wrap li {
    margin-top: 24px;
}

main.sub9 .input_wrap li:nth-child(1) {
    margin-top: 12px;
}

main.sub9 .input_wrap li > p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 20px;
    font-weight: 700;
}

main.sub9 .input_wrap li .input_box {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background: #f2f4f6;
    overflow: hidden;
    display: flex;
}

main.sub9 .input_wrap li .input_box input {
    height: 100%;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
    background: #f2f4f6;
}

main.sub9 .input_wrap li .input_box.red,
main.sub9 .input_wrap li .input_box.red input {
    background: #ffeded;
}

main.sub9 .input_wrap li .input_box input::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #adb2bb;
}

main.sub9 .input_wrap li .input_box input.readonly {
    background: #adb2bb;
    color: #fff;
}

main.sub9 .input_wrap li .input_box input.readonly {
    background: #adb2bb;
    color: #fff;
}

main.sub9 .input_wrap li .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub9 .input_wrap li .input_box button img {
    width: 16px;
}

main.sub9 .sub_ct2 {
    padding: 24px 0;
    overflow: hidden;
}

main.sub9 .sub_ct2 .ct_title {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

main.sub9 .sub_ct2 .ct_title label {
    position: relative;
    display: inline-block;
    margin-left: 7px;
}

main.sub9 .sub_ct2 .ct_title label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background-image: url("../images/chk_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    z-index: 1;
}

main.sub9 .sub_ct2 .ct_title label::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: solid 1px #d8dadd;
    background-color: #fff;
}

main.sub9 .sub_ct2 .ct_title label.on::before {
    background-image: url("../images/chk_on.png");
}

main.sub9 .sub_ct2 .ct_title label.on::after {
    border: none;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
}

main.sub9 .sub_ct2 .ct_title label input {
    display: none;
}

main.sub9 .sub_ct2 .add_btn {
    display: flex;
    align-items: center;
}

main.sub9 .sub_ct2 .add_btn button {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #0f55ae;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 800;
    font-size: 14px;
    color: #0f55ae;
    background: #fff;
}

main.sub9 .sub_ct2 .add_btn button img {
    width: 12px;
    margin-right: 6px;
}

main.sub9 .sub_ct2 .btn_box {
    margin-top: 24px;
    display: flex;
}

main.sub9 .sub_ct2 .btn_box button.cancel_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    color: #747983;
    border-radius: 8px;
    line-height: 1;
    background: #e5e8ec;
}

main.sub9 .sub_ct2 .btn_box button.apply_btn {
    margin-top: 0;
}

main.sub9 .sub_ct2 .btn_box button + button {
    margin-left: 12px;
}

main.sub10 {
    padding-bottom: 0;
}

main.sub10 .sub_ct03 .filter .date_filter {
    display: flex;
    align-items: center;
    margin: 0 -3px;
}
main.sub10 .sub_ct03 .filter .date_filter button {
    width: calc(100% / 5 - 3px);
    height: 32px;

    margin: 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e8ec;
    font-size: 12px;
    font-weight: 400;
    color: #737478;
    transition: all 0.2s;
    line-height: 1;
}
main.sub10 .sub_ct03 .filter .date_filter button.on {
    font-weight: 800;
    color: #0f55ae;
    border-color: #0f55ae;
}

main.sub10 .sub_ct03 .filter .date_wrap {
    display: flex;
    align-items: center;
    margin-top: 16px;
}
main.sub10 .sub_ct03 .filter .date_wrap span {
    font-size: 13px;
    margin: 0 10px;
}
main.sub10 .sub_ct03 .filter .date_wrap input {
    height: 44px;
    width: 100%;
    border-radius: 8px;
    background: #f2f4f6;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
    background-image: url("../images/date.png");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: right 15px center;
}

main.sub10 .sub_ct03 .acc_wrap {
    margin: 10px -15px;
}

main.sub10 .sub_ct03 .acc_wrap .depth1 {
    width: 100%;
    border-top: 1px solid #e5e8ec;
    border-bottom: 1px solid #e5e8ec;
}

main.sub10 .sub_ct03 .acc_wrap .depth1 > button {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    font-size: 14px;
    font-weight: 800;
    background: #fff;
    padding: 0 15px;
}

main.sub10 .sub_ct03 .acc_wrap .depth1 > button img {
    width: 12px;
    transition: all 0.3s;
}

main.sub10 .sub_ct03 .acc_wrap .depth1.on > button img {
    transform: rotate(180deg);
}

main.sub10 .sub_ct03 .acc_wrap .depth1 .depth2 {
    display: none;
}

main.sub10 .sub_ct03 .acc_wrap .depth1 .depth2 > ul {
    display: flex;
    background: #f4f6f8;
    padding: 15px;
}

main.sub10 .sub_ct03 .acc_wrap .depth1 .depth2 > ul > li {
    width: 100%;
}

main.sub10 .sub_ct03 .acc_wrap .depth1 .depth2 > ul > li > button {
    width: 100%;
    border: 1px solid #e5e8ec;
    border-radius: 8px;
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #737478;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.2s;
}

main.sub10 .sub_ct03 .acc_wrap .depth1 .depth2 ul li.on > button {
    border-color: #383b40;
    font-weight: 600;
    color: #383b40;
}

main.sub10 .sub_ct03 .acc_wrap .depth1 .depth2 > ul > li + li {
    margin-left: 12px;
}

main.sub10 .sub_ct1 {
    padding-bottom: 24px;
    overflow: hidden;
}

main.sub10 .input_wrap li {
    margin-top: 24px;
}

main.sub10 .input_wrap li:nth-child(1) {
    margin-top: 12px;
}

main.sub10 .input_wrap li > p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 20px;
    font-weight: 700;
}

main.sub10 .input_wrap li .input_box {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background: #f2f4f6;
    overflow: hidden;
    display: flex;
}

main.sub10 .input_wrap li .input_box input {
    height: 100%;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
    background: #f2f4f6;
}

main.sub10 .input_wrap li .input_box.red,
main.sub10 .input_wrap li .input_box.red input {
    background: #ffeded;
}

main.sub10 .input_wrap li .input_box input::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #adb2bb;
}

main.sub10 .input_wrap li .input_box input:read-only {
    background: #adb2bb;
    color: #fff;
}

main.sub10 .input_wrap li .input_box input:read-only {
    background: #adb2bb;
    color: #fff;
}

main.sub10 .input_wrap li .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub10 .input_wrap li .input_box button img {
    width: 16px;
}

main.sub10 .sub_ct2 {
    padding: 24px 0;
}

main.sub10 .sub_ct2 .ct_title {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    justify-content: space-between;
}

main.sub10 .sub_ct2 .ct_title p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 20px;
    font-weight: 700;
    width: 100%;
}

main.sub10 .sub_ct2 .ct_title select {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 56px;
    height: 16px;
    background-image: url("../images/select.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 10px;
    font-size: 11px;
    font-weight: 400;
    color: #737478;
    margin-left: auto;
    display: block;
}

main.sub10 .sub_ct2 .list_tab .tab_btn {
    display: flex;
    align-items: center;
}

main.sub10 .sub_ct2 .list_tab .tab_btn button {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    color: #747983;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s;
    background: #fff;
    line-height: 1;
}
main.sub10 .sub_ct2 .list_tab .tab_btn button::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #e5e8ec;
    bottom: 0;
    position: absolute;
    transition: all 0.2s;
}

main.sub10 .sub_ct2 .list_tab .tab_btn button.on {
    font-weight: 800;
    color: #383b40;
}

main.sub10 .sub_ct2 .list_tab .tab_btn button.on::before {
    height: 3px;
    background: #383b40;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .tab_item {
    display: none;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li h6 {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li .segment .dec {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li .segment .dec + .dec {
    margin-top: 2px;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li .segment .dec p {
    width: calc(50% - 3px);
    font-size: 11px;
    font-weight: 400;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li .btn_box {
    width: 100%;
    display: flex;
    margin-top: 16px;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li .btn_box button {
    height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li .btn_box button.blue {
    color: #0f55ae;
    border-color: #0f55ae;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li .btn_box button.red {
    color: #f94242;
    border-color: #f94242;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li .btn_box button + button {
    margin-left: 8px;
}

main.sub10 .sub_ct2 .list_tab .tab_wrap .list li.btn {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

main.sub10 .sub_ct2  .list li {
    position: relative;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s;
    border: 2px solid transparent;
    word-break: break-all;
}

main.sub10 .sub_ct2  .list li h6 {
    font-size: 16px;
    color: #383b40;
    font-weight: 800;
    line-height: 24px;
    transition: all 0.2s;
    padding-right: 35px;
    margin-bottom: 8px;
}

main.sub10 .sub_ct2 .list li h6 span {
    font-size: 12px;
    color: #383b40;
    font-weight: 800;
    line-height: 18px;
    display: block;
    transition: all 0.2s;
}

main.sub10 .sub_ct2 .list div.lb {
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}


main.sub10 .sub_ct2 .list li strong {
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    width: 95px;
}

main.sub10 .sub_ct2 .list div.lb.input strong {
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    margin-top: 6px;
    color: #f94242;
}

main.sub10 .sub_ct2 .list li p {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}


main.sub10 .sub_ct2 ul.list .quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: right;
}

main.sub10 .sub_ct2 ul.list .quantity p {
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    color: #f94242;
    margin-right: 10px;
}

main.sub10 .sub_ct2 ul.list .quantity .quantity_count {
    display: flex;
    align-items: center;
    background: #f2f4f6;
    border-radius: 4px;
    overflow: hidden;
    width: 94px;
    height: 32px;
}

main.sub10 .sub_ct2 ul.list .quantity .quantity_count input,
main.sub10 .sub_ct2 ul.list .quantity .quantity_count button {
    background: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    padding: 0;
}

main.sub10 .sub_ct2 .list li {
    position: relative;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s;
    border: 2px solid transparent;
    word-break: break-all;
}

main.sub10 .sub_ct2 .list li h6 {
    font-size: 16px;
    color: #383b40;
    font-weight: 800;
    line-height: 24px;
    transition: all 0.2s;
    padding-right: 35px;
    margin-bottom: 8px;
}

main.sub10 .sub_ct2 .list li p.txt {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    display: flex;
    align-items: center;
}

main.sub10 .sub_ct2 .list li p.num {
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    margin-top: 6px;
    color: #f94242;
    padding-right: 110px;
}

main.sub10 .sub_ct2 .list li.on {
    border-color: #0f55ae;
}

main.sub10 .sub_ct2 .list li.on h6 {
    color: #0f55ae;
}

main.sub10 .sub_ct2 .list li label {
    position: relative;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 15px;
}

main.sub10 .sub_ct2 .list li label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    background-image: url("../images/chk_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    z-index: 1;
}

main.sub10 .sub_ct2 .list li label::after {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    box-sizing: border-box;
    border: solid 1px #d8dadd;
    background-color: #fff;
}

main.sub10 .sub_ct2 .list li label.on::before {
    background-image: url("../images/chk_on.png");
}

main.sub10 .sub_ct2 .list li label.on::after {
    border: none;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
}

main.sub10 .sub_ct2 .list li label input {
    display: none;
}

main.sub10 .sub_ct2 ul.list .quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -32px;
    justify-content: right;
}

main.sub10 .sub_ct2 ul.list .quantity .quantity_count {
    display: flex;
    align-items: center;
    background: #f2f4f6;
    border-radius: 4px;
    overflow: hidden;
    width: 94px;
    height: 32px;
}

main.sub10 .sub_ct2 ul.list .quantity .quantity_count input,
main.sub10 .sub_ct2 ul.list .quantity .quantity_count button {
    background: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

main.sub11 {
    padding-bottom: 0;
}

main.sub11 .sub_ct1 {
    padding-bottom: 24px;
}

main.sub11 .sub_ct1 .acc_wrap {
    margin: 0 -15px;
}

main.sub11 .sub_ct1 .acc_wrap .depth1 {
    border-top: 1px solid #e5e8ec;
    border-bottom: 1px solid #e5e8ec;
}

main.sub11 .sub_ct1 .acc_wrap .depth1 > button {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
    font-size: 14px;
    font-weight: 800;
    background: #fff;
    padding: 0 15px;
}

main.sub11 .sub_ct1 .acc_wrap .depth1 > button img {
    width: 12px;
    transition: all 0.3s;
}

main.sub11 .sub_ct1 .acc_wrap .depth1.on > button img {
    transform: rotate(180deg);
}

main.sub11 .sub_ct1 .acc_wrap .depth1 .depth2 {
    display: none;
}

main.sub11 .sub_ct1 .acc_wrap .depth1 .depth2 > ul {
    display: flex;
    background: #f4f6f8;
    padding: 15px;
}

main.sub11 .sub_ct1 .acc_wrap .depth1 .depth2 > ul > li {
    width: 100%;
}

main.sub11 .sub_ct1 .acc_wrap .depth1 .depth2 > ul > li > button {
    width: 100%;
    border: 1px solid #e5e8ec;
    border-radius: 8px;
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #737478;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.2s;
}

main.sub11 .sub_ct1 .acc_wrap .depth1 .depth2 ul li.on > button {
    border-color: #383b40;
    font-weight: 600;
    color: #383b40;
}

main.sub11 .sub_ct1 .acc_wrap .depth1 .depth2 > ul > li + li {
    margin-left: 12px;
}

main.sub11 .input_wrap li {
    margin-top: 24px;
}

main.sub11 .input_wrap li > p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 20px;
    font-weight: 700;
}

main.sub11 .input_wrap li .input_box {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background: #f2f4f6;
    overflow: hidden;
    display: flex;
}

main.sub11 .input_wrap li .input_box input {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
    background: #f2f4f6;
}

main.sub11 .input_wrap li .input_box.red,
main.sub11 .input_wrap li .input_box.red input {
    background: #ffeded;
}

main.sub11 .input_wrap li .input_box input::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #adb2bb;
}

main.sub11 .input_wrap li .input_box input.readonly {
    background: #adb2bb;
    color: #fff;
}

main.sub11 .input_wrap li .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub11 .input_wrap li .input_box button img {
    width: 16px;
}

main.sub11 .sub_ct1 .quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    margin-top: 24px;
}

main.sub11 .sub_ct1 .quantity p {
    font-weight: 700;
    font-size: 13px;
}

main.sub11 .sub_ct1 .quantity .quantity_count {
    display: flex;
    align-items: center;
    background: #f2f4f6;
    border-radius: 4px;
    overflow: hidden;
    width: 94px;
    height: 32px;
}

main.sub11 .sub_ct1 .quantity .quantity_count input,
main.sub11 .sub_ct1 .quantity .quantity_count button {
    background: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

main.sub11 .sub_ct1 .btn_box {
    margin-top: 24px;
    display: flex;
}

main.sub11 .sub_ct1 .btn_box button.cancel_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    color: #747983;
    border-radius: 8px;
    line-height: 1;
    background: #e5e8ec;
}

main.sub11 .sub_ct1 .btn_box button.apply_btn {
    margin-top: 0;
}

main.sub11 .sub_ct1 .btn_box button + button {
    margin-left: 12px;
}

main.sub12 .sub_ct1 {
    padding-top: 12px;
    padding-bottom: 24px;
}

main.sub12 .sub_ct1 .filter .date_filter {
    display: flex;
    align-items: center;
    margin: 0 -3px;
}

main.sub12 .sub_ct1 .filter .date_filter button {
    width: calc(100% / 5 - 3px);
    height: 32px;

    margin: 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e8ec;
    font-size: 12px;
    font-weight: 400;
    color: #737478;
    transition: all 0.2s;
    line-height: 1;
}

main.sub12 .sub_ct1 .filter .date_filter button.on {
    font-weight: 800;
    color: #0f55ae;
    border-color: #0f55ae;
}

main.sub12 .sub_ct1 .filter .date_wrap {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

main.sub12 .sub_ct1 .filter .date_wrap span {
    font-size: 13px;
    margin: 0 10px;
}

main.sub12 .sub_ct1 .filter .date_wrap input {
    height: 44px;
    width: 100%;
    border-radius: 8px;
    background: #f2f4f6;
    font-size: 13px;
    font-weight: 400;
    padding: 15px;
}
/* 입고품목 input 검색창 */
main.sub12 .sub_ct1 .filter .input_box {
    display: flex;
    align-items: center;
    margin-top: 16px;
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d8dadd;
    overflow: hidden;
}

main.sub12 .sub_ct1 .filter .input_box input {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
}

main.sub12 .sub_ct1 .filter .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub12 .sub_ct1 .filter .input_box img {
    width: 16px;
}

main.sub12 .sub_ct1 .search{
    margin-top: 12px;
    display: flex;
    /*align-items: center;*/
}

main.sub12 .sub_ct1 .search .input_box {
    width: calc(100% - 52px);
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d8dadd;
    overflow: hidden;
    display: flex;
}

main.sub12 .sub_ct1 .search .input_box input {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
}

main.sub12 .sub_ct1 .search .input_box input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #adb2bb;
}

main.sub12 .sub_ct1 .search .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub12 .sub_ct1 .search .input_box button img {
    width: 16px;
}

main.sub12 .sub_ct1 .search > a {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-image: linear-gradient(180deg, #228ed7, #0f55ae);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

main.sub12 .sub_ct1 .search > a img {
    width: 16px;
}


main.sub10 .sub_ct03 .search{
    margin-top: 12px;
    display: flex;
    align-items: center;
}

main.sub10 .sub_ct03 .search .input_box {
    width: calc(100% - 52px);
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d8dadd;
    overflow: hidden;
    display: flex;
}

main.sub10 .sub_ct03 .search .input_box input {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
}

main.sub10 .sub_ct03 .search .input_box input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #adb2bb;
}

main.sub10 .sub_ct03 .search .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub10 .sub_ct03 .search .input_box button img {
    width: 16px;
}

main.sub10 .sub_ct03 .search > a {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-image: linear-gradient(180deg, #228ed7, #0f55ae);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

main.sub10 .sub_ct03 .search > a img {
    width: 16px;
}

main.sub12 .sub_ct2 {
    padding: 24px 0;
    padding-top: 12px;
}

main.sub12 .sub_ct2 .list li .btn_box {
    width: 100%;
    display: flex;
    margin-top: 16px;
}

main.sub12 .sub_ct2 .list li .btn_box button {
    height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
}

main.sub12 .sub_ct2 .list li .btn_box button.blue {
    color: #0f55ae;
    border-color: #0f55ae;
}

main.sub12 .sub_ct2 .list li .btn_box button.red {
    color: #f94242;
    border-color: #f94242;
}

main.sub12 .sub_ct2 .list li .btn_box button + button {
    margin-left: 8px;
}

main.sub12 .sub_ct2 .list li {
    position: relative;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s;
    border: 2px solid transparent;
    word-break: break-all;
}

main.sub12 .sub_ct2 .list li h6 {
    font-size: 16px;
    color: #383b40;
    font-weight: 800;
    line-height: 24px;
    transition: all 0.2s;
    padding-right: 35px;
    margin-bottom: 8px;
}

main.sub12 .sub_ct2 .list li h6 span {
    font-size: 12px;
    color: #383b40;
    font-weight: 800;
    line-height: 18px;
    display: block;
    transition: all 0.2s;
}

main.sub12 .sub_ct2 .list li p {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

main.sub12 .sub_ct2 .list li p span {
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    width: 95px;
}

main.sub12 .sub_ct2 .list li.on {
    border-color: #0f55ae;
}

main.sub12 .sub_ct2 .list li.on h6,
main.sub12 .sub_ct2 .list li.on h6 span {
    color: #0f55ae;
}

main.sub12 .sub_ct2 .list li label {
    position: relative;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 15px;
}

main.sub12 .sub_ct2 .list li label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    background-image: url("../images/chk_off.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    z-index: 1;
}

main.sub12 .sub_ct2 .list li label::after {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    box-sizing: border-box;
    border: solid 1px #d8dadd;
    background-color: #fff;
}

main.sub12 .sub_ct2 .list li label.on::before {
    background-image: url("../images/chk_on.png");
}

main.sub12 .sub_ct2 .list li label.on::after {
    border: none;
    background-image: linear-gradient(135deg, #22d7d3, #0f55ae);
}

main.sub12 .sub_ct2 .list li label input {
    display: none;
}

main.sub12 .sub_ct2 .list li.btn {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    margin-top: 0;
}

main.sub12 .sub_ct2 .list li.btn .barcode_scan {
    height: 44px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #383b40;
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    margin-top: 24px;
}

main.sub12 .sub_ct2 .list li.btn .barcode_scan img {
    width: 12px;
    margin-right: 10px;
}

main.sub12 .sub_ct2 .list li.btn button.apply_btn {
    margin-top: 16px;
}

main.sub12 .sub_ct2 .list li.btn button.apply_btn:nth-child(1) {
    margin-top: 24px;
}

main.sub12 .sub_ct2 .btn_box {
    margin-top: 24px;
    display: flex;
}

main.sub12 .sub_ct2 .btn_box button.cancel_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    color: #747983;
    border-radius: 8px;
    line-height: 1;
    background: #e5e8ec;
}

main.sub12 .sub_ct2 .btn_box button.apply_btn {
    margin-top: 0;
}

main.sub12 .sub_ct2 .btn_box button + button {
    margin-left: 12px;
}
main.sub12 .sub_ct2 .barcodeArea {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

main.sub12 .sub_ct2 .barcodeArea li {
    border: 1px solid #0f55ae;
    background: #fff;
    border-radius: 8px;
}

.display-none {
    display: none;
}

.locationList {
    position: relative;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.2s;
    border: 2px solid transparent;
    word-break: break-all;
}

.locationList h6 {
    font-size: 16px;
    color: #383b40;
    font-weight: 800;
    line-height: 24px;
    transition: all 0.2s;
    padding-right: 35px;
    margin-bottom: 8px;
}

.locationList h6 span {
    font-size: 12px;
    color: #383b40;
    font-weight: 800;
    line-height: 18px;
    display: block;
    transition: all 0.2s;
}

.locationList div.lb {
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

.locationList div.location {
    display: none;
}

.locationList div.lb.input {
    float: left;
}

.locationList strong {
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    width: 95px;
}

.locationList div.lb.input strong {
    font-size: 14px;
    font-weight: 800;
    line-height: 22px;
    margin-top: 6px;
    color: #f94242;
}

.locationList p {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}


.locationList label {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 15px;
    color: #f94242;
}

main.sub3 .sub_ct1 {
    padding-top: 12px;
    padding-bottom: 24px;
}


main.sub3 .sub_ct1 .filter{
    margin-top: 12px;
    display: flex;
    align-items: center;
}

main.sub3 .sub_ct1 .filter .input_box {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d8dadd;
    overflow: hidden;
    display: flex;
}

main.sub3 .sub_ct1 .filter .input_box input {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
}

main.sub3 .sub_ct1 .filter .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub3 .sub_ct1 .filter .input_box img {
    width: 16px;
}

main.sub3 .sub_ct1 .search{
    margin-top: 12px;
    display: flex;
    /*align-items: center;*/
}

main.sub3 .sub_ct1 .search .input_box {
    width: calc(100% - 52px);
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d8dadd;
    overflow: hidden;
    display: flex;
}

main.sub3 .sub_ct1 .search .input_box input {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
}

main.sub3 .sub_ct1 .search .input_box input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #adb2bb;
}

main.sub3 .sub_ct1 .search .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub3 .sub_ct1 .search .input_box button img {
    width: 16px;
}

main.sub3 .sub_ct1 .search > a {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-image: linear-gradient(180deg, #228ed7, #0f55ae);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

main.sub3 .sub_ct1 .search > a img {
    width: 16px;
}

main.sub3 .sub_ct2 {
    padding-bottom: 24px;
}

main.sub3 .sub_ct2 .list_tab .tab_btn {
    display: flex;
    align-items: center;
}

main.sub3 .sub_ct2 .list_tab .tab_btn button {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    color: #747983;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s;
    background: #fff;
    line-height: 1;
}

main.sub3 .sub_ct2 .list_tab .tab_btn button::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #e5e8ec;
    bottom: 0;
    position: absolute;
    transition: all 0.2s;
}

main.sub3 .sub_ct2 .list_tab .tab_btn button.on {
    font-weight: 800;
    color: #383b40;
}

main.sub3 .sub_ct2 .list_tab .tab_btn button.on::before {
    height: 3px;
    background: #383b40;
}

main.sub3 .sub_ct2 .list_tab .tab_wrap .tab_item {
    display: none;
}

main.sub3 .sub_ct2 .list_tab .tab_wrap .list li {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    padding: 15px;
    border-radius: 8px;
}

main.sub3 .sub_ct2 .list_tab .tab_wrap .list li h6 {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
}

main.sub3 .sub_ct2 .list li h6 span {
    font-size: 12px;
    color: #383b40;
    font-weight: 800;
    line-height: 18px;
    display: block;
    transition: all 0.2s;
}

main.sub3 .sub_ct2 .list li p {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

main.sub3 .sub_ct2 .list li p span {
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    width: 95px;
}

main.sub3 .sub_ct2 .list li.on {
    border-color: #0f55ae;
}

main.sub3 .sub_ct2 .list li.on h6,
main.sub3 .sub_ct2 .list li.on h6 span {
    color: #0f55ae;
}

main.sub3 .sub_ct2 .list li label {
    position: relative;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 15px;
}

main.sub3 .sub_ct2 .list li .segment .dec {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

main.sub3 .sub_ct2 .list li .segment .dec + .dec {
    margin-top: 2px;
}

main.sub3 .sub_ct2 .list li .segment .dec p {
    width: calc(50% - 3px);
    font-size: 11px;
    font-weight: 400;
}

main.sub3 .sub_ct2 .list li .btn_box {
    width: 100%;
    display: flex;
    margin-top: 16px;
}

main.sub3 .sub_ct2 .list li .btn_box button {
    height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
}

main.sub3 .sub_ct2 .list li .btn_box button.blue {
    color: #0f55ae;
    border-color: #0f55ae;
}

main.sub3 .sub_ct2 .list li .btn_box button.red {
    color: #f94242;
    border-color: #f94242;
}

main.sub3 .sub_ct2 .list li .btn_box button + button {
    margin-left: 8px;
}

main.sub3 .sub_ct2 .list li.btn {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}
.quantity_count input {width:50px !important;}

main.sub11 .sub_ct1 .search{
    margin-top: 12px;
    display: flex;
    align-items: center;
}

main.sub11 .sub_ct1 .search .input_box {
    width: calc(100% - 52px);
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d8dadd;
    overflow: hidden;
    display: flex;
}

main.sub11 .sub_ct1 .search .input_box input {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    padding-right: 0;
}

main.sub11 .sub_ct1 .search .input_box input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #adb2bb;
}

main.sub11 .sub_ct1 .search .input_box button {
    background: none;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

main.sub11 .sub_ct1 .search .input_box button img {
    width: 16px;
}

main.sub11 .sub_ct1 .search > a {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-image: linear-gradient(180deg, #228ed7, #0f55ae);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

main.sub11 .sub_ct1 .search > a img {
    width: 16px;
}

main.sub3 .input_box.red,
main.sub3 .input_box.red input {
    background: #ffeded;
}