:root {
    --primary-color: #f37022;
    --dark-color: #222;
}

@font-face {
    font-family: "Pretendard-Regular";
    /* src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff"); */
    src: url(../font/Pretendard-Regular.woff);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

html {
    font-size: 16px;
    font-family: "Pretendard-Regular";
    translate: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Pretendard-Regular";
}

a {
    color: #000;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.flx {
    display: flex;
    align-items: center;
}

.flx-col {
    display: flex;
    flex-direction: column;
}

.flx-start {
    display: flex;
    align-items: flex-start;
}

#daenakPage {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.header {
    position: sticky;
    width: 100%;
    background: var(--primary-color);
    border: 3px solid var(--dark-color);
    height: 50px;
    box-shadow: 0 5px 6px #99999980;
    z-index: 2;
}

.header .logo {
    width: 50px;
    height: 100%;
    cursor: pointer;
}

.header .content-wrap {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.header .nav {
    gap: 15px;
    height: 100%;
}

.header .nav .nav-item {
    padding: 15px;
    cursor: pointer;
}

.header .nav .nav-item:last-child {
    padding-right: 0;
}

.header .hamburger-btn {
    border: none;
    width: 28px;
    height: 21px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    padding: 0;
    display: none;
}

.header .hamburger-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/hamburger-icon.svg) center/contain no-repeat;
}

.footer {
    width: 100%;
    background: #cacaca;
    height: 44px;
}

.footer .content-wrap {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    justify-content: space-between;
    font-size: 0.688rem;
}

.footer .content-wrap .l-wrap span:not(:last-child)::after {
    content: " | ";
    margin: 0 10px;
    cursor: auto;
}

.footer .content-wrap .flx-col {
    gap: 3px;
}

.footer .content-wrap .r-wrap {
    align-items: flex-end;
}

.footer .content-wrap .r-wrap span {
    cursor: pointer;
}

.sidebar-wrap .sidebar-ad {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
}

.sidebar-wrap .sidebar-ad .ad {
    width: 320px;
    height: 200px;
}

.sidebar {
    background: #e8e8e8;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 25%);
}

.sidebar .profile {
    background: var(--primary-color);
    border-radius: 5px 5px 0 0;
    border: 2px solid var(--dark-color);
    height: 72px;
    padding: 8px;
    position: relative;
}

.hide-menu .close {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1;
    width: 16px;
    height: 16px;
}

.hide-menu .close::before {
    content: "";
    background: url(../img/close-icon.svg) center/contain no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.3s;
}

.hide-menu .close:hover::before {
    transform: scale(1.15);
}

.hide-menu .profile {
    background: var(--primary-color);
    height: 120px;
    padding: 20px;
    padding-top: 48px;
    position: relative;
    border: 2px solid var(--dark-color);
}

.sidebar .profile .user-info,
.hide-menu .profile .user-info {
    position: relative;
    justify-content: space-between;
}

.sidebar .profile .user-info > span,
.hide-menu .profile .user-info > span {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 0.75rem;
    padding-right: 13px;
}

.sidebar .profile .user-info > span::after,
.hide-menu .profile .user-info > span::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar .profile.member .user-info > span::after,
.hide-menu .profile.member .user-info > span::after {
    background: url(../img/logout-icon.svg) center/contain no-repeat;
}

.sidebar .profile.non-member .user-info > span::after,
.hide-menu .profile.non-member .user-info > span::after {
    background: url(../img/login-icon.svg) center/contain no-repeat;
}

.sidebar .profile .user-info > span:hover,
.hide-menu .profile .user-info > span:hover {
    text-decoration: underline;
    cursor: pointer;
}

.sidebar .profile .greeting,
.hide-menu .profile .greeting {
    position: relative;
    font-size: 0.875rem;
    align-items: flex-end;
    flex: 1;
}

.sidebar .profile.member .greeting,
.hide-menu .profile.member .greeting {
    padding-left: 25px;
}

.sidebar .profile.member .greeting::before,
.hide-menu .profile.member .greeting::before {
    content: "";
    width: 22px;
    height: 22px;
    background: url(../img/profile-member-icon.svg) center/contain no-repeat;
    position: absolute;
    top: 1px;
    left: 0;
}

.sidebar .profile .nickname,
.hide-menu .profile .nickname {
    max-width: 50%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    font-weight: 900;
    font-size: 1.125rem;
    margin-right: 3px;
}

.sidebar .profile .my-menu {
    position: absolute;
    background: #fff;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: calc(100% - 16px);
    border: 1px solid #c9c9c9;
    height: 65px;
}

.hide-menu .profile .my-menu {
    position: absolute;
    background: #fff;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: calc(100% - 40px);
    border: 1px solid var(--dark-color);
    height: 65px;
}

.sidebar .profile .my-menu > div,
.hide-menu .profile .my-menu > div {
    width: 25%;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 5px;
    font-size: 0.813rem;
    cursor: pointer;
}

.sidebar .profile .my-menu > div img,
.hide-menu .profile .my-menu > div img {
    width: 30px;
    height: 30px;
    transition: 0.3s;
}

.sidebar .profile .my-menu > div.disabled,
.hide-menu .profile .my-menu > div.disabled {
    background: #cbcbcb;
    opacity: 0.5;
    cursor: default;
}

.sidebar .profile .my-menu > div:not(.disabled):hover img,
.hide-menu .profile .my-menu > div:not(.disabled):hover img {
    transform: scale(1.1);
}

.hide-menu .contents {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    justify-content: space-between;
    height: calc(100% - 120px);
    background: #e8e8e8;
}

.hide-menu .contents::-webkit-scrollbar {
    display: none;
}

.hide-menu .contents .reward {
    justify-content: center;
    padding: 20px;
    padding-top: 50px;
}

.hide-menu .contents .reward > div {
    background: #d9d9d9;
    border-radius: 5px;
    display: inline-block;
    align-items: center;
    padding: 5px 20px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
}

.hide-menu .contents .reward > div > strong {
    position: relative;
    padding-left: 20px;
}

.hide-menu .contents .reward > div > strong::before {
    content: "";
    background: url(../img/graph-icon.svg) center/contain no-repeat;
    width: 15px;
    height: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.hide-menu .contents .btn-wrap {
    background: #f6f6f6;
    padding: 30px;
    gap: 15px;
}

.hide-menu .contents .btn-wrap button {
    border: 1px solid #acacac;
    border-radius: 10px;
    text-align: center;
    font-size: 0.75rem;
    background: #fff;
    height: 43px;
    line-height: 43px;
    transition: 0.3s;
    color: #000;
}

.hide-menu .contents .btn-wrap button:hover {
    transform: scale(1.03);
}

.hide-menu .contents .logo-wrap {
    align-items: center;
    gap: 10px;
    margin: 20px 0 15px;
    font-size: 0.813rem;
}

.bottom-chat {
    width: 100%;
    max-width: 485px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.bottom-chat .thumb {
    height: 42px;
    background: #efefef;
    border-radius: 0 20px 0 0;
    border: 2px solid var(--primary-color);
    padding: 0 30px;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.bottom-chat .thumb .switch {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 15px;
    top: -15px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--primary-color);
}

.bottom-chat .thumb .switch::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 9px;
    background: url(../img/slide-up-icon.svg) center/contain no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

.bottom-chat .thumb .switch.active {
    background: #9b9b9b;
}

.bottom-chat .thumb .switch.active::before {
    background: url(../img/slide-down-icon.svg) center/contain no-repeat;
}

.bottom-chat .collapse {
    display: none;
}

.bottom-chat .chat-area {
    margin: 0;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-top: none;
}

.bottom-chat .chat-area > h3 {
    display: none;
}

.bottom-chat .chat-area .chat {
    margin: 8px 8px 5px;
}

.bottom-chat .chat-area .input-wrap {
    margin: 0 8px 8px;
}

.chat-area .divide {
    margin: 15px 0;
    border-top: 1px solid var(--primary-color);
    position: relative;
}

.chat-area .divide::before {
    content: "이전 채팅";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    padding: 0 8px;
    background: #f6f6f6;
    color: var(--primary-color);
}

.chat-area {
    margin: 10px;
    margin-top: 44px;
    position: relative;
}

.chat-area .disabled-mask {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffffb3;
    padding: 10px;
    z-index: 1;
}

.chat-area .disabled-mask .loading-txt {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1px;
    font-size: 14px;
    color: var(--primary-color);
}

.chat-area .disabled-mask .loading-txt span {
    font-weight: bold;
    animation: wave 1.5s ease-in-out infinite;
}

.chat-area .disabled-mask .loading-txt span:nth-child(1) {
    animation-delay: 0.1s;
}

.chat-area .disabled-mask .loading-txt span:nth-child(2) {
    animation-delay: 0.13s;
    margin-right: 3px;
}

.chat-area .disabled-mask .loading-txt span:nth-child(3) {
    animation-delay: 0.16s;
}

.chat-area .disabled-mask .loading-txt span:nth-child(4) {
    animation-delay: 0.19s;
}

.chat-area .disabled-mask .loading-txt span:nth-child(5) {
    animation-delay: 0.22s;
}

.chat-area .disabled-mask .loading-txt span:nth-child(6) {
    animation-delay: 0.25s;
}

.chat-area .disabled-mask .loading-txt span:nth-child(7) {
    animation-delay: 0.28s;
}

.chat-area .disabled-mask .loading-txt span:nth-child(8) {
    animation-delay: 0.31s;
}

@keyframes wave {
    0%,
    40%,
    100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.chat-area > h3 {
    text-align: center;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    height: 30px;
    line-height: 30px;
}

.chat-area > p {
    text-align: center;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.2rem;
    background: #fff;
    color: red;
    padding: 5px 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.chat-area .chat {
    background: #f6f6f6;
    padding: 20px;
    height: 400px;
    max-height: 60vh;
    margin-bottom: 5px;
    box-sizing: border-box;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.chat-area .chat .bubble-wrap:not(:last-child) {
    margin-bottom: 20px;
}

.chat-area .chat .bubble-wrap.user {
    align-items: flex-end;
}

.chat-area .chat .bubble-wrap > span {
    font-size: 0.75rem;
    position: relative;
    margin-bottom: 8px;
}

.chat-area .chat .bubble-wrap.staff > span {
    padding-left: 30px;
}

.chat-area .chat .bubble-wrap.user > span {
    padding-right: 30px;
}

.chat-area .chat .bubble-wrap > span::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 23px;
    top: -5px;
}

.chat-area .chat .bubble-wrap.staff > span::before {
    background: url(../img/staff-icon.svg) center/contain no-repeat;
    left: 0;
}

.chat-area .chat .bubble-wrap.user > span::before {
    background: url(../img/user-icon.svg) center/contain no-repeat;
    right: 0;
}

.chat-area .chat .bubble-wrap > small {
    margin-top: 5px;
    font-size: 0.688rem;
}

.chat-area .chat .bubble-wrap .bubble {
    border: 2px solid #eaeaea;
    background: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    width: fit-content;
    font-size: 0.813rem;
    line-height: 1.2rem;
}

.chat-area .chat .bubble-wrap .bubble a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.chat-area .chat .chat-qna {
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 5px;
}

.chat-area .chat .chat-qna > button {
    padding: 0 5px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #3e3f41;
    color: #3e3f41;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.813rem;
    transition: 0.3s;
}

.chat-area .chat .chat-qna > button:hover {
    background: #3e3f41;
    color: #fff;
}

.chat-area .input-wrap {
    background: #c4c4c4;
    display: flex;
    gap: 3px;
    padding: 3px;
    height: 38px;
    box-sizing: border-box;
    transition: 0.3s;
}

.chat-area .input-wrap.focus {
    background: var(--primary-color);
}

.chat-area .input-wrap input {
    width: 85%;
    height: 100%;
    border-radius: 5px;
    border: none;
    padding: 0 10px;
    outline: none;
    font-size: 1rem;
}

.chat-area .input-wrap button {
    padding: 0;
    width: 15%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.chat-area .input-wrap button::before {
    content: "";
    position: absolute;
    background: url(../img/send-icon.svg) center/contain no-repeat;
    width: 25px;
    height: 19px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

.chat-area .input-wrap button:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

/* welcome page */
.welcome-container {
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* display: none; */
}
.welcome-container::-webkit-scrollbar {
    display: none;
}
.welcome-container .section {
    padding: 0 20px;
}
.welcome-container .greeting {
    background: #f7f7fa;
    padding: 1.5rem; 0;
    width: 100%;
}

.welcome-container .greeting h3 {
    text-align: center;
    font-size: 1.625rem;
    padding: 0 20px;
    font-weight: normal;
}

.welcome-container .greeting h3 strong {
    color: var(--primary-color);
    font-weight: 900;
}

.welcome-container .btn-wrap {
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
    padding: 0 20px;
}

.welcome-container .btn-wrap button {
    height: 4.5rem;
    width: 50%;
    border: 3px solid var(--primary-color);
    border-radius: 50px;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 5px 5px #0000001a;
    font-size: 1.25rem;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    padding: 0;
    transition: 0.3s;
    max-width: 256px;
}
.welcome-container .btn-wrap button:not(.disabled):hover {
    transform: scale(1.025);
}

.welcome-container .btn-wrap button:first-child {
    position: relative;
}

.welcome-container .btn-wrap button:first-child::before {
    content: "";
    background: url(../img/user-icon-L.svg) center/contain no-repeat;
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: calc(50% - 25px);
    transform: translate(-50%, -50%);
}

.welcome-container .btn-wrap button.disabled {
    border-color: #ddd;
    cursor: default;
}

.welcome-container .btn-wrap button.disabled::before {
    background: url(../img/member-icon-disabled.svg) center/contain no-repeat;
}
.welcome-container .btn-wrap button.disabled a {
    color: #b8b8b8;
}
.welcome-container .btn-wrap button a {
    color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 4.2rem;
    padding-left: 25px;
}

.welcome-container .section {
    max-width: 1200px;
    margin: 1rem auto 75px;
}

.welcome-container .section > div {
    gap: 10px;
    align-items: normal;
}

.welcome-container .section > div > div {
    align-items: normal;
    width: 50%;
    overflow: hidden;
    border-radius: 10px;
}

.welcome-container .section > div > div > img {
    width:100%;height: fit-content;
}

.welcome-container .intro {
    border: 5px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    /* min-width: 596.5px; */
}

.welcome-container .intro video {
    width: 100%;
    height: 100%;
    display: block;
}

.welcome-container .contents .reviews {
    flex: 1;
    border-radius: 10px;
    border: 1px solid #c4c4c4;
    max-height: 339px;
    position: relative;
}

.welcome-container .contents .reviews .reviews-header {
    height: 50px;
    margin: 0 10px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid #c8c8c8;
    justify-content: space-between;
}

.welcome-container .contents .reviews .reviews-header span {
    color: var(--primary-color);
    margin-left: 3px;
}

.welcome-container .contents .reviews .reviews-header small {
    color: #b8b8b8;
    font-size: 0.75rem;
}

.welcome-container .contents .reviews .reviews-header button {
    font-size: 0.875rem;
    cursor: pointer;
}

.welcome-container .contents .reviews .reviews-list {
    height: calc(100% - 50px);
    overflow-y: scroll;
    padding: 0 10px 10px;
    font-size: 0.875rem;
}

.welcome-container .contents .reviews .reviews-list::-webkit-scrollbar {
    width: 11px;
}

.welcome-container .contents .reviews .reviews-list::-webkit-scrollbar-thumb {
    background: #ddd;
    background-clip: padding-box;
    border: 3px solid transparent;
    border-radius: 11px;
}

.welcome-container .contents .reviews .reviews-list .review {
    border-bottom: 1px solid #c8c8c8;
}

.welcome-container .contents .reviews .reviews-list .review:last-child {
    border-bottom: none;
}

.welcome-container .contents .reviews .reviews-list .review .rating {
    font-size: 0.875rem;
}

.welcome-container .contents .others {
    width: 135px;
    flex-direction: column;
    border: 1px solid #c4c4c4;
    border-radius: 10px;
}

.welcome-container .contents .others > li {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    padding-left: 50px;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.welcome-container .contents .others > li:not(:last-child) {
    border-bottom: 1px solid #bfbfbf;
}

.welcome-container .contents .others > li:hover {
    background: #bfbfbf1a;
}

.welcome-container .contents .others > li::before {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

.welcome-container .contents .others > li.daeri::before {
    background: url(../img/daeri-icon.svg) center/contain no-repeat;
}

.welcome-container .contents .others > li.tktk::before {
    background: url(../img/tktk-icon.svg) center/contain no-repeat;
}

.welcome-container .contents .others > li.youtube::before {
    background: url(../img/youtube-icon.svg) center/contain no-repeat;
}

.welcome-container .contents .others > li.insta::before {
    background: url(../img/insta-icon.svg) center/contain no-repeat;
}

.welcome-container .contents .others > li.tiktok::before {
    background: url(../img/tiktok-icon.svg) center/contain no-repeat;
}

.welcome-container .contents .others > li.ad::before {
    background: url(../img/ad-icon.svg) center/contain no-repeat;
}

.welcome-container .section .welcome-ad {
    margin: 1rem 0;
}

/* inspection page */
.inspection-wrap {
    padding: 25px;
    flex: 1;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: none;
}

.inspection-wrap .notice {
    text-align: center;
    color: red;
    border: 4px solid #9b9b9b;
    font-size: 1.125rem;
    border-radius: 10px;
    padding: 60px 20px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 1.75rem;
}

.inspection-wrap .youtube {
    align-items: center;
}

.inspection-wrap .youtube p {
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5rem;
}

/* main page */
.main-container {
    margin: 0 auto;
    height: calc(100% - 94px);
    background: #fff;
    display: none;
    position: relative;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.main-container::-webkit-scrollbar {
    display: none;
}

.hide-menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    overflow: hidden;
}

.hide-menu-wrap .hide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.hide-menu-wrap .hide-menu {
    width: 100%;
    height: 100%;
    max-width: 340px;
    right: -500px;
    background: #fff;
    position: absolute;
    box-shadow: 0 8px 8px #0000005c;
}

.top-bar-wrap {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.top-bar {
    height: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.top-bar > div {
    gap: 5px;
}

.top-bar span {
    cursor: pointer;
    background: #eaeaea;
    color: var(--dark-color);
    border-radius: 50px;
    height: 32px;
    line-height: 30px;
    padding: 0 10px;
    padding-left: 35px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
    transition: 0.3s;
    border: 1px solid var(--dark-color);
}

.top-bar span:hover:not(.price) {
    transform: scale(1.05);
}

.top-bar span.calc {
    padding-left: 30px;
}

.top-bar span.price {
    background: var(--dark-color);
    color: #fff;
    padding-left: 10px;
    cursor: default;
}

.top-bar span.notice::before {
    content: "공지사항";
}

.top-bar span.calc::before {
    content: "수수료 계산기";
}

.top-bar span.price::before {
    content: "결제금액 : ";
}

.top-bar span::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.top-bar span.notice::after {
    width: 21px;
    height: 17px;
    left: 8px;
    background: url(../img/notice-icon.svg) center/contain no-repeat;
}

.top-bar span.calc::after {
    width: 16px;
    height: 22px;
    left: 10px;
    background: url(../img/calc-icon.svg) center/contain no-repeat;
}
.top-bar .progress-wrap {
    border: 1px solid #4A4A4A;
    border-radius: 3px;
    padding: 0 12px;
    height: 32px;
    font-family: 'Pretendard';
    font-size: 0.875rem;
    font-weight: 600;
    color: #222;
}
.top-bar .progress-wrap::before {
    content: "실시간 진행상황 : ";
    margin-right: 8px;
}
.top-bar .progress-list {
    gap: 8px;
}
.top-bar .progress-list .progress-item {
    gap: 4px;
    color: #222;
}
.top-bar .progress-list .progress-item .progress {
    font-family: 'Pretendard';
    font-weight: 700;
}
.top-bar .progress-list .progress-item .progress-circle {
    font-family: 'Pretendard';
    font-weight: 800;
    font-size: 0.5rem;
    position: relative;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
}
.top-bar .progress-list .progress-item .progress-circle::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top:0;
    left: 0;
}
.top-bar .progress-list .progress-item.submitted .progress-circle::before {
    background: url(../img/progress-circle-1.png) center/contain no-repeat;
}
/* .top-bar .progress-list .progress-item.paid {
    color: #3AA80E;
} */
.top-bar .progress-list .progress-item.paid .progress-circle::before {
    background: url(../img/progress-circle-2.png) center/contain no-repeat;
}
/* .top-bar .progress-list .progress-item.in-progress{
    color: #823FD2;
} */
.top-bar .progress-list .progress-item.in-progress .progress-circle::before {
    background: url(../img/progress-circle-3.png) center/contain no-repeat;
}
.top-bar .progress-list .progress-item.completed {
    color: #EF600B;
}
.top-bar .progress-list .progress-item.completed .progress-circle::before {
    background: url(../img/progress-circle-4.png) center/contain no-repeat;
}
.top-bar .progress-list .progress-item.cancelled {
    color: #939393;
}
.top-bar .progress-list .progress-item.cancelled .progress-circle::before {
    background: url(../img/progress-circle-0.png) center/contain no-repeat;
}

.main-container .section {
    display: flex;
    gap: 20px;
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.sidebar-wrap {
    width: 320px;
    min-width: 320px;
    position: sticky;
    top: 40px;
    height: fit-content;
    display: none;
}

.form-wrap {
    padding: 1.5625rem;
    background: #f6f6f6;
    height: fit-content;
    width: calc(100% - 340px);
    display: none;
}

.side-ad {
    position: absolute;
    top: 0;
    height: 100%;
}

.side-ad.left {
    right: calc(100% + 20px);
}

.side-ad.right {
    left: calc(100% + 20px);
}

.side-ad .ad {
    position: sticky;
    top: 40px;
    width: 250px;
    height: 600px;
}

.input-box {
    height: 36px;
    border: 1px solid #9b9b9b;
    border-radius: 5px;
    padding: 0 10px;
    outline: none;
    font-size: 1rem;
    width: 100%;
    direction: ltr;
}

.input-box:focus,
.select-box:focus {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px #f3702266;
}

.input-box.invalid,
.select-box.invalid {
    border: 1px solid red;
    box-shadow: 0 0 5px #ff000066;
}

.select-box {
    height: 36px;
    border: 1px solid #a6a6a6;
    padding-left: 5px;
    outline: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #fff;
}

.caption {
    color: #797979;
    margin-top: 5px;
    font-size: 0.875rem;
    line-height: 1.2rem;
    display: none;
}

.caption.warning {
    color: #ff3232;
}

.group-title {
    margin: 15px 0 10px 0;
    font-weight: 900;
    font-size: 1.125rem;
}

.group.notice h3 {
    text-align: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.group.notice h3 strong {
    position: relative;
    padding-left: 25px;
}

.group.notice h3 strong::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/warning-icon.svg) center/contain no-repeat;
    width: 21px;
    height: 19px;
}

.group.notice .notice {
    background: #fff;
    padding: 15px;
}

.group.notice .notice p {
    color: #ff3232;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.group.notice .notice ul {
    margin: 0;
    list-style-position: inside;
    font-size: 0.875rem;
    line-height: 1.125rem;
    padding: 0;
}

.group.notice .notice ul li:not(:last-child) {
    margin-bottom: 15px;
}

.show {
    display: block !important;
}

.group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    row-gap: 0;
}

.group .group-wrap {
    flex: 1;
}

.radio-wrap input[type="radio"],
.checkbox-wrap input[type="checkbox"] {
    display: block !important;
    width: 0;
    height: 0;
    opacity: 0;
}

.radio-wrap input[type="radio"] ~ label,
.checkbox-wrap input[type="checkbox"] ~ label {
    position: relative;
    padding-left: 20px;
    width: fit-content;
}

.checkbox-wrap input[type="checkbox"] ~ label::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 1px;
    border: 1px solid #545454;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-sizing: border-box;
}

.checkbox-wrap input[type="checkbox"]:checked ~ label::before {
    border: 1px solid #ff7a00 !important;
    background: #ff7a00;
}

.checkbox-wrap input[type="checkbox"]:checked ~ label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/check-icon-small.svg) center/contain no-repeat;
    width: 9px;
    height: 6px;
}

.checkbox-wrap input[type="checkbox"]:disabled ~ label::before {
    border: 1px solid #797979 !important;
    background: #ddd !important;
    cursor: default;
}

.checkbox-wrap input[type="checkbox"]:checked:disabled ~ label::before {
    background: #797979 !important;
}

.radio-wrap input[type="radio"] ~ label::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #545454;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    cursor: pointer;
}

.radio-wrap input[type="radio"]:checked ~ label::before {
    background: #ff7a00;
    border: 1px solid #ff7a00;
}

.radio-wrap input[type="radio"]:checked ~ label::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    left: 6px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.radio-wrap input[type="radio"]:disabled ~ label::before {
    background: #ddd !important;
    border: 1px solid #797979 !important;
    cursor: default;
}

.group.phone .caption {
    width: calc(200% + 20px);
}
#myAccountBtn {
    padding: 5px 10px;
    border: 1px solid #b8b8b8;
    border-radius: 5px;
    font-size: 0.85rem;
    background: #fff;
    color: #3d3d3d;
    transition: 0.3s;
}
#myAccountBtn:hover {
    border-color: #727272;
    color: #222;
}
.group.id .title-wrap {
    margin-top: 10px;
}
.group.id .checkbox-wrap {
    gap: 20px;
    margin-bottom: 8px;
}

.group.id .checkbox-wrap a {
    color: #f9bb30;
    cursor: pointer;
}

.group.id .checkbox-wrap a:hover {
    text-decoration: underline;
}

.input-id-area .input-wrap {
    width: 100%;
    position: relative;
}

.input-id-area .input-wrap .login-type-btn {
    width: 100%;
    max-width: 95px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #666666;
    color: #fff;
    cursor: pointer;
    padding-right: 8px;
    border-radius: 5px 0 0 5px;
    position: relative;
}

.input-id-area .input-wrap .login-type-btn::after {
    content: "";
    position: absolute;
    background: url(../img/btn-tr.svg) center/contain no-repeat;
    width: 8px;
    height: 4px;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
}

.input-id-area .input-wrap .input-box {
    width: 100%;
    border-radius: 0 5px 5px 0;
}

.input-id-area button {
    width: 80px;
    height: 36px;
    font-size: 14px;
    line-height: 0.875rem;
    border: 1px solid #313131;
    border-radius: 5px;
    margin-left: 10px;
    transition: 0.3s;
    color: var(--dark-color);
    cursor: pointer;
}

.input-id-area button:hover {
    transform: scale(1.03);
}

.input-id-area .dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    padding: 0;
    list-style: none;
    width: 95px;
    border: 1px solid #9b9b9b;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
    display: none;
}

.input-id-area .dropdown-menu input {
    display: block !important;
    width: 0;
    height: 0;
    opacity: 0;
}

.input-id-area .dropdown-menu label {
    width: 100%;
    padding: 5px 10px;
    cursor: pointer;
    transition: 0.3s;
}

.input-id-area .dropdown-menu label:hover {
    background: #eee;
}

.modal.add-account .modal-body {
    padding-top: 0;
}

.modal.add-account .radio-wrap,
.group.login-type .radio-wrap,
.group.path .radio-wrap {
    gap: 30px;
    row-gap: 5px;
    flex-wrap: wrap;
}

.group.path .radio-wrap label {
    height: 25px;
    line-height: 25px;
}

.group.path .radio-wrap .input-box {
    height: 25px;
    width: 80px;
    margin-left: 5px;
    padding: 0 5px;
}

.group.ad {
    width: 100%;
    height: 200px;
    margin-top: 15px;
    overflow: hidden;
}

.group.service .radio-wrap,
.group.top-class .radio-wrap,
.group.coupon .radio-wrap {
    flex-wrap: wrap;
    gap: 30px;
    row-gap: 8px;
}

.group.top-class .top-class-instead {
    display: none;
}

.group.top-class .top-class-instead select {
    width: 100px;
}

.group.coupon .checkbox-wrap {
    margin-top: 8px;
}

.group.coupon .coupon-table {
    background: #fff;
    border-collapse: collapse;
}

.group.coupon .coupon-table th {
    cursor: default;
}

.group.coupon .coupon-table th,
.group.coupon .coupon-table td {
    border: 1px solid var(--dark-color);
    padding: 6px 10px;
    text-align: center;
}

.group.coupon .coupon-table tr.selected {
    background: #ffbf9f;
}

.group.coupon .coupon-table td.selected {
    background: var(--primary-color);
    cursor: pointer;
}

.group.coupon .coupon-details {
    display: none;
}

.basic-coupon-area,
.select-coupon-area,
.custom-coupon-area {
    margin-left: 20px;
    display: none;
}
.basic-coupon-area {
    margin-top: 10px;
}

.select-coupon-area > p {
    margin: 5px 0 10px;
    flex-wrap: wrap;
}

.select-coupon-area .selected-coupon-details {
    background: #ddd;
    padding: 0 10px;
    min-width: 60px;
    display: inline-block;
    min-height: 27px;
    vertical-align: middle;
    margin: 0 5px;
    font-size: 1.125rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
}

.custom-coupon-area .not-use-coupon-list-wrap,
.select-coupon-area .select-coupon-list-wrap {
    background: #e9e9e9;
    padding: 10px;
    border-radius: 5px;
}

.custom-coupon-area .not-use-coupon-list-wrap .list-header,
.select-coupon-area .select-coupon-list-wrap .list-header {
    width: calc(100% - 85px);
    gap: 10px;
    margin-bottom: 8px;
}

.custom-coupon-area .not-use-coupon-list-wrap .list-item,
.select-coupon-area .select-coupon-list-wrap .list-item {
    width: 100%;
    gap: 10px;
}

.custom-coupon-area .not-use-coupon-list-wrap .list-item:not(:last-child),
.select-coupon-area .select-coupon-list-wrap .list-item:not(:last-child) {
    margin-bottom: 5px;
}

.select-coupon-area .select-coupon-list-wrap .list-header > div,
.select-coupon-area .select-coupon-list-wrap .list-item > div:first-child {
    flex: 1;
    gap: 10px;
}

.custom-coupon-area .not-use-coupon-list-wrap .list-header > div,
.custom-coupon-area .not-use-coupon-list-wrap .list-item > div:first-child {
    flex: 1;
    gap: 10px;
}

.custom-coupon-area .not-use-coupon-list-wrap .list-item > div:first-child > select,
.select-coupon-area .select-coupon-list-wrap .list-item > div:first-child > select {
    flex: 1;
    width: 50%;
}

.custom-coupon-area .not-use-coupon-list-wrap .list-item > div:last-child,
.select-coupon-area .select-coupon-list-wrap .list-item > div:last-child {
    gap: 5px;
}

.custom-coupon-area .not-use-coupon-list-wrap .list-item > div:last-child button,
.select-coupon-area .select-coupon-list-wrap .list-item > div:last-child button {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: 1px solid var(--dark-color);
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--dark-color);
    font-size: 0.813rem;
    transition: 0.3s;
    padding: 0;
    cursor: pointer;
}

.custom-coupon-area .not-use-coupon-list-wrap .list-item > div:last-child button.delete,
.select-coupon-area .select-coupon-list-wrap .list-item > div:last-child button.delete {
    background: #b8b8b8;
    border: 1px solid var(--dark-color);
}

.custom-coupon-area .not-use-coupon-list-wrap .list-item > div:last-child button:disabled,
.select-coupon-area .select-coupon-list-wrap .list-item > div:last-child button:disabled {
    border: 1px solid #b8b8b8;
    background: #eaeaea;
    color: gray;
    cursor: default;
}

.custom-coupon-area .not-use-coupon-list-wrap .list-item > div:last-child button:hover:not(:disabled),
.select-coupon-area .select-coupon-list-wrap .list-item > div:last-child button:hover:not(:disabled) {
    transform: scale(1.05);
}

.custom-choice-area textarea,
.custom-coupon-area textarea {
    width: 100%;
    border: 1px solid #a6a6a6;
    border-radius: 5px;
    outline: none;
    padding: 10px;
    min-height: 100px;
    max-height: 300px;
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    resize: vertical;
}

.caption.choice-max {
    font-size: 1rem;
}




.choice-list-wrap .choice-list {
    gap: 8px;
}
.choice-list-wrap .choice-list .list-item {
    padding: 10px;
    background: #e9e9e9;
    border-radius: 5px;
    gap: 10px;
}
.choice-list-wrap .list-item button {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: 1px solid var(--dark-color);
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--dark-color);
    font-size: 0.813rem;
    transition: 0.3s;
    padding: 0;
    cursor: pointer;
}
.choice-list-wrap .list-item .btn-wrap {
    gap: 5px;
}
.choice-list-wrap .list-item button.delete {
    background: #b8b8b8;
    border: 1px solid var(--dark-color);
}
.choice-list-wrap .list-item button:disabled {
    border: 1px solid #b8b8b8;
    background: #eaeaea;
    color: gray;
    cursor: default;
}
.choice-list-wrap .list-item .input-wrap {
    flex: 1;
    gap: 5px;
}
.choice-list-wrap .list-item .input-wrap > div {
    gap: 5px;
}
.choice-list-wrap .list-item .input-wrap input,
.choice-list-wrap .list-item .input-wrap select {
    width: 50%;
}


.group.top-class,
.group.coupon,
.group.choice {
    display: none;
}

.group.choice .caption.max {
    font-size: 1rem;
    font-weight: 900;
}

.group.choice .checkbox-wrap {
    margin-top: 15px;
}

.group.clause input {
    display: block !important;
    width: 0;
    height: 0;
    opacity: 0;
}

.group.clause input ~ label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    margin: 10px 0 8px 0;
}

.group.clause input ~ label::before {
    content: "";
    width: 30px;
    height: 17px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #545454;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-sizing: border-box;
}

.group.clause input ~ label::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #848484;
    transition: 0.3s;
    box-sizing: border-box;
}

.group.clause input:checked ~ label::before {
    border: 1px solid #ff7a00;
    background: #ff7a00;
}

.group.clause input:checked ~ label::after {
    left: 16px;
    background: #fff;
}

.group.clause input#allClauseCheck ~ label {
    padding-left: 52px;
    font-size: 1.125rem;
    font-weight: 900;
    margin: 30px 0 5px 0;
}

.group.clause input#allClauseCheck ~ label::before {
    width: 45px;
    height: 20px;
}

.group.clause input#allClauseCheck ~ label::after {
    left: 2px;
    width: 16px;
    height: 16px;
}

.group.clause input#allClauseCheck:checked ~ label::after {
    left: 28px;
}

.group.clause textarea {
    border: none;
    background: #e9e9e9;
    width: 100%;
    outline: none;
    border-radius: 5px;
    padding: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    display: block;
    box-sizing: border-box;
    font-size: 0.875rem;
    line-height: 1.2rem;
    resize: vertical;
}

.group.clause .clause-wrap:nth-child(2) textarea {
    min-height: 52px;
}

.group.clause .clause-wrap:nth-child(3) textarea {
    min-height: 73px;
}

.group.clause .clause-wrap:nth-child(4) textarea {
    min-height: 52px;
}

.group.clause .clause-wrap:nth-child(5) textarea {
    min-height: 240px;
}

.group.clause .clause-wrap:nth-child(6) textarea {
    min-height: 52px;
}

.group.clause label ~ a {
    font-weight: normal;
    margin: 10px 0 8px 0;
}

.group.clause label ~ a span {
    color: #f9bb30;
    cursor: pointer;
}

.group.clause label ~ a span:hover {
    text-decoration: underline;
}

.group.reward h3 {
    font-weight: 900;
    font-size: 1.125rem;
    border-top: 1px solid #9b9b9b;
    border-bottom: 1px solid #9b9b9b;
    padding: 10px;
    margin: 15px 0 5px 0;
}

.group.reward h3 a {
    font-size: 1rem;
    font-weight: normal;
}

.group.reward h3 a span {
    color: #f9bb30;
    cursor: pointer;
}

.group.reward h3 a span:hover {
    text-decoration: underline;
}

.group.reward .group-wrap > div {
    height: 50px;
    background: #e9e9e9;
    border-radius: 5px;
    line-height: 50px;
    padding: 0 10px;
}

.group.reward .group-wrap > div strong {
    position: relative;
    padding-left: 24px;
    font-weight: normal;
}

.group.reward .group-wrap > div strong::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../img/graph-icon.svg) center/contain no-repeat;
    width: 19px;
    height: 16px;
}

.group.payment {
    margin-top: 15px;
    align-items: stretch;
    line-height: 1.5rem;
}

.group.payment .border-box {
    padding: 15px;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    background: #fff;
}

.group.payment .border-box h3 {
    font-weight: 900;
    font-size: 1.125rem;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 10px;
    height: 32px;
}

.group.payment .charge-list {
    gap: 8px;
}

.group.payment .charge-list .charge-item {
    display: none;
}

.group.payment .charge-list .charge-item.show {
    display: flex !important;
}

.group.payment .charge-list > div {
    justify-content: space-between;
}

.group.payment .total-wrap {
    justify-content: space-between;
    background: var(--dark-color);
    height: 50px;
    color: #fff;
    line-height: 50px;
    padding: 0 10px;
    margin-top: 20px;
}

.group.payment .charge-list .discount {
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #f3702280;
}

.group.payment .charge-list .discount > div {
    justify-content: space-between;
}

.group.payment .charge-list .discount button {
    height: 25px;
    line-height: 25px;
    border-radius: 5px;
    border: 1px solid transparent;
    padding: 0 10px;
    text-align: center;
    font-size: 0.813rem;
    margin-left: 5px;
    background: #eaeaea;
    transition: 0.3s;
    color: var(--dark-color);
    cursor: pointer;
}

.group.payment .charge-list .discount button:hover {
    background: var(--primary-color);
    border: 1px solid var(--dark-color);
    transform: scale(1.02);
}

.group.payment .border-box:first-child > div {
    justify-content: space-between;
    height: calc(100% - 42px);
}

.group.payment .recipe-list {
    gap: 8px;
}

.group.payment .recipe-list > div > div {
    gap: 8px;
    flex-wrap: wrap;
}

.group.payment .recipe-list .use-coupon-wrap,
.group.payment .recipe-list .not-use-coupon-wrap,
.group.payment .recipe-list .choice-wrap,
.group.payment .recipe-list .custom-choice-wrap {
    display: none;
}

.group.payment .recipe-list .use-coupon,
.group.payment .recipe-list .not-use-coupon,
.group.payment .recipe-list .choice,
.group.payment .recipe-list .custom-choice {
    display: block;
    width: 100%;
    background: #e9e9e9;
    min-height: 40px;
    border-radius: 5px;
    outline: none;
    border: none;
    resize: none;
    padding: 10px;
    margin-top: 5px;
    box-sizing: border-box;
    overflow-y: scroll;
    max-height: 80px;
    scroll-behavior: smooth;
    word-break: break-all;
    white-space: pre-wrap;
}

.group.payment .recipe-list .use-coupon::-webkit-scrollbar,
.group.payment .recipe-list .not-use-coupon::-webkit-scrollbar,
.group.payment .recipe-list .choice::-webkit-scrollbar,
.group.payment .recipe-list .custom-choice::-webkit-scrollbar {
    width: 11px;
}

.group.payment .recipe-list .use-coupon::-webkit-scrollbar-thumb,
.group.payment .recipe-list .not-use-coupon::-webkit-scrollbar-thumb,
.group.payment .recipe-list .choice::-webkit-scrollbar-thumb,
.group.payment .recipe-list .custom-choice::-webkit-scrollbar-thumb {
    background: #fff;
    background-clip: padding-box;
    border: 3px solid transparent;
    border-radius: 11px;
}

.group.payment .recipe-list .toggle {
    display: none;
}

.group.payment .recipe-list .recipe-item.empty {
    padding: 0 15px;
    color: red;
}

.group.account {
    border-top: 1px solid #9b9b9b;
    border-bottom: 1px solid #9b9b9b;
    margin-top: 15px;
    padding-bottom: 5px;
}

.group.account h3 {
    font-weight: 900;
    font-size: 1.125rem;
    border-bottom: 1px solid #9b9b9b;
    padding: 10px;
    margin-bottom: 5px;
}

.group.account .input-wrap {
    height: 50px;
    background: #e9e9e9;
    border-radius: 5px;
    margin: 5px 0;
    position: relative;
    align-items: center;
    padding: 10px;
}

.group.account .input-wrap input {
    border: none;
    outline: none;
    flex: 1;
    height: 100%;
    font-size: 1rem;
    background: transparent;
}

.group.account .input-wrap span {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.group.account .input-wrap span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/copy-icon.svg) center/contain no-repeat;
    width: 17px;
    height: 20px;
    transition: 0.3s;
}

.group.account .input-wrap span:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

.group.account .final-price {
    background: var(--primary-color);
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    justify-content: space-between;
    height: 50px;
    padding: 0 10px;
    font-size: 1.125rem;
}

.group.account .final-price span {
    font-size: 1.5rem;
    font-weight: 900;
}

.group.submit {
    margin: 20px 0 0;
    justify-content: center;
}

.group.submit button {
    height: 50px;
    background: var(--primary-color);
    border-radius: 5px;
    text-align: center;
    line-height: 50px;
    border: 1px solid var(--dark-color);
    padding: 0 20px;
    font-size: 1.25rem;
    font-weight: 900;
    width: 100%;
    max-width: 300px;
    transition: 0.3s;
    color: var(--dark-color);
    cursor: pointer;
}

.group.submit button:hover {
    transform: scale(1.02);
    background: var(--dark-color);
    color: #fff;
}

.group.complete {
    margin-top: 20px;
    display: none;
}

.group.complete h1 {
    font-size: 1.875rem;
    font-weight: 900;
    width: fit-content;
    position: relative;
    padding-left: 42px;
    margin: auto;
    text-align: center;
}

.group.complete h1::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    background: url(../img/check-icon-orange.svg) center/contain no-repeat;
    top: 0;
    left: 0;
}

.group.complete h2 {
    text-align: center;
    margin-top: 10px;
    font-size: 1.25rem;
}

.group.complete .youtube {
    align-items: center;
    margin-top: 20px;
}

.group.complete .youtube p {
    text-align: center;
    line-height: 1.5rem;
    margin-bottom: 10px;
}

.group.complete button {
    height: 50px;
    background: var(--primary-color);
    border-radius: 5px;
    text-align: center;
    line-height: 50px;
    border: 1px solid var(--dark-color);
    padding: 0 20px;
    font-size: 1.25rem;
    font-weight: 900;
    width: 100%;
    max-width: 300px;
    transition: 0.3s;
    color: var(--dark-color);
    cursor: pointer;
    display: block;
    margin: 20px auto;
}

.group.complete button:hover {
    transform: scale(1.02);
    background: var(--dark-color);
    color: #fff;
}
.title-wrap {
    gap: 16px;
}
.title-wrap .checkbox-wrap {
    padding-top: 3px;
}
.group.id .title-wrap {
    gap: 8px;
}
.group.login-type #instant + label a {
    color: #f9bb30;
    cursor: pointer;
}
.group.login-type #instant + label a:hover {
    text-decoration: underline;
}

/* toast popup */
.toast-popup {
    z-index: 10000;
    position: fixed;
    top: -70px;
    display: flex;
    width: 100%;
    justify-content: center;
    transition: 0.5s;
}

.toast-popup .msg {
    padding: 1.25rem 2.5rem;
    color: var(--primary-color);
    max-width: 85vw;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
}

.toast-popup.pop {
    top: 20px;
}

.toast-popup.warning .msg {
    padding-left: 4.75rem;
}

.toast-popup.warning .msg::before {
    content: "";
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/e-mark-icon.svg) center/contain no-repeat;
    width: 30px;
    height: 30px;
}

/* modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
    /* display: none; */
    transition: 0.3s;
}

.modal.image {
    background: #000000bf;
}

.modal .modal-bg {
    content: "";
    background: url(../img/bg-logo.svg) center/contain no-repeat;
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translate(-55%, -50%);
    width: 75%;
    height: 65%;
    max-height: 50vh;
    max-width: 450px;
    pointer-events: none;
    z-index: 1;
}

.modal .modal-content {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 15px;
    width: 95%;
    max-height: 95%;
    overflow-y: scroll;
    box-shadow: 0 4px 4px #00000040;
    -ms-overflow-style: none;
    scrollbar-width: none;
    max-width: 800px;
    transition: 0.3s;
}

/* .modal.show .modal-content {
  animation: zoom 0.2s ease-out;
} */
.modal .modal-content {
    animation: zoom 0.2s ease-out;
}

@keyframes zoom {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal .modal-content::-webkit-scrollbar {
    display: none;
}

.modal .modal-header {
    position: sticky;
    top: 0;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    width: calc(100% - 2.5rem);
    margin: auto;
    background: #fff;
    border-bottom: 2px solid var(--dark-color);
    z-index: 1;
}

.modal .modal-header h3 {
    font-size: 1.25rem;
}

.modal .modal-header .modal-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    padding: 0;
    cursor: pointer;
}

.modal .modal-header .modal-close::before {
    content: "";
    background: url(../img/close-icon.svg) center/contain no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    transition: 0.3s;
}

.modal .modal-header .modal-close:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.modal.image .modal-close {
    position: absolute;
    top: 7vh;
    right: 5vw;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
}

.modal.image .modal-close::before {
    content: "";
    background: url(../img/close-icon.svg) center/contain no-repeat;
    position: absolute;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: 0.3s;
}

.modal.image .modal-close:hover::before {
    transform: translate(-50%, -50%) scale(1.15);
}

.modal.image img {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
}

.modal .modal-body {
    padding: 1.25rem;
}

.modal .pagination {
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
}

.modal .pagination > a {
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.modal .pagination .controls {
    color: #b8b8b8;
    cursor: default;
}

.modal .pagination .controls.active {
    color: #000;
    cursor: pointer;
}

.modal .pagination .current {
    font-weight: 900;
    text-decoration: underline;
}

.modal .list-item.empty {
    justify-content: center;
    padding: 35px 0!important;
    color: #626262;
}

.modal.notice .modal-body .content-wrap,
.modal.about .modal-body .content-wrap,
.modal.fact .modal-body .content-wrap,
.modal.process .modal-body .content-wrap,
.modal.refund .modal-body .content-wrap,
.modal.qna .modal-body .content-wrap,
.modal.cookie .modal-body .content-wrap,
.modal.reward .modal-body .content-wrap {
    background: #f8f8f8;
    padding: 20px;
    position: relative;
}

.modal.notice .modal-body .content-wrap,
.modal.about .modal-body .content-wrap,
.modal.fact .modal-body .content-wrap,
.modal.process .modal-body .content-wrap,
.modal.refund .modal-body .content-wrap {
    min-height: 500px;
}

.modal.about .modal-body .content-wrap h2,
.modal.fact .modal-body .content-wrap h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal.about .modal-body .content-wrap ul,
.modal.fact .modal-body .content-wrap ul,
.modal.process .modal-body .content-wrap ul,
.modal.refund .modal-body .content-wrap ul,
.modal.cookie .modal-body .content-wrap ul,
.modal.reward .modal-body .content-wrap ul {
    gap: 20px;
    line-height: 1.5rem;
}

.modal.fact .modal-body .content-wrap ul li h3 {
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 8px;
}

.modal.fact .modal-body .content-wrap ul li h3 strong {
    color: dodgerblue;
}

.modal.fact .modal-body .content-wrap ul li h3 b {
    color: red;
}

.modal.notice .modal-body .content-wrap p {
    white-space: pre-wrap;
    line-height: 1.5rem;
}

.modal.process .modal-body .content-wrap a {
    color: var(--primary-color);
    font-weight: 900;
    cursor: pointer;
}

.modal.process .modal-body .content-wrap a:hover {
    text-decoration: underline;
}

.modal.refund .tabs {
    border-bottom: 1px solid var(--dark-color);
    width: calc(100% - 2.5rem);
    margin: auto;
    position: sticky;
    top: 3.5rem;
    height: 2.75rem;
    z-index: 1;
    background: #fff;
    overflow: hidden;
}

.modal.refund .tabs > span {
    flex: 1;
    text-align: center;
    padding: 12px;
    cursor: pointer;
}

.modal.refund .tabs > span.active {
    background: var(--primary-color);
}

.modal.refund .btn-wrap {
    display: none;
    text-align: end;
    position: sticky;
    top: 6.25rem;
    background: #fff;
    z-index: 1;
    padding: 3px 20px;
}

.modal.refund .btn-wrap > button {
    cursor: pointer;
    border: 1px solid var(--dark-color);
    border-radius: 50px;
    height: 34px;
    display: inline-block;
    box-sizing: border-box;
    line-height: 34px;
    padding: 0 12px 0 30px;
    position: relative;
    background: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.modal.refund .btn-wrap > button:hover {
    transform: scale(1.03);
}

.modal.refund .btn-wrap > button::before {
    content: "";
    background: url(../img/check-icon.svg) center/contain no-repeat;
    position: absolute;
    width: 15px;
    height: 14px;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}

.modal.refund .content-wrap {
    display: none;
}

.modal.refund .content-wrap:last-child {
    margin-top: -20px;
}

.modal.qna .modal-content {
    max-width: 500px;
}

.modal.qna .modal-body .content-wrap {
    padding: 10px 20px;
}

.modal.qna .content-wrap > div {
    padding: 10px 20px;
}

.modal.qna .content-wrap .question {
    position: relative;
    cursor: pointer;
}

.modal.qna .content-wrap .question::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border: 1px solid var(--dark-color);
    background: var(--primary-color);
    box-sizing: border-box;
}

.modal.qna .content-wrap .answer {
    display: none;
    margin: 10px 0;
}

.modal.reward-ex ul {
    gap: 20px;
    line-height: 1.5rem;
}

.modal.reward-ex ul li:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.modal.reward-ex ul li img {
    width: 100%;
}

.modal.reviews .modal-body {
    padding-top: 0;
}

.modal.reviews .rating-area {
    padding: 10px;
    border-bottom: 1px solid var(--dark-color);
}

.modal.reviews .rating-area .avrg {
    width: 35%;
    font-size: 2rem;
    align-items: center;
}

.modal.reviews .rating-area .avrg .rating {
    font-size: 1.25rem;
    color: #ddd;
    position: relative;
    align-items: center;
}

.modal.reviews .rating-area .avrg .rating .rating-stars.fill {
    color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.modal.reviews .rating-area .avrg .rating small {
    color: #b8b8b8;
    font-size: 0.75rem;
}

.modal.reviews .rating-area .avrg .rating button {
    position: relative;
    font-size: 0.75rem;
    color: #b8b8b8;
    display: none;
    cursor: pointer;
}

.modal.reviews .rating-area .avrg .rating button::before {
    content: "\f055";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.modal.reviews .rating-area .avrg .rating button.active::before {
    content: "\f056";
}

.modal.reviews .rating-area .rating-details {
    flex: 1;
    gap: 3px;
}

.modal.reviews .rating-area .rating-details > div {
    font-size: 0.75rem;
    padding-right: 12%;
}

.modal.reviews .rating-area .rating-details > div > strong {
    min-width: 30px;
    color: #000;
}

.modal.reviews .rating-area .rating-details .progress-bar {
    width: 100%;
    background: #ddd;
    height: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.modal.reviews .rating-area .rating-details .progress-bar .per {
    height: 100%;
    background: var(--primary-color);
}

.modal.reviews .rating-area .rating-details > div > span {
    min-width: 80px;
    width: 80px;
    margin-left: 10px;
    color: #b8b8b8;
}

.reviews-list .review {
    padding: 10px 0;
    border-bottom: 1px solid var(--dark-color);
    gap: 3px;
}

.reviews-list .review .info > div {
    padding: 0 15px;
    position: relative;
    font-weight: 900;
}

.reviews-list .review .info > div:first-child {
    padding-left: 0;
}

.reviews-list .review .user img {
    width: 20px;
    height: 20px;
    margin-right: 3px;
}

.reviews-list .review .rating {
    color: #ddd;
    font-size: 1.25rem;
}

.reviews-list .review .rating strong {
    font-weight: normal;
    color: var(--primary-color);
}

.reviews-list .review .info > div:not(:first-child)::after {
    content: "|";
    position: absolute;
    left: -2px;
    color: #c9c9c9;
}

.reviews-list .review p {
    margin-bottom: 8px;
    font-weight: 900;
}
.reviews-list .review .staff {
    background: #efefef;
    border-radius: 10px;
    margin-left: 30px;
    margin-top: 5px;
    padding: 8px 12px;
    gap: 5px;
    position: relative;
}
.reviews-list .review .staff::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -30px;
    width: 25px;
    height: 25px;
    background: url(../img/staff-chat.svg) center/contain no-repeat;
}
.modal.inquiry .modal-body {
    padding-top: 0;
}

.modal.inquiry .inquiry-wrap {
    margin: 0 20px;
}

.modal.inquiry .inquiry-wrap select,
.modal.inquiry .inquiry-wrap input {
    border: none;
    outline: none;
    height: 40px;
    background: #f8f8f8;
    padding: 10px;
    width: 100%;
    color: #000;
    font-size: 1rem;
}

.modal.inquiry .inquiry-wrap input[type="file"],
.modal.inquiry .inquiry-wrap input[type="checkbox"] {
    display: none !important;
}

.modal.inquiry .inquiry-wrap input[type="file"] ~ label {
    min-width: 30px;
    min-height: 30px;
    border: 1px solid var(--dark-color);
    text-align: center;
    line-height: 26px;
    font-size: 1.25rem;
    box-sizing: border-box;
    cursor: pointer;
    margin-right: 5px;
    transition: 0.3s;
}

.modal.inquiry .inquiry-wrap input[type="file"] ~ label:hover {
    transform: scale(1.05);
}
.modal.inquiry .inquiry-wrap input[type="file"] ~ input {
    overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal.inquiry .inquiry-wrap > div:not(:last-child) {
    border-bottom: 1px solid var(--dark-color);
}

.modal.inquiry .inquiry-wrap > div > div:first-child {
    min-width: 100px;
    text-align: center;
    justify-content: center;
}

.modal.inquiry .inquiry-wrap > div > div:last-child {
    width: 100%;
    padding: 5px 20px;
    border-left: 1px solid var(--dark-color);
    gap: 5px;
}

.modal.inquiry .btn-wrap {
    border-top: 1px solid var(--dark-color);
    justify-content: center;
    padding-top: 10px;
}

.modal.inquiry .btn-wrap button {
    width: 170px;
    background: var(--primary-color);
    border: 1px solid var(--dark-color);
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 1.125rem;
    transition: 0.3s;
    border-radius: 10px;
    color: var(--dark-color);
    cursor: pointer;
}

.modal.inquiry .btn-wrap button:hover {
    transform: scale(1.03);
    background: var(--dark-color);
    color: #fff;
}

.modal.inquiry .inquiry-wrap textarea {
    width: 100%;
    display: block;
    background: #f8f8f8;
    border: none;
    outline: none;
    min-height: 250px;
    padding: 15px;
    font-size: 1rem;
    line-height: 1.5rem;
    resize: vertical;
}

.modal.inquiry .inquiry-wrap > div:last-child > div:last-child {
    gap: 5px;
}

.modal.inquiry .inquiry-wrap .caption {
    margin-bottom: 10px;
}

.modal.my-coupon .modal-body {
    padding-top: 0;
}

.modal.my-coupon .list-header {
    border-bottom: 1px solid var(--dark-color);
    text-align: center;
    background: #fff;
    position: sticky;
    top: 3.5rem;
    height: 2.75rem;
    line-height: 2.75rem;
    z-index: 1;
}

.modal.my-coupon .list-header > div:nth-child(1),
.modal.my-coupon .coupon-list .list-item > div:nth-child(1) {
    width: 55%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.modal.my-coupon .list-header > div:nth-child(2),
.modal.my-coupon .coupon-list .list-item > div:nth-child(2) {
    width: 15%;
    text-align: center;
    min-width: 90px;
}

.modal.my-coupon .list-header > div:nth-child(3),
.modal.my-coupon .coupon-list .list-item > div:nth-child(3) {
    width: 15%;
    text-align: center;
    min-width: 100px;
}

.modal.my-coupon .list-header > div:nth-child(4),
.modal.my-coupon .coupon-list .list-item > div:nth-child(4) {
    width: 15%;
    min-width: 65px;
    text-align: center;
}

.modal.my-coupon .coupon-list {
    background: #f8f8f8;
}

.modal.my-coupon .coupon-list .list-item > div {
    padding: 10px;
}

.modal.my-coupon .coupon-list .list-item .checkbox-wrap input ~ label {
    padding: 0;
}

.modal.my-coupon .coupon-list .list-item .checkbox-wrap input ~ label::before {
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal.my-coupon .coupon-list .list-item .checkbox-wrap input:checked ~ label::after {
    background: url(../img/check-icon-large.svg) center / contain no-repeat;
    width: 15px;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal.my-coupon .btn-wrap {
    border-top: 1px solid var(--dark-color);
    padding-top: 10px;
    justify-content: center;
}

.modal.my-coupon .btn-wrap button {
    width: 170px;
    background: var(--primary-color);
    border: 1px solid var(--dark-color);
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 1.125rem;
    transition: 0.3s;
    border-radius: 10px;
    color: var(--dark-color);
    cursor: pointer;
}

.modal.my-coupon .btn-wrap button:hover {
    transform: scale(1.03);
    background: var(--dark-color);
    color: #fff;
}

.modal.state .modal-content {
    max-width: 500px;
}

.modal.state .modal-body {
    padding-top: 0;
}

.modal.state .list-header {
    border-bottom: 1px solid var(--dark-color);
    text-align: center;
    background: #fff;
    position: sticky;
    top: 3.5rem;
    height: 2.75rem;
    line-height: 2.75rem;
    z-index: 1;
}

.modal.state .list-header > div:nth-child(1),
.modal.state .state-list .list-item > div:nth-child(1) {
    width: 60%;
    text-align: center;
}

.modal.state .list-header > div:nth-child(2),
.modal.state .state-list .list-item > div:nth-child(2) {
    width: 40%;
    text-align: center;
}

.modal.state .state-list {
    background: #f8f8f8;
}

.modal.state .state-list .list-item > div {
    padding: 10px;
}

.modal.state .btn-wrap {
    position: relative;
    justify-content: end;
    padding-top: 10px;
}

.modal.state .btn-wrap > span {
    position: absolute;
    left: 0;
}

.modal.state .btn-wrap > span strong {
    color: var(--primary-color);
    font-weight: bold;
}

.modal.state .btn-wrap button {
    position: relative;
    font-size: 1rem;
    padding-left: 18px;
}

.modal.state .btn-wrap button::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 17px;
    top: 1px;
    left: 0;
    transition: 0.5s;
    background: url(../img/refresh-icon.svg) center / contain no-repeat;
}

.modal.state button.rotate::before {
    animation: rotate 0.8s;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.modal.daenak-history .modal-body {
    padding-top: 0;
}

.modal.daenak-history .list-header {
    border-bottom: 1px solid var(--dark-color);
    text-align: center;
    background: #eee;
    position: sticky;
    top: 3.5rem;
    height: 2.75rem;
    line-height: 2.75rem;
    z-index: 1;
}

.modal.daenak-history .list-header > div:nth-child(1),
.modal.daenak-history .daenak-list .list-item .thumb > div:nth-child(1) {
    width: 22%;
    text-align: center;
}

.modal.daenak-history .list-header > div:nth-child(2),
.modal.daenak-history .daenak-list .list-item .thumb > div:nth-child(2) {
    width: 38%;
    text-align: center;
}

.modal.daenak-history .list-header > div:nth-child(3),
.modal.daenak-history .daenak-list .list-item .thumb > div:nth-child(3) {
    width: 10%;
    text-align: center;
}

.modal.daenak-history .list-header > div:nth-child(4),
.modal.daenak-history .daenak-list .list-item .thumb > div:nth-child(4) {
    width: 15%;
    text-align: center;
}

.modal.daenak-history .list-header > div:nth-child(5),
.modal.daenak-history .daenak-list .list-item .thumb > div:nth-child(5) {
    width: 15%;
    text-align: center;
}

.modal.daenak-history .daenak-list {
    border-bottom: 1px solid var(--dark-color);
}

.modal.daenak-history .daenak-list .list-item {
    padding-bottom: 5px;
}

.modal.daenak-history .daenak-list .list-item:not(:last-child) {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--dark-color);
}

.modal.daenak-history .daenak-list .list-item .thumb {
    cursor: pointer;
}

.modal.daenak-history .daenak-list .list-item .thumb > div {
    padding: 10px;
}

.modal.daenak-history .daenak-list .list-item .details {
    background: #f8f8f8;
    padding: 10px 25px;
    height: fit-content;
    max-height: 250px;
    overflow-y: scroll;
    scroll-behavior: smooth;
    display: none;
    line-height: 1.5rem;
}

.modal.daenak-history .daenak-list .list-item .details::-webkit-scrollbar {
    width: 8px;
}

.modal.daenak-history .daenak-list .list-item .details::-webkit-scrollbar-thumb {
    background: #ffbe98;
    border-radius: 5px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.modal.daenak-history .daenak-list .list-item .details > div:not(:first-child) {
    margin-top: 16px;
}

.modal.daenak-history .daenak-list .list-item .details > div {
    gap: 2px;
}

.modal.daenak-history .daenak-list .list-item button {
    position: relative;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 1px solid var(--dark-color);
    margin-left: -30px;
}

.modal.daenak-history .daenak-list .list-item button::before {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 35px;
    font-size: 1rem;
    margin-left: 2px;
}

.modal.daenak-history .daenak-list .list-item button.review::before {
    content: "작성";
}

.modal.daenak-history .daenak-list .list-item button.my-review::before {
    content: "보기";
}

.modal.daenak-history .daenak-list .list-item button::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.modal.daenak-history .daenak-list .list-item button.review::after {
    background: url(../img/write-review-icon.svg) center / contain no-repeat;
    left: 3px;
    width: 11px;
    height: 11px;
}

.modal.daenak-history .daenak-list .list-item button.my-review::after {
    background: url(../img/my-review-icon.svg) center / contain no-repeat;
    left: 1px;
    width: 16px;
    height: 9px;
}

.modal.my-inquiry .modal-body {
    padding-top: 0;
}

.modal.my-inquiry .list-header {
    border-bottom: 1px solid var(--dark-color);
    text-align: center;
    background: #fff;
    position: sticky;
    top: 3.5rem;
    height: 2.75rem;
    line-height: 2.75rem;
    z-index: 1;
}

.modal.my-inquiry .list-header > div:nth-child(1),
.modal.my-inquiry .inquiry-list .list-item .thumb > div:nth-child(1) {
    min-width: 70%;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.modal.my-inquiry .inquiry-list .list-item .thumb > div:nth-child(1) {
    text-align: start;
}

.modal.my-inquiry .list-header > div:nth-child(2),
.modal.my-inquiry .inquiry-list .list-item .thumb > div:nth-child(2) {
    min-width: 30%;
    text-align: center;
}

.modal.my-inquiry .inquiry-list {
    border-bottom: 1px solid var(--dark-color);
}

.modal.my-inquiry .inquiry-list .list-item {
    padding-bottom: 5px;
}

.modal.my-inquiry .inquiry-list .list-item:not(:last-child) {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--dark-color);
}

.modal.my-inquiry .inquiry-list .list-item .thumb {
    cursor: pointer;
}

.modal.my-inquiry .inquiry-list .list-item .thumb > div {
    padding: 10px;
}

.modal.my-inquiry .inquiry-list .list-item .details {
    background: #f8f8f8;
    padding: 10px 25px;
    height: fit-content;
    max-height: 250px;
    overflow-y: scroll;
    scroll-behavior: smooth;
    display: none;
    line-height: 1.5rem;
}

.modal.my-inquiry .inquiry-list .list-item .details::-webkit-scrollbar {
    width: 8px;
}

.modal.my-inquiry .inquiry-list .list-item .details::-webkit-scrollbar-thumb {
    background: #ffbe98;
    border-radius: 5px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.modal.my-inquiry .inquiry-list .list-item .details .question {
    position: relative;
    padding: 0 10px 15px 25px;
}

.modal.my-inquiry .inquiry-list .list-item .details .answer {
    position: relative;
    border-top: 1px solid #ddd;
    padding: 15px 10px 10px 25px;
}

.modal.my-inquiry .inquiry-list .list-item .details .question::before {
    content: "Q.";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    font-weight: 900;
}

.modal.my-inquiry .inquiry-list .list-item .details .answer::before {
    content: "A.";
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
}

.modal.my-inquiry .inquiry-list .list-item .details .question .title {
    display: block;
    margin-bottom: 10px;
}

.modal.my-inquiry .inquiry-list .list-item .details .question .content,
.modal.my-inquiry .inquiry-list .list-item .details .answer .content {
    white-space: pre-wrap;
}

.modal.my-inquiry .inquiry-list .list-item .details small {
    color: #808080;
    font-size: 0.688rem;
    display: block;
    text-align: end;
}

.modal.my-inquiry .inquiry-list .list-item .details .files {
    color: #808080;
    gap: 5px;
    font-size: 0.875rem;
    margin-top: 8px;
}

.modal.my-inquiry .inquiry-list .list-item .details .files span {
    cursor: pointer;
    transition: 0.3s;
}
.modal.my-inquiry .inquiry-list .list-item .details .files span:hover{
    color: #000;
}

.modal.review h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 10px 0;
    text-align: center;
    line-height: 1.5rem;
}

.modal.review .rating {
    justify-content: center;
}

.modal.review .rating input {
    display: none;
}

.modal.review .rating input ~ label {
    font-size: 2.25rem;
    color: #ddd;
    cursor: pointer;
}

.modal.review .rating input ~ label.active {
    color: var(--primary-color);
}

.modal.review span {
    margin-bottom: 8px;
}

.modal.review textarea {
    width: 100%;
    resize: none;
    height: 100px;
    border: 1px solid #d6d6d6;
    padding: 10px;
    outline: none;
    box-sizing: border-box;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 5px;
}

.modal.review textarea::placeholder {
    color: #ddd;
}

.modal.review p {
    font-size: 0.75rem;
    line-height: 1.2rem;
}

.modal.review .btn-wrap {
    padding: 40px 0 20px;
    justify-content: center;
    gap: 10px;
}

.modal.review .btn-wrap button,
.modal.instant .btn-wrap button {
    width: 170px;
    background: var(--primary-color);
    border: 1px solid var(--dark-color);
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 1.125rem;
    transition: 0.3s;
    border-radius: 10px;
    color: var(--dark-color);
    cursor: pointer;
}

.modal.review .btn-wrap button:hover,
.modal.instant .btn-wrap button:hover {
    transform: scale(1.03);
    background: var(--dark-color);
    color: #fff;
}

.modal.confirm .modal-content {
    max-width: 400px;
}

.modal.confirm p {
    padding: 50px 0 30px;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8rem;
    position: relative;
}

.modal.confirm p::before {
    content: "";
    position: absolute;
    background: url(../img/e-mark-icon.svg) center / contain no-repeat;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
}

.modal.confirm .btn-wrap {
    justify-content: center;
    gap: 10px;
}

.modal.confirm .btn-wrap button {
    width: 170px;
    background: var(--primary-color);
    border: 1px solid var(--dark-color);
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 1.125rem;
    transition: 0.3s;
    border-radius: 10px;
    color: var(--dark-color);
    cursor: pointer;
}

.modal.confirm .btn-wrap button.gb {
    background: #fff;
}

.modal.confirm .btn-wrap button:hover {
    transform: scale(1.03);
    background: var(--dark-color);
    color: #fff;
}

.modal.cookie .modal-content {
    max-width: 500px;
}

.modal.calc .modal-content {
    max-width: 460px;
    border: 2px solid var(--dark-color);
}

.modal.calc .modal-header {
    width: 100%;
    height: 3.125rem;
    line-height: 3.125rem;
    margin: 0;
    border-bottom: 2px solid var(--dark-color);
}

.modal.calc .modal-body {
    padding: 0;
}

.modal.calc .window {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    padding: 0;
    cursor: pointer;
}

.modal.calc .window::before {
    content: "";
    background: url(../img/window-icon.svg) center / contain no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    transition: 0.3s;
}

.modal.calc .window:hover::before {
    background: url(../img/window-icon-orange.svg) center / contain no-repeat;
}

.modal.calc .modal-close {
    width: 18px;
    height: 18px;
}

.modal.calc .modal-close::before {
    content: "";
    background: url(../img/calc-close-icon.svg) center / contain no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    transition: 0.3s;
}

.modal.calc .modal-close:hover::before {
    background: url(../img/calc-close-icon-orange.svg) center / contain no-repeat;
}

.modal.calc .window:hover::before,
.modal.calc .modal-close:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.modal.calc .discount {
    box-shadow: 0 1px 4px #00000040;
}

.modal.calc .discount > div {
    padding: 10px 20px;
    color: var(--dark-color);
    font-size: 0.875rem;
}

.modal.calc .discount > div:not(:last-child) {
    border-bottom: 1px solid #d2d2d2;
}

.modal.calc .discount input ~ label {
    padding: 0;
    display: block;
    width: 100%;
}

.modal.calc .discount input ~ label::before {
    width: 16px;
    height: 16px;
    left: calc(100% - 16px);
    border: 1px solid #9b9b9b;
}

.modal.calc .discount input:checked ~ label::after {
    width: 13px;
    height: 10px;
    left: calc(100% - 8px);
}

.modal.calc .input-wrap {
    padding: 15px 10px;
    font-size: 0.875rem;
}

.modal.calc .input-wrap .list-header {
    margin-bottom: 8px;
}

.modal.calc .input-wrap .input-list {
    gap: 5px;
}

.modal.calc .input-wrap .list-header,
.modal.calc .input-wrap .input-list .list-item {
    gap: 10px;
}

.modal.calc .input-wrap .list-header > div,
.modal.calc .input-wrap .input-list .list-item > div {
    flex: 1;
    gap: 3px;
}

.modal.calc .input-wrap .list-header > div > small {
    color: #9b9b9b;
    font-size: 0.6875rem;
}

.modal.calc .input-wrap .input-list .list-item input {
    height: 30px;
    border: 1px solid #9b9b9b;
    border-radius: 3px;
    color: var(--dark-color);
    box-sizing: border-box;
    padding: 0 5px;
    outline: none;
    flex: 1;
    text-align: end;
}

.modal.calc .input-wrap .input-list .list-item > div:first-child input:last-child {
    width: 46px;
    text-align: center;
}

.modal.calc .input-wrap .input-list .list-item button.delete {
    width: 30px;
    height: 30px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid var(--dark-color);
    background: var(--primary-color);
    color: #fff;
    border-radius: 3px;
    position: relative;
    transition: 0.3s;
}

.modal.calc .input-wrap .input-list .list-item button.delete:disabled {
    background: #ddd;
    cursor: default;
}

.modal.calc .input-wrap .input-list .list-item button.delete:not(:disabled):hover {
    transform: scale(1.05);
}

.modal.calc .input-wrap .input-list .list-item button.delete::before {
    content: "";
    background: url(../img/minus-icon.svg) center / contain no-repeat;
    position: absolute;
    width: 13.5px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal.calc button.add {
    border-top: 1px solid var(--dark-color);
    border-bottom: 1px solid var(--dark-color);
    background: var(--primary-color);
    color: #fff;
    height: 30px;
    text-align: center;
    width: 100%;
    position: relative;
    display: block;
}

.modal.calc button.add::before {
    content: "";
    background: url(../img/plus-icon.svg) center / contain no-repeat;
    position: absolute;
    width: 15px;
    height: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal.calc .result-wrap {
    padding: 15px;
    gap: 15px;
    font-size: 0.875rem;
}

.modal.calc .result-wrap > div {
    justify-content: space-between;
}

.modal.calc .result-wrap input,
.modal.calc .final-result-wrap input {
    border: none;
    outline: none;
    text-align: end;
    font-size: 0.875rem;
    color: #212529;
    max-width: 55%;
    background: transparent;
}

.modal.calc .result-wrap > div:last-child {
    border-top: 1px solid #959595;
    padding-top: 15px;
}

.modal.calc .final-result-wrap {
    width: 100%;
    background: var(--primary-color);
    color: var(--dark-color);
    font-size: 0.875rem;
    font-weight: bold;
    padding: 0 15px;
    height: 47px;
    border-top: 1px solid var(--dark-color);
    justify-content: space-between;
}

.modal.calc .final-result-wrap input {
    font-weight: bold;
}

.modal.login .modal-content {
    max-width: 450px;
}

.modal.login .modal-body p {
    text-align: center;
}

.modal.login .modal-body > div {
    justify-content: center;
    margin: 20px 0;
}

.modal.login .modal-body > div > a {
    transition: 0.3s;
}

.modal.login .modal-body > div > a:hover {
    transform: scale(1.03);
}

.modal.account .modal-content,
.modal.add-account .modal-content {
    max-width: 500px;
}

.modal.account .modal-body {
    padding-top: 0;
}

.modal.account .list-header {
    border-bottom: 1px solid var(--dark-color);
    background: #fff;
    position: sticky;
    top: 3.5rem;
    height: 2.75rem;
    line-height: 2.75rem;
    z-index: 1;
}

.modal.account .account-list {
    background: #f8f8f8;
}
.modal.account .account-list .list-item {
    cursor: pointer;
}
.modal.account .list-header > div {
    padding: 10px;
}
.modal.account .list-header > div:nth-child(1),
.modal.account .account-list .list-item > div:nth-child(1) {
    width: 25%;
    padding-left: 1.25rem;
}

.modal.account .list-header > div:nth-child(2),
.modal.account .account-list .list-item > div:nth-child(2) {
    width: 20%;
}
.modal.account .list-header > div:nth-child(3),
.modal.account .account-list .list-item > div:nth-child(3) {
    width: 40%;
}

.modal.account .list-header > div:nth-child(4),
.modal.account .account-list .list-item > div:nth-child(4) {
    width: 15%;
    padding-right: 1.25rem;
    text-align: end;
}

.modal.account .account-list .list-item > div {
    padding: 10px;
}

.modal.account .account-list .list-item:not(:last-child) {
    border-bottom: 1px solid var(--dark-color);
}

.modal.account .account-list .list-item button.delete {
    width: 20px;
    height: 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--dark-color);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.modal.account .account-list .list-item button::before {
    content: "";
    background: url(../img/minus-icon.svg) center / contain no-repeat;
    position: absolute;
    width: 10px;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal.account .account-list .list-item button.delete:hover {
    transform: scale(1.1);
    background: var(--primary-color);
}

.modal.account button.input-account-btn {
    width: 100%;
    border: none;
    background: var(--dark-color);
    color: #fff;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    font-size: 1rem;
}

.modal.account .input-account-wrap .checkbox-wrap {
    margin-bottom: 5px;
}

.modal.account .input-account-wrap input[type="text"] {
    width: 100%;
}

.modal.add-account .input-account-wrap .btn-wrap {
    padding-top: 20px;
    justify-content: center;
}

.modal.add-account .input-account-wrap button.add {
    width: 170px;
    background: var(--primary-color);
    border: 1px solid var(--dark-color);
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 1.125rem;
    transition: 0.3s;
    border-radius: 10px;
    color: var(--dark-color);
    cursor: pointer;
}

.modal.add-account .input-account-wrap button.add:hover {
    transform: scale(1.03);
    background: var(--dark-color);
    color: #fff;
}

.modal.reward .modal-content,
.modal.instant .modal-content {
    max-width: 500px;
}

.modal.instant .modal-body p {
    text-align: center;
    margin-bottom: 20px;
}

.modal.instant .modal-body .input-wrap {
    gap: 5px;
    justify-content: center;
}

.modal.instant .modal-body .input-wrap input {
    border: 1px solid #b1b1b1;
    background: #fff;
    outline: none;
    padding: 0;
    text-align: center;
    width: 100%;
    min-width: 25px;
    max-width: 50px;
    height: 50px;
    border-radius: 5px;
    font-size: 1.5rem;
}

.modal.instant .modal-body .input-wrap input:nth-child(4) {
    margin-right: 1rem;
}

.modal.instant .modal-body .input-wrap input.warning {
    border-color: #ff3232;
    background: #ffeaee;
}

.modal.instant .btn-wrap {
    justify-content: center;
    margin-top: 30px;
}

.modal.instant .caption {
    text-align: center;
}

.modal.inquiry-verification .modal-body > p {
    text-align: center;
}
.modal.inquiry-verification .input-form {
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.modal.inquiry-verification .input-form > div {
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 300px;
}

.modal.inquiry-verification .btn-wrap {
    margin: 20px 0;
}

@media (hover: hover) {
    .group.coupon .coupon-table tr:hover {
        background: #ffbf9f;
    }

    .group.coupon .coupon-table td:hover {
        background: var(--primary-color);
        cursor: pointer;
    }
}

/* responsive */
@media screen and (max-width: 1200px) {
    .header,
    .footer,
    .top-bar,
    .main-container .section {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1049px) {
    .welcome-container .intro {
        min-width: unset;
    }
}

@media screen and (max-width: 1024px) {
    .main-container {
        height: calc(100% - 50px);
    }

    .sidebar-wrap {
        display: none!important;
    }

    .main-container .section {
        padding: 0;
    }

    .header .nav {
        display: none;
    }

    .footer {
        display: none;
    }

    .bottom-chat {
        display: block;
    }

    .form-wrap {
        padding-bottom: 62px;
        width: 100%;
    }

    .header .hamburger-btn {
        display: block;
    }

    .side-ad,
    .sidebar-ad {
        display: none;
    }
}

@media screen and (max-width: 824px) {
    .welcome-container .section > div {
        flex-direction: column;
    }
    .welcome-container .section > div > div {
        width: 100%
    }
}

@media screen and (max-width: 649px) {
    .group.payment {
        flex-direction: column;
        row-gap: 15px;
    }
}

@media screen and (max-width: 484px) {
    html {
        font-size: 15px;
    }

    .group.id .checkbox-wrap {
        flex-direction: column;
        align-items: start;
        row-gap: 8px;
    }

    .coupon-table {
        font-size: 0.875rem;
    }

    .group.coupon .coupon-table th,
    .group.coupon .coupon-table td {
        padding: 4px 8px;
    }

    .top-bar span.calc {
        padding-left: 26px;
    }

    .top-bar span.calc::before {
        content: "";
    }

    .top-bar span.price::before {
        content: "";
    }
    .top-bar .progress-wrap {
        padding: 0 8px;
    }
    .top-bar .progress-wrap::before {
        content: "";
        margin: 0;
    }
    .modal.inquiry .inquiry-wrap {
        margin: 0;
    }
    .modal.inquiry .inquiry-wrap > div > div:first-child {
        min-width: 80px;
    }
    .modal.inquiry .inquiry-wrap > div > div:last-child {
        padding: 5px;
    }
}

@media screen and (max-width: 424px) {
    html {
        font-size: 14px;
    }

    .group.name,
    .group.phone,
    .group.pw {
        flex-direction: column;
    }

    .group.name > div,
    .group.phone > div,
    .group.pw > div {
        width: 100%;
    }

    .group.phone .caption {
        width: 100%;
    }

    .choice-list-wrap .list-item {
        gap: 5px;
    }

    .choice-list-wrap .list-item > div:first-child {
        gap: 5px;
    }

    .custom-coupon-area .not-use-coupon-list-wrap .list-item,
    .select-coupon-area .select-coupon-list-wrap .list-item {
        gap: 5px;
    }

    .select-coupon-area .select-coupon-list-wrap .list-header > div,
    .select-coupon-area .select-coupon-list-wrap .list-item > div:first-child {
        gap: 5px;
    }

    .custom-coupon-area .not-use-coupon-list-wrap .list-header > div,
    .custom-coupon-area .not-use-coupon-list-wrap .list-item > div:first-child {
        gap: 5px;
    }
}

@media screen and (max-width: 324px) {
    html {
        font-size: 12px;
    }

    .modal.instant .modal-body .wrap {
        padding: 0;
    }
}
