/*
// 수리항목
$stateName = [
	'1' => '접수완료',
	'2' => '제품수령',
	'3' => '반려',
	'4' => '점검중',
	'5' => '수리취소',
	'6' => '수리중',
	'7' => '수리지연',
	'8' => '수리완료',
	'9' => '수리불가',
	'10' => '배송중(퀵)',
	'11' => '배송중(택배)',
	'12' => '종료'
];
*/
:root {
  --color-white: #fff;
  --color-black: #333;
  --color-gray: #75787b;
  --color-gray-light: #bbb;
  --color-gray-disabled: #e8e8e8;
  --color-orange: #FF7F3E;
  --color-orange-dark: #383;
  --color-state01: #AAABAC;
  --color-state02: #20BDD2;
  --color-state03: #000000;
  --color-state04: #FF7F3E;
  --color-state05: #E160A8;
  --color-state06: #5599FF;
  --color-state07: #DD5959;
  --color-state08: #69D387;
  --color-state09: #F2B9FC;
  --color-state10: #CA58FF;
  --color-state11: #CA58FF;
  --color-state12: #7B7B7B;
  --color-state13: #F8D100;

  --font-size-small: .75rem;
  --font-size-default: .875rem;
}

.state01 { /* 접수 */
    background-color: var(--color-state01);
    width: 5%;
}

.state13 { /* 예약 */
  background-color: var(--color-state13);
  width: 5%;
}

.state02 { /* 제품수령 */
    background-color: var(--color-state02);
    width: 16.67%;
}

.state03 { /* 반려 */
    background-color: var(--color-state03);
    width: 16.67%;
}

.state04 { /* 점검중 */
    background-color: var(--color-state04); 
    width: 33.333%;
}

.state05 { /* 수리취소 */
    background-color: var(--color-state05); 
    width: 16.67%;
}

.state06 { /* 수리중 */
    background-color: var(--color-state06);
    width: 50%;
}

.state07 { /* 수리지연 */
    background-color: var(--color-state07);
    width: 50%;
}

.state08 { /* 수리완료 */
    background-color: var(--color-state08);
    width: 66.67%;
}

.state09 { /* 수리불가 */
  background-color: var(--color-state09);
  width: 66.67%;
}

.state10 { /* 배송중(퀵) */
  background-color: var(--color-state10);
  width: 83.333%;
}


.state11 { /* 배송중(택배) */
  background-color: var(--color-state11);
  width: 83.333%;
}

.state12 { /* 종료 */
  background-color: var(--color-state12);
  width: 100%;
}


.input-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.input-switch::before {
    content: 'Busy';
    position: relative;
    left: -36px;
}

.input-switch input:checked + .input-switch-onoff {
    background-color: #E33801;
}

.input-switch .input-switch-onoff {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background-color: #ccc;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.input-switch input:checked + .input-switch-onoff::before {
  background-color: #fff;
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  -moz-transform: translateX(16px);
  -o-transform: translateX(16px);
  transform: translateX(16px);
}

.input-switch .input-switch-onoff::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  top: 2px;
  background: #fff;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  border-radius: 20px;
}

.input-switch input[type=checkbox] {
	display: none;
}

.check_box-n > label {
  position: relative;
  display: inline-block;
  width: 37px;
  height: 20px;
}

.check_box-n > label input:checked + span {
  background-color: #0066FF;
}

.check_box-n > label > span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background-color: #ccc;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.check_box-n > label input:checked + span::before {
background-color: #fff;
-webkit-transform: translateX(16px);
-ms-transform: translateX(16px);
-moz-transform: translateX(16px);
-o-transform: translateX(16px);
transform: translateX(16px);
}

.check_box-n > label span::before {
position: absolute;
content: "";
height: 16px;
width: 16px;
left: 3px;
top: 2px;
background: #fff;
-webkit-transition: .2s;
-o-transition: .2s;
transition: .2s;
border-radius: 20px;
}

.check_box-n > label input[type=checkbox] {
display: none;
}

/*
progress-bar
*/
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 2rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--color-black);
  }
  
  h2 {
    color: var(--color-gray);
    font-size: var(--font-size-small);
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  section {
    margin-bottom: 2rem;
  }
  
  .progress-bar {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .progress-bar li {
    flex: 2;
    position: relative;
    padding: 0 0 14px 0;
    font-size: var(--font-size-default);
    line-height: 1.5;
    color: var(--color-orange);
    font-weight: 600;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
    text-align: center;
    border-bottom: 2px solid #d4d4d8;
  }
  .progress-bar li:first-child,
  .progress-bar li:last-child {
    flex: 1;
  }
  .progress-bar li:last-child {
    text-align: right;
  }
  .progress-bar li:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url(/image/progress_off.svg) no-repeat center;
    position: absolute;
    left: calc(50% - 6px);
    bottom: -10px;
    z-index: 3;
    transition: all .2s ease-in-out;
  }
  .progress-bar li:first-child:before {
    left: 0;
  }
  .progress-bar li:last-child:before {
    right: 0;
    left: auto;
  }
  .progress-bar li:not(.active) span {
    opacity: 0;
  }
  .progress-bar .is-complete:not(:first-child):after,
  .progress-bar .active:not(:first-child):after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: -50%;
    z-index: 2;
    border-bottom: 2px solid var(--color-orange);
  }
  .progress-bar li:last-child span {
    width: 100%;
    left: 0;
  }
  
  .progress-bar .is-complete:last-child:after,
  .progress-bar .active:last-child:after {
    width: 200%;
    left: -100%;
  }
  
  .progress-bar .active:before {
    background: url(/image/progress_on.svg) no-repeat center;
  }
  
  .progress-bar li:first-child:before {
    height: 19px;
    background: url(/image/progress_ck.svg) no-repeat center !important;
  }

  .progress-bar .active span:first-child{
    color: #6E7C87;
  }

.progress-bar span {
  font-size: 12px;
  font-weight: 400;
  color: #616161;
  display: block;
  position: relative;
  left: 5px
}

.progress-bar span a {
  color: #616161;
}

.progress-bar span a.active {
  color: #FF7F3E;
  border-bottom: 1px solid;
}

.progress-bar li:first-child span {
  text-align: left;
  left: 0;
}

.progress-bar li:first-child span:nth-child(1) {
  opacity: 1;
  font-size: 12px;
  font-weight: 400;
  color: #6E7C87;
}

.progress-bar li span:nth-child(1) {
  top: 33px;
}

.progress-bar li span:nth-child(2) {
  opacity: 1;
  top: 69px;
}

.progress-bar li span:nth-child(3) {
  opacity: 1;
  top: 72px;
}

.progress-bar.state-bar01 .is-complete:not(:first-child):after,
.progress-bar.state-bar01 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state01);
}

.progress-bar.state-bar02 .is-complete:not(:first-child):after,
.progress-bar.state-bar02 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state02);
}

.progress-bar.state-bar03 .is-complete:not(:first-child):after,
.progress-bar.state-bar03 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state03);
}

.progress-bar.state-bar04 .is-complete:not(:first-child):after,
.progress-bar.state-bar04 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state04);
}

.progress-bar.state-bar05 .is-complete:not(:first-child):after,
.progress-bar.state-bar05 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state05);
}

.progress-bar.state-bar06 .is-complete:not(:first-child):after,
.progress-bar.state-bar06 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state06);
}

.progress-bar.state-bar07 .is-complete:not(:first-child):after,
.progress-bar.state-bar07 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state07);
}

.progress-bar.state-bar08 .is-complete:not(:first-child):after,
.progress-bar.state-bar08 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state08);
}

.progress-bar.state-bar09 .is-complete:not(:first-child):after,
.progress-bar.state-bar09 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state09);
}

.progress-bar.state-bar10 .is-complete:not(:first-child):after,
.progress-bar.state-bar10 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state10);
}


.progress-bar.state-bar11 .is-complete:not(:first-child):after,
.progress-bar.state-bar11 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state11);
}

.progress-bar.state-bar12 .is-complete:not(:first-child):after,
.progress-bar.state-bar12 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state12);
}

.progress-bar.state-bar13 .is-complete:not(:first-child):after,
.progress-bar.state-bar13 .active:not(:first-child):after {
  border-bottom: 2px solid var(--color-state13);
}

.progress-bar.state-bar01 span a.active {
  color: var(--color-state01);
}

.progress-bar.state-bar02 span a.active {
  color: var(--color-state02);
}

.progress-bar.state-bar03 span a.active {
  color: var(--color-state03);
}

.progress-bar.state-bar04 span a.active {
  color: var(--color-state04);
}

.progress-bar.state-bar05 span a.active {
  color: var(--color-state05);
}

.progress-bar.state-bar06 span a.active {
  color: var(--color-state06);
}

.progress-bar.state-bar07 span a.active {
  color: var(--color-state07);
}

.progress-bar.state-bar08 span a.active {
  color: var(--color-state08);
}


.progress-bar.state-bar09 span a.active {
  color: var(--color-state09);
}

.progress-bar.state-bar10 span a.active {
  color: var(--color-state10);
}

.progress-bar.state-bar11 span a.active {
  color: var(--color-state11);
}

.progress-bar.state-bar12 span a.active {
  color: var(--color-state12);
}

.progress-bar.state-bar13 span a.active {
  color: var(--color-state13);
}

.progress-bar.state-bar01 .active:before {
  background: url(/image/progress_on01.svg) no-repeat center;
}
.progress-bar.state-bar02 .active:before {
  background: url(/image/progress_on02.svg) no-repeat center;
}
.progress-bar.state-bar03 .active:before {
  background: url(/image/progress_on03.svg) no-repeat center;
}
.progress-bar.state-bar04 .active:before {
  background: url(/image/progress_on04.svg) no-repeat center;
}
.progress-bar.state-bar05 .active:before {
  background: url(/image/progress_on05.svg) no-repeat center;
}
.progress-bar.state-bar06 .active:before {
  background: url(/image/progress_on06.svg) no-repeat center;
}
.progress-bar.state-bar07 .active:before {
  background: url(/image/progress_on07.svg) no-repeat center;
}
.progress-bar.state-bar08 .active:before {
  background: url(/image/progress_on08.svg) no-repeat center;
}
.progress-bar.state-bar09 .active:before {
  background: url(/image/progress_on09.svg) no-repeat center;
}
.progress-bar.state-bar10 .active:before {
  background: url(/image/progress_on10.svg) no-repeat center;
}
.progress-bar.state-bar11 .active:before {
  background: url(/image/progress_on11.svg) no-repeat center;
}
.progress-bar.state-bar12 .active:before {
  background: url(/image/progress_on12.svg) no-repeat center;
}

.flex-horizontal {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 15px;
}

.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}

.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}

i.delete {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(/image/delete.svg) no-repeat center;
  background-size: cover;
  margin-right: 6px;
  margin-bottom: 3px;
}

i.danger {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  background: url(/image/danger.svg) no-repeat center;
  background-size: cover;
  margin-right: 8px;
  margin-bottom: 3px;
}

i.edit {
  display: inline-block;
  width: 11px;
  height: 11px;
  vertical-align: middle;
  background: url(/image/edit_btn.svg) no-repeat center;
  background-size: cover;
  margin-right: 5px;
  margin-bottom: 4px;
}

i.payment {
  display: inline-block;
  width: 17px;
  height: 12px;
  vertical-align: middle;
  background: url(/image/payment.svg) no-repeat center;
  background-size: cover;
  margin-right: 5px;
  margin-bottom: 4px;
}

i.plus-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(/image/plus-btn.svg) no-repeat center;
  background-size: cover;
  margin-left: 5px;
  margin-bottom: 4px;
}

i.minus-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(/image/minus-btn.svg) no-repeat center;
  background-size: cover;
  margin-left: 5px;
  margin-bottom: 4px;
}

.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}

.category_name {
  display: flex !important;
  align-items: center;
  gap: 0 !important;
}

.select-common {
  box-sizing: border-box;
  appearance: none;
  background-color: #fff !important;
  background: url(/image/manager/icon/select-arrow.svg) no-repeat center right 10px;
  background-size: 10px 10px;
}

.min-w85 {
  min-width: 85px;
}

.paging-area .empty-data{
  font-size: 15px !important;
  color: #717171;
}