@charset "utf-8";

html {
    background:#F2F2F2;
}

/****************** 자동완성 *****************/

.ui-autocomplete {
    position:absolute;
    background:  #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}
/*.ui-autocomplete li {
    padding: 4px 2em 4px .8em;
}
.ui-autocomplete li:hover{
    background: #f3f3f3;
}
.ui-autocomplete li > div {
    line-height: 1.3;
}*/


/****************** FORM *****************/
input,select {
    border-radius: 3px;
    height: 35px;
    outline: none;
    border: 1px solid var(--color-bd);
    padding: 5px 10px;
    background: #F9F9F9;
}
input:focus {
    background: #fff;
    border-color: #a3d195;
}
input.disabled {
    background: #fff;
    color: #ABABAB;
    cursor: default;
}
input.disabled:focus {
    border-color: var(--color-bd);
}
input.file-read.drag {
    border: 1px dashed var(--color-sub);
    background: #fbfffa;
    /*background: #fff !important;*/
    transition: all 0.2s ease;
}
select {
    padding: 5px 25px 5px 12px;
    appearance: none;
    background: #F9F9F9 url('../images/common/angle_bottom.svg') no-repeat center right 5px;
}
input[type=text]:disabled {
    background: #fff;
    border-color: E7E7E7;
    color: #ABABAB;
}
textarea {
    resize: none;
    width: 100%;
    min-height: 200px;
    padding: 10px;
    line-height: 1.7;
    border: 1px solid var(--color-bd);
    border-radius: 3px;
    background: #F9F9F9;
}
input[type=file]{
    display: none;
}
.right-align{
    text-align: right;
}
.w100 {
    width: 100% !important;
}
.w90 {
    width: 90% !important;
}
.w70 {
    width: 70% !important;
}
.w50 {
    width: 50% !important;
}
.w30 {
    width: 30% !important;
    min-width: 60px;
}
.flex {
    display: flex !important;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.file-upload {
    display: flex;
}
.file-upload .file-upload__box {
    position: relative;
}
.file-upload input[type=text]{
    margin-right: 8px;
    padding-right: 35px;
}
.file-upload iconify-icon {
    position: absolute;
    font-size: 22px;
    color: var(--color-sub);
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}


/* 체크박스 */
.checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
/*    margin-top: 10px;*/
}

.checkbox input {
    position: absolute;
    width: 0;
    left: 50px;
    height: 0;
    opacity: 0;
    cursor: pointer;
}

.checkbox .checkmark {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 3px;
    outline: 1px solid #acacac;
    transition: all 0.2s ease;
}

.checkbox:hover .checkmark {
    background: #f4f4f5;
    transition: all 0.2s ease;
}

.checkbox input:checked ~.checkmark {
    background: #3f7fed;
    outline: 1px solid rgb(95, 126, 240);
}
.checkbox .checkmark::after {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    top: 40%;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    transition: all 0.2s ease;
}

.checkbox input:checked~.checkmark::after {
    opacity: 1;
    transition: all 0.2s ease;
}
.checkbox input[type="radio"] ~ .checkmark {
    border-radius: 50%;
}
.checkbox input[type="radio"] ~ .checkmark::after {
    width: 7px;
    height: 7px;
    border: none;
    background: #fff;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%,-50%);
}

/****************** 아코디언 리스트 *****************/
.accordion {
    border-top: 1px solid var(--color-bk);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}
.accordion > p {
    padding: 20px;
}
.accordion .accordion__row {
    border-bottom: 1px solid var(--color-bd);
}
.accordion .accordion__row.on .accordion__a {
    display: flex;
}
.accordion .accordion__row .accordion__q {
    display: flex;
    padding: 10px 37px 10px 30px;
    align-items: center;
    cursor: pointer;
    background: url('/static/images/common/angle_bottom.svg') no-repeat center right 20px/ 40px;
}
.accordion .accordion__row.on .accordion__q{
    background: #eff7ed  url('/static/images/common/angle_top.svg') no-repeat center right 20px/ 40px;
}
.accordion .accordion__row .accordion__a {
    background: #fff;
    padding: 20px 37px;
    display: flex;
    align-items: flex-start;
    display: none;
}
.accordion .accordion__row .accordion__q > span,
.accordion .accordion__row .accordion__a > span {
    font-size: var(--font-xxlarge);
    font-weight: var(--weight-black);
    width: 5%;
}
.accordion .accordion__row .accordion__q span {
    color: var(--color-sub);
}
.accordion .accordion__row .accordion__a span {
    color: var(--color-main);
}
.accordion .accordion__row .accordion__q p,
.accordion .accordion__row .accordion__a p {
    width: calc(100% - 5%);
}
.accordion .accordion__row .accordion__q p {
    font-weight: var(--weight-semibold);
}
.accordion .accordion__row .accordion__q .checkbox {
    margin-right: 20px;
}
.accordion .accordion__row .accordion__a p {
    line-height: 1.5;
    white-space: pre-line;
}

/****************** 파일첨부 다운로드 *****************/
.file-area {}
.file-area .file-area__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 200px;
    border: 1px solid var(--color-bd);
    background: #f9f9f9;
    border-radius: 30px;
    margin-top: 10px;
    height: 35px;
    position: relative;
    padding: 0 10px 0 20px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.file-area .file-area__title:hover{
    background: #efefef;
    transition: all .2s ease-in-out;
}
.file-area .file-area__title.on {
    background: #efefef;
}
.file-area .file-area__title.on + .file-area__list {
    display: block;
}
.file-area .file-area__title p {
    font-weight: var(--weight-semibold);
}
.file-area .file-area__list {
    width: 100%;
    max-width: 300px;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.12);
    position: absolute;
    border-radius: 5px;
    padding: 10px;
    transform: translateY(10px);
    display: none;
}
.file-area .file-area__list li {
    margin-bottom: 10px;
}
.file-area .file-area__list li:last-of-type {
    margin-bottom: 0;
}
.file-area .file-area__list li a {
    display: inline-flex;
    align-items: center;
    transition: all .2s ease;
}
.file-area .file-area__list li a:hover {
    color: var(--color-main);
    transition: all .2s ease;
}
.file-area .file-area__list li a iconify-icon {
    font-size: 16px;
    color: var(--color-main);
    margin-right: 6px;
}


/****************** ANIMATION *****************/
.fadeInUp {
    animation: fadeInUp 2s;
}
.anim {
    opacity: 0;
}
.anim.on {
    opacity:1;
}

/****************** DatePicker *****************/
.datepicker {
    margin-right: 5px;
    display: flex;
    align-items: center;
    position: relative;
}
.datepicker input {
    width: 135px;
    padding: 5px 10px 5px 30px;
}
.datepicker label {
    height: 35px;
    position: relative;
}
.datepicker label:after {
    content: "";
    background: url('https://api.iconify.design/bx:calendar.svg?color=%23BABABA') no-repeat center center / cover;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.datepicker__reset {
    /*background: #fff;*/
    padding: 2px;
    position: absolute;
    right: 8px;
    /*border: 1px solid var(--color-bd);*/
}
.datepicker__reset iconify-icon {
    font-size: 10px;
    color: gray;
}
.ui-widget-header .ui-datepicker-prev .ui-icon {
    background: url('https://api.iconify.design/uis:angle-left.svg?color=%23BABABA') no-repeat center center / 25px !important;
}
.ui-widget-header .ui-datepicker-next .ui-icon {
    background: url('https://api.iconify.design/uis:angle-right.svg?color=%23BABABA') no-repeat center center / 25px !important;
}
.ui-datepicker {
    background: white;
    border: 1px solid #d3d3d3;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.ui-datepicker-title {
    color: #333;
    font-weight: bold;
}
.ui-widget-header {
    background: transparent !important;
    border: none !important;
}
.ui-datepicker-calendar th {
    color: #666;
    font-weight: normal;
}
.ui-datepicker-calendar td {
    padding: 5px;
}
.ui-datepicker-calendar .ui-state-default {
    background: #f7f7f7;
    border-radius: 5px;
    transition: background 0.3s ease;
    border: none !important;
    text-align: center;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    background: #5e5e5e !important;
    color: #fff !important;
}

/****************** BUTTON *****************/
.btn-wrap{
    display: flex;
    justify-content: center;
}
.btn-wrap > * {
    margin-right: 10px;
}
.btn-wrap > *:last-child {
    margin-right: 0;
}

.content > form > .btn-wrap {
    margin-top: 80px;
    padding: 0 80px;
}
.content > form > .btn-wrap > * {
    margin-right: 20px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
    white-space: nowrap;
    background: #fff;
}
.btn--primary {
    background: var(--color-main);
    border-radius: 5px;
}
.btn--primary:hover {
    background: #135ea1;
    transition: all .2s ease-in-out;
}
.btn--primary .btn__text {
    color: #fff;
}
.btn--primary.btn--icon .btn__icon {
    color: #fff;
    font-size: 15px;
    margin-right: 3px;
}
.btn--primary.red {
    background: #d14d4d;
}
.btn--primary.red:hover {
    background: #b94343;
}
.btn--primary.gray{
    background: #a5a5a5;
}
.btn--primary.gray:hover{
    background: #8f8f8f;
}
.btn--secondary {
    border: 1px solid var(--color-sub);
    border-radius: 5px;
    color: var(--color-sub);
    font-weight: var(--weight-semibold);
}
.btn--secondary:hover {
    transition: all .2s ease-in-out;
    background: #eef1f3;;
}
.btn--secondary .btn__text {
    color: var(--color-sub);
}
.btn--secondary.red,
.btn--secondary.red .btn__text {
    border-color: #cf3838;
    color: #cf3838;
}
.btn--secondary.red:hover {
    background-color: #fff4f4;
}
.btn--secondary.center {
    margin: 0 auto;
}
.btn--secondary.main,
.btn--secondary.main .btn__text {
    border-color: var(--color-main);
    color: var(--color-main);
}
.btn--secondary.main:hover {
    background-color: #fff4f4;
}
.btn--sm {
    padding: 6px 8px;
}
.btn--med {
    height: 35px;
    padding: 10px;
    white-space: nowrap;
}
.btn--lrg {
    height: 65px;
    padding: 10px 14px;
    width: 100%;
    max-width: 200px;
}
.btn--lrg .btn__text {
    font-size: var(--font-large);
}
.btn--icon--column {
    flex-direction: column;
    min-width: 107px;
    height: 86px;
}
.btn--icon--column .btn__icon {
    margin-bottom: 5px;
    font-size: 41px;
    color: var(--color-sub);
}
.btn--modify,
.btn--delete {
    width: 25px;
    height: 25px;
    display:flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 5px;
    background: #fff;
}
.btn--modify iconify-icon,
.btn--delete iconify-icon {
    font-size: 17px;
}
.btn--modify {
    border-color: var(--status-blu);
}
.btn--modify:hover {
    background: #eef1f3;
}
.btn--modify iconify-icon {
    color: var(--status-blu);
}
.btn--delete {
    border-color: var(--status-red);
}
.btn--delete:hover {
    background: #fbefef;
}
.btn--delete iconify-icon {
    color: var(--status-red);
}
.btn--keyword {
    padding: 0 8px;
    background: #5baab3;
    border-radius: 3px;
    color:  #fff;
    height: 30px;
    cursor: auto;
}
.btn--keyword p {
    color: #fff;
}
.btn--keyword span {
    margin-left: 4px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.btn--keyword span:first-of-type {
    margin-left: 6px;
}
.btn--keyword span iconify-icon {
    color: #0b616b;
    font-size: 18px;
}
.btn--keyword.list {
    background: #d56541;
}
.btn--keyword.list span iconify-icon{
    font-size: 16px;
    color: #773605;
}


/****************** HEADER *****************/
/*.content {
    min-width: 1200px;
}*/
header {
    display: flex;
}
header .logo {
    height:222px;
    width: 100%;
    max-width: 353px;
    background: var(--color-sub);
}
header .logo h1 {
    padding: 0 80px;
}
header .logo h1 a {
    display: flex;
    align-items: center;
    height: 90px;
    width: 100%;
}
header .gnb {
    width: calc(100% - 250px);
    height: 222px;
    background: var(--color-main);
    display: flex;
    justify-content: space-between;
    padding-right: 80px;
}
header .gnb .menu {
    display: flex;
    height: 90px;
    margin: 0 20px 0 37px;
    width:100%;
}
header .gnb .menu li {
    min-width: 120px;
    width:100%;
    max-width:150px;
}
header .gnb .menu li a {
    display: flex;
    color: #78B2E5;
    font-size: var(--font-medium);
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all .2s ease-in-out;
    position: relative;
    cursor:pointer;
}
header .gnb .menu li.on a::after {
  border-color: #fff transparent;
  border-style: solid;
  border-width: 0 12px 9px 12px;
  content: '';
  display: block;
  left: 50%;
  top: 83px;
  transform: translateX(-50%);
  width: 0;
  z-index: 1;
  position: absolute;
}
header .gnb .menu li.on a,
header .gnb .menu li.on a iconify-icon {
    color: #fff;
}
header .gnb .menu li a:hover iconify-icon,
header .gnb .menu li a:hover{
    color: #fff;
    transition: all .2s ease-in-out;
}
header .gnb .menu li a iconify-icon {
    font-size: 25px;
    color: #78B2E5;
    margin-right: 10px;
}
header .gnb .user {
    display: flex;
    align-items: center;
    height: 90px;
}
header .gnb .user li:first-child {
    margin-right: 27px;
}
header .gnb .user li a .user__icon {
    background: #0F5FA7;
    border-radius: 10px;
    width: 43px;
    height: 43px;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    transition: all .1s ease-in-out;
}
header .gnb .user li a:hover .user__icon {
    transition: all .1s ease-in-out;
    box-shadow: 1px 1px 5.76109px 0px rgba(0, 0, 0, 0.2) inset;
}
header .gnb .user li a .user__icon iconify-icon {
    color: #fff;
    font-size: 20px;
}
header .gnb .user li a span {
    font-size: 1.2rem;
    color: #fff;
}

/****************** CONTENT - COMMON *****************/
.content {
    margin: -131px 0 120px;
}
.add-card {
    margin: 10px 80px 0;
    display:  flex;
    justify-content: end;
}

/*.origin-file {
    display: flex;
    background: #fff;
    border: 1px solid var(--color-bd);
    padding: 5px;
    border-radius: 3px;
}*/
/* 컨텐츠 박스 */
.c-box {
    margin: 0 80px;
    background: #fff;
    border: 1px solid var(--color-bd);
    border-radius: 10px;
    position: relative;
    z-index:10;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.06);
    margin-bottom: 10px;
}
.c-box__title {
    display: flex;
    justify-content: space-between;
}
.c-box:last-child {
    margin-bottom: 0;
}
.c-box .c-box__wrap .c-box__left,
.c-box .c-box__wrap .c-box__right {
    padding: 30px 30px 40px;
    width: 100%;
}
.c-box .c-box__wrap.row {
    display:flex;
    justify-content: space-between;
}
.c-box .c-box__wrap.row > div {
    border-right: 1px solid var(--color-bd);
}
.c-box .c-box__wrap.row > div:last-child {
    border-right: none;
}
.c-box .c-box__wrap.column .write {
    width: 50%;
    margin-right: 60px;
}
.c-box .c-box__wrap.column .table-wrap {
    width: 50%;
    margin-top: 18px;
    max-height: 400px;
}
.table-wrap table .text-center {
    padding-left:10px;
}
.table-wrap table tbody tr td input {
    width:  100%;
}
.table-wrap table tbody tr td a {
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: keep-all;
    line-height: 1.3;
}
.c-box.box3 .table-wrap table tbody tr td input,
.table-wrap table thead tr th:last-of-type,
.table-wrap table tbody tr td:last-of-type {
    padding: 7px !important;
}
.c-box.box3 .table-wrap {
    max-height: 400px;
    overflow-y: auto;
    max-height: 300px !important;
}

h3 {
    font-size: var(--font-xlarge);
    font-weight:bold;
    margin-bottom: 25px;
}

/* 메뉴 타이틀 */
.c-menu {
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-bd);
    padding: 30px 40px 26px;
}
.c-menu .c-menu__title h2 {
    margin-bottom: 12px;
    font-size: var(--font-h2);
    font-weight: var(--weight-semibold);
}
.c-menu .c-menu__title p {
    font-size: var(--font-medium);
    font-weight: var(--weight-light);
    color: #A9A9A9;
}
.c-menu .c-menu__menu {
    display: flex;
    align-items: center;
}
.c-menu .c-menu__menu .c-menu__title {
    margin-right: 50px;
}

/* blue sub tab */
.c-menu.submenu .c-menu__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.c-menu.submenu .c-menu__menu .c-menu__title {
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-bottom: 17px;
}
.c-menu.submenu .c-menu__menu .c-menu__title h2 {
    margin-right: 20px;
    margin-bottom: 0;
}
.submenu-tab {
    display: flex;
    position: relative;
    border-radius: 10px;
    background: var(--color-bg);
    padding: 3px;
    box-shadow:  inset 1px 2px 5px rgba(0, 0, 0, 0.08);
    position: relative;
}
.submenu-tab li {
    display: flex;
}
.submenu-tab li.on a {
    color: var(--color-main);
    background: #fff;
    font-weight: var(--weight-black);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.08);
}
.submenu-tab li:last-of-type {
    margin-right: 0;
}
.submenu-tab li a {
    font-size: var(--font-regular);
    font-weight: var(--weight-semibold);
    padding: 10px 20px;
    border-radius: 7px;
    color: #979797;
}
.submenu-info li {
    color: #919191;
    display: none;
    align-items: center;
    font-weight: var(--weight-regular);
}
.submenu-info li.on {
    display: flex;
}

/*.submenu-tab li:first-of-type:hover:after {
    content: "엑셀파일은 지원이 불가하며, 단건으로만 변환이 가능합니다.";
    color: #505050;
    white-space: pre-wrap;
    line-height: 1.3;
    width: auto;
    height: auto;
    padding: 10px 20px 10px 40px;
    position: absolute;
    top: 55px;
    left: 0;
    background: #fff url('https://api.iconify.design/ep:info-filled.svg?color=%23EEBA33') no-repeat left 10px center / 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    
}
.submenu-tab li:nth-of-type(2):hover:after {
    content: "엑셀파일 안에 여러가지 sheet가 포함되어 있을 경우에도 신고가 가능하며,\A BL이 PDF 파일인 경우에도 변환이 가능합니다.";
    color: #505050;
    white-space: pre-wrap;
    line-height: 1.3;
    width: auto;
    height: auto;
    padding: 10px 20px 10px 40px;
    position: absolute;
    top: 55px;
    left: 0;
    background: #fff url('https://api.iconify.design/ep:info-filled.svg?color=%23EEBA33') no-repeat left 10px center / 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}
.submenu-tab li:nth-of-type(3):hover:after {
    content: "동일한 인보이스 양식일때만 일괄신고가 가능하며, 엑셀파일은 신고가 불가능합니다.";
    color: #505050;
    white-space: pre-wrap;
    line-height: 1.3;
    width: auto;
    height: auto;
    padding: 10px 20px 10px 40px;
    position: absolute;
    top: 55px;
    left: 0;
    background: #fff url('https://api.iconify.design/ep:info-filled.svg?color=%23EEBA33') no-repeat left 10px center / 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}*/


/* green tab */
/*.submenu-tab {
    display: flex;
    position: relative;
    border-radius: 10px;
    background: var(--color-bg);
}
.submenu-tab li {
    display: flex;
}
.submenu-tab li.on a {
    color: #fff;
    background: var(--color-sub);
    font-weight: var(--weight-semibold);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.08);
}
.submenu-tab li:last-of-type {
    margin-right: 0;
}
.submenu-tab li a {
    font-size: var(--font-medium);
    font-weight: var(--weight-medium);
    padding: 10px 20px;
    border-radius: 7px;
    color: gray;
    display: flex;
    align-items: center;
}*/

/* 처리중인파일 리스트 */
.c-menu__controll {
    display: flex;
    align-items: center;
    position: relative;
}

.status-wrap {
    top: -6px;
    right: 110px;
    position: absolute;
    display: flex;
}
.processing {
    margin-right: 10px;
    border-radius: 5px;
    overflow: hidden;
    width: 700px;
    height: 94px;
    border: 1px solid var(--color-bd);
}
.processing .processing__title {
    font-size: 13px;
    font-weight: var(--weight-medium);
    display: flex;
    justify-content: space-between;
    padding: 5px 10px 5px 15px;
    background: #51b4b5;
    color: #fff;
    width: 100%;
}
.processing .processing__title iconify-icon {
    color: #fff;
    font-size: 14px;
}
.processing ul.processing__list {
    padding: 7px 0;
    background: #f9f9f9;
    height: 70px;
    max-height: 300px;
    overflow: auto;
}
.processing ul.processing__list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.processing ul.processing__list li.processing__item > div {
    display: flex;
    align-items: flex-start;
    padding: 0 10px 0 5px;
    margin-bottom: 4px;
    position: relative;
    width: 100%;
}
.processing ul.processing__list li.processing__item .error-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    cursor: pointer;
}
.processing ul.processing__list li.processing__item .error-list > div {
    display: flex;
    width: 100%;
    padding: 0 10px 0 5px;
}
.processing ul.processing__list li.processing__item .error-list .error-list__detail {
    display: none;
    background: #fff0f0;
    padding: 10px 5px 10px 20px;
    width: 100%;
    color: var(--color-bk);
    white-space: pre-line;
    line-height: 1.4;
}
.processing ul.processing__list li.processing__item .error-list .error-list__detail li {
    margin-bottom: 7px;
}
.processing ul.processing__list li.processing__item:last-of-type {
    margin-bottom: 0;
}
.processing ul.processing__list li.processing__item .processing__icon iconify-icon {
    font-size: 12px;
    margin-right: 5px;
}
.processing ul.processing__list li.processing__item .processing__text {
    font-weight: var(--weight-regular);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: keep-all;   
}
.processing ul.processing__list li.processing__item .processing__text.error{
    cursor: pointer;
}
.processing ul.processing__list li.processing__item .processing__text.error:hover{
    color: #cf2727;
}
.processing ul.processing__list li.processing__item .processing_error {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 7px rgb(161 0 0 / 25%);
    padding: 5px 8px;
    top: calc(100% + 5px);
    left: 0;
    color: #db2b2b;
    border: 1px solid #bb6464;
    z-index: 20;
}
.processing ul.processing__list li.processing__item > iconify-icon {
    font-size: 15px;
}
.processing ul.processing__list li.processing__item button iconify-icon {
    font-size: 14px;
    margin-left: 5px;
}

/* 리스트 검색 박스 */
form[name='searchForm']{
    display: flex;
}
.search-f {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    width: 100%;
}
.search-f > form {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.search-f__wrap {
    width: auto;
    display: flex;
}
.search-f__wrap > * {
    margin-right: 5px;
    width: 100%;
}
.search-f__wrap input[name=stx]{
    min-width: 200px;
}
.search-f__wrap select {
    min-width: 130px;
}
.search-f__wrap input[name=sfl]{
    min-width: 300px;
}
.flex .table-wrap{
    /*height: auto;*/
}
/* 테이블 */
.content .c-box:first-of-type .search-f + .table-wrap{
    min-height: 200px;
}
.content .c-box:first-of-type .table-wrap {
    max-height: unset;
}
.table-wrap {
    border-radius: 10px;
    border: 1px solid var(--color-bd);
    /*overflow-y: auto;*/
    height:  auto;
    max-height: 300px;
    -ms-overflow-style: none; /* IE 및 Edge에서 기본 스크롤바 숨김 */
    scrollbar-width: thin; /* Firefox에서 기본 스크롤바 숨김 */
    scrollbar-color: #888 #f1f1f1; /* Firefox에서 스크롤바 색상 지정 */
}
.table-wrap table tr {
    border-bottom: 1px solid var(--color-bd);
}
.table-wrap table tbody tr:last-child {
    border-bottom:  none;
}
.table-wrap table thead {
    background: var(--color-bg);
    height: 36px;
    text-align:left;
    position: sticky;
    top: 0;
    z-index: 1;
}
.table-wrap table thead tr th:first-of-type{
    border-radius: 10px 0 0 0;
}
.table-wrap table thead tr th:last-of-type{
    border-radius: 0 10px 0 0;
}
.table-wrap table thead tr th {
    font-size: 1.3rem;
    color:#81919d;
    font-weight: var(--weight-semibold);
    white-space: nowrap;
    position: sticky;
    top: 0;
}
.content:not(.center) .table-wrap table thead tr th label {
    color:#81919d;
}
.table-wrap table tbody tr {
    height: 43px;
}
.table-wrap table tbody tr:nth-child(2n) {
    background: #F9F9F9;
}
.table-wrap table thead tr th,
.table-wrap table tbody tr td {
    padding: 5px;
}
.table-wrap table thead tr th:last-of-type,
.table-wrap table tbody tr td:last-of-type {
    padding-right: 20px;
}
.table-wrap table tbody tr:hover {
    background: #edf2f5;
    border-radius: 0;
}
.table-wrap table tbody tr:hover td a {
    text-decoration: underline;
    text-decoration-color: var(--color-main);
    color: var(--color-main);
}
.table-wrap table tbody tr:last-of-type td:first-of-type{
    border-radius: 0 0 0 10px;
}
.table-wrap table tbody tr:last-of-type td:last-of-type{
    border-radius: 0 0 10px 0;
}
.table-wrap {
    scrollbar-width: thin;
    scrollbar-color: #bdbdbd #f8f8f8;
}

.table-wrap::-webkit-scrollbar {
    width: 7px;
}

.table-wrap::-webkit-scrollbar-track {
    background: #afafaf;
    border-radius: 10px;
}

.table-wrap::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.table-wrap::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* inputbox 정렬기능 이용시 */
.sortItem > div {
    display: flex;
}
.sortPlace{
    border: 1px dotted black;
    margin: 0 1em 1em 0;
    height: 50px;
    background: #e9ffe2;
}
.sort-btn{
    border:  1px solid #ddd;
    border-radius:  3px;
    background:  #fff;
    transition: all .1s ease;
    cursor: move;
}
.sort-btn:hover {
    background: #e6e6e6;
    transition: all .1s ease;
}
.sort-btn:active + input {
    background:  #fff;
}


/* 목록 버튼 */
.list-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.list-btn-wrap .list-btn-wrap__left {
    display: flex;
    align-items: center;
}
.list-controll {
    display:  flex;
    justify-content: space-between;
    align-items: center;
}
.list-controll .btn-wrap {
    margin:0;
    padding: 0;
}

.list-controll .btn-wrap > * {
    margin-right: 5px;
}

/* 상태마크 */
.status--border {
    padding: 5px 10px;
    border-radius: 50px;
    border:1px solid;
    background: #fff;
    white-space: nowrap;
}
.status--red {
    border-color: var(--status-red);
    color: var(--status-red);
    cursor: pointer;
}
.status--red:hover {
    background: #fff1f1;
}

.status--org {
    border-color: var(--status-org);
    color: var(--status-org);
}
.status--blu {
    border-color: var(--status-blu);
    color: var(--status-blu);
}

/* 페이지네이션 */
.paginate {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}
.paginate > a iconify-icon {
    font-size: 27px;
    color: #7C827F;
}
.paginate ul {
    display: flex;
    align-items: center;
    padding: 0 30px;
}
.paginate ul li {
    margin-right: 14px;
}
.paginate ul li:last-child {
    margin-right: 0;
}
.paginate ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 2px;
    color: #7C827F;
    width: 27px;
    height: 27px;
}
.paginate ul li a.on {
    background: #88cf71;
    color: #fff;
}


/****************** FORM *****************/

.write {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-self: baseline;
}
.write.column_2 li {
    width: calc(100% / 2 - 15px);
}
.write.column_4 {
    margin-bottom: 0 !important;
}
.write.column_4 li {
    /*width: calc(100% / 4 - 25px);*/
    width: calc(100% / 5 - 16px);
}
.write li input,
.write li select,
.file-upload__box {
    width: 100%;
}
.write li .write__title{
    color: #818F88;
    font-weight: var(--weight-bold);
    font-size: var(--font-xsmall);
    margin-bottom: 6px;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
.write li .write__title strong {
    color: var(--status-red);
}
.write li .write__wrap {
    display: flex;
}
.write li .write__wrap > * {
    margin-right: 8px;
}
.write li .write__wrap > *:last-child {
    margin-right: 0;
}
.write li .write__wrap span {
    white-space: nowrap;
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.write li .write__wrap span:first-child {
    margin-left:0;
}
.alert-color {
    display: flex;
}
.alert-color .alert-color__box {
    position: relative;
    width:100%;
    display: flex;
}
.alert-color .alert-color__box:last-child {
    margin-right: 0;
}
.alert-color .alert-color__box > * {
    margin-right: 5px;
}
.alert-color .alert-color__box > span {
    font-size: 10px;
    display: flex;
    align-self: flex-end;
    color: #7b7b7b;
    padding-bottom: 7px;
    font-weight: var(--weight-light);
}
.alert-color .alert-color__box > *:last-child {
    margin-right: 0;
}
.alert-color .alert-color__box:before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px 0 0 3px;
}
.alert-color.red .alert-color__box:before {
    background: var(--status-red);
}
.alert-color.red .alert-color__box input,
.alert-color.red .alert-color__box select {
    background: #FFF5F5;
}
.alert-color.ylw .alert-color__box input,
.alert-color.ylw .alert-color__box select {
    background: #FEFBF3;
}
.alert-color.grn .alert-color__box:before {
    background: var(--status-grn);
}
.alert-color.ylw .alert-color__box:before {
    background: var(--status-ylw);
}
.alert-color .alert-color__box input:first-child,
.alert-color .alert-color__box select:first-child {
    padding-left: 10px;
}
.table-wrap td.alert-color {
    font-weight:var(--weight-semibold);
}
.table-wrap td.alert-color.red {
    color: var(--status-red);
}
.table-wrap td.alert-color.ylw {
    color: var(--status-ylw);
}
.table-wrap .alert-color .alert-color__box {
    border-radius: 3px;
    overflow: hidden;
}
.table-wrap .alert-color.grn .alert-color__box:before {
    background: #99d79c;
}
.table-wrap .alert-color.red .alert-color__box:before {
    background: #f17676;
}
.table-wrap .alert-color.ylw .alert-color__box:before {
    background: #dbbf78;
}
.highlighted-row td:first-of-type {
    position: relative;
    overflow: hidden;
}
.highlighted-row td:first-of-type:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.highlighted-row.red td:first-of-type:before {
    background: #e55353;
}
.highlighted-row.ylw td:first-of-type:before {
    background: #ebc259;
}
.c-menu .flex {
    align-items: center;
    margin-right: -30px;
    margin-top: 40px;
}
.c-menu .flex.result__title {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
}
.c-menu .flex.result__title p {
    margin-bottom: 10px;
    color: #4b4b4b;
    font-weight: var(--weight-medium);
    line-height: 1.5;
}
.c-menu .flex.result__title p strong {
    color: red;
}
.c-menu .flex.result__title > div {
    display: flex;
    align-items: flex-end;
}
.c-menu .flex .origin-file {
    margin-right: 20px;
    margin-right: 20px;
    background: #f5f5f5;
    padding: 5px 10px;
    border: 1px solid var(--color-bd);
    border-radius: 5px;
    display: flex;
}
.origin-file .file-upload input[type=text] {
    margin-right: 5px;
    background: #fff;
    padding-right: 40px;
    max-width: 170px;
}
.origin-file .file-upload iconify-icon {
    top: 45%;
}
.origin-file button {
    width: 100%;
    margin-right: 5px;
}
.c-menu .flex .tooltip {
    margin-right: 30px;
}
.tooltip {
    background: #3E4662;
    border-radius: 5px;
    height: fit-content;
}
.tooltip {
    display: flex;
    position: relative;
}
.tooltip .tooltip__mark,
.tooltip .tooltip__con {
    padding: 7px 12px;
    display: flex;
    align-items: center;
}
.tooltip .tooltip__mark {
    border-right: 1px solid #30364A;
}
.tooltip .tooltip__mark iconify-icon {
    color: #A9B5C0;
    font-size: 24px;
    transition: all .2s ease-in-out;
}
.tooltip .tooltip__mark:hover + .tooltip__detail {
    display: block;
}
.tooltip .tooltip__mark:hover iconify-icon{
    color: #fff;
    transition: all .2s ease-in-out;
}
.tooltip .tooltip__con {
    padding: 7px 18px;
}
.tooltip .tooltip__con li {
    color: #fff;
    margin-right: 18px;
    font-size: var(--font-regular);
    position: relative;
    padding-left: 10px;
}
.tooltip .tooltip__con li:last-child {
    margin-right: 0;
}
.tooltip .tooltip__con li:before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 100%;
    background: #fff;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.tooltip .tooltip__con li:first-child:before {
    background: var(--status-grn);
}
.tooltip .tooltip__con li:nth-child(2):before {
    background: var(--status-ylw);
}
.tooltip .tooltip__con li:nth-child(3):before {
    background: var(--status-red);
}
.tooltip .tooltip__detail {
    position: absolute;
    background: #3E4662;
    z-index:10;
    top: calc(100% + 10px);
    border-radius: 5px;
    display: none;
}
.tooltip .tooltip__detail ul{
    padding: 20px;
}
.tooltip .tooltip__detail ul li {
    position: relative;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: var(--weight-light);
    padding-left:8px;
}
.tooltip .tooltip__detail ul li:last-child {
    margin-bottom: 0;
}
.tooltip .tooltip__detail ul li:before {
    position:absolute;
    content:"";
    width: 3px;
    height: 3px;
    background: #fff;
    left: 0;
    top: 10px;
    border-radius: 50%;
}


/*영문상호명 관리*/
#alias-list {
    width: 100%;
}
#alias-list .alias-item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
}
#alias-list .alias-item:last-of-type {
    margin-bottom: 0;
}
#alias-list .alias-item .write__wrap {
    width: 100%;
}


@media screen and (max-width:1320px){
    .search-f__wrap select {
        min-width: 100px;
    }
    .search-f__wrap input[name=sfl] {
        min-width: 300px;
    }
}

/****************** 로딩화면 *****************/
.shadows {
    display: block;
    left: 0;
    right:0;
    top:0;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index:100;
}
.abs-center {
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%); /* IE 9 */
    -webkit-transform: translate(-50%,-50%); /* Safari */
    -moz-transform: translate(-50%,-50%); /* Firefox Older versions*/
    -o-transform: translate(-50%,-50%); /* Opera */
    transform: translate(-50%,-50%);
    z-index:100;
}
/* box fall preloader */
.sq-wrapper {
    display: inline-block;
    position: relative;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
}

.sq-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none transparent;
    overflow: hidden;
}

.sq-fill {
    background: none var(--color-sub);
    width: 100%;
    height: 100%;
}

.loader > div::after {
    content: "Everything Easy Fast";
    position: absolute;
    white-space: nowrap;
    top: 1.875em;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    letter-spacing: 0.125em;
    font-size: 1.5em;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: var(--weight-light);
    z-index:110;
}

/****************** view 페이지 *****************/
.view {
    padding: 60px 40px;
    width:100%;
    max-width:1200px;

}
.view .view__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid var(--color-main);
    height: 70px;
    border-bottom: 1px solid var(--color-bd);
    padding: 0 20px;
}
.view .view__top p {
    font-size: var(--font-xlarge);
    font-weight: var(--weight-semibold);
}
.view .view__top .view__info,
.view .view__top .view__info span {
    color: #9f9f9f;
    font-size: 14px;
}
.view .view__con {
    padding: 60px 20px;
    min-height: 300px;
    border-bottom: 1px solid var(--color-bd);
}
.view .view__con p {
    font-size: var(--font-regular);
    line-height: 1.7;
}

/****************** write 페이지 *****************/
.write__zone {
    border-top: 1px solid var(--color-bk);
    margin-bottom: 70px;
}
.write__zone:last-of-type {
    margin-bottom: 0;
}
.write__zone .write__row.col {
    display: flex;
    width: 100%;
    gap: 30px;
    border-bottom: 1px solid var(--color-bd);
}
.write__zone .write__row.col .write__sline {
    border: none;
}
.write__zone .write__row.col .write__sline select {
    width: 100%;
    height: 40px;
    font-size: 14px;
}
.write__zone .write__row.col .write__sline select option {
    font-size: 14px;
}
.write__zone .write__row.col.col2 .write__sline {
    width: calc(100% / 2);
}
.write__zone .write__sline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid var(--color-bd);
    padding:10px 0;
}
.write__zone .write__sline.hyphen span {
    padding:  0 5px;
}
/*.write__zone .write__row:last-of-type .write__sline {
    padding-bottom:30px;
}*/
.write__zone .write__sline p {
    font-size: 1.4rem;
    font-weight: var(--weight-semibold);
    min-width:100px;
    text-align:center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
}
.write__zone .write__sline input {
    background:#f9f9f9;
    padding-left:15px;
    width:100%;
    font-size: 14px;
    height: 40px;
}
.write__zone .write__sline textarea {
    padding:15px;
    background:#f9f9f9;
    border:1px solid var(--color-bd);
    outline:none;
    border-radius:3px;
    min-height:280px;
    font-size: 14px;
}
.write__zone .write__sline textarea:focus {outline:none;}
.write__zone .write__sline .file-upload {
    width: 100%;
}

/****************** 로그인 *****************/
.content.login {
    background: #0B3255;
    height: 100vh;
    margin: 0;
    position: relative;
}
.login-box {
    width: 100%;
    max-width: 1200px;
    height: 728px;
    border-radius: 20px;
    overflow:hidden;
    display: flex;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 10px 10px 20px 1px rgba(0, 0, 0, 0.25);
}
.login-box .login-box__left {
    background: var(--color-main) url('../images/common/login_gradation.png') no-repeat center top;
    width: calc(100% - 514px);
    padding-top: 135px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.login-box .login-box__left img {
    margin-bottom: 90px;
}
.login-box .login-box__left .login-box__info li {
    margin-bottom: 40px;
    border-bottom: 1px solid #fff;
    width: 405px;
    padding-bottom: 10px;
}
.login-box .login-box__left .login-box__info li:last-child {
    margin-bottom: 0;
}
.login-box .login-box__left .login-box__info input {
    background: none;
    border: none;
    color: #fff;
    font-size: var(--font-xlarge);
    width: 100%;
    padding: 0;
}
.login-box .login-box__left .login-box__info input:placeholder {
    color: #E3E3E3;
    font-weight: var(--weight-exlight);
    font-size: var(--font-medium);
}
.login-box .login-box__left .login-box__info input::-webkit-input-placeholder {
    color: #E3E3E3;
    font-weight: var(--weight-exlight);
    font-size: var(--font-medium);
}
.login-box .login-box__left .login-box__info input:-ms-input-placeholder {
    color: #E3E3E3;
    font-weight: var(--weight-exlight);
    font-size: var(--font-medium);
}
.login-box .login-box__left .btn-wrap {
    width: 405px;
    padding: 0;
    margin-top: 62px;
    flex-direction: column;
}
.login-box .login-box__left .btn-wrap button {
    width: 100%;
    height: 65px;
    border-radius: 5px;
    font-size: var(--font-xlarge);
    font-weight: var(--weight-light);
    margin-bottom: 15px;
    margin-right: 0;
}
.login-box .login-box__left .btn-wrap button:last-child {
    margin-bottom: 0;
}
.btn.login-primary {
    background: var(--color-sub);
    color: #fff;
    transition: all .2s ease-in-out;
}
.btn.login-primary:hover {
    background: #479f2b;
    transition: all .2s ease-in-out;
}
.btn.login-secondary {
    background: #fff;
    color: var(--color-sub);
    margin-bottom: 0;
}
.btn.login-secondary:hover {
    background: #d3d3d3;
}
.login-box .login-box__right {
    background: var(--color-sub) url('../images/common/login_bg.png') no-repeat right bottom / 331px 325px;
    width: 514px;
}
.login-box .login-box__right .login-box__txt {
    padding: 90px 0 0 60px;
}
.login-box .login-box__right .login-box__txt p,
.login-box .login-box__right .login-box__txt span {
    color: rgba(255,255,255,0.6);
}
.login-box .login-box__right .login-box__txt p {
    font-size: 52px;
    font-weight:var(--weight-semibold);
    margin-bottom: 40px;
}
.login-box .login-box__right .login-box__txt span {
    font-size: var(--font-medium);
    font-weight: var(--weight-exlight);
    line-height: 1.7;
}

/****************** 회원가입 *****************/
.content.signup .login-box .login-box__left {
    padding-top: 20px;
    justify-content: center;
    position:relative;
}
.content.signup .login-box .login-box__left p {
    font-size: var(--font-login);
    font-weight: var(--weight-semibold);
    color: #fff;
    margin-bottom: 30px;
}
.content.signup .login-box .login-box__left .back {
    display: flex;
    align-items: center;
    position: absolute;
    top: 25px;
    left: 20px;
    padding: 10px;
}
.content.signup .login-box .login-box__left .back > * {
    color: #fff;
}
.content.signup .login-box .login-box__left .back iconify-icon {
    font-size: 30px;
    margin-right: 6px;
}
.content.signup .login-box .login-box__left .back span {
    font-size: var(--font-regular);
}
.content.signup .login-box .login-box__left .btn-wrap {
    margin-top: 36px;
}
.content.signup .write {
    display: block;
}
.content.signup .write li {
    margin-bottom: 15px;
}
.content.signup .write li:last-child {
    margin-bottom: 0;
}
.content.signup .write li .write__title {
    color: #bbb;
    font-weight: var(--weight-light);
}
.content.signup .write li .write__wrap input {
    background: rgba(232, 241, 255, 0.18);
    border: none;
    
    color: #fff;
    color: #fff;
    font-size: var(--font-regular);
    height: 45px;
    transition: all .2s ease-in-out;
}
.content.signup .write li .write__wrap input:focus {
    background: none;
    transition: all .2s ease-in-out;
    border-bottom: 1px solid #fff;
    border-radius: 3px 3px 0 0;
    padding-left: 0;
}



/****************** 상품정보 키워드 버튼 *****************/
.product-control {
    display:flex;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 10px;
}
.keyword {
    display: flex;
    align-items: flex-end;
}
.keyword div > button {
    margin-right: 5px;
}
.keyword div > button:last-of-type {
    margin-right: 0;
}
.keyword .keyword__dragged > button:last-of-type {
    margin-right: 10px;
}
.keyword .keyword__dragged,
.keyword .keyword__list {
    display: flex;
}

/****************** FOOTER *****************/
footer {
    background: #fff;
    height: 120px;
    display:flex;
    align-items: center;
    padding: 0 80px;
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
}
footer p {
    color: #AAAAAA;
    line-height:1.7;
    font-weight: var(--weight-light);
}   


/****************** POPUP *****************/
.pop {
    position: fixed;
    z-index: 20;
    width: 100%;
    background: var(--color-bg);
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 20px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
    /*display: none;*/
}
.pop .pop__top {
    height: 41px;
    background: var(--color-main);
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}
.pop .pop__top p {
    font-size: var(--font-large);
    font-weight: var(--weight-semibold);
    color: #fff;
}
.pop .pop__top button {
    margin-right: -5px;
}
.pop .pop__top button iconify-icon {
    color:#fff;
    font-size: 26px;
}
.pop .pop__con {
    padding: 40px 30px;
}
.pop-search {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}
.pop-search .pop-search__title {
    
}
.pop-search .pop-search__title {
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
    align-items: center;
}
.pop-search .pop-search__title dt {
    font-weight: var(--weight-semibold);
    color: #818F88;
    margin-right: 10px;
}
.pop-search .pop-search__title dd {
    font-size: var(--font-xlarge);
    font-weight: var(--weight-semibold);
    display: flex;
}
.pop-search .pop-search__title dd input {
    min-width: 350px;
    margin-right: 5px;
    background: #fff;
}
.pop .pop__wrap .pop__con > .btn-wrap {
    padding: 70px 30px 0 30px;
}
.pop .pop__wrap .pop__con > .btn-wrap .btn {
    height: 50px;
    max-width: 150px;
}
.pop .pop__wrap .pop__con > .btn-wrap .btn .btn__text {
    font-size: var(--font-medium);
}
.acco .acco__wrap > li {
    margin-bottom: 8px;
    border-radius: 5px;
    border: 1px solid var(--color-bd);
    background: #fff;
    height: 43px;
    overflow: hidden;
    transition: all .2s ease-in-out;
    background: #fff;
}
.acco .acco__wrap li:last-child {
    margin-bottom: 0;
}
.acco .acco__wrap > li.on {
    height: 150px;
    transition: all .2s ease-in-out;
}
.acco .acco__wrap > li .acco__title {
    display: flex;
    padding: 10px 60px 10px 22px;
    height: 43px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-bd);
    cursor: pointer;
    background: url('../images/common/angle_bottom.svg') no-repeat right 15px center;
}
.acco .acco__wrap > li .acco__title > li:first-child {
    margin-right: 30px;
    color: var(--color-main);
}
.acco .acco__wrap > li .acco__con {
    padding: 18px 22px 22px;
    line-height: 1.5;
}

.pop .pop__table{
    border-radius: 5px;
    overflow: hidden;
    height: 400px;
    overflow-y: auto;
    background:  #fff;
}
.pop .pop__table thead {
    background:  #ddd;
    
}
.pop .pop__table thead tr,
.pop .pop__table tbody tr {
    height: 40px;
}
.pop .pop__table thead tr th {
    font-weight: var(--weight-semibold);
}
.pop .pop__table tbody {
    background: #fff;
}
.pop .pop__table tbody tr {
    border-bottom: 1px solid #e6e6e6;
}
.pop .pop__table tbody tr:last-child {
    border-bottom:  none;
}
.pop .pop__table tbody tr th,
.pop .pop__table tbody tr td {
    padding: 0 10px;
}
.pop .pop__table tbody tr td button {
    margin: 0 auto;
}


/****************** 에러메시지 팝업 *****************/
.errorReport {
    display: none;
    position: absolute;
    bottom: 0;
    transform: translate(-105px, -45px);
    z-index: 100;
    width: 300px;
    background: #fff;
    align-items: center;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    background: #D0423E;
}
.errorReport.show {
    display: flex;
}
.errorReport dt {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
.errorReport dt iconify-icon {
    font-size: 22px;
    padding-left: 10px;
}
.errorReport dd {
    padding: 10px;
    background: #D0423E;
    flex-grow: 1;
    color: #fff;
    line-height: 1.4;
    text-align: left;
}


@media screen and (max-width:1400px){
    header .logo {
        max-width:280px;
    }
    header .logo img {

    }
    header .logo h1 {
        padding: 0 40px;
    }
    header .gnb {
        width: calc(100% - 280px);
        padding-right: 40px;
    }
    header .gnb .menu {
        margin: 0 20px;
    }
    footer {
        padding: 0 40px;
    }
    .c-box{
        margin: 0 40px 10px;
    }
    .add-card {
        margin: 10px 40px 0;
    }
    .c-box .c-box__wrap.column .write {
        width:  40% !important;
    }
}