.loading-image-layer {margin:0; padding:0; background:#fff;}

.loading-image-layer>ul {position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); margin:0; padding:0; display:flex;}
.loading-image-layer>ul li {list-style:none; width:20px; height:20px; background:#c1cbda; margin:0 5px; border-radius:50%; animation:animate 1.4s linear infinite;}
@keyframes animate {
	0%{transform:translateY(0);}
	60%{transform:translateY(0);}
	80%{transform:translateY(-20px);}
	100%{transform:translateY(0);}
}
.loading-image-layer>ul li:nth-child(1) {animation-delay:0s;}
.loading-image-layer>ul li:nth-child(2) {animation-delay:-1.2s;}
.loading-image-layer>ul li:nth-child(3) {animation-delay:-1s;}
.loading-image-layer>ul li:nth-child(4) {animation-delay:-.8s;}
.loading-image-layer>ul li:nth-child(5) {animation-delay:-.6s;}




/* 바코드 스캔중 */
.barcode_scan_loading_box {}
.barcode_scan_loading_box .barcode_scan_loading {margin:0; padding:0; background:#fff;}
.barcode_scan_loading_box .barcode_scan_loading>ul {position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); margin:0; padding:0; display:flex;}
.barcode_scan_loading_box .barcode_scan_loading>ul li {list-style:none; width:20px; height:20px; background:#c1cbda; margin:0 5px; border-radius:50%; animation:animate 1.4s linear infinite;}
.barcode_scan_loading_box .barcode_scan_loading>ul li:nth-child(1) {animation-delay:0s;}
.barcode_scan_loading_box .barcode_scan_loading>ul li:nth-child(2) {animation-delay:-1.2s;}
.barcode_scan_loading_box .barcode_scan_loading>ul li:nth-child(3) {animation-delay:-1s;}
.barcode_scan_loading_box .barcode_scan_loading>ul li:nth-child(4) {animation-delay:-.8s;}
.barcode_scan_loading_box .barcode_scan_loading>ul li:nth-child(5) {animation-delay:-.6s;}
.barcode_scan_loading_box .progress_btn { position:absolute; top:35px; left:50%; transform:translate(-50%, -50%); display:flex; align-items:center; gap:10px; z-index:2001; }
.barcode_scan_loading_box .progress_btn button { display:flex; align-items:center; justify-content:center; gap:10px; background:#000; color:#fff; font-weight:500; }
.barcode_scan_loading_box .progress_btn button:hover {background:#000;}
.barcode_scan_loading_box .progress_btn button span { width:20px; height:20px; display:inline-block; background:url('/image/barcode.svg')no-repeat; background-size:40px; }
.barcode_scan_loading_box .progress_btn button.going_btn span { width:15px; height:15px; background-size:30px; }
.barcode_scan_loading_box .progress_btn button.stop_btn { background:#ed2d2d; }
.barcode_scan_loading_box .progress_btn button.stop_btn span { background-position:-20px 0; }