@charset "UTF-8";

.side-box {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.bbs_wrap {
    margin: 50px 0;
}

.btn_wrap {
    text-align: center;
    padding: 0;
}

.btn_wrap a {
    font-size: 15px;
    font-weight: 600;
    padding: 5px 15px;
    border: 1px solid var(--bc);
    border-radius: 10px;
    margin: 20px 2px;
}

.btn_wrap a:hover {
    background-color: var(--bc);
    color: #fff;
}

@media screen and (min-width: 767px) {
    .side-box {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }
    .bbs_wrap {
        margin: 100px 0;
    }
    .btn_wrap {
        text-align: right;
    }
}

.bbs_basic_type {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.bbs_info {
    margin-bottom: 10px;
}
.bbs_info .list_num {
    text-align: right;
    margin-bottom: 15px;
}

.bbs_basic_type .table {
    width: 100%;
}
.bbs_basic_type .table .no {
    text-align: center;
    width: 120px;
}

.bbs_basic_type .table .center {
    text-align: center;
}

.bbs_basic_type .table .title {
    width: auto;
}

.bbs_basic_type .table .none {
    display: none;
}

.submit_area {
    padding: 15px 0;
}

.btn-cmt {
    text-align: center;
    padding: 8px 10px;
    height: 40px;
    background-color: #f4f4f4;
    border: 1px solid var(--bc);
    font-size: 0.9375rem;
    border-radius: 5px;
    font-weight: 600;
}

.btn-list {
    text-align: center;
    padding: 8px 30px;
    height: 40px;
    background-color: #f4f4f4;
    border: 1px solid var(--bc);
    font-size: 0.9375rem;
    border-radius: 5px;
    font-weight: 600;
}
.btn-submit {
    font-size: 0.9375rem;
    color: var(--color-white);
    font-weight: 700;
    background-color: var(--mc);
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 30px;
    height: 40px;
    border: none;
    width: auto;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    margin: 0 auto;
    background-color: var(--bc);
    border-radius: 5px;
}

@media screen and (min-width: 767px) {
    .bbs_basic_type .table .none {
        display: table-cell;
    }

    .submit_area {
        padding: 30px 0;
    }
}

.bbs_basic_type .v-file-row {
    display: flex;
    justify-content: start;
    align-items: center;
}
.bbs_basic_type .v-file-row .v-file-preview {
    flex-basis: 100px;
}
.bbs_basic_type .v-file-row .v-file-preview img {
    max-width: 100%;
}
.bbs_basic_type .v-file-row .v-file-btn {
    flex: 1 1 auto;
}

.bbs_basic_type .v-file-content {
    display: block;
}
.bbs_basic_type .v-file-content .v-file-preview {
}
.bbs_basic_type .v-file-content .v-file-preview img {
    max-width: 100%;
}

.bbs_basic_type .ico {
    display: inline-block;
    padding: 0 5px;
}

.bbs_basic_type .comment-area {
    resize: none;
    min-height: 100px;
    padding-top: 20px;
}

.bbs_basic_type .comment-box {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
}
.bbs_basic_type .comment-box .cb-profile {
    flex-basis: 6%;
}
.bbs_basic_type .comment-box .cb-profile .cb-photo {
    position: relative;
    width: 100%;
}
.bbs_basic_type .comment-box .cb-profile .cb-photo img {
    max-width: 100%;
    border-radius: 50%;
}

.bbs_basic_type .comment-box .cb-content {
    flex-basis: 84%;
    padding: 0 20px;
    overflow: hidden;
}

.bbs_basic_type .comment-box .cb-content .cbr-name {
    font-size: 16px;
    font-weight: 600;
}

.bbs_basic_type .comment-box .cb-content .cbr-comment {
    font-size: 1rem;
    width: 100%;
    word-wrap: break-word;
    position: relative;
}

.bbs_basic_type .comment-box .cb-content .cbr-answer {
    font-size: 1rem;
    width: 100%;
    word-wrap: break-word;
    position: relative;
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.bbs_basic_type .comment-box .cb-btn {
    flex-basis: 10%;
    display: flex;
    justify-content: space-evenly;
}

/*
* 취소팝업
*/
.openLayerPopWrapper {
    z-index: 10000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: auto !important;
    height: 700px;
    max-height: 700px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid transparent;
    overflow-y: auto;
    overflow-x: inherit;
}
.openLayerPopBg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.openLayerPopWrapper .inner-body {
    position: relative;
    width: 100%;
    background-color: #fff;
    text-align: left;
    padding: 30px 20px;
    font-size: 14px;
}

.openLayerPopWrapper .inner-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.openLayerClose {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
}

.no-data {
    display: flex;
    padding: 50px 0;
    text-align: center;
}

.no-data .inner-box ion-icon {
    font-size: 2.5em;
}

.no-data .inner-box p {
    font-size: 1.2em;
}

#base-loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

#base-loading.hide {
    display: none;
}

@media screen and (max-width: 640px) {
    .openLayerPopWrapper {
        width: 320px;
        height: auto !important;
    }

    .openLayerPopWrapper .inner-body {
        padding: 20px 10px;
        font-size: 12px;
    }
}

.ch_header {
    border-bottom: 2px solid #eee;
    padding: 5px;
    background-color: #fff;
}

.ch_title {
    display: flex;
    color: #555;
    align-items: center;
}

.ch_title a ion-icon {
    font-weight: 900;
    margin: 15px 10px 0 0;
    font-size: 20px;
}

.ch_title figure {
    width: 40px;
    margin: 0 10px 0 0;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 50%;
}

.ch_title figure img {
    max-width: 100%;
    border-radius: 50%;
    padding: 5px;
}

.ch_title p {
    font-weight: 600;
    margin: 0 0 0 0;
    font-size: 16px;
}

.chat_wrap {
    position: relative;
    width: 100%;
    padding: 0;
}

.chat_wrap span#date {
    display: block;
    font-size: 14px;
    color: #999;
    text-align: center;
}

.chat_wrap .chat {
    position: relative;
    height: 425px;
    padding: 0 0.75rem;
    overflow-y: auto;
}

.chat_wrap .chat ul {
    width: 100%;
}

.chat_wrap .chat ul li {
    width: 100%;
    margin-bottom: 5px;
}

.chat_wrap .chat ul li.left {
}

.chat_wrap .chat ul li.right {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.chat_wrap .chat ul li > div.sender {
    margin: 5px 0 0;
}

.chat_wrap .chat ul li > div.sender > div.profile {
    display: flex;
    color: #555;
    align-items: center;
}

.chat_wrap .chat ul li > div.sender > div.profile .img {
    width: 40px;
    margin: 0 10px 0 0;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 50%;
}

.chat_wrap .chat ul li > div.sender > div.profile .img img {
    max-width: 100%;
    border-radius: 50%;
    padding: 5px;
}

.chat_wrap .chat ul li > div.sender > div.profile .name {
    font-size: 14px;
    font-weight: 600;
}

.chat_wrap .chat ul li > div.bubble_wrap {
    margin: 0 0 0 50px;
}

.chat_wrap .chat ul li > div.bubble_wrap > div.bubble {
    margin: 0 auto 5px;
    opacity: 0;
    animation: chatBubbleFadeIn 0.3s forwards;
}

.chat_wrap .chat ul li.right > div.bubble_wrap > div.bubble {
    margin: 0 auto 5px;
    display: flex;
    justify-content: end;
}

.chat_wrap .chat ul li > div.bubble_wrap > div.bubble .message {
    display: inline-block;
    word-break: break-all;
    padding: 10px 15px;
    background: #f4f4f4;
    font-size: 14px;
    -webkit-border-radius: 0 20px 20px 20px;
    -moz-border-radius: 0 20px 20px 20px;
    border-radius: 0 20px 20px 20px;
}

.chat_wrap .chat ul li.right > div.bubble_wrap > div.bubble .message {
    display: inline-block;
    word-break: break-all;
    padding: 10px 15px;
    background: #fdeded;
    font-size: 14px;
    -webkit-border-radius: 20px 20px 0 20px;
    -moz-border-radius: 20px 20px 0 20px;
    border-radius: 20px 20px 0 20px;
}
.chat_wrap .chat ul li > div.bubble_wrap > .sendDate {
    display: block;
    color: #888;
    font-size: 12px;
}

.chat_wrap .chat_input {
    position: fixed;
    width: 100%;
    bottom: 20px;
    left: 0;
    background-color: transparent;
    text-align: center;
}

.answer-box {
    display: block;
}
.answer-box.hide {
    display: none;
}

.asw_btn button {
    font-size: 15px;
    border: 1px solid var(--mc);
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--mc);
    background-color: #fff;
}
.asw_btn button:disabled {
    color: var(--dc);
    background-color: #eee;
    border: 1px solid #eee;
}

.asw_btn2 {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}
.asw_btn2 button {
    font-size: 12px;
    border: 1px solid var(--mc);
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    max-width: 100%;
    margin-bottom: 3px;
    color: var(--mc);
    background-color: #fff;
}
.asw_btn2 button:disabled {
    color: var(--dc);
    background-color: #eee;
    border: 1px solid #eee;
}

.asw_btn4 {
    display: flex;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.asw_btn4 button {
    font-size: 12px;
    border: 1px solid var(--mc);
    padding: 10px 5px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--mc);
    background-color: #fff;
    margin: 0 3px 3px;
    flex-basis: 45%;
}
.asw_btn4 button:disabled {
    color: var(--dc);
    background-color: #eee;
    border: 1px solid #eee;
}

.messageformat {
    display: none;
}

.chat_wrap #chat-loading {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat_wrap #chat-loading.hide {
    display: none;
}

@keyframes chatBubbleFadeIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.no_data {
    width: 100%;
    text-align: center;
}

#preview_img[src="#"] {
    display: none;
}

#preview_img {
    max-width: 100px;
    margin: 0 10px;
}

.cart_list {
    margin: 0;
    padding: 0;
}

.cart_list li.cart_store {
    border-top: 1px solid #999;
    padding: 10px 20px;
}

.cart_list li.cart_store em {
    font-weight: 600;
    font-size: 1.1em;
}

.cart_list li.cart_row {
    border-top: 1px solid #999;
}

.cart_list li.cart_row:last-child {
    border-bottom: 1px solid #999;
}

.cart_info {
    width: 100%;
    position: relative;
    display: flex;
    padding: 20px 0;
}

.cart_info a {
    display: flex;
    width: 100%;
    position: relative;
}

.cart_info .cart_img {
    flex-basis: 100px;
    max-width: 100px;
}

.cart_info .cart_img > img {
    max-width: 100%;
}

.cart_info .cart_etc {
    display: flex;
    margin-left: 10px;
    flex-direction: column;
    justify-content: space-evenly;
}

.cart_info .cart_etc .item_info {
}
.cart_info .cart_etc h4 {
    font-size: 1rem;
    letter-spacing: -1px;
    margin: 0;
}
.cart_info .cart_etc h4.price {
    color: #ce1f31;
    font-weight: 700;
}
.cart_info .cart_etc p {
    font-size: 0.9rem;
    letter-spacing: -1px;
    color: #999;
    margin: 0;
}
.cart_info .cart_etc .order_info {
    margin: 10px 0;
}

.cart_info .cart_etc .status_info {
    margin: 10px 0 0;
}

.cart_info .cart_etc .status_info .order_badge {
    display: inline-block;
    margin: 0 3px;
    font-size: 0.9rem;
    letter-spacing: -1px;
    padding: 3px 5px;
    border-radius: 5px;
}
.cart_info .cart_etc .status_info .order_badge.order1 {
    background: var(--mc);
    color: #fff;
}
.cart_info .cart_etc .status_info .order_badge.order2 {
    background: #999;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .cart_info .cart_img {
        flex-basis: 200px;
        max-width: 200px;
        text-align: center;
    }

    .cart_info .cart_etc {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-basis: calc(100% - 210px);
    }

    .cart_info .cart_etc h4 {
        font-size: 1.2rem;
        letter-spacing: -1px;
    }
    .cart_info .cart_etc p {
        font-size: 1rem;
        letter-spacing: -1px;
    }
    .cart_info .cart_etc h4.price {
        font-size: 1.5rem;
    }

    .cart_info .cart_etc .order_info {
        margin: 0 50px;
    }
    .cart_info .cart_etc .status_info {
        margin: 0 0 0 50px;
    }

    .cart_info .cart_etc .status_info .order_badge {
        display: block;
        margin: 3px 0;
    }
}

/* 팝업레이어 */

.hd_popup {
    z-index: 1000;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 640px;
    height: 0;
}
.hd_pops {
    position: absolute;
    border: 1px solid #e9e9e9;
    background: #fff;
    top: 100px;
    left: 0;
    width: 100%;
}
.hd_pops img {
    max-width: 100%;
    height: auto;
}
.hd_pops_con {
}
.hd_pops_con p {
    margin: 0;
}
.hd_pops_footer {
    padding: 10px 0;
    background: #000;
    color: #fff;
    text-align: right;
}
.hd_pops_footer button {
    margin-right: 5px;
    padding: 5px 10px;
    border: 0;
    background: #393939;
    color: #fff;
}
@media (min-width: 767px) {
    .hd_popup {
        max-width: 100%;
    }
    .hd_pops {
        width: auto;
    }
}

.wizard > .steps {
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
}

.wizard > .steps > ul {
    padding: 0;
    margin-bottom: 0;
    display: flex;
}

.wizard > .steps > ul li {
    flex: 1 1 auto;
}

.wizard > .steps > ul li .number {
    display: none;
}
.wizard > .steps > ul li .title {
}

.wizard > .steps a {
    padding: 10px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    border: 1px solid;
    margin: 0 15px;
}

.wizard > .steps .disabled a {
    color: #737688;
}

.wizard > .steps .current a {
    color: var(--mc);
}

.wizard > .steps > ul li .current-info {
    display: none;
}

.wizard > .content > .title {
    display: none;
}
.wizard > .actions {
}
.wizard > .actions > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.wizard > .actions a {
    display: block;
    background-color: var(--bc);
    padding: 9px 25px;
    line-height: 1.573;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
}

.wizard > .actions .disabled a {
    background-color: #ccc;
}

.wizard > .actions > ul > li:last-child a {
    background-color: #09ad95;
}

.share-like-wrap {
    position: relative;
    width: 100%;
    display: block;
    margin-top: 15px;
}

.share-like-box {
    position: relative;
    width: 100%;
    display: block;
    border-top: 1px solid #ddd;
}

.share-like-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.share-like-box ul li {
}

.share-like-box ul li a {
    display: block;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: 20px 10px 0;
}

.sl-text {
    padding: 10px;
}
.sl-text i {
    color: #a5a6aa;
}
.sl-text span {
    color: var(--color-black);
}

.share-like-box ul li a.like .sl-text i {
    color: var(--mc);
}

.share-like-layer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.share-like-layer::after {
}
.share-like-layer .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 170px;
    background-color: #fff;
    text-align: center;
    padding: 15px 20px 20px 20px;
    border-radius: 20px;
}

.share-like-layer .mo_hd {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: 1rem;
}

.share-like-layer .mo_hd h5 {
    font-weight: 600;
    margin: 0;
}

.share-like-layer .mo_hd .mo_close {
}

.share-like-layer .mo_hd .mo_close a {
    font-size: 1.5rem;
}

.share-like-layer .mo_body {
    margin: 20px 0 0 0;
}

.share-like-layer .mo_body ul {
    display: flex;
    justify-content: space-between;
}
.share-like-layer .mo_body ul li {
}
.share-like-layer .mo_body ul li a {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--mc);
    justify-content: center;
    align-items: center;
}
.share-like-layer .mo_body ul li a.share-kakao {
    background-color: #fae100;
    color: #3b1c1c;
}
.share-like-layer .mo_body ul li a.share-fb {
    background-color: #4267b2;
    color: #fff;
}
.share-like-layer .mo_body ul li a.share-x {
    background-color: #1d9bf0;
    color: #fff;
}
.share-like-layer .mo_body ul li a.share-url {
    background-color: var(--bc);
    color: #fff;
}

.share-like-layer .mo_body ul li a i {
    font-size: 1.8rem;
}
.share-like-layer .mo_body ul li span {
    display: block;
    font-size: 12px;
    margin: 5px 0 0 0;
}

@media screen and (min-width: 768px) {
    .share-like-wrap {
        width: 50px;
        position: absolute;
        margin-left: -90px;
        top: 0;
        background-color: white;
        margin-top: 0;
    }

    .share-like-box {
        border-top: 0 none;
    }

    .share-like-box ul {
        flex-direction: column;
    }
    .share-like-box ul li {
        margin-bottom: 10px;
    }

    .share-like-box ul li a {
        border: 0 none;
        margin: 0;
    }

    .sl-text {
        padding: 0;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .sl-text span {
        font-size: 0.8rem;
        display: block;
        margin-top: 5px;
    }

    .share-like-layer {
        display: block;
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        height: auto;
        background-color: rgba(255, 255, 255, 1);
        z-index: 999;
    }

    .share-like-layer .inner {
        position: relative;
        top: unset;
        left: unset;
        transform: translate(0, 0);
        width: auto;
        height: auto;
        background-color: #fff;
        text-align: center;
        padding: 0;
        border-radius: 0;
    }
    .share-like-layer .mo_hd {
        display: none;
    }
    .share-like-layer .mo_body {
        margin: 10px 0 0 0;
    }
    .share-like-layer .mo_body ul {
        flex-direction: column;
    }
    .share-like-layer .mo_body ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }
    .share-like-layer .mo_body ul li:last-child {
        margin-bottom: 0;
    }

    .share-like-layer .mo_body ul li a {
        width: 30px;
        height: 30px;
    }
    .share-like-layer .mo_body ul li a i {
        font-size: 1.2rem;
    }
    .share-like-layer .mo_body ul li span {
        font-size: 0.8rem;
    }
}

.note-editable ul,
.note-editable ul li {
    list-style: disc !important;
    list-style-position: inside !important;
}

.note-editable ol,
.note-editable ol li {
    list-style: decimal !important;
    list-style-position: inside !important;
}

.mymoim_cont {
    margin-top: 20px;
}
.mymoim {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 20px 15px;
    margin-bottom: 10px;
    text-align: left;
}
.mymoim .inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}
.mymoim .inner .info01 {
    width: 100%;
}
.mymoim .inner .info01 .title {
    font-weight: 600;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.mymoim .inner .info01 .info-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.mymoim .inner .info01 .info-detail li {
}
.mymoim .inner .info01 .info-detail li a {
}
.mymoim .inner .info01 .info-people {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.mymoim .inner .info01 .info-people .max strong,
.mymoim .inner .info01 .info-people .max em {
    font-weight: 400;
    color: var(--mc);
}
.mymoim .inner .info01 .info-people .apply {
}
.mymoim .inner .info01 .info-people .apply strong,
.mymoim .inner .info01 .info-people .apply em {
    color: var(--mc);
}

.mymoim .inner .info01 .info-people .deadline strong,
.mymoim .inner .info01 .info-people .deadline em {
    font-weight: 400;
    color: #999;
}

.mymoim .inner .info02 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .mymoim .inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .mymoim .inner .info01 {
        width: auto;
        flex-basis: 400px;
    }

    .mymoim .inner .info02 {
        width: auto;
        flex-basis: 80px;
    }
}

.mymoim .edit {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mymoim_wrap {
    margin-bottom: 20px;
    border: 1px solid #eee;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 2px 3px 7px rgb(0 0 0 / 10%);
}

.btn-bc {
    color: #fff;
    background-color: var(--bc);
    border-color: var(--bc);
    font-weight: 700;
}

.btn-bc:hover {
    color: #fff;
    background-color: var(--bc);
    border-color: var(--bc);
}

.btn-prev {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc;
    font-weight: 700;
}

.btn-prev:hover {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc;
}

.frm-file-upload-box {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.file-upload-info {
    margin-bottom: 10px;
}
.file-preview-info {
    margin-bottom: 10px;
}
.file-error-info {
}

.file-upload-txt {
}
.file-upload-txt p {
    font-size: 0.8rem;
    margin: 0;
}

.product_wrap .select_option {
    margin: 20px 0 20px 0;
}

.product_wrap .select_option dl {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.product_wrap .select_option dt,
.product_wrap .select_option dd {
    font-size: 1rem;
    margin-bottom: 10px;
}
.product_wrap .select_option dt {
    width: 100%;
    color: #999;
    font-weight: 500;
}
.product_wrap .select_option dd {
    width: 100%;
}
.product_wrap .select_option dd select {
    width: 100%;
    border: 1px solid #999;
    border-radius: 0.5rem;
    padding: 5px 10px;
}

.option_number {
    margin: 20px 0 20px 0;
}
.option_number .stockBox {
    position: relative;
    height: 70px;
    background-color: #fff;
    border-radius: 0.5rem;
    border: 1px solid #999;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.option_number .option_txt {
    color: #999;
    font-weight: 700;
    width: 100px;
}

.option_number .stock_count {
    width: 120px;
    display: flex;
    align-items: center;
}
.option_number .stock_count input.menuNum {
    width: 50px;
    height: 35px;
    padding: 5px;
    text-align: center;
    border-radius: 0;
    border-width: 1px 0;
}
.option_number .stock_count input.menuNum:read-only {
    color: inherit !important;
    background: #fff !important;
    border-top: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
}
.option_number .stock_count button {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background-color: #ddd;
}
.option_number .stock_count button.menuNum_down {
    border-radius: 3px 0 0 3px;
}
.option_number .stock_count button.menuNum_up {
    border-radius: 0 3px 3px 0;
}

.option_number .option_price {
    display: flex;
    align-items: center;
}
.option_number .option_price .option_price_html {
    font-size: 1em;
    font-weight: 500;
}

.option_number .xmark {
    width: 20px;
    height: 20px;
    text-align: center;
}

.option_number .price {
    width: 100px;
    text-align: right;
}
.option_number .price p {
    font-size: 0.938em;
    font-weight: 400;
    letter-spacing: -0.1em;
}
.option_number .price p span {
    font-size: 1.143em;
    font-weight: 700;
}

.total_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 0.5rem;
}
.total_price p {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.total_price h2 {
    margin: 0;
}
.total_price h2 em,
.total_price h2 span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ce1f31;
}

.total_price span {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}
.total_price h4 {
    margin: 0;
}
.total_price h4 em,
.total_price h4 span {
    font-size: 1.2rem;
    font-weight: 400;
}

.ord_nft_list {
    display: flex;
    flex-direction: column;
}

.ord_nft_list .nft_name {
    position: relative;
    font-weight: 400;
    font-size: 0.8rem;
    padding-left: 10px;
}

.ord_nft_list .nft_name::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.sns_login_wrap {
    position: relative;
}
.sns_login_wrap p {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}
.sns_login_wrap p:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}
.sns_login_wrap p span {
    display: inline-block;
    padding: 0 20px;
    font-size: 1em;
    font-weight: 600;
    color: #555;
    line-height: 1.5;
    background-color: #fff;
}
.sns_login_wrap .sns_login_btn {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
.sns_login_wrap .sns_login_btn li {
    margin-bottom: 5px;
}
.sns_login_wrap .sns_login_btn li:last-child {
    margin-bottom: 0px;
}

.sns_login_wrap .sns_login_btn li a {
    display: flex;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
}
.sns_login_wrap .sns_login_btn li a img {
    max-width: 30px;
    margin: 0 5px 0 0;
}
.sns_login_wrap .sns_login_btn li a span {
    font-size: 14px;
    color: #555;
}

/* 사이트 준비중 bg */
.modalBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 9999;
}

.md_blur {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
    margin: 0;
    padding: 50px 0;
}

.md_blur p {
    font-size: 30px;
    font-family: "NanumSquare", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.md_blur em {
    display: block;
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
}

.md_blur img {
    width: 12rem;
}

.btn-intro-skip {
    text-decoration: underline;
    font-weight: 700;
    color: #999;
}

#intro-swiper .swiper-button-prev,
#intro-swiper .swiper-button-next {
    color: #333;
    top: 45%;
}

#intro-swiper .swiper-button-prev {
    left: 20px;
}

#intro-swiper .swiper-button-next {
    right: 20px;
}

#intro-swiper .swiper-pagination {
    position: relative;
    bottom: unset;
    margin: 20px 0;
}

#intro-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #dbdbdb;
    opacity: 1;
}
#intro-swiper
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #525252;
}
[data-theme="dark"] #intro-swiper .swiper-pagination {
    --color-white: #fff;
    --color-black: #000;
}

@media screen and (min-width: 768px) {
    .md_blur {
        width: 40%;
    }
}

.map_wrap {
    position: relative;
    width: 100%;
    height: 300px;
}
.mtitle {
    font-weight: bold;
    display: block;
}
.hAddr {
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 2px;
    background: #fff;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
    padding: 5px;
    color: #333;
    display: none;
}
#centerAddr {
    display: block;
    margin-top: 2px;
    font-weight: normal;
}
.bAddr {
    padding: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #333;
}

.daum_search_addr {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    max-height: 300px;
}

#daum_wrap {
    display: none;
    border: 1px solid;
    width: 100%;
    height: 300px;
    margin: 5px auto 5px;
    position: relative;
}
#btnFoldWrap {
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: -1px;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .map_wrap {
        height: 500px;
    }
    .daum_search_addr {
        max-height: 500px;
    }
    #daum_wrap {
        height: 500px;
    }
}

.frm-chk-box {
    display: flex;
    align-items: center;
}
.frm-chk-box input {
    border-radius: var(--border-radius-xs);
    border: 1px solid #acacac;
    margin-right: 5px;
}

.frm-chk-box span {
    font-size: 0.9375rem;
    color: #646464;
}
