@charset "utf-8";



/** 웹폰트 **/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");


/** 시뮬레이션 웹폰트 **/
/*
@font-face {
    font-family: 'Noto Sans KR';
    src: local('Noto Sans KR'), url(../font/Noto-Sans-KR.woff2) format('woff2'), url(../font/Noto-Sans-KR.woff) format('woff');
}
@font-face {
    font-family: 'Arial Black';
    src: local('Arial Black'), url(../font/Arial-Black.woff2) format('woff2'), url(../font/Arial-Black.woff) format('woff');
}
@font-face {
    font-family: 'Brush Script Std';
    src: local('Brush Script Std'), url(../font/BrushScriptStd.woff2) format('woff2'), url(../font/BrushScriptStd.woff) format('woff');
}
@font-face {
    font-family: 'Snell Roundhand Script Bold';
    src: local('Snell Roundhand Script Bold'), url(../font/SnellRoundhandScript-Bold.woff2) format('woff2'), url(../font/SnellRoundhandScript-Bold.woff) format('woff');
}
@font-face {
    font-family: 'Jersey M54 Regular';
    src: local('Jersey M54 Regular'), url(../font/Jersey-M54-Regular.woff2) format('woff2'), url(../font/Jersey-M54-Regular.woff) format('woff');
}
*/


/** 레이아웃 **/
html { font-size: 10px; }
body { margin: 0; padding: 0; font-family: 'Pretendard', sans-serif; font-size: 1.2rem; overflow: hidden; background-color: #f5f5f5; }
ul { margin: 0; padding: 0; list-style-type: none; }
a { text-decoration: none; color: inherit; transition-duration: 0.2s; }
img { max-width: 100%; }
@media screen and (max-width: 599px) {
    html { font-size: 9px; }
}
@media screen and (max-width: 499px) {
    html { font-size: 8px; }
}
@media screen and (max-width: 399px) {
    html { font-size: 8px; }
}


/** 스크롤바 **/
*::-webkit-scrollbar { width: 4px; }
*::-webkit-scrollbar-thumb { background-color: #ccc; border-radius: 4px; background-clip: padding-box; border: solid 0.1rem transparent; }


/** 프린트 **/
@page { size: A4 landscape; margin: 0; }


/** 컨테이너 **/
#container { width: 100%; height: 100vh; margin: 0 auto; transition-duration: 0.5s; }
#container.up { height: 76vh; }
#container.down { height: 92vh; }
#container.draft { width: 100vw; height: 100vh; }



/** 프로그레스바 **/
.progress-bar-container { display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 50rem; padding: 0 5rem; z-index: 100; }
.progress-bar-container .logo { max-width: 25rem; text-align: center; animation-name: heartBeat; animation-duration: 3s; animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55); animation-iteration-count: infinite; }
.progress-bar-container #progress-bar { width: 100%; height: 1rem; margin-top: 3rem; border-radius: 1rem; border: solid 0.1rem #999; appearance: none; }
.progress-bar-container #progress-bar::-webkit-progress-bar { background-color: #fff; border-radius: 1rem; }
.progress-bar-container #progress-bar::-webkit-progress-value { background-color: #999; border-radius: 1rem; }
.progress-bar-container #progress-percent { position: absolute; right: 0; bottom: 2.2rem; font-weight: 500; font-size: 1.8rem; color: #000; }
.progress-bar-container label { font-size: 1.5rem; color: #777; margin-top: 1rem; }
@media screen and (max-width: 1000px) {
    .progress-bar-container { width: calc(100% - 14rem); }
}


/** 로고 애니메이션 **/
@keyframes heartBeat {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    18% {
        transform: scale(1.12);
        opacity: 1;
    }
    28% {
        transform: scale(1.0);
        opacity: 0.95;
    }
    45% {
        transform: scale(1.08);
        opacity: 1;
    }
    60% {
        transform: scale(1.0);
        opacity: 0.95;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/** 모달 레이어 **/
.modal { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); box-shadow: 0.2rem 0.2rem 0.7rem 0 rgba(0, 0, 0, 1); z-index: 999; opacity: 0; visibility: hidden; transition-duration: 0.5s; }
.modal .modal-wrap { display: inline-block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 0.5rem; background-color: #fff; overflow: hidden; }
.modal .modal-wrap .contents { min-width: 20rem; font-size: 1.5rem; margin: 3rem; color: #777; }
.modal .modal-wrap .buttons { display: flex; }
.modal .modal-wrap .buttons .btn { font-size: 1.5rem; font-weight: 600; border: none; background: none; padding: 1rem; cursor: pointer; transition-duration: 0.5s; }
.modal .modal-wrap .buttons .btn.btn-gray { background-color: #eee; color: #333; }
.modal .modal-wrap .buttons .btn.btn-gold { background-color: #b8901f; color: #fff; }
.modal .modal-wrap .buttons .btn:hover { background-color: #333; color: #fff; }
.modal.on { opacity: 1; visibility: visible; }
.modal.type-confirm .modal-wrap .buttons .btn { width: 50%; }
.modal.type-alert .modal-wrap .buttons .btn { width: 100%; }


/** 약관 동의 **/
#termsLayer { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); transition-duration: 0.5s; opacity: 0; visibility: hidden; z-index: 102; }
#termsLayer .layerWrap { position: absolute; left: 50%; top: 50%; width: 100%; height: 100%; max-width: 85rem; max-height: 80rem; transform: translate(-50%, -50%); background-color: #fff; border-radius: 2rem; box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5); }
#termsLayer .layerWrap h3 { padding: 2rem; margin: 0; text-align: center; font-size: 2.4rem; }
#termsLayer .layerWrap h3 em { display: block; font-size: 2rem; letter-spacing: -0.05em; font-style: normal; color: #999; }
#termsLayer .layerWrap .contents { height: calc(100% - 12rem); padding: 0 2rem 2rem 2rem; }
#termsLayer .layerWrap .contents .text { height: calc(100% - 9rem); white-space: pre-wrap; line-height: 1.8; overflow-y: auto; background-color: #f5f5f5; padding: 2rem; font-size: 1.5rem; }
#termsLayer .layerWrap .contents .text p { margin: 0; padding: 0; }
#termsLayer .layerWrap .contents .button { text-align: center; padding: 2.3rem 0; }
#termsLayer .layerWrap .contents .button label { font-size: 1.6rem; font-weight: bold; margin: 0 1rem; cursor: pointer; }
#termsLayer.on { opacity: 1; visibility: visible; }


/** 컨트롤 헬퍼 **/
#controlsHelper { display: flex; align-items: center; position: fixed; left: 50%; top: 1rem; transform: translate(-50%, 0); padding: 1rem; background-color: rgba(0, 0, 0, 0.2); }
#controlsHelper > span { font-size: 1.2rem; margin: 0 1rem; color: #000; }
#controlsHelper .js-cameraPositionCopy { display: inline-flex; align-items: center; height: 2rem; font-size: 1.1rem; padding: 0 0.8rem; background-color: #000; color: #fff; border: none; cursor: pointer; }
#controlsHelper .js-previewMapImage { display: none; align-items: center; height: 2rem; font-size: 1.1rem; padding: 0 0.8rem; margin-left: 1rem; background-color: orangered; color: #fff; border: none; cursor: pointer; }
#controlsHelper .js-previewMapImage.on { display: inline-flex; }
#controlsHelper #cameraPositionData { width: 10rem; height: 2rem; border: none; background-color: #eaeaea; padding: 0 1rem; }
@media screen and (max-width: 1000px) {
    #controlsHelper { left: 1rem; top: 16.5rem; transform: translate(-0, -0); }
}


/** 상품 정보 **/
#goodsInfo { display: flex; align-items: center; position: absolute; left: 3.5rem; top: 2rem; z-index: 101; }
#goodsInfo .logo { display: inline-block; width: 5rem; height: 5rem; border-radius: 50%; border: solid 0.1rem #ccc; margin-right: 1rem; background: url("../image/logo_small.png") no-repeat center; background-size: 80%; }
#goodsInfo .text { line-height: 1.4; padding-left: 1rem; border-left: solid 0.3rem #000; }
#goodsInfo .text h3 { margin: 0; font-weight: 400; font-size: 1.4rem; color: #000; letter-spacing: 0.03em; }
#goodsInfo .text .goodsName { font-weight: 400; font-size: 1.4rem; color: #000; letter-spacing: 0.03em; }
#goodsInfo .text .goodsPrice { font-weight: 700; font-size: 1.4rem; color: #000; letter-spacing: 0.03em; }


/** 옵션 정보 : 공통 **/
#optionsInfo { position: absolute; left: 0; bottom: 0; width: 100%; background-color: #fff; transition-duration: 0.2s; z-index: 101; }
#optionsInfo ul { width: 100%; margin: 0 auto; white-space: nowrap; transform: translateX(0%); transition: transform 0.5s ease-out; }
#optionsInfo ul li { display: inline-block; width: 100%; height: 24vh; line-height: 1.4; transition: opacity 0.5s ease-out; opacity: 0; pointer-events: none; vertical-align: top; }
#optionsInfo ul li.active { opacity: 1; pointer-events: fill; }
#optionsInfo ul li .optionsName { width: 40rem; text-align: center; font-weight: 400; font-size: 1.4rem; color: #6b6b6b; margin: 2rem auto 0 auto; }
#optionsInfo ul li .optionsCount { width: 40rem; text-align: center; font-weight: 400; font-size: 1.4rem; color: #999; margin: 0 auto; }
#optionsInfo ul li .optionsCount strong { color: #6b6b6b; }
#optionsInfo ul li .optionsCount strong::before { content: '/'; margin: 0 0.2rem; color: #999; font-weight: 400; }
#optionsInfo ul li .optionsChoice { display: flex; justify-content: center; text-align: center; margin: 2rem 0; }
#optionsInfo ul li .optionsChoice a { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; position: relative; min-width: 10rem; height: 2.5rem; margin: 1.5rem 0.5rem; border-radius: 1.4rem; border: solid 0.1rem #ccc; background-color: #fff; }
#optionsInfo ul li .optionsChoice a::after { content: ''; display: inline-block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; border-radius: 1.4rem; background-color: #ccc; z-index: -1; }
#optionsInfo ul li .optionsChoice a .name { font-weight: 400; font-size: 1.3rem; color: #6b6b6b; margin: 0 1rem; }
#optionsInfo ul li .optionsChoice a.on::after { border: solid 0.3rem #ccc; }
#optionsInfo ul li .optionsChoice a.soldOut { border-color: red; }
#optionsInfo ul li .optionsChoice a.soldOut .name { color: red; }
#optionsInfo ul li .optionsChoice a.soldOut .name::after { content: '(품절)'; margin-left: 0.3rem; }
#optionsInfo ul li .noticeText { width: 40rem; text-align: center; font-weight: 400; font-size: 1.4rem; color: #6b6b6b; margin: -2rem auto 0 auto; }
#optionsInfo .control { display: flex; justify-content: space-between; position: absolute; left: 50%; top: 2.5rem; transform: translate(-50%, 0); width: 50rem; pointer-events: none; }
#optionsInfo .control .arrow { width: 3rem; height: 3rem; pointer-events: fill; background: url("../image/icon_arrow_right.svg") no-repeat center; background-size: 80%; cursor: pointer; }
#optionsInfo .control .arrow.prev { transform: rotate(180deg); }
#optionsInfo .toggleButton { position: absolute; left: 50%; top: -2rem; transform: translate(-50%, 0); background-color: #fff; border: none; border-radius: 1.5rem 1.5rem 0 0; padding: 1rem 4rem; transition-duration: 0.2s; cursor: pointer; }
#optionsInfo .toggleButton::after { content: ''; position: absolute; left: 50%; top: 0.8rem; transform: translate(-50%, 0); width: 0; height: 0; border-left: 0.7rem solid transparent; border-right: 0.7rem solid transparent; border-top: 0.7rem solid #444; }
#optionsInfo.hide { bottom: -16vh; }
#optionsInfo.hide .toggleButton::after { transform: translate(-50%, 0) rotate(180deg); }
@media screen and (max-width: 1000px) {
    #optionsInfo ul li { width: calc(100% - 4rem); padding: 0 2rem; overflow: hidden; }
    #optionsInfo ul li .optionsChoice { justify-content: flex-start; overflow-x: auto; }
    #optionsInfo ul li .optionsChoice::-webkit-scrollbar { display: none; }
    #optionsInfo ul li .optionsChoice a:first-child { margin-left: auto; }
    #optionsInfo ul li .optionsChoice a:last-child { margin-right: auto; }
    #optionsInfo ul li .optionsChoice.textEffect .thirdMenu { justify-content: center; width: 100%; }
    #optionsInfo ul li .optionsChoice.textEffect .thirdMenu > div { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
    #optionsInfo ul li .optionsChoice.textEffect .thirdMenu > div::-webkit-scrollbar { display: none; }
    #optionsInfo ul li .optionsChoice.textEffect .thirdMenu > div a:first-child { margin-left: auto; }
    #optionsInfo ul li .optionsChoice.textEffect .thirdMenu > div a:last-child { margin-right: auto; }
}
@media screen and (max-width: 499px) {
    #optionsInfo .control { width: 100%; }
}
@media screen and (max-height: 700px) {
    #optionsInfo ul li { height: auto; }
}


/** 옵션 정보 : 색상 변경 **/
#optionsInfo ul li .colorOne a,
#optionsInfo ul li .colorRoughness a,
#optionsInfo ul li .colorAllChange a,
#optionsInfo ul li .colorMultiple a,
#optionsInfo ul li .modelsChange a.thumbnails { width: 4.5rem; min-width: inherit; margin: 0.5rem 1rem; padding-bottom: 2rem; border: none; background-color: transparent; }
#optionsInfo ul li .colorOne a::after,
#optionsInfo ul li .colorRoughness a::after,
#optionsInfo ul li .colorAllChange a::after,
#optionsInfo ul li .colorMultiple a::after,
#optionsInfo ul li .modelsChange a.thumbnails::after { display: none; }
#optionsInfo ul li .colorOne a .box,
#optionsInfo ul li .colorRoughness a .box,
#optionsInfo ul li .modelsChange a.thumbnails .box { background-repeat: no-repeat; background-position: center; background-size: 100%; }
#optionsInfo ul li .colorOne a .box,
#optionsInfo ul li .colorRoughness a .box,
#optionsInfo ul li .colorAllChange a .box,
#optionsInfo ul li .colorMultiple a .box,
#optionsInfo ul li .modelsChange a.thumbnails .box { position: relative; width: 2.8rem; height: 2.8rem; margin: 0 auto; border-radius: 0.5rem; border: solid 0.1rem #fff; }
#optionsInfo ul li .colorOne a .box::after,
#optionsInfo ul li .colorRoughness a .box::after,
#optionsInfo ul li .colorAllChange a .box::after,
#optionsInfo ul li .colorMultiple a .box::after,
#optionsInfo ul li .modelsChange a.thumbnails .box::after { content: ''; display: inline-block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 2.8rem; height: 2.8rem;  border-radius: 0.5rem; background-color: #ccc; z-index: -1; }
#optionsInfo ul li .colorOne a .box.white,
#optionsInfo ul li .colorRoughness a .box.white,
#optionsInfo ul li .colorAllChange a .box.white,
#optionsInfo ul li .colorMultiple a .box.white { border-color: #ccc; }
#optionsInfo ul li .colorOne a.on .box,
#optionsInfo ul li .colorRoughness a.on .box,
#optionsInfo ul li .colorAllChange a.on .box,
#optionsInfo ul li .colorMultiple a.on .box,
#optionsInfo ul li .modelsChange a.thumbnails.on .box { border-color: #ccc; }
#optionsInfo ul li .colorOne a.on .box::after,
#optionsInfo ul li .colorRoughness a.on .box::after,
#optionsInfo ul li .colorAllChange a.on .box::after,
#optionsInfo ul li .colorMultiple a.on .box::after,
#optionsInfo ul li .modelsChange a.thumbnails.on .box::after { border: solid 0.3rem #ccc; }
#optionsInfo ul li .modelsChange a:not(.thumbnails) .name { margin: 0; color: inherit; }


/** 옵션 정보 : 텍스트 입력 **/
#optionsInfo ul li .textInput a,
#optionsInfo ul li .textNumberInput a { display: block; min-width: 20rem; height: 3rem; border-radius: 0.8rem; overflow: hidden; }
#optionsInfo ul li .textInput a::after,
#optionsInfo ul li .textNumberInput a::after { display: none; }
#optionsInfo ul li .textInput a .name,
#optionsInfo ul li .textNumberInput a .name { display: none; }
#optionsInfo ul li .textInput a input,
#optionsInfo ul li .textNumberInput a input { display: flex; align-items: center; width: calc(100% - 2rem); height: 100%; padding: 0 1rem; border: none; font-weight: 400; font-size: 1.3rem; color: #6b6b6b; text-align: center; }
#optionsInfo ul li .textInput a input:focus,
#optionsInfo ul li .textNumberInput a input:focus { outline: none; }


/** 옵션 정보 : 텍스트 효과 **/
#optionsInfo ul li .textEffect { flex-direction: column; align-items: center; }
#optionsInfo ul li .textEffect .effectGroup { display: flex; }
#optionsInfo ul li .textEffect .effectGroup.default .item { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; position: relative; min-width: 10rem; height: 2.5rem; margin: 0.5rem 0.5rem; border-radius: 1.4rem; border: solid 0.1rem #ccc; background-color: #fff; font-weight: 400; font-size: 1.3rem; color: #6b6b6b; cursor: pointer; }
#optionsInfo ul li .textEffect .effectGroup.default .item::after { content: ''; display: inline-block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; border-radius: 1.4rem; background-color: #ccc; z-index: -1; }
#optionsInfo ul li .textEffect .effectGroup.default .item.on::after { border: solid 0.3rem #ccc; }
#optionsInfo ul li .textEffect .effectGroup.firstMenu .item { padding: 0 1rem; }
#optionsInfo ul li .textEffect .effectGroup.thirdMenu .item a { width: 4.5rem; min-width: inherit; margin: 0.5rem 1rem; padding-bottom: 2rem; border: none; background-color: transparent; }
#optionsInfo ul li .textEffect .effectGroup.thirdMenu .item a::after { display: none; }
#optionsInfo ul li .textEffect .effectGroup.thirdMenu .item a .box { position: relative; width: 2.8rem; height: 2.8rem; margin: 0 auto; border-radius: 0.5rem; border: solid 0.1rem #fff; }
#optionsInfo ul li .textEffect .effectGroup.thirdMenu .item a .box::after { content: ''; display: inline-block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 2.8rem; height: 2.8rem;  border-radius: 0.5rem; background-color: #ccc; z-index: -1; }
#optionsInfo ul li .textEffect .effectGroup.thirdMenu .item a .box.white { border-color: #ccc; }
#optionsInfo ul li .textEffect .effectGroup.thirdMenu .item a.on .box { border-color: #ccc; }
#optionsInfo ul li .textEffect .effectGroup.thirdMenu .item a.on .box::after { border: solid 0.3rem #ccc; }
#optionsInfo ul li .textEffect .effectGroup.secondMenu .item,
#optionsInfo ul li .textEffect .effectGroup.thirdMenu .item { display: none; }


/** 옵션 정보 : 이미지 업로드 **/
#optionsInfo ul li .imageUpload a,
#optionsInfo ul li .fileUpload a { display: block; min-width: 20rem; height: 3rem; border-radius: 0.8rem; }
#optionsInfo ul li .imageUpload a::after,
#optionsInfo ul li .fileUpload a::after { display: none; }
#optionsInfo ul li .imageUpload .js-files-wrap,
#optionsInfo ul li .fileUpload .js-files-wrap { display: flex; justify-content: flex-start; align-items: center; width: 100%; height: 100%; cursor: pointer; }
#optionsInfo ul li .imageUpload .js-files-wrap .title,
#optionsInfo ul li .fileUpload .js-files-wrap .title { display: flex; justify-content: center; align-items: center; height: 2rem; font-size: 1.2rem; color: #6b6b6b; border-radius: 0.3rem; background-color: #dcdcdc; margin: 0 0.5rem; padding: 0 0.5rem; }
#optionsInfo ul li .imageUpload .js-files-wrap .file-name,
#optionsInfo ul li .fileUpload .js-files-wrap .file-name { display: flex; align-items: center; font-size: 1.2rem; color: #6b6b6b; margin: 0 0.5rem; }
#optionsInfo ul li .imageUpload .js-files-wrap input[type=file],
#optionsInfo ul li .fileUpload .js-files-wrap input[type=file] { display: none; }


/** 요약 정보 **/
#summaryInfo { position: absolute; right: 0; top: 0; height: 100%; z-index: 101; }
#summaryInfo .summaryInfoWrap { height: 100%; }
#summaryInfo .summaryBox { position: relative; right: -4rem; width: 0; height: 100%; border-left: solid 0.1rem #ccc; background-color: rgba(255, 255, 255, 0.7); padding: 2rem; transition-duration: 0.2s; }
#summaryInfo .summaryBox h3 { display: flex; justify-content: center; align-items: center; position: relative; top: 6rem; width: 20rem; height: 3.5rem; border-radius: 1.75rem; margin: 0 auto; font-weight: 400; font-size: 1.6rem; color: #fff; background-color: #000; }
#summaryInfo .summaryBox ul { display: flex; flex-wrap: wrap; position: relative; top: 9rem; }
#summaryInfo .summaryBox ul li { display: inline-flex; flex-wrap: wrap; justify-content: space-between; position: relative; width: 50%; font-size: 1.5rem; color: #555; margin: 1.2rem 0; cursor: pointer; }
#summaryInfo .summaryBox ul li.text-cursor { cursor: text; }
#summaryInfo .summaryBox ul li .left { display: inline-flex; align-items: center; }
#summaryInfo .summaryBox ul li .right { display: inline-flex; align-items: center; }
#summaryInfo .summaryBox ul li .text { display: block; max-width: 14rem; margin-left: 0.5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#summaryInfo .summaryBox ul li .color { display: inline-block; width: 1.3rem; height: 1.3rem; border-radius: 50%; border: solid 0.1rem transparent; margin-left: 0.5rem; background-repeat: no-repeat; background-position: center; background-size: 100%; }
#summaryInfo .summaryBox ul li .color.white { border-color: #ccc; }
#summaryInfo .summaryBox ul li .color + .text { margin-left: 1rem; }
#summaryInfo .summaryBox ul li .price { margin-left: 0.5rem; color: red; }
#summaryInfo .summaryBox ul li .icon { width: 1.7rem; height: 1.7rem; margin-right: 3rem; background: url("../image/icon_check.svg") no-repeat center; background-size: 100%; }
#summaryInfo .summaryBox .colorCheck { display: flex; flex-wrap: wrap; position: relative; top: 9rem; }
#summaryInfo .summaryBox .colorCheck .items { display: inline-flex; flex-wrap: wrap; width: 50%; font-size: 1.5rem; color: #555; margin: 1.2rem 0; }
#summaryInfo .summaryBox .colorCheck .items .text { margin-left: 0.5rem; }
#summaryInfo .summaryBox .colorCheck .items .price { margin-left: 0.5rem; color: red; }
#summaryInfo .summaryBox .closeButton { position: absolute; top: 8.7rem; left: 2rem; width: 2rem; height: 2rem; font-size: 0; border-radius: 50%; border: solid 0.1rem #ccc; background: url("../image/icon_close.svg") no-repeat center; background-size: 40%; cursor: pointer; }
#summaryInfo .buttonBox { display: flex; align-items: center; position: absolute; top: 4rem; right: 3.5rem; z-index: -1; }
#summaryInfo .buttonBox .buttons { position: relative; width: auto; min-width: 10rem; height: 3.5rem; white-space: nowrap; padding: 0 1rem 0 3.5rem; margin-left: 0.5rem; border-radius: 1.75rem; background-color: #fff; border: solid 0.1rem #ccc; font-size: 1.4rem; color: #000; text-align: right; cursor: pointer; }
#summaryInfo .buttonBox .buttons::before { content: ''; display: inline-block; position: absolute; left: 1rem; top: 50%; transform: translate(0, -50%); width: 2rem; height: 2rem; background: no-repeat center; background-size: 70%; }
#summaryInfo .buttonBox .saveButton::before,
#summaryInfo .buttonBox .orderButton::before { background-image: url("../image/logo_small.png"); background-size: 100%; }
#summaryInfo .buttonBox .resetButton::before { background-image: url("../image/icon_reset.png"); background-size: 70%; }
#summaryInfo .buttonBox .modifyButton::before { background-image: url("../image/icon_update.svg"); background-size: 70%; }
#summaryInfo .buttonBox .openButton::before { background-image: url("../image/icon_open_menu.svg"); }
#summaryInfo.active .summaryBox { right: 0; width: 65rem; }
@media screen and (max-width: 1000px) {
    #summaryInfo .summaryBox { background-color: rgba(255, 255, 255, 1); }
    #summaryInfo .buttonBox { top: 12rem; }
}
@media screen and (max-width: 690px) {
    #summaryInfo.active .summaryBox { width: calc(100% - 4rem); }
}
@media screen and (max-width: 499px) {
    /*
    #summaryInfo .summaryBox ul { max-height: 47rem; overflow-y: auto; }
    #summaryInfo .summaryBox ul li { width: 100%; }
    */
}


/** 저장 정보 **/
#saveInfo { display: none; position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: #f5f5f5; z-index: 102; }
#saveInfo .saveInfoWrap { display: flex; position: absolute; left: 0; top: 0; width: 100%; height: 100%;  }
#saveInfo .saveInfoWrap h3 { display: none; }
#saveInfo .saveInfoWrap .saveBox { display: block; position: relative; width: 70%; padding: 5rem 0; overflow-y: auto; }
#saveInfo .saveInfoWrap .saveBox .saveBoxWrap { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; }
#saveInfo .saveInfoWrap .saveBoxWrap > div { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; margin: 3rem 0; }
#saveInfo .saveInfoWrap .saveBoxWrap > div > span { display: flex; align-items: center; font-weight: 500; font-size: 1.6rem; color: #000; }
#saveInfo .saveInfoWrap .saveBoxWrap .saveImages { display: block; position: relative; width: 100%; max-width: 130rem; margin: 0 auto; overflow: hidden; }
#saveInfo .saveInfoWrap .saveBoxWrap .saveImages .slick-arrow { position: absolute; top: 50%; transform: translate(0, -50%); width: 3rem; height: 3rem; font-size: 0; border: none; background-color: transparent; background-repeat: no-repeat; background-position: center; background-size: 100%; cursor: pointer; z-index: 10; }
#saveInfo .saveInfoWrap .saveBoxWrap .saveImages .slick-prev { left: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E"); }
#saveInfo .saveInfoWrap .saveBoxWrap .saveImages .slick-next { right: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E"); }
#saveInfo .saveInfoWrap .saveBoxWrap .sendMail > span > input { width: 100%; max-width: 15rem; height: 2.667rem; text-indent: 1rem; border: solid 1px #777; border-radius: 0.5rem; font-size: 1.4rem; color: #000; margin: 0 0.5rem; }
#saveInfo .saveInfoWrap .saveBoxWrap .sendMail > span > select { width: 100%; max-width: 10rem; height: 3rem; text-indent: 0.5rem; border: solid 1px #777; border-radius: 0.5rem; font-size: 1.4rem; color: #000; margin: 0 0.5rem; }
#saveInfo .saveInfoWrap .saveBoxWrap .sendMail > span > button { height: 3rem; padding: 0 1rem; border: solid 1px #777; border-radius: 0.5rem; font-size: 1.4rem; color: #000; background-color: #fff; cursor: pointer; white-space: nowrap; }
#saveInfo .saveInfoWrap .saveBoxWrap .snsShare { display: flex; justify-content: center; align-items: center; }
#saveInfo .saveInfoWrap .saveBoxWrap .snsShare > span { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
#saveInfo .saveInfoWrap .saveBoxWrap .snsShare > span > a { display: flex; justify-content: center; align-items: center; width: 3.5rem; height: 3.5rem; background-color: #646464; margin: 0 0 0 0.5rem; }
#saveInfo .saveInfoWrap .saveBoxWrap .snsShare > span > a:first-child { margin-left: 0.5rem; }
#saveInfo .saveInfoWrap .saveBoxWrap .snsShare > span > a > img { max-width: 50%; max-height: 60%; }
#saveInfo .saveInfoWrap .saveBoxWrap .snsShare > span > button { position: relative; height: 3.5rem; padding: 0 1rem 0 3.5rem; margin: 0 0.5rem; border-radius: 1.75rem; background-color: #fff; border: solid 0.1rem #ccc; font-size: 1.4rem; color: #000; text-align: right; cursor: pointer; }
#saveInfo .saveInfoWrap .saveBoxWrap .snsShare > span > button::before { content: ''; display: inline-block; position: absolute; left: 1rem; top: 50%; transform: translate(0, -50%); width: 2rem; height: 2rem; background: url("../image/logo_small.png") no-repeat center; background-size: 100%; }
#saveInfo .saveInfoWrap .saveBoxWrap .buttonWrap { display: flex; justify-content: center; align-items: center; }
#saveInfo .saveInfoWrap .saveBoxWrap .buttonWrap > button { position: relative; height: 3.5rem; padding: 0 1rem 0 3.5rem; margin: 0 0.5rem; border-radius: 1.75rem; background-color: #fff; border: solid 0.1rem #ccc; font-size: 1.4rem; color: #000; text-align: right; cursor: pointer; }
#saveInfo .saveInfoWrap .saveBoxWrap .buttonWrap > button::before { content: ''; display: inline-block; position: absolute; left: 1rem; top: 50%; transform: translate(0, -50%); width: 2rem; height: 2rem; background: url("../image/logo_small.png") no-repeat center; background-size: 100%; }
#saveInfo .saveInfoWrap .saveBoxWrap .buttonWrap > .resetButton::before { background-image: url("../image/icon_reset.png"); background-size: 70%; }
#saveInfo .saveInfoWrap .saveBoxWrap .buttonWrap > .saveImageButton::before { background-image: url("../image/icon_save_image.png"); background-size: 70%; }
#saveInfo .saveInfoWrap .infoBox { width: 30%; height: 100%; background-color: #f5f5f5; padding: 5rem 3rem; box-sizing: border-box; overflow-y: auto; border-left: solid 1px #eee; }
#saveInfo .saveInfoWrap .infoBox .saveTopButtons { display: flex; gap: 1rem; margin-bottom: 3rem; }
#saveInfo .saveInfoWrap .infoBox .saveTopButtons button { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; height: 4rem; border: 1px solid #ccc; background: #fff; border-radius: 0.5rem; font-size: 1.3rem; font-weight: 500; cursor: pointer; transition: background 0.2s; }
#saveInfo .saveInfoWrap .infoBox .saveTopButtons button:hover { background: #f0f0f0; }
#saveInfo .saveInfoWrap .infoBox .saveTopButtons button img { width: 1.5rem; height: auto; }
#saveInfo .saveInfoWrap .infoBox .goods { display: flex; align-items: center; margin-bottom: 3rem; }
#saveInfo .saveInfoWrap .infoBox .goods .logo { display: inline-block; width: 5rem; height: 5rem; border-radius: 50%; border: solid 0.1rem #ccc; margin-right: 1rem; background: url("../image/logo_small.png") no-repeat center; background-size: 80%; }
#saveInfo .saveInfoWrap .infoBox .goods .text { line-height: 1.4; padding-left: 1rem; border-left: solid 0.3rem #000; }
#saveInfo .saveInfoWrap .infoBox .goods .text h3 { margin: 0; font-weight: 400; font-size: 1.4rem; color: #000; letter-spacing: 0.03em; }
#saveInfo .saveInfoWrap .infoBox .goods .text .goodsName { font-weight: 400; font-size: 1.4rem; color: #000; letter-spacing: 0.03em; }
#saveInfo .saveInfoWrap .infoBox .goods .text .goodsPrice { font-weight: 700; font-size: 1.4rem; color: #000; letter-spacing: 0.03em; }
#saveInfo .saveInfoWrap .infoBox .menu { margin: 2rem 0; overflow-y: auto; }
#saveInfo .saveInfoWrap .infoBox .menu li { margin-bottom: 0.5rem; font-size: 1.4rem; color: #444; }
#saveInfo .saveInfoWrap .infoBox .menu li strong { display: inline-block; color: #000; margin-bottom: 0.5rem; }
#saveInfo .saveInfoWrap .infoBox .menu li .text { color: #666; }
#saveInfo .saveInfoWrap .infoBox .menu li .color { display: inline-block; width: 1.3rem; height: 1.3rem; border-radius: 50%; margin: 0 0.5rem; vertical-align: middle; border: 1px solid #ddd; }
#saveInfo .saveInfoWrap .infoBox .menu li .price { display: none; }
#saveInfo.active { display: block; }
@media screen and (max-width: 1000px) {
    #saveInfo .saveInfoWrap { flex-direction: column; overflow-y: auto; }
    #saveInfo .saveInfoWrap .saveBox { display: block; width: 100%; height: auto; padding: 3rem 0; overflow-y: visible; }
    #saveInfo .saveInfoWrap .infoBox { width: 100%; height: auto; overflow-y: visible; padding-top: 0; }
    #saveInfo .saveInfoWrap .infoBox .goods { justify-content: center; }
    #saveInfo .saveInfoWrap .saveBox .saveBoxWrap { position: static; transform: translate(0, 0); width: 90%; height: auto; white-space: normal; margin: 0 auto; }
    #saveInfo .saveInfoWrap .saveBox .saveBoxWrap .saveImages,
    #saveInfo .saveInfoWrap .saveBox .saveBoxWrap > div { margin: 1rem 0; }
    #saveInfo .saveInfoWrap .saveBox .saveBoxWrap .snsShareWrap { flex-direction: column; }
    #saveInfo .saveInfoWrap .saveBox .saveBoxWrap > div > span { margin: 0.5rem 0; display: block; width: 100%; text-align: center; }
    #saveInfo .saveInfoWrap .saveBox .saveBoxWrap .buttonWrap { margin-top: 1.5rem; }
    #saveInfo .saveInfoWrap .saveBox .saveBoxWrap > .buttonWrap > button { margin: 0.5rem; }
}


/** 시안용 정보 **/
#draftTopLayer { position: absolute; left: 0; top: 0; width: 100%; text-align: center; background-color: #646464; font-weight: 500; font-size: 2.5rem; color: #fff; padding: 1.5rem 1rem; z-index: 101; }
#draftTopLayer .logo { position: absolute; left: 2rem; top: 50%; transform: translate(0, -50%); }
#draftTopLayer.hide { display: none; }
#draftBottomLayer { position: absolute; left: 0; bottom: 5rem; width: 100%; text-align: center; font-weight: 400; font-size: 2rem; color: #969696; z-index: 101; }
#draftBottomLayer.hide { display: none; }
@media screen and (max-width: 1200px) {
    #draftTopLayer { width: calc(100% - 2rem); padding: 2rem 1rem; word-break: break-all; }
    #draftTopLayer .logo { display: block; position: static; margin: 2rem 0 0 0; }
}
@media screen and (max-width: 399px) {
    #draftTopLayer { font-size: calc(3rem * 0.8); padding: 1.7rem 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    #draftBottomLayer { font-size: calc(2rem * 0.8); }
}


/** 언어 선택 **/
.languageBox { display: flex; gap: 5px; position: absolute; top: 1rem; right: 3.5rem; margin-bottom: 10px; z-index: -1; }
.languageBox button { width: 30px; height: 20px; padding: 0; border: 1px solid #ddd; background: none; cursor: pointer; overflow: hidden; }
.languageBox button svg { width: 100%; height: 100%; display: block; }
@media screen and (max-width: 1000px) {
    .languageBox { top: 8.5rem; }
}


/** 카메라 가이드 **/
#cameraControlGuide { position: fixed; left: 50%; top: calc(50% - 12.75rem); transform: translate(-50%, -50%); z-index: 1000; pointer-events: none; opacity: 0; transition: opacity 1s ease-in-out; pointer-events: none; }
#cameraControlGuide.on { opacity: 1; }
#cameraControlGuide img { width: 15rem; height: auto; }