@charset "UTF-8";

/*-------------------------------------------------
Author : WB,Seo
Create date : 2024. 11.06
Last update : 
-------------------------------------------------*/

@font-face {
    font-family: 'Shilla_CultureB-Bold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/Shilla_CultureB-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}


/* Reset */
img {
    width: 100%;
}



/* 초기 값 셋팅 */
#initial * {
    margin: initial;
    padding: initial;
    font-size: initial;
    border: initial;
    font: initial;
    vertical-align: initial;
    list-style: initial;
    font-style: initial;
    font-weight: initial;
}

#initial b {
    font-weight: bold !important;
}

#initial b * {
    font-weight: bold !important;
}

#initial img {
    width: auto;
}



/* Setting Code */
:root {

    --input-border-color: #E2E2E2;
    --input-border-radius: 8px;
    --input-bg-color: var(--white-color);
    /* --main-color: #b38b2d; */
    --main-color: #235E51;
    --main2-color: #F9AF06;
    --white-color: rgb(255, 255, 255);
    --dark-color: #333;
    --red-color: #ff4912;
    --transition-custom: all 0.4s ease-in-out;
}

.__base_wrap {
    width: calc(100% - 30px);
    max-width: 1600px;
    margin: 0 auto;
}

.__base_wrap.max-w-ms {
    max-width: 1400px;
}

.__base_wrap.max-w-sm {
    max-width: 1200px;
}

.__base_wrap.max-w-xs {
    max-width: 950px;
}

.__base_wrap.max-w-2xs {
    max-width: 650px;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.__flex {
    display: flex;
}

.__flex-wrap {
    flex-wrap: wrap;
}

.__flex-column {
    display: flex;
    flex-direction: column;
}

.__flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.__flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.__items-center {
    align-items: center;
}

.__gap-10 {
    gap: 10px;
}

.__gap-20 {
    gap: 20px;
}

.__gap-30 {
    gap: 30px;
}

.__ft-bookend {
    font-family: 'TTBookendBatangR';
}

.__ft-shilla {
    font-family: 'Shilla_CultureB-Bold';
}

.__fc-red {
    color: var(--red-color);
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.m-none {
    margin: 0;
}

.p-none {
    padding: 0;
}

.fw-bold {
    font-weight: 600;
}

.m-right {
    margin: 0 0 0 auto;
}

.txt-right {
    text-align: right;
}

.txt-center {
    text-align: center;
}




.bg-white {
    background-color: var(--white-color);
}

/* 스크롤 박스 */
.__scroll-wrap {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    overflow-y: scroll;
    overflow-x: clip;
}

.__scroll-wrap::-webkit-scrollbar {
    width: 8px;
}

.__scroll-wrap::-webkit-scrollbar-thumb {
    width: 10px;
    background: rgba(0, 0, 0, 0.3);
    /* 스크롤바 색상 */
    border-radius: 10px;
    /* 스크롤바 둥근 테두리 */
}


/* 말줄임 한줄 */
.__txtCut {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

/* 말줄임 여러줄 */
.__txtCut-multi {
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 문장 형광펜 */
.txt-line {
    display: inline-block;
    position: relative;
}

.txt-line:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main2-color);
    opacity: 0.4;
    z-index: -1;
    width: 110%;
    height: 0.7em;

}

#aside {
    display: none;
}


/* //Setting Code */

#header {
    background-color: var(--main-color);
    color: var(--white-color);
    position: fixed;
    width: 100%;
    z-index: 100;
    height: 80px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

#header .__base_wrap.__flex {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    height: 100%;
    gap: 50px;
}

#header h1 {
    position: relative;
    z-index: 99999;
    width: 150px;
}

#header h1 a {
    display: block;
}

#header h1 .h1-ci {
    width: 100%;
}


/* #header .logo {
    width: 222px;
    height: 100px;
}

#header .logo a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  } */

#header .nav-bg {
    position: absolute;
    width: 100%;
    height: 0px;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    transition: all .3s;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
}

#header.menu-open .nav-bg {
    /* height: 600px; */
    height: 230px;
    background-color: var(--white-color);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

#header .nav-bg:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 180px;
    background: url('/resources/images/common/gnb_pc_bg.png') no-repeat center/cover;
    transition: all 0.3s;
    opacity: 0;
    z-index: -1;
}

#header.menu-open .nav-bg:before {
    opacity: 1;
}

#header .gnb {
    width: 800px;
    height: 100%;
    position: relative;
    /* position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%); */
    font-weight: 500;
    display: flex;
    /* justify-content: space-between; */
    gap: 20px;
    color: #1a1a1a;
}

#header .depth-1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

#header .depth-1>li {
    width: calc(100% / 4);
    height: 100%;
    /* width: 180px; */
}

#header .depth-1>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    position: relative;
    transition: all .3s;
    font-weight: 500;
    /* font-size: 16px; */
    font-size: 18px;
    color: var(--white-color);
}

#header .depth-1>li>ul.depth-2 {
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#header .depth-1>li.on>ul.depth-2 {
    opacity: 1;
    pointer-events: inherit;
    transition: 0.4s ease-in-out
}

#header.menu-open .depth-1>li>ul.depth-2.on {}

#header .depth-1>li>a:before {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s;
}

#header .depth-1>li:hover>a:before {
    content: "";
    width: 65%;
    background-color: var(--main2-color);
}

#header .depth-1>li:hover>a {
    color: var(--main2-color);
    opacity: 1;
}

#header .depth-1>li>a.on {
    color: var(--main2-color);
}

#header.menu-open .depth-1>li>ul.depth-2 {
    height: auto;
    visibility: visible;
    opacity: 1;
}

#header .depth-2>li {
    width: 85%;
    /* height: 3em; */
    height: 45px;
    transition: all 0.3s;
    box-sizing: border-box;
}

#header .depth-2>li:not(:last-of-type) {
    border-bottom: 1px solid #eaeaea;
}

#header .depth-2>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    font-size: 14px;
}


#header .depth-2>li:hover {
    /* color: var(--main-color); */
}

#header .depth-2>li.on {
    color: var(--main-color);
}

#header .sub_gnb {
    height: 100%;
    margin: 0 0 0 auto;
    gap: 30px;
    align-items: center;
}

#header .sub_gnb .search-btn,
#header .sub_gnb .action-btn {
    height: 100%;
    font-size: 17px;
    gap: 5px;
    position: relative;
}


#header .sub_gnb .search-btn {
    width: 130px;
    height: 40px;
    border-radius: 99px;
    background-color: #2B9CFE;
    color: var(--white-color);
}

#header .sub_gnb .action-btn {
    /* width: 80px; */
    width: 100px;
}

#header .sub_gnb .action-btn:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translate(0, -50%);
    height: 15px;
    width: 1px;
    background-color: #ccc;
}

@media screen and (max-width: 1200px) {
    #header .gnb {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    #header .gnb {
        display: none;
    }

    #header .sub_gnb>a {
        display: none;
    }
}


/* mobile */

.block {
    display: none;
}

.__js-between {
    justify-content: space-between;
}

.basic-white {
    display: none;
    width: 150px;
}

.base-inner {
    width: calc(100% - 40px);
    margin: 0 auto;
}

.m_header {
    min-width: 100%;
    background-color: var(--white-color);
    font-size: 2rem;
}

.m_header.active {
    /* background-color: var(--white-color); */
    background-color: #f8f8f8;
}

.m_header.active .light.nav-wrap {
    background-color: transparent;
    border-bottom: 1px solid #ddd;
}

.m_header.active .light.nav-wrap.active {
    box-shadow: none;
}

.m_header.active .light.nav-wrap.active h1 .symbol {
    display: none;
}

.m_header.active .light.nav-wrap.active h1 .basic {
    display: block;
}

.m_header.active .line {
    /* stroke:var(--white-color); */
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: var(--white-color);
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham .top {
    stroke-dasharray: 40 121;
}

.ham .bottom {
    stroke-dasharray: 40 121;
}

.ham.active .top {
    stroke-dashoffset: -102px;
}

.ham.active .bottom {
    stroke-dashoffset: -102px;
}

.ham-btn {
    z-index: 100;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 80px;
    width: 100%;
    max-width: 650px;
    height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
    background-color: var(--white-color);
    z-index: -1;
    transform: translateX(100%);
    transition: all 0.5s;
    box-sizing: border-box;
    overflow-y: scroll;
    color: #1a1a1a;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu .header-menu {
    background-color: #f8f8f8;
    padding: 20px 15px;
    box-sizing: border-box;
}

.mobile-menu .header-box {
    width: 100%;
}

.mobile-menu .header-box a b {}


.mobile-menu .header-box a i {
    font-size: 20px;
}

.mobile-menu .header-box .rink-btn {
    width: 100%;
    max-width: 340px;
    border: 1px solid #2B9CFE;
    border-radius: 99px;
    padding: 20px;
    gap: 10px;
}

.mobile-menu .header-box .rink-btn i {
    font-size: 25px;
    transition: all 0.3s;
}

.mobile-menu .header-box .rink-btn:hover i {
    transform: translateX(20px);
}

.mobile-menu .header-box .login-box {
    gap: 20px;
    font-size: 13px;
    margin: 20px 0;
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px;
}

.mobile-menu .header-box .login-box a {
    border-radius: 99px;
    height: 0px;
    gap: 5px;
    height: 35px;
    padding: 0 15px;
    border: 1px solid #999;
    font-weight: 600;
}

.mobile-menu .check-box {
    border-top: 1px solid #ddd;
    margin: 20px 0 0;
    padding: 20px 0 0;
}

.mobile-menu .check-box p {
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #666;
}

.mobile-menu .check-box .radio-label {
    gap: 5px;
}

.mobile-menu .check-box .radio-input:checked+.radio-label.off {
    background-color: var(--red-color);
    border-color: var(--red-color);
}

.mobile-menu .check-box .radio-input:checked+.radio-label.on {
    background-color: var(--main2-color);
    border-color: var(--main2-color);
}

.mobile-menu .check-box .radio-label .mobile-menu .check-box p {
    font-size: 1.4rem;
    /* font-size: 1.3rem; */
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;

}

.mobile-menu .m_tit {
    width: 100%;
    font-weight: 500;
    /* font-size: 2.2rem; */
    font-size: 1.6rem;
    flex-wrap: wrap;
    gap: 5px 20px;
}

.mobile-menu .m_tit b {
    font-weight: 600;
    color: var(--main-color);
}

.mobile-menu .m_tit .round {
    background-color: #eee;
    color: #666;
    border-radius: 99px;
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
}

.mobile-menu .m_tit span {
    width: 100%;
}

.mobile-menu .m_tit p {
    width: 100%;
}

.mobile-menu .sub-menu {
    margin-top: 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

.mobile-menu .sub-menu h3 {
    width: 100%;
    font-weight: 600;
    color: #999;
    /* font-size: 1.6rem; */
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.mobile-menu .sub-menu .side-list {
    gap: 15px;
    flex-wrap: wrap;
}

.mobile-menu .sub-menu .side-list li {
    width: calc((100% - (15px)) / 2);
    /* height: 45px; */
    height: 65px;
    font-size: 1.3rem;
    /* font-size: 1.6rem; */
    font-weight: 600;
    border: 1px solid #dfdfdf;
    box-sizing: border-box;
}

.mobile-menu .sub-menu .side-list li>a {
    height: 100%;
}

.mobile-menu .side-footer {
    width: 100%;
    height: 150px;
    color: var(--white-color);
    background-color: var(--main-color);
    font-size: 2rem;
    gap: 10px;
    margin-top: 50px;
}

.mobile-menu .side-footer a {
    font-size: 2.2rem;
    font-weight: 600;
    border-radius: 99px;
    height: 60px;
    border: 1px solid var(--white-color);
    padding: 0 20px;
}

@media screen and (max-width: 490px) {
    /* .mobile-menu .m_tit {
        font-size: 1.2rem;
    }

    .mobile-menu .sub-menu h3 {
        font-size: 1rem;
    } */

    /* .mobile-menu .sub-menu .side-list li {
        font-size: 1rem;
    } */

    .mobile-menu .side-footer a {
        font-size: 1.5rem;
    }

    .member-choice {
        flex-direction: column;
    }

}

@media screen and (max-width: 360px) {
    .mobile-menu br.blind {
        display: block;
    }
    
}


/* footer */
.page-footer {
    width: 100%;
    height: 250px;
    background-color: #333;
    color: var(--white-color);
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

.page-footer>.__base_wrap {
    height: 100%;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
}

.page-footer .copyright {
    width: 100%;
    height: 40px;
    font-size: 12px;
    align-items: center;
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
}

.page-footer ul {
    height: 35px;
    gap: 20px;
}

.page-footer ul li {
    width: 160px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
}

.page-footer ul a {
    width: 100%;
    height: 100%;
}

.page-footer .add-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    gap: 10px 30px;
    flex-wrap: wrap;
}

.page-footer .add-wrap li {
    gap: 10px;
}



@media screen and (max-width: 680px) {
    .page-footer>.__base_wrap {
        padding-top: 30px;
    }
    .page-footer ul {
        justify-content: center;
    }

    .page-footer .add-wrap {
        justify-content: center;
    }

    .page-footer .copyright {
        text-align: center;
    }
}
@media screen and (max-width: 500px) {
    
    .page-footer {
        height: 400px;
    }
    .page-footer>.__base_wrap {
        padding-top: 20px;
    }

    .page-footer ul {
        flex-direction: column;
        height: 90px;
        align-items: center;
        gap: 10px;
    }
    .page-footer ul li {
        width: 100%;
    }

    .page-footer .add-wrap {
        font-size: 14px;
        flex-direction: column;
    }

    .page-footer .add-wrap li {
        gap: 0;
    }
}


@media screen and (max-width: 360px) {
    .page-footer .add-wrap {
        font-size: 12px;
    }
}

/* Main */
.main {
    min-height: calc(100vh - 350px);
    padding-top: 80px;
    box-sizing: border-box;
    word-break: keep-all;
}


.main_visual {
    width: 100%;
    height: 500px;
    background-color: var(--main-color);
    color: var(--white-color);
}

.main_visual h2 {
    font-size: 35px;
    font-weight: 600;
}

.main_visual .__base_wrap.max-w-xs {
    position: relative;
    height: 100%;
    padding-top: 60px;
    box-sizing: border-box;
}

.main_visual .__base_wrap.max-w-xs:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 40px;
    width: 320px;
    
    height: 420px;
    background: url('/resources/images/common/visual_phone.png') no-repeat top/contain;

}

.main_visual .download_txt {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 50px 0 10px;
}

.main_visual .download {
    gap: 10px;
}

.main_visual .download .app {
    width: 130px;
    height: 45px;
    border: 1px solid var(--white-color);
    border-radius: 10px;
    background: url('/resources/images/common/app_appstore_white.png') no-repeat center/cover;
}

.main_visual .download .app.google {
    background-image: url('/resources/images/common/app_google_white.png');
}

.visual_slider {
    position: relative;
    width: 100%;
}

.visual_slider .slider-item {
    width: 100%;
    height: 450px;
    background: url('/resources/images/common/main_visual_01.jpg') no-repeat center/cover;
    display: flex;
}

.visual_slider .slider-item.bg2 {
    background-image: url('/resources/images/common/main_visual_02.jpg');
}

.visual_slider .slider-item .__base_wrap {}

.visual_slider .slider-item h2 {
    font-size: 50px;
    font-weight: 600;
}

.visual_slider .slider-item h2+p {
    font-size: 18px;
    color: #666;
    margin-top: 30px;
    line-height: 1.5;
}

.visual_slider .dots-wrap {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translate(-50%, 0);
    gap: 10px;
}

.visual_slider .dots-wrap button {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    color: transparent;
    text-indent: -999999px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
}

.visual_slider .dots-wrap .slick-active button {
    background-color: #333;
}

.visual_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1;
    color: transparent;
    text-indent: -999999px;
    width: 50px;
    height: 50px;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.3), url('');
}

.visual_slider .slick-arrow.slick-prev {
    left: 50px;
}

.visual_slider .slick-arrow.slick-next {
    left: auto;
    right: 50px;
}

.sub_menu {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    border-radius: 50px 50px 0 0;
    background-color: var(--white-color);
    padding: 100px 0;
    box-sizing: border-box;
}

.main-search {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translate(-50%, 0);
}

.main-search .shadow_input {
    height: 65px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.main-search .shadow_input input {
    height: 100%;
}

.main-search .shadow_input button[type="submit"] {
    width: 80px;
    background-color: #2B9CFE;
    color: var(--white-color);
    font-size: 30px;
}

.main-search .shadow_input button[type="submit"]:hover {
    background-color: var(--main2-color);
    opacity: 1;
}

.main-search label {
    color: var(--white-color);
    display: block;
    margin: 0 0 10px;
    font-size: 1.5em;
}

.sub_menu-header {
    text-align: center;
    margin: 0 0 50px;
    font-weight: 600;
    font-size: 25px;
}

.circle-list {
    gap: 30px;
    text-align: center;
    flex-wrap: wrap;
}

.circle-list .circle-itme {
    /* width: calc(100% / 6); */
    width: calc((100% - (30px * 3)) / 4);
}

.circle-list .shadow-box {
    width: 130px;
    height: 130px;
    border-radius: 999px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
}

.circle-list .shadow-box:before {
    content: '\e913';
    font-family: 'xeicon';
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translate(-50%, 0);
    width: 36px;
    height: 36px;
    border-radius: 99px;
    background-color: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    font-size: 20px;
    transition: all 0.3s;
    border: 2px solid var(--white-color);
}

.circle-list .shadow-box img {
    width: auto;
    max-height: 60px;
}

.circle-list .circle-itme.flower .shadow-box {
    border: 2px solid var(--main2-color);
}

.circle-list .circle-itme.flower:hover .shadow-box {
    background-color: var(--main2-color);
}

.circle-list .circle-itme.flower:hover .shadow-box:before {
    background-color: var(--white-color);
    border-color: var(--main2-color);
    color: var(--main2-color);
}

.circle-list .circle-itme.flower .shadow-box:before {
    background-color: var(--main2-color);
}

.circle-list .circle-itme span {
    display: block;
    margin: 30px 0 0;
    font-weight: 600;
    font-size: 1.3rem
}

.circle-list .circle-itme:hover {
    opacity: 1;
}

.circle-list .circle-itme:hover .shadow-box {
    background-color: var(--main-color);
}

.circle-list .circle-itme:hover .shadow-box img {
    filter: brightness(0) invert(1);
}

.circle-list .circle-itme:hover .shadow-box:before {
    background-color: var(--white-color);
    border-color: var(--main-color);
    color: var(--main-color);
}

@media screen and (max-width: 1024px) {

    .circle-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .circle-list .circle-itme {
        width: calc((100% - (30px*2)) / 3);
    }

}

@media screen and (max-width: 750px) {

    .main_visual {
        text-align: center;
        /* height: 600px; */
        height: 410px;
    }

    .main_visual h2 {
        font-size: 25px;
    }

    .main_visual .download_txt {
        margin: 10px 0 10px;
    }

    .main_visual .download {
        justify-content: center;
    }
    .main_visual .__base_wrap.max-w-xs {
        padding-top: 20px;
    }

    .main_visual .__base_wrap.max-w-xs:before {
        right: initial;
        /* height: 340px; */
        width: 150px;
        height: 190px;
        background-size: cover;
        transform: translate(-50%, 0);
        left: 50%;
    }

    .sub_menu-header {
        margin: 0 0 30px;
        font-size: 20px;
    }

    .visual_slider .slider-item h2 {
        font-size: 30px;
    }

    .visual_slider .slider-item h2+p {
        font-size: 16px;
        margin-top: 10px;
    }

    .visual_slider .slider-item {
        height: 270px;
    }

    .visual_slider .dots-wrap {
        bottom: 10px;
    }

}


@media screen and (max-width: 650px) {
    .sub_menu {
        width: 100%;
    }

    .circle-list .shadow-box {
        width: 100%;
        border-radius: 0;
    }

    .circle-list .circle-itme span {
        margin: 25px 0 20px;
    }

    .circle-list .shadow-box img {
        /* max-height: initial; */
        max-width: 50px;
    }

    .sub_menu {
        padding-bottom: 50px;
    }

}

@media screen and (max-width: 480px) {
    .circle-list .circle-itme {
        width: calc((100% - (30px * 2)) / 2);
    }
}




.main-sec {
    gap: 50px;
}

.main-board-wrap {
    gap: 50px;
    margin: 100px auto;
}

.main-board-wrap .notice {
    width: 100%;
    max-width: 830px;
}

.main-board-wrap .customer {
    width: 480px;
}


.main-board-wrap header {
    height: 50px;
    align-items: center;
    background-color: #333;
    color: var(--white-color);
    padding: 0 20px;
}

.main-board-wrap header h3 {
    font-size: 18px;
    font-weight: 600;
}

.main-board-wrap .more {
    border: 1px solid #eaeaea;
    border-radius: 99px;
    color: var(--white-color);
    width: 120px;
    height: 30px;
    font-size: 18px;
    gap: 5px;
    font-weight: 500;
    margin: 0 0 0 auto;
}

.tab-rink {
    gap: 50px;
    color: #999;
    font-size: 25px;
    font-weight: 500;
    margin: 30px 0 50px;
}

.tab-rink .active {
    position: relative;
    color: #1a1a1a;
}

.tab-rink .active:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main2-color);
    opacity: 0.4;
    z-index: -1;
    width: 110%;
    height: 0.7em;

}

.txt-board {
    width: 100%;
}

.txt-board li {
    height: 55px;
    padding: 0 20px;
    border-bottom: 1px solid #eaeaea;
    transition: all 0.3s;
    box-sizing: border-box;
    font-size: 18px;
}

.txt-board li:hover {
    background-color: #f8f8f8;
}

.txt-board li a {
    width: 100%;
    height: 100%;
    align-items: center;
}

.txt-board .category {
    font-size: 18px;
    color: #666;
    width: 50px;
    height: 30px;
    border-radius: 99px;
    margin-right: 10px;
    background-color: #eaeaea;
}


.txt-board .date {
    width: 120px;
    text-align: right;
    margin: 0 0 0 auto;
    color: #999;
    font-size: 18px;
}

.txt-board.detail {
    /* margin-top: 70px; */
}

.txt-board.detail .tit {
    width: calc(100% - (50px + 10px + 100px));
}

.txt-board-header {
    background-color: #333;
    color: rgba(255, 255, 255, 0.7);
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    height: 45px;
    font-size: 18px;
    text-align: center;
}


.txt-board-header .category {
    width: 50px;
}

.txt-board-header .tit {
    width: calc(100% - (50px + 100px));
}

.txt-board-header .date {
    width: 100px;
}

/* .main-notice {
    width: 100%;
    outline: 1px solid red;
}

.main-customer {
    width: 480px;
    outline: 1px solid green;
} */

.payback .txt-board-wrap {
    gap: 10px;
    text-align: center;
    font-size: 16px;
}

.payback .txt-board-wrap p:not(:last-of-type) {
    box-sizing: border-box;
    border-right: 1px solid #eaeaea;
}

.payback .txt-board-header li:not(:last-of-type) {
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.payback .txt-board-wrap .seq {
    flex: 0 0 60px;
}

.payback .txt-board-wrap .tit {
    flex: 1 1 auto;
    width: auto;
}

.payback .txt-board-wrap .tit.__txtCut {
    text-align: left;
}

.payback .txt-board-wrap .pay {
    flex: 0 0 150px;
}

.payback .txt-board-wrap .date {
    flex: 0 0 100px;
    width: auto;
    margin: unset;
    text-align: center;
}

.payback .txt-board-wrap .result {
    flex: 0 0 80px;
    font-size: 14px;
    font-weight: 500;
}

.payback .txt-board.detail .plus {
    color: #2B9CFE;
}

.payback .txt-board.detail .minus {
    color: var(--red-color);
}

.main-board-wrap .customer {
    gap: 10px;
}

.main-board-wrap .customer .num-wrap {
    width: 100%;
    height: 200px;
    background-color: pink;
    background: url('/resources/images/common/customer_bg.jpg') no-repeat center/cover;
}

.main-board-wrap .customer .num-wrap h4 {
    font-size: 30px;
    font-weight: 600;
}

.main-board-wrap .customer .num-wrap h4+p {
    margin: 15px 0 5px;
}

.main-board-wrap .customer .num-wrap strong {
    display: inline-block;
    font-weight: 500;
    color: var(--white-color);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 99px;
    padding: 5px 20px;
}

.main-board-wrap .customer .app-download {
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-board-wrap .customer .app-download>p {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0 10px;
}

.main-board-wrap .customer .app-download .app {
    width: calc((100% - 20px) / 2);
    height: 50px;
    border-radius: 10px;
    box-sizing: border-box;
    background: url('/resources/images/common/app_appstore_download.png') no-repeat center/contain;


}

.main-board-wrap .customer .app-download .app.google {
    background-image: url('/resources/images/common/app_google_download.png')
}


@media screen and (max-width: 1024px) {

    .main-board-wrap {
        gap: 20px;
    }

    .main-board-wrap {
        flex-direction: column;

    }

    .main-board-wrap .notice {
        max-width: unset;
    }

    .main-board-wrap .customer {
        width: 100%;
    }

    .main-board-wrap .customer {
        gap: 0;
    }

    .main-board-wrap .customer .app-download>p {
        text-align: center;
        font-size: 25px;
        margin: 50px 0 20px;
    }

    .main-board-wrap .customer .app-download .app {
        width: calc((100% - 10px) / 2);
        height: 100px;
    }
}



/* Login */


.round-wrap {
    width: 100%;
    height: 220px;
    background-color: var(--main-color);
    color: var(--white-color);
    padding-top: 60px;
}

.round-wrap.round-center-box {
    /* height: 260px;
    padding-top: 30px;
    box-sizing: border-box; */
    height: 320px;
    padding-top: 50px;
    box-sizing: border-box;
}

.round-wrap.view {
    height: auto;
    padding: 60px 0 110px;
}

.round-wrap.view h2 {
    line-height: 1.3;
}

.round-wrap h2 {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.round-wrap p {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.7;
}

.round-wrap .category {
    font-size: 16px;
    color: #333;
    background-color: #f5f5f5;
    border-radius: 99px;
    padding: 10px 0;
    box-sizing: border-box;
    width: 100px;
    margin: 0 auto 20px;
}

.round-box.view {}

/* .round-box.box-shadow { */
.box-shadow {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.view-footer {
    border-top: 1px solid #eaeaea;
    padding: 50px 0;
    flex-wrap: wrap;
}

.view-footer .back-btn {
    width: 150px;
    height: 40px;
    border-radius: 99px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    background-color: #eaeaea;
    color: #666;
    gap: 5px;
    margin: 0 auto;
    font-size: 18px;
}


.round-box {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    border-radius: 50px 50px 0 0;
    background-color: var(--white-color);
    box-sizing: border-box;
    padding: 50px 0 0;
}

.round-box.popup {
    margin: 20px auto 50px;
    padding: 0;
}

@media screen and (max-width: 1024px) {

    .round-wrap,
    .round-wrap.round-center-box {
        height: 270px;
        padding-top: 30px;
    }

    
    .round-box {
        width: 100%;
    }

    .round-wrap h2 {
        font-size: 25px;
    }

    .login .round-wrap {
        height: 220px;
    }

    .login .round-wrap h2 {
        font-size: 20px;
    }


}

@media screen and (max-width: 750px) {
    .round-wrap p br {
        display: none;
    }

    .round-box {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

}

@media screen and (max-width: 430px) {
    .tab-rink {
        gap: 20px;
    }
    .round-wrap, .round-wrap.round-center-box {
        height: 300px;
    }
    /* .round-box {
        margin-top: -30px;
    } */
}

.member_move {
    gap: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #999;
    margin-bottom: 50px;
}

.member_move .active {
    color: #1a1a1a;
    position: relative;
}

.member_move .active:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    bottom: -3px;
    transform: translate(-50%, 0);
    width: calc(100% + 10px);
    height: 15px;
    background-color: var(--main2-color);
}

.active-box.max-w-xs {
    max-width: 650px;
    margin: 0 auto;
    gap: 30px;
}

.active-box .input-box {
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.active-box .input-box>label {
    width: 100%;
    color: #999;
    margin-bottom: 10px;
}

.active-box .input-form {
    width: 100%;
    background-color: #eaeaea;
    border: 1px solid #eaeaea;
}

.active-box .input-form .log-icon {
    width: 60px;
    height: 100%;
    font-size: 20px;
    color: #666;
}

.active-box .submit {
    width: 100%;
    height: 60px;
    background-color: var(--dark-color);
    color: var(--white-color);
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.active-box .submit i {
    font-size: 20px;
}

.active-box .input-action {
    margin: 0 0 30px;
    font-size: 13px;
    color: #666;
    justify-content: space-between;
}

.active-box .find-wrap {
    gap: 10px;
    font-size: 16px;
}

.active-box .main-color {
    font-weight: 600;
    color: var(--main-color);
}

.active-box .join {
    font-weight: 600;
    background-color: #f8f8f8;
    border-radius: 99px;
    padding: 5px 10px;
}

.active-box .find {
    font-style: italic;
    border-bottom: 1px solid #bbb;
}

.active-box.join .join-header {
    height: 130px;
    text-align: center;
    color: var(--white-color);
    background: url('/resources/images/member/join_banner.png') no-repeat top/cover;
    font-size: 20px;
    margin-top: -50px;
    position: relative;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
    margin: 50px 0 30px;
}

/* .active-box.join .join-header:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 300px;
    background: url('/resources/images/member/join_flower.png') no-repeat top/contain;
    outline: 1px solid red;
} */


.sns-log {
    gap: 15px;
}

.sns-log p {
    color: #999;
    margin: 30px auto 0;
    font-size: 1.2rem;
    width: 100%;
    position: relative;
}

.sns-log p:before {
    content: '';
    position: absolute;
    width: calc(100% - 100px);
    height: 1px;
    background-color: #ddd;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);

}

.sns-log .btn {
    text-align: center;
    width: 100%;
    height: 55px;
    background-color: #eee;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.btn.kakao {
    background-color: #FEE500;
    color: #181600;
}

.sns-log .btn.naver {
    background-color: #4AB56A;
    color: var(--white-color);
}

.active-box.join .join-header h3 {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 5px;
}

.select-form.calc-second2 {
    width: calc((100% - (40px + 50px)) / 2);
}


.confirm-wrap .radio-wrap {
    height: 55px;
    align-items: center;
}

.radio-wrap {
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.radio-label {
    height: 35px;
    border-radius: 999px;
    padding: 0 20px;
    border: 1px solid #bbb;
    color: #666;
    font-weight: 400;
    transition: all 0.3s;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    font-size: 18px;
}


.radio-input:checked+.radio-label {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
}

.select-form .tit {
    gap: 20px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 20px;
    align-items: center;
    color: #999;
}

.point {
    color: var(--red-color);
    font-size: 16px;
}

.point.disabled {
    color: #999;
}

.join-submit {
    width: calc(100% - 30px);
    max-width: 550px;
    margin: 50px auto 0;
    /* border-radius: 99px; */
    height: 60px;
    font-size: 18px;
    background-color: var(--main2-color);
    gap: 5px;
    color: var(--white-color);
    font-weight: 500;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.join-submit i {
    font-size: 20px;
}

.join-flex {
    width: calc(100% - 20px);
    margin: auto;
    /* gap: 20px; */
    margin-top: 30px;
    /* border-top: 1px solid #eaeaea; */
    /* padding: 30px 0 0; */
}

.join-flex .join-submit {
    margin: 0;
}

.join-submit.cancel {
    background-color: #eaeaea;
    color: #666;
}

.join-submit.succ {
    background-color: var(--main-color);
}

.terms {
    margin-bottom: 30px;
}

.terms .__scroll-wrap {
    max-height: 250px;
    border: 1px solid #eee;
    background-color: #f8f8f8;
    padding: 10px;
    box-sizing: border-box;
    word-break: keep-all;
}

.terms .__scroll-wrap textarea {
    background-color: transparent;
    width: 100%;
    height: 100%;
}

.terms .form-chek {
    margin-bottom: 20px;
    gap: 10px;

}

.terms .form-chek label {
    font-size: 18px;
    font-weight: 500;
    gap: 15px;
}

.join .confirm-wrap {
    gap: 20px;
}


.input-textarea::placeholder {
    color: #999;
}

.input-textarea {
    line-height: 1.4;
    font-weight: 500;
}

.join .input-txt,
.input-select,
.select-form .timepicker {
    border: 1px solid #eaeaea;
    border-radius: 10px;
}

.input-txt.emain2 {
    width: 150px;
}

p.input-txt {
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    padding: 15px 20px;
    word-break: break-all;
    font-weight: 500;
}

.join.write {
    padding: 50px 0;
}

.join.write .confirm-btn {
    width: 150px;
    height: 55px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 10px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.join.write .item-del-btn {
    width: 50px;
    height: 55px;
    border: 1px solid var(--red-color);
    color: var(--red-color);
    border-radius: 5px;
}

.mourner.item {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.join.write .select-form {
    /* width: 100%; */
    margin-bottom: 30px;
}

#f .join.write .select-form {
    width: 100%;
}

.join.write .select-form .tit {
    margin-bottom: 10px;
}

.join.write .select-form .tit.m-none {
    margin-bottom: -10px;
}

.form-header {
    font-size: 20px;
    font-weight: 500;
    gap: 10px;
    border-bottom: 1px solid #eaeaea;
    padding: 0 0 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.form-header i {
    font-size: 25px;
}

.form-header h4 {
    font-size: 25px;
}

.form-header .txt-info {
    width: 100%;
    color: var(--red-color);
    text-align: center;
    font-size: 16px;
}

.prev-img {
    width: 180px;
    height: 180px;
    border: 1px solid #eee;
    background: var(--white-color) url('/resources/images/common/no-image.png') no-repeat center/cover;
    overflow: hidden;
    box-sizing: border-box;
}

.prev-img img {
    width: auto;
    max-width: 100%;
    min-width: 100%;
    max-height: 100%;
    min-height: 100%;
}

.file-prev {
    gap: 20px;
    flex-wrap: wrap;
}

.file-prev .tit {
    width: 100%;
}


.file-prev .txt {
    display: block;
    font-size: 18px;
    color: #999;
    margin-bottom: 10px;
}

.file-prev .file-btn {
    width: 120px;
    height: 35px;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 5px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.file-prev .name-wrap {
    gap: 10px;
    margin-bottom: 10px;
}

.file-prev .file-name {
    width: 100%;
    background-color: #f5f5f5;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    font-weight: 500;
}

.file-prev .input-img {
    border: 1px solid #eaeaea;
    border-radius: 10px;
}

.prev-txt-box {
    max-width: calc((100% - 20px) - 180px);
    justify-content: center;
}

.mourners.info .confirm-wrap {
    padding: 20px 0 0;
}

@media screen and (max-width: 1024px) {
    .join.write {
        padding: 0;
    }

    .form-header h4 {
        font-size: 20px;
    }

    .join .confirm-wrap:not(.deceased_info .confirm-wrap, .mourners.info .confirm-wrap, .info_li .confirm-wrap) {
        flex-wrap: wrap;
        gap: 0;
    }

    .mourners.info .confirm-wrap {
        gap: 10px;
        padding: 10px 0 0;
    }

    .info_li .confirm-wrap {
        gap: 10px;
    }

    .input-txt.calc-second,
    .confirm-wrap.account .input-txt.calc-second {
        width: calc(100% - (100px + 20px));
    }

    .input-txt.calc-second~.confirm-btn {
        margin: 0 0 0 auto;
    }

    .join.write .confirm-btn {
        width: 100px;
        font-size: 13px;
    }

    .join.write .select-form {
        margin-bottom: 20px;
    }

    .confirm-wrap.account {
        gap: 20px;
    }

    /* .join-flex {
        gap: 10px;
    } */

    .mourner.item .confirm-wrap {
        gap: 10px 20px;
    }

    .active-box.max-w-xs {
        width: calc(100% - 30px);
    }

}


@media screen and (max-width: 750px) {}

@media screen and (max-width: 550px) {
    .file-prev .name-wrap {
        flex-wrap: wrap;
    }

    .file-prev .file-name {
        height: 50px;
    }

    .file-prev .file-btn {
        width: 100%;
    }

}

.modal-bg {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    display: none;
}

.modal-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white-color);
    /* width: 650px; */
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    max-height: 90vh;
    /* min-height: 300px; */
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);

}

.modal-wrap .header {
    height: 50px;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 30px);
    margin: 0 auto;
    border-bottom: 1px solid #eaeaea;
    font-size: 16px;
    font-weight: 500;
    box-sizing: border-box;
}

.modal-wrap .header .ico {
    font-size: 30px;
    color: #666;
}

.modal-wrap .content {
    width: calc(100% - 30px);
    /* max-height: calc(100vh - 270px); */
    height: 100%;
    /* max-height: calc(90vh - 160px); */
    max-height: calc(90vh - 170px);
    margin: 20px auto;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    box-sizing: border-box;
}

.modal-wrap .content .btns {
    gap: 15px;
}


.modal-wrap .btns {
    margin: auto 0 0;
    width: calc(100% - 30px);
    margin: auto auto 20px;
    gap: 15px;
}

.modal-wrap .btn {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    color: #999;
    font-size: 16px;
    gap: 5px;
}

.modal-wrap .btn i {
    font-size: 20px;
}

.modal-wrap .content .txt-center {
    display: block;
    text-align: center;
    font-size: 25px;
    font-weight: 500;

}

.modal-wrap .content span.txt-center {
    font-size: 14px;
    color: #666;
    margin: 10px 0 30px;
}

.modal-wrap .btn.done {
    color: var(--main2-color);
    border-color: var(--main2-color);
}

.modal-wrap .btn.del {
    color: var(--red-color);
    border-color: var(--red-color);
}

.modal-wrap .btn.del i {
    color: var(--red-color);
}

.modal-wrap .btn.kakao {
    background-color: #FEE500;
    color: #181600;
    border-color: #FEE500;
}

.modal-wrap .btn.kakao i {
    color: #181600;
}


.modal-wrap .btn.black {
    color: var(--white-color);
    border-color: #333;
    background-color: #333;
}

.modal-wrap .btn.black i {
    color: var(--white-color);
}


.modal-wrap.popup {
    box-shadow: unset;
    position: initial;
    transform: unset;
}

.modal-wrap.popup .content {
    max-height: 650px;
}

.modal-wrap .content .call-rink {
    border-radius: 99px;
    width: 300px;
    height: 55px;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    background-color: var(--main-color);
    color: var(--white-color);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.modal-wrap .content .call-rink i {
    font-size: 20px;
    border-radius: 99px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--white-color);
}

.modal-wrap .modal-search {
    background-color: #f5f5f5;
}

.modal-wrap .modal-search .xi-search {
    width: 50px;
    font-size: 25px;
    color: #666;
}

.modal-wrap .modal-search .input-text {
    width: calc(100% - 50px);
    background-color: #f5f5f5;
}

.modal-wrap .search-content .result {
    gap: 10px;
    color: #666;
    margin: 20px 0 10px;
    font-size: 18px;
}

.modal-wrap .search-content .result b {
    font-weight: 600;
    color: var(--main-color);
}

.modal-wrap .api-list {
    gap: 10px;
}

.modal-wrap .api-list li {
    width: 100%;
    height: 75px;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    border-top: 1px solid #eaeaea;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0 20px;
    box-sizing: border-box;
}

.modal-wrap .api-list li:hover {
    background-color: rgba(35, 94, 81, 0.1);
}

.modal-wrap .api-list .tit {
    font-weight: 600;
    font-size: 18px;
}

.modal-wrap .api-list .txt {
    color: #666;
}

.modal-wrap .pagin-nav {
    margin: 20px 0 30px;
}

.modal-wrap .info-txt {}

.modal-wrap .info-txt>b {
    font-weight: 500;
    font-size: 0.9em;
    text-align: center;
    background-color: #333;
    color: var(--white-color);
    min-height: 2.5em;
}

.modal-wrap .info-txt>ul {
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    border-top: none;
    padding: 0.5em;
    word-break: keep-all;
    background-color: #f9f9f9;
}

.modal-wrap .info-txt .before-line {
    position: relative;
    font-size: 0.85em;
    padding-left: 1em;
    color: #666;
}

.modal-wrap .info-txt>ul>li:not(:last-of-type) {
    margin-bottom: 0.5em;
}

.modal-wrap .info-txt .before-line:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 1px;
    background-color: #999;
}

@media screen and (max-width: 650px) {
    /* .modal-wrap .content {
        max-height: calc(90vh - 200px);
    } */
    
}


/* 페이징 처리 */
.pagin-nav {
    gap: 30px;
    margin: 50px 0;
}

.pagin-nav .num-box {
    gap: 10px;
}

.pagin-nav .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 99px;
    background-color: #f5f5f5;
    color: #666;
    font-weight: 600;
    font-size: 13px;
}

.pagin-nav .num.on {
    background-color: var(--main2-color);
    color: var(--white-color);
}

.pagin-nav .num.arrow {
    background-color: #eee;
}

.pagin-nav .num.arrow i {
    color: var(--white-color);
    color: #1a1a1a;
}


/* 달력 */
.calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
    color: #666;
}

.datepicker {
    /* padding: 0 20px 0 10px; */
    /* height: 100%; */
    font-weight: 600;
}

.datepicker input.datepicker {
    /* outline: 1px  solid red; */
}

.ui-datepicker {
    width: auto !important;
}

.ui-widget.ui-widget-content {
    border: 1px solid #eee !important;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.05);
}

.ui-datepicker .ui-widget-header {
    border: 0;
    border-bottom: 1px solid #eee;
    background-color: var(--white-color);
}

.ui-datepicker .ui-datepicker-header {
    padding: 10px 0 !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 50% !important;
    transform: translate(0, -50%);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none !important;
    background-color: var(--white-color) !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    color: #666 !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius: 999px;
}



.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    color: var(--white-color) !important;
    background-color: #6C93FF !important;
    border-radius: 999px;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: 0.3;
}

.ui-datepicker-week-end {
    color: #D56464;
}

.ui-datepicker-calendar>thead>tr>th:last-child {
    color: #6C93FF;
}

.ui-datepicker .ui-datepicker-title select {
    height: 35px;
}

.tit-chek {}

.radio-label.chek-label {
    height: 25px;
    font-size: 14px;
    border-color: var(--red-color);
    color: var(--red-color);
}

.radio-input:checked+.radio-label.chek-label {
    border-color: var(--red-color);
    background-color: var(--red-color);
}

.check-form {
    font-size: 16px;
    color: var(--red-color);
}

.confirm-wrap.account .input-select {
    width: 150px;
}

.confirm-wrap.account .input-txt {
    width: calc((100% - 300px) / 2);

}

.confirm-wrap.account {}

.plus-btn {
    width: 120px;
    height: 35px;
    border-radius: 99px;
    background-color: #2B9CFE;
    color: var(--white-color);
    font-size: 15px;
    gap: 5px;
    margin-left: 20px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.plus-btn.m-right {
    margin: 0 0 0 auto;
}

.input-textarea {
    border-radius: 10px;
    border: 1px solid #eaeaea;
    padding: 20px;
    width: 100%;
    min-height: 150px;
    box-sizing: border-box;
}


.choice-header {
    font-size: 2rem;
    text-align: center;
    font-weight: 600;
}

.member-choice {
    gap: 30px;
    margin-top: 30px;
}

.member-choice a {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    border: 2px solid #a6927a;
    overflow: hidden;
}

.member-choice .ico {
    width: 100%;
    height: calc(100% - 150px);
}

.member-choice .ico img {
    width: auto;
}

.member-choice .txt-box {
    width: 100%;
    height: 150px;
    background-color: #a6927a;
    color: var(--white-color);
    font-size: 3.5rem;
    margin: auto 0 0 0;
    font-weight: 500;
}

.member-choice .txt-box p {
    font-weight: 600;
    color: #ffed98;
}

.member-choice .txt-box span {
    font-size: 1.6rem;
}


.member-choice a.member {
    border: 2px solid var(--main-color);
}

.member-choice a.member .txt-box {
    background-color: var(--main-color);
}

@media screen and (max-width: 1024px) {

    .confirm-wrap.account .input-select {
        width: 180px;
    }

    .confirm-wrap.account .input-txt.calc-third {
        width: calc(100% - (180px + 20px));
    }


}

/* card-list */
.card-list {
    /* outline: 1px solid red; */
}


.content-nav {
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
}

.content-nav .btn {
    background-color: var(--white-color);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    gap: 5px;
    width: 150px;
    height: 45px;
    border-radius: 99px;
}

.content-nav .btn i {
    color: var(--main-color);
    font-size: 20px;
}

.content-nav .btn span {
    font-size: 14px;
    font-weight: 500;
}

.content-nav .btn.del {
    border: 1px solid var(--red-color);
    color: var(--red-color);
    margin: 0 0 0 auto;
}

.content-nav .btn.del i {
    color: var(--red-color);
}

.content-nav .all_chek.on {
    background-color: var(--main-color);
    color: var(--white-color);
}

.content-nav .all_chek.on i {
    color: var(--white-color);
}



/* list-box */
aside.list-box:not(:last-of-type) {
    margin-bottom: 30px;
}

.list-box .list-wrap {
    width: 100%;
}

.list-box .list-wrap.list_title {
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 14px;
}

.list-box .list-wrap.list_title.gray {
    background-color: #f5f5f5;
    color: #999;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.list-box .list_item {
    height: 55px;
    text-align: center;
    position: relative;
}

.list-box .list_item:not(:last-of-type):before,
.list-box .list_item.num:before {
    content: '';
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
    height: 15px;
    background-color: #ccc;
}

.list-wrap .w-50 {
    flex: 0 0 50px;
}

.list-wrap .w-80 {
    flex: 0 0 80px;
}

.list-wrap .w-100 {
    flex: 0 0 100px;
}

.list-wrap .w-120 {
    flex: 0 0 120px;
}

.list-wrap .w-130 {
    flex: 0 0 130px;
}

.list-wrap .w-150 {
    flex: 0 0 150px;
}

.list-wrap .w-180 {
    flex: 0 0 180px;
}

.list-wrap .w-200 {
    flex: 0 0 200px;
}

.list-wrap .w-250 {
    flex: 0 0 250px;
}

.list-wrap .w-300 {
    flex: 0 0 300px;
}

.list-wrap .w-350 {
    flex: 0 0 350px;
}

.list-wrap .w-500 {
    flex: 0 0 500px;
}

.list-wrap .w-auto {

    flex: 1 1 auto;
}

.list-wrap .list_content {}

.list-wrap .content_item {
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.list-wrap .content_item.total {
    background-color: #EAF2FE;
}

.list-wrap .content_item.total .title {
    font-weight: 500;
    color: var(--main-color);
}

.list-wrap .content_item:hover,
.list-wrap .content_item.on {
    background-color: #F5F9FF;
}

/*     
.list-wrap .page_move {
    flex: 0 0 calc(100% - 50px);
}
    
.list-wrap .page_move.flex-full {
    flex: 0 0 100%;
}

.list-wrap .page_move:hover {
    opacity: 1;
} */

.form_item .list_radio_wrap {
    margin-left: 20px;
}

.list_radio_wrap {
    gap: 20px;
}

.list_radio_wrap .chek_label {
    font-size: 13px;
    background-color: #eee;
    color: #999;
    border-radius: 99px;
    padding: 5px 10px;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.list_radio_wrap .input_radio.yes:checked+.chek_label {
    background-color: var(--main-color);
    color: var(--white-color);
}

.right_wrap {
    margin: 0 0 0 auto;
    gap: 20px;
}

.small_btn {
    width: 120px;
    height: 35px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    gap: 5px;
    border-radius: 5px;
    background-color: #eee;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.small_btn i {
    font-size: 18px;
    transition: all 0.3s;
}

.small_btn.more:hover i {
    transform: translateX(10px);
}

.small_btn span {
    margin-top: 2px;
}

.small_btn.update {
    background-color: var(--dark-color);
    color: var(--white-color);
}


/* FAQ 자주묻는 질문 */

.accordion {
    width: calc(100% - 30px);
}

.accordion-item {
    position: relative;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
}

.accordion-item.active .heading {
    color: var(--main-color);
}

.accordion-item.active .icon {
    background-color: #fefefe;
}

.accordion-item.active .icon:before {
    background-color: var(--main2-color);
}

.accordion-item.active .icon:after {
    width: 0;
}

.accordion-item .heading {
    color: var(--main-color);
    font-weight: 600;
    font-size: 22px;
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    transition: 0.3s ease-in-out;
}

.accordion-item .heading:hover {
    /* color: #cf8e97; */
}

.accordion-item .heading:hover .icon:before,
.accordion-item .heading:hover .icon:after {
    background-color: var(--main2-color);
}

.accordion-item .icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 3rem;
    height: 3rem;
    border: 2px solid #fefefe;
    border-radius: 3px;
    transform: translateY(-50%);
}

.accordion-item .icon:before,
.accordion-item .icon:after {
    content: "";
    width: 1.25rem;
    height: 0.25rem;
    background-color: var(--main2-color);
    position: absolute;
    border-radius: 3px;
    left: 50%;
    top: 50%;
    transition: 0.3s ease-in-out;
    transform: translate(-50%, -50%);
}

.accordion-item .icon:after {
    transform: translate(-50%, -50%) rotate(90deg);
    z-index: -1;
}

.accordion-item .content {
    display: none;
    padding: 20px 50px;
    box-sizing: border-box;
    border-top: 1px solid #eaeaea;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    background-color: #f8f8f8;
}

@media screen and (max-width: 850px) {
    .accordion-item .content {
        padding: 20px;
    }
    
}

/* 문의하기 */
.contact  {
    padding-top: 40px;
}

.contact .round-wrap.round-center-box {
    padding-top: 80px;
}
.contact-wrap {
    gap: 30px;
    box-sizing: border-box;
    padding: 30px;
}

.contact-wrap img {
    width: 100%;
}

.contact-wrap .color-area {
    width: 350px;
    background-color: var(--main2-color);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    color: var(--white-color);
}

.contact-wrap .write-area {
    width: calc(100% - (350px + 30px + 40px));
    ;
}

.contact-wrap h3:not(.section h3) {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.contact-wrap .color-area h3 {
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-wrap .color-area .item {
    gap: 10px;
    margin-bottom: 20px;
}


.contact-wrap .write-area h3 {
    padding-top: 20px;
}

.contact-wrap .ico {
    width: 35px;
    height: 35px;
    color: var(--main2-color);
    background-color: var(--white-color);
    border-radius: 99px;
    font-size: 20px;
}

.contact-wrap .txt-box {
    width: calc(100% - (35px + 10px));
    font-size: 18px;
}

.contact-wrap .txt-box h4 {}

.contact-wrap .txt-box p {
    font-weight: 500;
    margin-top: 5px;

}

.email-form {
    gap: 10px;
}

.contact-wrap .submit {
    width: 100%;
    max-width: 420px;
    height: 50px;
    border-radius: 5px;
    background-color: var(--main-color);
    color: var(--white-color);
    gap: 5px;
    font-size: 18px;
    text-align: center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.contact-wrap .select-form:last-of-type {
    margin: 0;
}

.contact-wrap .terms {
    margin-top: 50px;
}

.contact-wrap .terms h3:not(.section h3) {
    text-align: center;
}

.contact-wrap .call-btn {
    border-radius: 99px;
    background-color: #2B9CFE;
    /* border: 2px solid var(--white-color); */
    width: 100%;
    height: 50px;
    text-align: center;
    gap: 10px;
    font-size: 18px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}


.contact-wrap .call-btn i {
    font-size: 20px;
}

.contact-wrap .map {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.contact-wrap .map img {
    width: auto;
    height: 100%;
}

@media screen and (max-width: 950px) {

    .contact-wrap.round-box {
        width: 100%;
    }

    .contact-wrap .color-area {
        width: 100%;
    }

    .contact-wrap .write-area {
        width: 100%;
    }

    .terms .form-chek label {
        flex-direction: column;
        gap: 5px;
    }
}

@media screen and (max-width: 550px) {
    .email-form {
        flex-wrap: wrap;
    }

    .email-form em {
        width: 20px;
        text-align: center;
    }

    .email-form .input-txt:first-of-type {
        width: calc(100% - (160px + (10px * 3)));
    }
}

/* scroll terms */
.view-terms.policy-wrap {
    margin: 0;
    width: 100%;
}

.view-terms.policy-wrap>h2 {
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.view-terms.policy-wrap .section {
    font-size: 13px;
}

.view-terms.policy-wrap .section h3 {
    font-weight: 500;
    margin: 10px 0;
}

.view-terms.policy-wrap .section>p {
    margin: 10px 0;
}

.view-terms.policy-wrap .section ol>li {
    margin: 0 0 5px 20px;
}

.view-terms.policy-wrap .section ol>li>ol {
    margin: 10px 0;
    font-size: 12px;
}

/* mypage */
.mypage-wrap {
    background-color: #f8f8f8;
    padding: 120px 0 50px;
    margin-bottom: -100px;
    gap: 20px;
}

.mypage-wrap.bg-white {
    background-color: var(--white-color);
}

.mypage-wrap h2 {
    width: calc(100% - 30px);
    font-size: 25px;
    color: #999;
}

.mypage-wrap .white-box {
    background-color: var(--white-color);
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.mypage-wrap .white-box.p-none {
    padding: 0;
}

.mypage-wrap .myinfo {
    gap: 50px;
}

.mypage-wrap .myinfo .thum-wrap {
    gap: 10px;
}

.mypage-wrap .myinfo .thum {
    width: 100px;
    height: 100px;
    background-color: #eee;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    border-radius: 99px;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
}

.mypage-wrap .myinfo .thum-wrap .set-btn {
    width: 100%;
    height: 25px;
    gap: 5px;
    background-color: var(--main2-color);
    color: var(--white-color);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
}

.mypage-wrap .myinfo .thum-wrap .set-btn i {
    font-size: 16px;
}

.mypage-wrap .myinfo .txt-box {
    width: calc(100% - (100px + 50px));
}

.mypage-wrap .myinfo .rink-btn {
    width: 150px;
    height: 40px;
    /* margin: 0 0 0 auto; */
    color: var(--white-color);
    gap: 10px;
    font-size: 18px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--main2-color);
    border-radius: 99px;

}

.mypage-wrap .myinfo .rink-btn.pay {
    margin: 0 0 0 auto;
    background-color: var(--main-color);
}

.mypage-wrap .myinfo .rink-btn i {
    font-size: 20px;
}

.mypage-wrap .myinfo h3 {
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 500;
}

.mypage-wrap .myinfo h3 b {
    color: var(--main-color);
    font-weight: 600;

}

.mypage-wrap .myinfo .total {
    gap: 10px;
}

.mypage-wrap .myinfo .total li {
    width: calc((100% - (10px * 3)) / 4);
    text-align: center;
    gap: 5px;
    margin-top: 20px;
    /* position: relative; */
    border: 1px solid #eaeaea;
}

.mypage-wrap .myinfo .total li.pay {
    border-color: var(--main-color);
}

.mypage-wrap .myinfo .total li span:not(.rink-txt) {
    width: 100%;
    height: 30px;
    background-color: #f5f5f5;
    color: #999;
    font-size: 18px;
}

.mypage-wrap .myinfo .total li.pay span {
    background-color: var(--main-color);
    color: var(--white-color);
}

.mypage-wrap .myinfo .total li b {
    width: 100%;
    height: 30px;
    font-weight: 500;
    font-size: 18px;
}

/* .mypage-wrap .myinfo .total .rink-btn {
    border-radius: 99px;
    overflow: hidden;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.mypage-wrap .myinfo .total .rink-btn a {
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    color: var(--white-color);
    gap: 10px;
}

.mypage-wrap .myinfo .total .rink-btn a i {
    font-size: 20px;
}
 */

/* .mypage-wrap .myinfo .total li:not(:last-of-type):before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
    height: 20px;
    background-color: #eee;
} */

.mypage-wrap .tab-menu {
    width: 100%;
    /* height: 40px; */
    height: 60px;
    /* gap: 20px; */
    color: #999;
    background-color: #333;
}

.mypage-wrap .tab-menu .item {
    /* width: calc((100% - (0px * 3)) / 4); */
    width: calc((100% - (0px * 3)) / 3);
    height: 100%;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
}

.mypage-wrap .tab-menu .item:not(:last-of-type) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.mypage-wrap .tab-menu .item.active {
    background-color: var(--main2-color);
    color: var(--white-color);
}

.mypage-wrap .page-header {
    padding: 0 20px;
    box-sizing: border-box;
    gap: 10px;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
}

.mypage-wrap .page-header p {
    font-size: 20px;
    font-weight: 600;
}

.mypage-wrap .page-header em {
    font-weight: 500;
    color: var(--main-color);
    font-size: 16px;
    white-space: nowrap;
}

.mypage-wrap.payback {
    background-color: unset;
    padding: 0;
    margin: 0;
}

.mypage-wrap.payback .tab-menu .item {
    width: calc((100% - (0px * 3)) / 2);
}

.page-nav {
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.page-nav .btn {
    height: 35px;
    border-radius: 99px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    padding: 0 15px;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    gap: 5px;
    font-size: 1.2em;
}

.page-nav .btn.del {
    border-color: var(--red-color);
}

.page-nav .btn.del i {
    color: var(--red-color);
}

@media screen and (max-width: 1024px) {

    .mypage-wrap {
        padding: 100px 0 50px;
    }

    .mypage-wrap h2 {
        font-size: 20px;
        color: #999;
    }


}

@media screen and (max-width: 950px) {

    .mypage-wrap .myinfo .txt-box>header {
        flex-wrap: wrap;
    }

    .mypage-wrap .myinfo h3 {
        width: 100%;
    }

    .mypage-wrap .myinfo .rink-btn.pay {
        margin: 0;
    }


}

@media screen and (max-width: 750px) {

    .mypage-wrap .myinfo .thum-wrap {
        display: none;
    }

    .mypage-wrap {
        background-color: #fff;
    }
    .mypage-wrap .white-box {
        box-shadow: unset;
        padding: 0;
    }

    .card-list {
        padding: 20px 0;
    }


    .mypage-wrap .myinfo .txt-box>header {
        gap: 20px 10px;
    }

    .mypage-wrap .myinfo {
        gap: 20px;
        flex-direction: column;
    }

    .mypage-wrap .myinfo .txt-box {
        width: 100%;
    }

    .mypage-wrap .myinfo .total {
        flex-wrap: wrap;
    }

    .mypage-wrap .myinfo .total {
        margin-top: 20px;
    }

    .mypage-wrap .myinfo .total li {
        width: calc((100% - (10px * 1)) / 2);
        box-sizing: border-box;
        margin: 0;
    }

    .mypage-wrap .tab-menu .item {
        font-size: 16px;
    }

    .recommend_member .bg-white {
        padding: 50px 0;
    }
    /* .recommend_member .txt-wrap {
        gap: 10px;
    }

    .recommend_member .txt {
        width: calc((100% - 10px) / 2);
    } */


}



@media screen and (max-width: 450px) {

    .mypage-wrap .myinfo .rink-btn {
        width: calc((100% - 10px) / 2);
        font-size: 14px;
        gap: 5px;
    }
}

.card-list {
    padding: 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 750px) {
    .card-list {
        padding: 20px 0;
    }
}

.card-item {
    gap: 10px;
    padding-left: 20px;
    border: 1px solid #eaeaea;
    /* padding: 20px; */
    cursor: pointer;
}

.card-item:not(:last-of-type) {
    margin-bottom: 20px;
}

.card-item.active {
    border-color: var(--main2-color);
    background-color: rgba(249, 175, 6, 0.1);
}


.card-item .check-btn {
    margin-right: 0;
}

.card-item .rink-wrap {
    width: calc(100% - (20px + 10px));
    gap: 10px 20px;
    padding: 20px 0;
    box-sizing: border-box;
    font-size: 18px;
}

.card-item .txt-box {
    gap: 10px;
}

.card-item .txt-box em {
    color: #999;
}

.card-item .txt-box b {
    font-weight: 600;
}

.card-list+.pagin-nav {
    margin: 10px 0 40px;
}

/* done */
.done-wrap {
    background: linear-gradient(180deg, rgba(249, 175, 6, 1) 0%, rgba(249, 175, 6, 0) 100%);
}


.round-wrap.round-center-box.done-wrap {
    height: 500px;
    padding-top: 100px;
    color: #1a1a1a;
}


.done-wrap .check-svg {
    margin: 0 auto;
}

.done-wrap h2 {
    margin-top: 30px;
    font-size: 40px;
    font-weight: 700;
}

.done-wrap p {
    font-weight: 500;
    font-size: 25px;
    color: #666;
}

.round-box.done-content {
    border-radius: 30px;
}

.done-btns {
    gap: 20px;
    margin-top: 30px;
}

.done-btns .btn {
    gap: 10px;
    width: 100%;
    height: 80px;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    box-shadow: 3px 3px 5px rgb(0, 0, 0, 0.2);
    font-size: 18px;
}

.done-btns .btn.bg-color {
    background-color: var(--main-color);
    color: var(--white-color);
    border: none;
}

.done-btns .btn i {
    font-size: 25px;
    margin-bottom: 2px;
}

.gallery-header {
    width: 100%;
    padding: 60px 0 30px;
    box-sizing: border-box;
    gap: 10px;
    height: 50px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 40px;
    font-size: 1.6rem;
}

.gallery-header p {
    font-weight: 600;
}

.gallery-header em {
    font-weight: 500;
    color: var(--main-color);
}

.gallery-list {
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    width: calc((100% - (20px*3)) / 4);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.gallery-list.row-three .gallery-item {
    width: calc((100% - (20px*2)) / 3);
    cursor: pointer;
}

.gallery-list.item-length-2 .gallery-item {
    width: calc((100% - (20px*1)) / 2);
    cursor: pointer;
}

.gallery-item .thum {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
}

.gallery-item .thum img {
    transition: all 0.5s;
}

.gallery-item:hover {
    transform: translateY(-20px);
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover .thum img {
    transform: scale(1.3);
}

.gallery-item:hover .pseudo-plus:before {
    opacity: 1;
}


/* 주문 불가할때 */
.gallery-item.none {
    position: relative;
    cursor: auto;
}

.gallery-item.none .thum img {
    filter: grayscale(0.6);
}

.gallery-item.none:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);

}

.gallery-item.none:hover {
    transform: translateY(0);
    /* box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.4); */
}

.gallery-item.none:hover .thum img {
    transform: scale(1);
}

.gallery-item.none:hover .pseudo-plus:before {
    opacity: 0;
}

.gallery-item.none:hover {
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.gallery-item.none .more-btn {
    background-color: #999;
}

.gallery-item .txt-box {
    padding: 20px 10px;
    box-sizing: border-box;
}

.gallery-item .tit {
    font-size: 1.3rem;
    font-weight: 600;
}

.gallery-item .add {
    margin-top: 10px;
    color: #666;
    line-height: 1.2;
}

.gallery-item .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    border-top: 1px solid #eaeaea;
    padding: 10px 0 0;
    margin-top: 10px;
}

.gallery-item .more-btn {
    width: 100%;
    height: 50px;
    background-color: var(--main2-color);
    color: var(--white-color);
    gap: 5px;
    font-size: 1.4rem;
    font-weight: 500;
    margin: auto 0 0;
}

.gallery-item .more-btn i {
    font-size: 1.5rem;
}

.gallery-item .more-btn.bg-color {
    background-color: var(--main-color);

}

.gallery-item .more-btn.blue-color {
    background-color: #2B9CFE
}


.pseudo-plus {
    position: relative;
}

.pseudo-plus:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    border-radius: 99rem;
    background: url('/resources/images/common/plus-icon.svg') no-repeat center/contain;
    border: 2px solid var(--white-color);
    background-size: 2rem;
    opacity: 0;
    transition: all 0.3s;

}

.page-prev {
    gap: 10px;
    width: 200px;
    height: 50px;
    border-radius: 99px;
    background-color: #eee;
    color: #666;
    margin-top: 30px;
    font-weight: 500;
    font-size: 1.2rem;
}

.page-prev i {
    transition: all 0.3s;
}

.page-prev:hover i {
    transform: translateX(-20px);
}


@media screen and (max-width: 1024px) {

    .gallery-header {
        font-size: 1.2rem;
    }

    .gallery-item {
        width: calc((100% - (20px*2)) / 3);
    }

    .gallery-item .price {
        font-size: 1rem;
    }
}


@media screen and (max-width: 650px) {

    .gallery-list {
        gap: 10px;
    }

    .gallery-item {
        width: calc((100% - (10px*1)) / 2);
    }


    .gallery-item .more-btn {
        font-size: 1.2rem;
    }

    .gallery-item .txt-box {
        padding: 10px;
    }

    .gallery-list.row-three .gallery-item {
        width: calc((100% - (10px*1)) / 2);
        cursor: pointer;
    }

    .gallery-list.row-three .gallery-item .price {
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-height: 50px;
        justify-content: center;
        padding: 0;
    }

}


/* 상품 */
.view-wrap {
    flex-wrap: wrap;
    gap: 70px 50px;
}

.view-wrap .thum {
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: 450px;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    overflow: hidden;

}

.view-wrap .detail-wrap {
    width: calc((100% - 450px) - 50px);
    font-size: 1.3rem;
}

.view-wrap .detail-wrap .tit {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 10px 0 20px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}

.view-wrap .detail-header {
    /* outline: 1px solid green; */
}

.view-wrap .order-header {
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}


/* 주문하기 */
.thum.order_thum {
    width: 120px;
    height: 100px;
}

.thum.order_thum img {
    width: auto;
    min-width: 100%;
    max-width: 100%;
    max-height: 100%;
    min-height: 100%;
}

.order_item {
    width: 600px;
}

.order_item .detail-wrap {
    font-size: 1rem;
}

.order_item .detail-wrap .tit {
    font-size: 1.2rem;
    margin: 5px 0;
    padding: 5px 0;
}

.order_item .detail-wrap {
    width: calc((100% - 20px) - 120px);
}

.order_item .price-box .before {
    font-size: 0.8rem;
}

.view-wrap .order_item .price-box .after {
    font-size: 1rem;
}




/* 
.view-wrap .detail-wrap .brand {
    height: 30px;
}

.view-wrap .detail-wrap .brand img {
    width: auto;
    min-height: 100%;
} */

.view-wrap .info-wrap {
    width: 100%;
}

.view-wrap .price-box {
    text-align: right;
    justify-content: flex-end;
    align-items: flex-end;
}

.view-wrap .price-box .before {
    display: block;
    color: #999;
    font-weight: 500;
    position: relative;
    margin: 0 5px 5px 0;
}

.view-wrap .price-box .before:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 10px);
    height: 1px;
    background-color: #000;
}

.view-wrap .price-box .after-wrap {
    gap: 20px;

}

.view-wrap .price-box .discount {
    font-size: 1.2rem;
    background-color: var(--red-color);
    color: var(--white-color);
    font-weight: 500;
    border-radius: 99px;
    width: 4.5rem;
    height: 2rem;
}

.view-wrap .price-box .after {
    font-weight: 600;
    font-size: 2rem;
}

.view-wrap .btn-wrap {}

.view-wrap .btn {
    width: 100%;
    height: 4rem;
    border-radius: 5px;
    background-color: var(--main2-color);
    color: var(--white-color);
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 500;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.view-wrap .btn i {
    font-size: 25px;
}

.view-wrap .btn.prev {
    background-color: #eee;
    color: #666;
}

.view-wrap .btn.call {
    background-color: #2B9CFE;
}

.view-wrap .info-box {
    flex-wrap: wrap;
    font-size: 1.1rem;
    margin-top: 10px;
    border: 1px solid #eaeaea;
    margin: 30px 0;
}

.view-wrap .info-box dt {
    width: 200px;
    border-bottom: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    min-height: 2rem;
    box-sizing: border-box;
    gap: 5px;
    font-weight: 500;
}

.view-wrap .info-box dt:last-of-type {
    border-bottom: none;
}

.view-wrap .info-box dd {
    box-sizing: border-box;
    width: calc(100% - 200px);
    min-height: 3rem;
    padding: 10px 20px;
    border-bottom: 1px solid #eaeaea;
    word-break: keep-all;
}

.view-wrap .info-box dd:last-of-type {
    border-bottom: none;
}

.view-wrap .info-box .sm-txt {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0 0 20px;
}

.view-wrap .info-box .sm-txt:before {
    content: '※';
    margin: 0 5px 0 -20px;
}

/* 상품설명 */
.info-wrap {}

.info-wrap .tab-wrap li {
    width: calc(100% / 2);
    height: 4rem;
    background-color: #f5f5f5;
    font-size: 1.3rem;
    font-weight: 500;
    color: #999;
    box-sizing: border-box;
    cursor: pointer;
}

.info-wrap .tab-wrap li.active {
    border: 1px solid #eaeaea;
    border-bottom: 2px solid var(--main-color);
    background-color: var(--white-color);
    color: var(--main-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.more-wrap {
    border-top: 1px solid #eaeaea;
    margin: 50px 0 0;
    padding: 30px 0 0;

}

.more-wrap .more-hn {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* 상품주문하기 */
.view-wrap.order {
    gap: 70px 50px;
}

.order-wrap {
    margin: 0;
}

.order_item.w-full {
    width: 100%;
}


.sticky-wrap {
    width: 500px;
}

.sticky-item {
    position: sticky;
    top: 120px;
    font-size: 1.2rem;
}

.sticky-wrap .shadow-box {
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}


.sticky-wrap .sm-hn {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.payment .element {
    justify-content: space-between;
}

.payment .element:not(:last-of-type) {
    margin-bottom: 10px;
}

.payment .element.result {
    text-align: center;
    background-color: #f5f5f5;
    width: 100%;
    height: 120px;
    justify-content: center;
    gap: 5px;
}

.payment .element.result b {
    font-weight: 600;
    color: var(--main-color);
    font-size: 1.4rem;
}

.sticky-wrap .submit-btn {
    background-color: var(--main2-color);
    color: var(--white-color);
    gap: 10px;
    font-weight: 500;
    font-size: 1.4rem;
}

.sticky-wrap .submit-btn i {
    font-size: 30px;
}

.sticky-wrap .agree-element {
    font-size: 1.2rem;
    align-items: center;
    margin-bottom: 10px;
}

.sticky-wrap .agree-element strong {
    font-size: 0.9rem;
    margin: 4px 5px 0 0;
    color: #666;
    font-weight: 500;
}

.sticky-wrap .agree-element strong.on {
    color: var(--red-color);
}

.sticky-wrap .agree-element .agree_more {
    font-size: 0.9rem;
    border: 1px solid var(--main-color);
    border-radius: 25px;
    width: 60px;
    height: 25px;
    color: var(--main-color);
}

.sticky-wrap .agree-element .agree_more:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    opacity: 1;
}

.sticky-wrap .agree-all {
    width: 100%;
    height: 65px;
    background-color: #eee;
    color: #999;
    font-weight: 500;
}

.check_all:checked+.agree-all {
    background-color: #2B9CFE;
    color: var(--white-color);
}

.agree-box .txt-box {
    font-size: 1rem;
    color: #666;
    padding: 20px 0 0;
}

/* 답례품 */
.gallery-list.gift {}

.gallery-list.gift .gallery-item {
    box-sizing: border-box;
    border: 1px solid #eaeaea;
}

.gallery-list.gift .gallery-item:hover {
    transform: translateY(0);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}


.gallery-list.gift .price {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.6rem;
}

.gallery-list.gift .before {
    color: #999;
    position: relative;
}

.gallery-list.gift .before:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background-color: #333;
}

.gallery-list.gift .brand {
    color: #2B9CFE;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-list.gift .action-btns {
    margin: auto 0 0;
}

/* .gallery-list.gift .gallery-item:hover .pseudo-plus:before {
    opacity: 0;
} */

.gallery-list.gift .gallery-item .thum {
    max-height: unset;
    border-bottom: 1px solid #eaeaea;
    box-sizing: border-box;
}

.fixed-b-wrap {
    z-index: 10;
    position: fixed;
    bottom: 0;
    left: 50%;
    margin: 0;
    transform: translate(-50%, 0);
}

.fixed-b-wrap .fix-btn {
    width: 100%;
    min-width: 50%;
    height: 80px;
    box-sizing: border-box;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: #2B9CFE;
    color: var(--white-color);
    gap: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
    border-radius: 20px 20px 0 0;
}

.fixed-b-wrap .fix-btn i {
    font-size: 25px;
}

.fixed-b-wrap .fix-btn.prev {
    background-color: #eee;
    color: #666;
}

.fixed-b-wrap .fix-btn.call {
    background-color: var(--main-color);
    color: var(--white-color);
}

.fixed-b-wrap .fix-btn.yellow {
    background-color: var(--main2-color);
    color: var(--white-color);
}


.fixed-b-wrap.sticky {
    position: sticky;
}


.fixed-b-wrap.sticky .fix-btn {
    box-shadow: none;
    border-radius: 0;
}

/* 답례품 직접주문하기 */
.view-wrap.gift {
    gap: 20px;
}

.view-wrap.gift .thum {
    width: 100%;
    max-width: 100%;
    max-height: unset;
    /* height: auto;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    overflow: hidden; */
}

.view-wrap.gift .detail-wrap {
    width: 100%;
}

.view-wrap.gift .price-box .discount {
    width: auto;
    padding: 0 10px;
}

.view-wrap.gift .brand {
    color: #2B9CFE;
}

.view-wrap.gift .detail-wrap .tit {
    font-size: 1.8rem;
    margin: 0 0 20px;
    border-top: none;
    padding: 5px 0 20px;
}

/* 답례품 주문 Depth2 */
.bar-header {
    background-color: #333;
    color: var(--white-color);
    text-align: center;
    width: 100%;
    height: 60px;
    gap: 10px;
    font-size: 1.6rem;
    border-radius: 20px 20px 0 0;
}

.bar-header i {
    font-size: 30px;
}

/* 답례품 전화주문 완료 */
.order_item.gift {
    /* outline: 1px solid red; */
}

.order_item.gift .thum.order_thum {
    width: 100px;
    height: 100px;
    overflow: hidden;
    /* outline: 1px solid blue; */
}

.order_item.gift .detail-wrap {
    width: calc((100% - 20px) - 100px);
    /* outline: 1px solid green; */
}

.order_item.gift .price-box .before {
    font-size: 1.3rem;
}

.order_item.gift .price-box .after {
    font-size: 2rem;
}

@media screen and (max-width: 1230px) {
    .view-wrap.order {
        gap: 50px 20px;
    }

    .order-wrap {
        margin: 0;
        width: calc(100% - (360px + 20px));
        max-width: 100% !important;
    }

    .sticky-wrap {
        width: 360px;
    }

    .sticky-wrap .sm-hn {
        font-size: 1.1rem;
    }

    .sticky-item {
        font-size: 1rem;
    }

    .sticky-wrap .agree-element {
        font-size: 1rem;
    }

    .sticky-wrap .agree-element strong {
        margin: 1px 5px 0 0;
    }

    .sticky-wrap .agree-element .agree_more {
        font-size: 0.8rem;
        height: 20px;
    }

    .agree-box .txt-box {
        font-size: 0.8rem;
    }
}


@media screen and (max-width: 1200px) {
    .view-wrap {
        gap: 50px 30px;
    }

    .view-wrap .info-box dt {
        width: 120px;
    }

    .view-wrap .info-box dd {
        width: calc(100% - 120px);
    }

}

@media screen and (max-width: 1024px) {
    .view-wrap .thum {
        max-width: 100%;
    }

    .view-wrap .detail-wrap {
        font-size: 1rem;
        width: 100%;
    }

    .view-wrap .detail-wrap .tit {
        font-size: 1.2rem;
    }

    .view-wrap .price-box .after {
        font-size: 1.5rem;
    }

    .view-wrap .info-box {
        font-size: 1rem;
    }

    .info-wrap .tab-wrap li {
        font-size: 1.2rem;
    }

    .order-wrap article:nth-of-type(2) .order-header {
        margin-top: 30px;
    }

}

@media screen and (max-width: 750px) {
    .order-wrap {
        width: 100%;
    }

    .sticky-wrap {
        width: 100%;
    }


    /* .thum.order_thum {
        height: 80px;
    } */

}
@media screen and (max-width: 505px) {
    .view-wrap .info-box dt {
        width: 100%;
        border-right: none;
    }
    .view-wrap .info-box dd {
        width: 100%;
        padding: 20px;
    }
    .view-wrap .info-box dt:last-of-type {
        border-bottom: 1px solid #eaeaea;
    }
}

/* 직접주문 신청하기 */

.radio-wrap.gift {
    gap: 0;
}


.radio-wrap.gift .radio-label {
    width: 100%;
    height: 45px;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
    border: 1px solid #eaeaea;
    border-bottom: none;
    box-shadow: initial;
    background-color: #f8f8f8;

}

.radio-wrap.gift .radio-form {
    width: calc(100% / 3);
}

.radio-wrap.gift .radio-input:checked+.radio-label {
    background-color: var(--main-color);
}

.radio-txt-box.gift {
    border: 1px solid #eaeaea;
    padding: 15px;
    box-sizing: border-box;
    word-break: keep-all;
    font-size: 1.5rem;
}

.select-form.gift .plus-btn {
    width: 150px;
    margin: 0 0 10px;
    background-color: #333;
}

.select-form.gift .plus-btn.del {
    height: 55px;
    background-color: var(--red-color);
    width: 80px;
    border-radius: 5px;
    margin: 0;
}

.select-form.gift .num-txt {
    width: 60px;
    height: 55px;
    background-color: #f8f8f8;
    font-size: 1.6rem;
    font-weight: 600;
    color: #666;
}

.input-txt.flex-auto {
    width: auto;
    flex: 1 1 auto;
}

.num-item:not(:last-of-type) {
    margin-bottom: 15px;
}

/* .act-btn {
    width: auto;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 500;
    background-color: #eee;

} */


.info-txt-box {
    background-color: #f8f8f8;
    padding: 20px;
    box-sizing: border-box;
    font-size: 1.2rem;
}

.info-txt-box>p>b {
    font-size: 1.6rem;
    font-weight: 500;
    color: #2B9CFE;
}

.info-txt-box>p:not(:last-of-type) {
    margin-bottom: 5px;
}

.info-txt-box>p {
    width: 100%;
    gap: 5px;
}

.info-txt-box>p i {
    color: var(--main2-color);
}



.checked {
    outline: 1px solid red;
}


/* .pay-info {
    display: none;
} */



/* 답례문 보내기 */
.bg-txt-box {
    width: 100%;
    /* position: relative; */
    background-color: #3C3D42;
    padding: 70px 15px;
    box-sizing: border-box;
}

.bg-txt-box .flower {
    max-width: 495px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 0 auto 50px;
}

.bg-txt-box .txt-wrap {
    width: 100%;
    z-index: 10;
    color: var(--white-color);
    text-align: center;
    font-size: 2rem;
}

.bg-txt-box .txt-wrap b {
    color: var(--main2-color);
}

.bg-txt-box .txt-wrap h2 {}

.bg-txt-box .txt-wrap a {
    margin: 30px auto 30px;
    width: 100%;
    max-width: 450px;
    height: 80px;
    gap: 10px;
    font-size: 1.5rem;
    background-color: #2B9CFE;
    border-radius: 20px;
    border: 2px solid var(--white-color);
    box-sizing: border-box;
}

.bg-txt-box .txt-wrap strong {
    font-size: 1.2rem;
    position: relative;
    word-break: keep-all;
}

.bg-txt-box .txt-wrap strong:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 70%;
    transform: translate(-50%, 0);
    height: 2px;
    background-color: var(--white-color);
}

@media screen and (max-width: 460px) {
    .bg-txt-box .txt-wrap {
        font-size: 1.5rem;
    }

    .bg-txt-box .txt-wrap strong {
        font-size: 1rem;
    }

}

.bg-gray-full {
    width: 100%;
    min-height: 100vh;
    background-color: #f9f9f9;
}

.bg-white {
    background-color: var(--white-color);
    padding: 50px 20px;
    box-sizing: border-box;
}

.select-hn {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
}

.bg-white.greeting p {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.select-list {
    gap: 20px;
    flex-wrap: wrap;
}

.select-list .item {
    width: calc((100% - 20px) / 2);
    height: 180px;
    /* border: 2px solid #eaeaea; */
    border: 2px solid #2B9CFE;
    border-radius: 20px;
    box-sizing: border-box;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    background: url('/resources/images/common/greeting_select_bg01.png') no-repeat right bottom;
    background-size: 200px;
}

.select-list .item.bg2 {
    background-image: url('/resources/images/common/greeting_select_bg02.png');
}

.select-list .item.bg3 {
    background-image: url('/resources/images/common/greeting_select_bg03.png');
}

.select-list .item.bg4 {
    background-image: url('/resources/images/common/greeting_select_bg04.png');
}

.select-list .item span {
    width: 100%;
    font-size: 3rem;
    font-weight: 600;
}

.select-list .item:hover svg {
    fill: #2B9CFE;
}

/* 주문번호 검색 */
.none-result {}

.none-result h3 {
    font-size: 2rem;
    color: #999;
    font-weight: 500;
    text-align: center;
    margin: 30px 0;
}


.none-result .list-txt {
    font-size: 1.2rem;
    color: #999;
    text-align: center;
}

.none-result .list-txt:not(:last-of-type) {
    margin-bottom: 5px;
}

/* 답례인사 보내기 */
.radio-wrap.gallery {
    flex-wrap: wrap;
    gap: 20px;
}

.radio-wrap.gallery .radio-form {
    width: calc((100% - (20px * 2)) / 3);
}

.radio-wrap.gallery .radio-label {
    height: auto;
    padding: 20px;
    border-radius: 5px;
}

.table-mini {
    flex-wrap: wrap;
    font-size: 1.1rem;
    border: 1px solid #eaeaea;
    border-bottom: unset;
}

.table-mini dt {
    width: 100px;
    min-height: 35px;
    line-height: 35px;
    background-color: #f8f8f8;
    padding-left: 10px;
    box-sizing: border-box;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.table-mini dd {
    width: calc(100% - 100px);
    border-bottom: 1px solid #eaeaea;
    box-sizing: border-box;
    padding-left: 10px;
    padding-top: 8px;
    font-weight: 600;
    color: #333;
}

.radio-wrap.gallery .radio-input:checked+.radio-label {
    background-color: rgba(164, 231, 255, 0.1);
    color: #666;
    border-width: 2px;
}

.radio-wrap.gallery .radio-input:checked+.radio-label .table-mini {
    background-color: #fff;
}

.page-prev.gift {
    background-color: var(--main2-color);
    color: var(--white-color);
    width: 100%;
    height: 80px;
    font-size: 2rem;
    margin-top: 50px;
}

@media screen and (max-width: 1024px) {
    .page-prev {
        margin: 20px 0;
    }

    .radio-wrap.gallery .radio-form {
        width: calc((100% - (20px * 1)) / 2);
    }

    .radio-wrap.gallery .radio-label {
        padding: 0;
    }

    .radio-wrap.gallery .radio-label {
        border: unset;
    }

    .radio-wrap.gallery {
        gap: 10px;
    }

    .table-mini {
        font-size: 1rem;
        width: 100%;
    }

    .table-mini dt {
        font-size: 0.9rem;
        width: 60px;
    }

    .table-mini dd {
        width: calc(100% - 60px);
    }

    .radio-wrap.gallery .radio-input:checked+.radio-label {
        border: 2px solid var(--main-color);
    }
}

@media screen and (max-width: 650px) {
    .select-hn {
        font-size: 2rem;
        margin-top: -60px;
    }

    .bg-white {
        padding: 50px 15px;
    }

    .bg-gray-full>section {
        width: 100%;
    }

    .select-list {
        gap: 10px;
    }

    .select-list .item {
        width: calc((100% - 10px) / 2);
    }
}

@media screen and (max-width: 480px) {
    .radio-wrap.gallery .radio-form {
        width: 100%;
    }

    .bg-white.greeting p {
        font-size: 1.2rem;
    }

    .select-list .item span {
        font-size: 1.5rem;
    }

    .page-prev.gift {
        font-size: 1.5rem;
    }

}


/* 답례문 작성 */
.info-wrap.skin .tab-content {
    background: url('/resources/images/common/skin_bg01.png') repeat-y top center;
    padding: 30px 0;
    background-size: contain;
}

.info-wrap.skin.bg2 .tab-content {
    background-image: url('/resources/images/common/skin_bg02.png');
}

.info-wrap.skin.bg3 .tab-content {
    background-image: url('/resources/images/common/skin_bg03.png');
}

.info-wrap.skin.bg3,
.info-wrap.skin.bg3 .txt-box,
.info-wrap.skin.bg3 .input-txt,
.info-wrap.skin.bg3 .input-txt.fw-bold {
    color: var(--white-color);
}

.info-wrap.skin.bg4 .tab-content {
    background-image: url('/resources/images/common/skin_bg04.png');
}

.info-wrap.skin .posi-ab {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
}

.info-wrap.skin h3 {
    font-size: 3.6rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
}

@media screen and (max-width: 430px) {

    .info-wrap.skin.bg2 .tab-content {
        background-size: 110%;
    }
}

@media screen and (max-width: 360px) {
    .info-wrap.skin h3 {
        font-size: 3rem;
    }

    .info-wrap.skin .txt-box {
        font-size: 1.2rem;
    }

}

.info-wrap.skin h3:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%, 0);
    width: 200px;
    height: 2px;
    background-color: #666;

}

.info-wrap.skin .tab-wrap li {
    border: 1px solid #bbb;
}

.info-wrap.skin .txt-box {
    text-align: center;
    background-color: transparent;
    font-size: 1.3rem;
    line-height: 1.4;
    border: 1px dashed #2a2a2a;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.info-wrap.skin .input-txt {
    background-color: transparent;
    text-align: center;
    font-size: 1.8rem;
    color: #666;
    border: 1px dashed #2a2a2a;
    box-sizing: border-box;
}

.bg3 .info-wrap.skin .txt-box {
    text-shadow: 1px 1px black;
}

.info-wrap.skin .input-txt.fw-bold {
    font-size: 2rem;
    color: #2a2a2a;
}

.act-btns {
    width: 100%;
    gap: 10px;
}

.act-btns .btn {
    width: calc((100% + (10px * 2)) / 3);
    border-radius: 5px;
    color: var(--white-color);
    background-color: var(--main-color);
    gap: 5px;
    font-size: 1.3rem;
    height: 50px;
}

.act-btns .btn i {
    font-size: 30px;
}

.act-btns .btn.kakao {
    background-color: #fae100;
    color: #3b1d1d;
}

.act-btns .btn.link {
    background-color: var(--white-color);
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

.info-wrap.skin.view .txt-box {
    border: unset;
}

.info-wrap.skin.view .input-txt {
    border: unset;
}

.view-txt {
    width: 100%;
    gap: 10px;
    justify-content: left;
}

.view-txt em {
    color: #666;
    font-size: 14px;
    background-color: #f5f5f5;
    padding: 0 10px;
    border-radius: 5px;
}

.view-txt .bold {
    font-size: 18px;
    font-weight: 600;
    margin-right: 15px;
}

.send .send_li.app a {
    width: 100%;
    height: 100%;
}



@media screen and (max-width: 940px) {
    .send {
        flex-wrap: wrap;
    }

    .send .send_li {
        padding: 0;
        height: 120px;
        width: calc(100% / 2);
        box-sizing: border-box;
        border: 1px solid #eaeaea;
    }

    .send .send_li.app {
        width: 100%;
    }

    .send .send_li.app a {}

    .send .send_li:last-child {
        border: 1px solid #eaeaea;
    }

    .modal-wrap {
        width: calc(100% - 30px);
    }

}



@media screen and (max-width: 650px) {
    .fixed-b-wrap .fix-btn {
        font-size: 1.2rem;
    }

    .gallery-list.gift .brand {
        font-size: 1rem;
    }

    .gallery-list.gift .price {
        font-size: 1.2rem;
    }

    .fixed-b-wrap .fix-btn {
        height: 60px;
    }

    .gallery-list.item-length-2 .gallery-item .more-btn {
        font-size: 1rem;
    }

    .gallery-list.item-length-2 .gallery-item {
        width: calc((100% - (10px*1)) / 2);
    }

    .form-chek label {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 550px) {
    .act-btns .btn {
        font-size: 1rem;
    }

    .act-btns .btn i {
        font-size: 15px;
    }

}

@media screen and (max-width: 480px) {
    .gallery-list.item-length-2 .gallery-item {
        width: 100%;
    }

    .fixed-b-wrap .fix-btn {
        font-size: 1rem;
    }
}

@media screen and (max-width: 370px) {
    .pagin-nav {
        gap: 10px;
    }
}


/* Bugo Skin  */

@font-face {
    font-family: 'ChosunGs';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@1.0/ChosunGs.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GowunBatang-bold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/GowunBatang-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GowunBatang-regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/GowunBatang-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.__font-chosun {
    font-family: 'ChosunGs';
}

.__font-gowun-r {
    font-family: 'GowunBatang-regular';
}

.__font-gowun-b {
    font-family: 'GowunBatang-bold';
}

.n_bugo {
    font: 400 10px/1.3 'Paperlogy', sans-serif;
}

.bugo-main {
    font-size: 1.8em;
    margin-bottom: 3em;
    overflow: hidden;
}

.bugo-index {}

.bugo-index .gallery-list.gift .gallery-item .thum {
    border: none;
}

.bugo-index .gallery-item .tit {
    font-size: 1.6em;
    text-align: center;
}

.n_bugo .intro {
    background: url('/resources/images/bugo/bugo_001_intro_bg.png') no-repeat center/cover;
    /* height: 90em;
    max-height: 900px; */
    height: 33.3334em;

    /* color: var(--white-color); */
    text-align: center;
    text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.4);
}

.n_bugo .intro .cn {
    display: block;
    font-size: 2.5em;
    /* padding: 4rem 0 3rem; */

    padding: 4rem 0 1.3rem;
}

.n_bugo .intro h1 {
    font-size: 2.2em;
    gap: 10px;
    align-items: flex-start;
}

.n_bugo .intro h1 b {
    font-size: 1.2em;
    gap: 10px;
}

.n_bugo .intro .date {
    display: block;
    font-size: 1.4em;
    /* color: rgba(255, 255, 255, 0.7); */
    /* margin: 0.8em 0 1em; */
    margin: 0.2em 0 0.8em;
}

.n_bugo .intro .info-txt {
    display: none;
    /* font-size: 1.2em; */
    font-size: 1.5em;
}

.n_bugo .intro .user-img {
    height: 290px;
    max-width: 240px;
    max-height: 290px;
    /* margin: 3.5em auto 0; */
    margin: 0 auto 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
}

.n_bugo .intro .user-img img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.n_bugo .area {
    position: relative;
    padding: 3.5em 0 0;
    margin-bottom: 5em;
}

.n_bugo .area:before {
    content: '';
    position: absolute;
    left: -4em;
    top: 0;
    width: 240px;
    height: 535px;
    background: url('/resources/images/bugo/bugo_01_sec_bg1.png') no-repeat center/contain;
    z-index: -1;
}

.n_bugo .area:after {
    content: '';
    position: absolute;
    right: -4em;
    bottom: -3em;
    width: 240px;
    height: 535px;
    background: url('/resources/images/bugo/bugo_01_sec_bg2.png') no-repeat center/contain;
    z-index: -1;
}
@media screen and (max-width: 650px) {
    .n_bugo .intro .cn  {
        padding: 4rem 0 1.3rem;
    }

    .n_bugo .intro .user-img {
        max-width: 200px;
        height: 250px;
    }
}



@media screen and (max-width: 430px) {
    .n_bugo .intro .user-img {
        max-width: 190px;
        height: 230px;
    }
}


.n_bugo .header {
    /* margin: 3em 0; */
    margin-bottom: 3.5em;
}

.n_bugo .line-hn {
    text-align: center;
    /* font-size: 1.5em; */
    font-size: 1.7em;
    position: relative;
}

.n_bugo .line-hn:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translate(-50%, 0);
    width: 300px;
    height: 8px;
    background: url('/resources/images/bugo/bugo_01_line.png') no-repeat center/contain;
}


.n_bugo .list-wrap:not(:last-of-type) {
    width: 100%;
    margin-bottom: 2em;
}

.n_bugo .list-wrap>li {
    border: 1px solid #eaeaea;
}

.n_bugo .list-wrap>li:not(:last-of-type) {
    border-bottom: none;
}

.n_bugo .list-wrap .tbox {
    min-height: 3em;
    padding: 0 1em;
    box-sizing: border-box;
    align-items: center;
    background-color: var(--white-color);
    font-size: 1.2em;
}

.n_bugo .list-wrap .tbox.cont {
    padding: 1em;
}

.n_bugo .list-wrap .tit {
    gap: 10px;
    border-bottom: 1px solid #eaeaea;
    background-color: #f9f9f9;
}

.n_bugo .list-wrap .tit b {
    font-size: 1.1em;
    font-weight: 500;
}

.n_bugo .list-wrap .txt {
    font-weight: 600;
}

.m-color {
    filter: invert(50%) sepia(81%) saturate(4684%) hue-rotate(225deg) brightness(98%) contrast(105%);
}

.n_bugo .tbox.user-list {
    /* gap: 15px 30px; */
    gap: 15px 0;
    flex-wrap: wrap;
    padding: 1em 0;
    /* width: 100%; */
}

.n_bugo .user-list>li {
    /* gap: 10px; */
    gap: 5px;
    width: calc(100% / 4)
}

@media screen and (max-width: 400px){
    .n_bugo .user-list>li {
        flex-direction: column;
    }
}

.n_bugo .user-list .name {
    font-size: 1.1em;
    font-weight: 600;
}

.n_bugo .mini-table {
    flex-wrap: wrap;
}

.n_bugo .mini-table dt {
    width: 6.5em;
    min-height: 2.5em;
    color: #666;
    text-align: center;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.n_bugo .mini-table dd {
    width: calc(100% - 6.5em);
    min-height: 2.5em;
    padding: 0 1em;
    box-sizing: border-box;
}

.n_bugo .mini-table dt:not(:last-of-type),
.n_bugo .mini-table dd:not(:last-of-type) {
    border-bottom: 1px solid #eaeaea;
}

.n_bugo .user-list .call-btn {
    border-radius: 5px;
    background-color: #6563FF;
    color: var(--white-color);
    font-size: 0.9em;
    padding: 0 10px;
    height: 1.7em;
    gap: 5px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.n_bugo .user-list .call-btn span {
    display: none;
}

.n_bugo .user-list .call-btn.not {
    background-color: #bbb;
}

.n_bugo .map-wrap {
    text-align: center;
}

.n_bugo .map-wrap h3 {
    /* font-size: 1.3em; */
    font-size: 1.5em;
    font-weight: 600;
}

.n_bugo .map-wrap h3+p {
    font-size: 1.2em;
}

.n_bugo .art-header {
    gap: 10px;
    margin-bottom: 1em;
}

.n_bugo .map-btns {
    gap: 1em;
    margin-bottom: 2em;
}

.n_bugo .map-btns .btn {
    width: 12em;
    height: 3em;
    border-radius: 99em;
    box-sizing: border-box;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    background-color: var(--white-color);
    font-weight: 500;
    border: 1px solid #999;
}



.n_bugo .circle {
    width: 2em;
    height: 2em;
    margin: 0 0.5em;
    border-radius: 99em;
    background-color: #999;
    overflow: hidden;
}

.n_bugo .map-btns .btn.m-bg {
    color: var(--white-color) !important;
    background-color: #6563FF;
    border: none;
}

.n_bugo .map-btns .btn.m-bg .circle {
    background-color: var(--white-color);
}

.n_bugo .map-img {
    max-height: 22em;
    border-radius: 2em;
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.map-btns.round {
    flex-wrap: wrap;
}

.map-btns.round .btn {
    width: calc((100% - (1em * 2)) / 3);
    height: 7em;
    gap: 10px;
    border-radius: 0.5em;
    border: 1px solid #eaeaea;
}

.map-btns.round .circle {
    width: 2.8em;
    height: 2.8em;
    background-color: #f8f8f8;

}

.map-btns.round .circle.kakao {
    background-color: #FAE100;
}

.n_bugo .txt-list {
    gap: 1em;
    cursor: pointer;
}

.n_bugo .txt-list li {
    padding: 0.8em;
    box-sizing: border-box;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
    border-radius: 0.5em;
    background-color: var(--white-color);
}

.n_bugo .txt-list .tit {
    width: 100%;
    font-weight: 500;
    font-size: 1.1em;
    word-break: keep-all;
}

.n_bugo .txt-list .info {
    width: 100%;
    margin-top: 10px;
}

.n_bugo .txt-list .info .date {
    color: #999;
    font-size: 0.8em;
}

.n_bugo.fixed-b-wrap {
    width: 100%;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
}

.n_bugo.fixed-b-wrap .fix-btn {
    height: 60px;
    font-size: 20px;
    min-width: auto;
    width: calc(100% / 3);
    border-radius: 0;
    box-shadow: unset;
}

.n_bugo.fixed-b-wrap .fix-btn.yellow {
    background-color: #FFDD53;
    color: #2a2a2a;
}

.n_bugo.fixed-b-wrap .fix-btn.white {
    border: 1px solid #FFDD53;
    background-color: var(--white-color);
    color: #2a2a2a;
}

.n_bugo .modal-wrap {
    font-size: 1.8em;
}

.n_bugo .modal-wrap .header {
    margin-bottom: 0;
    height: 5em;
    border-bottom: none;
}

.n_bugo .modal-wrap .header .ico {
    font-size: 2.5em;
}

.n_bugo .modal-wrap .header h3 {
    font-size: 1.3em;
}

.n_bugo .modal-wrap .content {
    border: none;
    margin: 0 auto;
}

.n_bugo .modal-wrap .map-btns {
    /* margin-bottom: 0; */
}

.n_bugo .modal-wrap .map-btns .btn {
    width: 100%;
    height: 4.5em;
    border-radius: 10px;
    padding: 0 1em;
    gap: 1em;
    color: #2a2a2a;

}

.n_bugo .modal-wrap .map-btns .btn.round {
    width: 13em;
    height: 3.5em;
    border-radius: 99em;
    box-sizing: border-box;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    gap: 0.5em;
}

.n_bugo .modal-wrap .map-btns .btn.round .circle {
    margin: 0;
}

.n_bugo .modal-wrap .map-btns .btn.round span {
    text-indent: initial;
}


.n_bugo .modal-wrap .map-btns .btn span {
    font-size: 1.1em;
    text-align: center;
    width: calc(100% - 3.5em);
    text-indent: -2.5em;
}

.n_bugo .modal-wrap .map-btns .btn.m-bg {
    background-color: #4DB9FE;

}

.n_bugo .modal-wrap .map-btns .btn .round {
    width: 2.5em;
    height: 2.5em;
    border-radius: 10px;
    background-color: #F8F8F8;
    overflow: hidden;
}

.n_bugo .modal-wrap .map-btns .btn .round.band {
    background-color: #1BCD21;
}

.blank.modal-wrap {
    width: 100%;
    transform: unset;
    position: unset;
    height: 100vh;
    box-shadow: none;
    max-height: none;
}

.n_bugo .join .input-txt,
.n_bugo .input-select,
.n_bugo .select-form .timepicker,
.n_bugo .input-textarea {
    font-size: 1.8em;
}


.n_bugo .modal-wrap .map-btns.half {
    flex-wrap: wrap;
}

.n_bugo .modal-wrap .map-btns.half .btn {
    width: calc((100% - (2em)) / 2);
}

.n_bugo .modal-wrap .input-txt,
.n_bugo .modal-wrap .input-textarea {
    font-size: 1em;
}

/* 부고장 기독교 */
.n_bugo.skin2 .intro {
    background-image: url('/resources/images/bugo/bugo_002_intro_bg.png');
    color: #fff;
}

.n_bugo.skin2 .intro .date {
    color: var(--white-color);
}

.n_bugo.skin2 .area:before {
    background-image: url('/resources/images/bugo/bugo_02_sec_bg1.png');
}

.n_bugo.skin2 .area:after {
    background-image: url('/resources/images/bugo/bugo_02_sec_bg2.png');
}

.n_bugo.skin2 .line-hn:before {
    height: 13px;
    background-image: url('/resources/images/bugo/bugo_02_line.png');
}

/* 부고장 천주교 */
.n_bugo.skin3 .intro {
    background-image: url('/resources/images/bugo/bugo_003_intro_bg.png');
    color: #fff;
}

.n_bugo.skin3 .intro .date {
    color: var(--white-color);
}

.n_bugo.skin3 .area:before {
    background-image: url('/resources/images/bugo/bugo_03_sec_bg1.png');
}

.n_bugo.skin3 .area:after {
    background-image: url('/resources/images/bugo/bugo_03_sec_bg2.png');
}

.n_bugo.skin3 .line-hn:before {
    height: 17px;
    background-image: url('/resources/images/bugo/bugo_03_line.png');
}

/* 부고장 불교 */
.n_bugo.skin4 .intro {
    background-image: url('/resources/images/bugo/bugo_004_intro_bg.png');
    color: #2a2a2a;
    text-shadow: 4px 4px 7px rgba(228, 233, 214, 0.8);
}

.n_bugo.skin4 .intro .date {
    color: rgba(0, 0, 0, 0.6);
}

.n_bugo.skin4 .area:before {
    background-image: url('/resources/images/bugo/bugo_04_sec_bg1.png');
}

.n_bugo.skin4 .area:after {
    background-image: url('/resources/images/bugo/bugo_04_sec_bg2.png');
}

.n_bugo.skin4 .line-hn:before {
    height: 16px;
    background-image: url('/resources/images/bugo/bugo_04_line.png');
}

.n_bugo .list-wrap.group .tbox {
    flex-wrap: wrap;
    padding: 1em;
}

.n_bugo .list-wrap.group .w-half {
    width: calc((100% - 10px) / 2);
}

.n_bugo .list-wrap.group .input-select {
    font-size: 1em;
}

.mapTextbtns {
    margin-bottom: 2em;
}

.mapTextbtns .mapTextbtn {
    width: calc((100% - 20px) / 3);
    height: 2.5em;
    border: 1px solid #eaeaea;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    box-sizing: border-box;
    gap: 5px;
    transition: all 0.3s;
}

.mapTextbtns .mapTextbtn i {
    font-size: 20px;
    color: #666;
}

.mapTextbtns .mapTextbtn.active {
    background-color: #2B9CFE;
    color: var(--white-color);
    border-color: #2B9CFE;

}

.mapTextbtns .mapTextbtn.active i {
    color: var(--white-color);
}

.update-bar {
    width: 8em;
    height: 2.5em;
    position: fixed;
    top: 2em;
    background-color: #333;
    color: var(--white-color);
    text-align: center;
    font-size: 0.9em;
    font-weight: 500;
    border-radius: 0 99em 99em 0;
    z-index: 10;
}


@media screen and (max-width: 650px) {
    .n_bugo {
        font-size: 8px;
    }

    .bugo-main {
        width: 100%;
    }

    .n_bugo .modal-wrap {
        width: 100%;
        position: unset;
        transform: unset;
        border-radius: 0;
        min-height: 100vh;
    }

}

@media screen and (max-width: 480px) {
    .n_bugo .modal-wrap .map-btns .btn .round {
        width: 2em;
        height: 2em;
    }

    .n_bugo .modal-wrap .map-btns .btn span {
        font-size: 0.9em;
        width: auto;
        text-indent: unset;
        word-break: keep-all;
    }
}





.modal-sm-txt {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin: 5px 0 0 20px;
    word-break: keep-all;
}


.modal-sm-txt:before {
    content: '※';
    margin: 0 5px 0 -20px;
}

@media screen and (max-width: 450px) {
    .modal-sm-txt br {
        display: none;
    }
    
}

.confirm-wrap.line-send {
    gap: 10px !important;
}

.line-send .w-150 {
    width: 150px;
}

.line-send .w-calc {
    width: calc(100% - (150px + ((10px * 4) + (100px * 3))));
}

.line-send .btn {
    width: 100px;
    height: 55px;
    font-size: 1em;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    box-sizing: border-box;
}

.line-send .btn.black {
    color: var(--white-color);
    border-color: #333;
    background-color: #333;
}

.modal-wrap .btn.black i {
    color: var(--white-color);
}


@media screen and (max-width: 750px) {
    .confirm-wrap.line-send {
        flex-wrap: wrap;
    }

    .line-send .w-calc {
        width: calc(100% - (150px + (10px * 1)));
    }

    .line-send .btn {
        width: 100px;
        width: calc((100% - (10px * 2)) / 3);
    }

}


.input-disabled {
    background-color: var(--white-color) !important;
}

.input-disabled:disabled {
    background-color: #f8f8f8 !important;
}

.form-control {
    background-color: var(--white-color);
}

.chunk_namebtn {
    display: flex;
    align-items: center;
    background-color: #333;
    height: 35px;
    border-radius: 5px;
    overflow: hidden;
}

.chunk_namebtn .del_namebox {
    /* background-color: var(--red-color); */
    color: var(--white-color);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40px;
    font-size: 13px;
}

.funeral_reg .chunk_namebtn.names input {
    width: 100%;
    height: 35px;
    background-color: #333;
    color: var(--white-color);
    border-radius: unset;
}

/* 20250625 정성은 수정 */




#header .logout_btn {
    display: none;
    position: absolute;
    right: 85px;
    font-size: 18px;
}






@media screen and (max-width: 750px) {

    #header .logout_btn {
        display: block;
    }

}

@media screen and (max-width: 400px) {
    .contact_pg .card-item {
        flex-direction: column;
        padding: 0;
    }
    .contact_pg .card-item .check-btn {
        margin-left: 0px;
        margin-top: 10px;
    }

    .contact_pg .card-item .rink-wrap {
        padding: 0 0 20px;
    }


    #header h1  {
        width: 130px;
    }
}

@media screen and (max-width: 390px) {

    .mypage-wrap .page-header {
        padding: 10px 0;
    }
    .mypage-wrap .page-header {
        gap: 5px;
    }
    .mypage-wrap .page-header p {
        width: 130px;
    }

    .mypage-wrap .plus-btn {
        width: 100px;
    }
}

.sms-wrap {
    background: #f6f6f4;
    padding: 3rem 3rem;
    width: 100%;
    height: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sms-wrap a h5 {
    font-size: 1.5rem;
    color: #1d3b5c;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.sms-wrap a .rec .message {
    background: #1d3b5c;
    border-radius: 5px;
    padding: 1rem 2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sms-wrap a .rec .message i {
    font-size: 2rem;
    margin-right: .5rem;
    transform: translateY(1px);
}


.sms-wrap a .rec .fcGray2 {
    text-align: center;
    padding-bottom: 1.5rem;
    font-size: 18px;
}


.align-center select {
    border-radius: 8px;
}


.input-group .confirm-btn {
    display: none;
}

.bugo_new .step1 .step_1 .calc-second {
    border-radius: 8px;
    background-color: #f6f6f6;
}

.bugo_sign .step1 .step_1 .findhall {
    background-color: #f6f6f6;
    border: none;
}

.bugo_sign .round-wrap {
    height: 270px;
}

.bugo_sign .round-box {
    margin: -80px auto 0;
    padding: 50px 0 0;
    border-radius: 50px 50px 0 0;
    border: none;
}



@media screen and (max-width: 992px) {
    .m_col .mt05 {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 991px) {
    #header .gnb {
        display: none;
    }

    .bugo_new .resident_group_inner .row_item .myinfo .col-4.mb-3 {
        flex: 0 0 30%;
        padding-right: 0;
        padding-left: 15px;
    }

    .bugo_new .modal-content input {
        height: 40px;
    }
}


@media screen and (max-width: 767px) {
    .mobile_bugo .logo_checked_box {
        padding-right: 0;
    }


    .bugo_new .modal-content .col.mb-3 {
        padding-right: 5px;
        padding-left: 5px;
    }
}

.chunk_namebtn.names {
    display: flex;
    align-items: center;
    padding: 3px 10px;
    background: #303555;
    color: #fff;
    border-radius: 20px;
    gap: 4px;
    margin-right: 5px;
    font-weight: 400;
    white-space: nowrap;
    word-break: keep-all;
    position: relative;
    max-width: 200px;
}

.funeral_reg .chunk_namebtn.names input {
    background-color: unset;
    border: unset !important;
}

.chunk_namebtn .del_namebox {
    position: absolute;
    right: 0;
}

.mobile_bugo .n_bugo .list-wrap .tit b {
    width: 60px;
}

.mobile_bugo button.send_btn {
    border-radius: 0;
    font-size: 2rem;
    max-width: unset;
}

.__gap-5 {
    display: flex;
    gap: 5px;
}

.modal-bg .step1 {
    justify-content: space-between
}

.modal-wrap .step2 {
    width: calc(100% - 2em);
    margin: 1em;
}

.modal-bg .mourner-nm-self.input-txt {
    width: calc((100% - 10px) - 120px);
}
.modal-bg .modal-wrap .btn.send {
    width: 60px;
}

.modal-bg .step3 {
    flex-direction: column;
    margin-bottom: 20px;
}


.fileName2 {
    height: 55px;
}


.check_box {
    display: inline-flex;
    justify-content: space-between;
}

.send_pg .radio-wrap.gallery .sub_title_detail {
    width: 20px;
    height: 20px;
    background: transparent url(/resources/images/common/ico_check_off.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 8px;
}


.send_pg .radio-wrap.gallery .radio-input:checked+.radio-label .sub_title_detail {
    background-image: url(/resources/images/common/ico_check_on.svg);
}

.bugo_image .step {
    width: 100%;
    gap: 15px;
}

.bugo_image .step .input-select {
    width: 100%;
}

.bugo_image .step span {
    width: 100%;
}

.bugo_image .btn-wrap {
    padding-top: 15px;
}


.bugo_image .join-flex {
    position: sticky;
    left: 0;
    bottom: 0;
    z-index: 99;
    /* background-color: #fff; */
    width: calc(100% - 40px);
    /* padding: 30px 20px; */
}

.bugo_image .bugo {
    padding: 50px 0 50px;
}

.bugo_image .join.write .confirm-btn.btn-black-o {
    background-color: #888;
}



@media screen and (max-width: 390px) {
    input[type="time"], input[type="number"],
    input[type="text"], input[type="password"] {
        padding: 5px;
    }
    select {
        padding: 5px;
        background: #FFF url(/resources/images/common/select_arrow.svg) no-repeat calc(100% - 10px) center / 15px auto;
    }

}

@media screen and (max-width: 350px) {
    .ui-widget.ui-widget-content {
        width: calc(100% - 60px) !important;
    }

    .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled {
        width: 30px;
        height: 30px;
    }

}
@media screen and (max-width: 575px) {
.main_index_pg br.blind {
     display: block;
}
}


.recommend_member .txt-wrap {
    gap: 20px;
}

.recommend_member .title {
    color: #999;
    font-size: 1.4rem;
}

.recommend_member .title .txt {
    width: 50%;
    height: 50px;
    background-color: #f5f5f5;
    font-weight: 500;
    vertical-align: middle;
}

/* .recommend_member .desc .txt {
    height: 40px;
    border-bottom: 1px solid #eaeaea;
} */

.recommend_member .recommend_1 {
    background-color: #eaeaea;
}

.recommend_member td {
    text-align: center;
}

.recommend_member td p {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
}

.recommend_member td p + p {
    border-top: 1px solid #eaeaea;
}

.recommend_member .tr + .tr {
    border-top: 1px solid #d5d5d5;
}

.recommend_member .tr:nth-last-child(1) {
    border-bottom: 1px solid #d5d5d5;
}

.recommend_member .txt {
    flex-direction: column;
    width: calc((100% - 20px) / 2);
    text-align: center;
}
.recommend_member .desc .txt span {
    padding: 10px 0; 
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend_member .desc .txt span + span  {
    
    border-top: 1px solid #eaeaea;
} 

.recommend_member .desc .txt span:nth-last-child(1) {
    border-bottom: 1px solid #eaeaea;
}

@media screen and (max-width: 750px) {
    
}

.mypage-wrap .recommend_member .page-header {
    margin-bottom: 0;
}

.num-input {
    border-radius: 5px;
    height: 50px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 18px;
}

.num-input em {
    margin-right: 5px;
}

.num-input span {
    font-weight: 600;
    color: #2a2a2a;
}

.card-li {
    position: relative;
}

.card-li:not(:last-of-type):before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}

#databox {
    width: 100%;
    font-size: 18px;
}

.select-line2.username {
    align-items: center;
    font-size: 18px;
}


section.popup_v2.modal-wrap {
    position: unset; 
    transform: unset;
    box-shadow: unset;
     max-height: unset;
}

.greet_pg .__base_wrap.max-w-xs {
    max-width: 1020px;
}

.greet_pg .search_wrap form {
    width: 100%;
}

.greet_pg .modal-wrap.__base_wrap.max-w-xs {
    max-width: 500px;
    
}

.greet_pg .modal-wrap .content {
    border: none;
}

.greet_pg .title {
    text-align: center;
    display: block;
    background: #eee;
    padding: 10px 0;
}

.greet_pg .submit_txt {
    border-bottom: 1px solid #ccc;
}

.greet_pg .card-list {
    width: 100%;
    padding: 0 0 40px;
}

.greet_pg .card-item .rink-wrap {
    width: 100%;
}

.greet_pg .btn_box_new .btns {
    width: 100%;
}

.greet_pg .btn_box_new .btn{
    width: 100%;
    color: #fff;
    background: #333;
    font-weight: 400;
    margin-top: 20px;
}

.greet_bg .join.write .select-form {
    width: 100%;
    font-size: 18px;
}



.bugo_image .step0 {
    margin-bottom: 55px;
}



.bugo_image .step0 .form-control {
    border: 1px solid #eaeaea;
    border-radius: 10px;
}

.bugo_image .step0 .only {
    background-color: #e3e3e3;
    color: #444;
    font-weight: 400;
}

.bugo_image .step0 .inputs_wrap {
    flex-direction: column;
    gap: 15px;
}

.bugo_image .step0 .item-wrap {
    gap: 15px;
}

.bugo_image .step0 .item-wrap .item {
    width: calc((100% - 15px )/ 2);
}

.point_pg .join.write .select-form {
    width: 100%;
}

.point_pg .form-header {
    flex-direction: column;
}

.point_pg .form-header .btn_wrap {
    margin: 0 0 0 auto;
}

.point_pg .form-header .btn_wrap .rink-btn {
    width: 220px;
    height: 50px;
    color: var(--white-color);
    gap: 10px;
    font-size: 18px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--main2-color);
    border-radius: 99px;
}

.point_pg .form-header .btn_wrap .rink-btn.btn {
    background-color: var(--main-color);
}

.point_pg .check-list  .chek-label{
    width: calc(100% - 30px);
}

@media screen and (max-width: 490px) {
    .point_pg .form-header .btn_wrap {
        gap: 10px;
        width: 100%;
    }

    .point_pg .form-header .btn_wrap .rink-btn {
        width: 50%;
         /* background-color: #f2f2f2;
        color: #999;  */
        gap: 5px;
    }

    .point_pg .form-header .btn_wrap .rink-btn.btn {
        color: #fff;
    }


}

@media screen and (max-width: 405px) {
        .point_pg .form-header .btn_wrap .rink-btn i {
        display: none;
    }
}