@font-face {
    font-family: 'kcc';
    src: url('/fonts/kcc_eunyoung.ttf');
}

.disabled button,
.disabled input {
    cursor: default;
}
header {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 11;
}
header > .container_xl {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
}
header .logo {
    flex: 0 0 150px;
    max-width: 150px;
}
header dl {
    flex: 0 0 220px;
    max-width: 220px;
}
header .menu_open {
    display: block;
    position: relative;
    padding: 0;
    width: 20px;
    height: 16px;
    border: none;
    background: none;
}
header .menu_open span {
    display: inline-block;
    position: absolute;
    left: 0px;
    width: 20px;
    height: 2px;
    background: #000;
    transition : all .4s;
}
header .menu_open:focus {
    outline: none;
}
.menu_open span:nth-of-type(1) {
    top : 0;
}
.menu_open span:nth-of-type(2) {
    top : 7px;
}
.menu_open span:nth-of-type(3) {
    bottom : 0;
}
.menu_close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    outline: none;
}
.menu_close:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 30px;
    background-color: #fff;
    transform: translate(50%, -50%) rotate(45deg);
}
.menu_close:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 30px;
    background-color: #fff;
    transform: translate(50%, -50%) rotate(-45deg);
}
nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
nav ul li {
    padding: 0 30px;
}

.gnb_highlight {
    display: inline-block;
    position: relative;
}
.gnb_highlight:before {
    content: '';
    position: absolute;
    top: auto;
    bottom: 2px;
    left: 0;
    right: 0;
    border-bottom: 4px solid #fbb200;
    opacity: 0;
    transition: all ease 0.4s;
}
.gnb_highlight:hover:before {
    opacity: 1;
}
.gnb_highlight span {
    position: relative;
    display: inline-block;
    z-index: 1;
}
header dl {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.875rem;
    font-weight: 500;
}
header dl dd {
    margin-left: 25px;
}
.join_animation {
    position: relative;
}
.join_animation span {
    position: absolute;
    display: block;
    width: 56px;
    top: 24px;
    left: -1px;
    padding: 2px 8px 2px 6px;
    font-size: 12px;
    color: #fff;
    background-color: #000;
    border-radius: 6px;
}
.join_animation span:before {
    position: absolute;
    content: '';
    left: 50%;
    top: -4px;
    margin-left: -6px;
    width: 0px;height: 0px;
    border-top:5px solid none;
    border-bottom:5px solid #000;
    border-right: 5px solid transparent;
    border-left: 5px solid  transparent;
}
.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
} 

@-webkit-keyframes bounce {
    0%, 20%, 40%, 60%, 80%, 100% {-webkit-transform: translateY(0);}
    50% {-webkit-transform: translateY(-5px);}
} 

@keyframes bounce { 
    0%, 20%, 40%, 60%, 80%, 100% {transform: translateY(0);}
    50% {transform: translateY(-5px);}
} 

.bounce { 
    -webkit-animation-name: bounce;
    animation-name: bounce;
}
.btn_area .join_animation span {
    position: absolute;
    display: block;
    top: 10px;
    width: 100%;
    padding: 6px 8px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header_logo {
    flex: 1;
    max-width: 100% !important;
}
.header_logo img {
    height: 34px;
}
.header .gnb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex: 3;
}
.header .gnb li {
    padding: 0;
}
.header .gnb li a {
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 2px;
    border-bottom: 2px solid #FFF;
}
.header .gnb li a:hover {
    border-color: #000;
}
.header .gnb li.link a {
    padding-right: 22px;
    background-image: url('/images/header/header_link.svg');
    background-repeat: no-repeat;
    background-position: right 5px;
}
.view_subnav {
    display: flex;
    align-items: center;
}
.header_arrow {
    display: block;
    margin-left: 6px;
    width: 20px;
    height: 20px;
    font-size: 0;
    background-image: url('/images/icon/header_arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    transform: rotate(180deg);
    transition: .15s ease-in-out;
}
.header .lnb {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex: 1;
}
.lnb .header_search {
    display: block;
    width: 24px;
    height: 24px;
    font-size: 0;
    background-image: url('/images/icon/header_search.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

.sub_nav {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 100;
    background-color: #FFF;
}
.sub_nav.on {
    display: block;
}
.header_arrow.on {
    transform: rotate(360deg);
}
.sub_nav_area {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0 20px;
    padding: 24px 0 42px;
}
.sub_nav_banner {
    position: relative;
}
.sub_nav_area ul {
    width: 160px;
    height: 100%;
}
.sub_nav_area ul + ul {
    padding-left: 20px;
    border-left: 1px solid #ECECEC;
}
.sub_nav_area ul h6 {
    margin-bottom: 12px;
    color: #7F8285;
    font-weight: 500;
    font-size: 12px;
}
.sub_nav_area ul li {}
.sub_nav_area ul li a {
    display: inline-block;
    padding-bottom: 1px;
    font-size: 14px;
    line-height: 24px;
    color: #1B1716;
    font-weight: 500;
    border-bottom: 2px solid #FFF;
}
.sub_nav_area ul li a:hover {
    border-color: #000;
}
.sub_nav_area ul li + li {
    margin-top: 6px;
}
.headerSwiper  {
    width: 320px;
    overflow: hidden;
}
.headerSwiper .swiper-slide {
    width: 100%;
    height: 190px;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}
.headerSwiper {
    position: relative;
}
.headerPaging {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.headerPaging .swiper-pagination-bullet-active {
    width: 8px;
    background-color: #fbb200;
}
.headerPaging .swiper-pagination-bullet {
    margin:0 4px;
}

.footer_nav, footer {
    border-top: 1px solid #dcdcdc;
}
.footer_nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_nav ul li {
    font-size: 0.875rem;
    font-weight: 600;
}
.footer_nav ul li a {
    display: inline-block;
    padding: 25px 0;
    font-weight: 400;
}
footer {
    padding: 30px 0 70px;
    background: #f9f9f9;
}
.footer_top {
    padding-bottom: 15px;
    border-bottom: 1px solid #dcdcdc;
    align-items: center;
}
.footer_top .logo {
    width: 100px;
}
.footer_bottom {
    padding-top: 15px;
}
footer .container_lg {
    display: flex;
    position: relative;
    justify-content: space-between;
}
footer .left_box {
    flex: 1;
    font-size: 0.875rem;
}
footer .left_box ul li {
    display: inline-block;
    margin-right: 15px;
    margin-top: 3px;
    margin-bottom: 3px;
}
footer .left_box ul li.copyright {
    margin-top: 45px;
}
footer .right_box {
    flex: 1;
    text-align: right;
}
footer .right_box ul {
    margin-top: 3px;
    font-size: 0.875rem;
}
footer .right_box ul li {
    display: inline-block;
    margin: 3px 0;
}
footer .right_box ul li + li {
    margin-left: 30px;
}
footer .sns_link a + a {
    margin-left: 5px;
}

/* top page banner */
.page_top_banner {
    position: relative;
    background-image: url("/images/banner/banner_pattern.png"), url("/images/noise_bg14.jpg");
    /* background-color: #FFD28A; */
    background-repeat: no-repeat, repeat;
    background-position: center;
    color: #fff;
    text-align: center;
    cursor: pointer;
}
.page_top_banner > h4 {
    display: inline-block;
    margin: 0 auto;
    padding: 35px 60px;
    width: 100%;
    max-width: 992px;
/*     background-image: url("/images/event/invite/coin02.png"); */
    background-size: 100px;
    background-position: right 100px center;
    background-repeat: no-repeat;
}
/*.page_top_banner > h4 {
        display: inline-block;
        margin: 0 auto;
        padding: 15px 60px 10px;
        width: 100%;
        max-width: 992px;
        background-image: url("/images/birthday/top_img.png");
        background-size: 100px;
        background-position: right center;
        background-repeat: no-repeat;
        color: #000;
        font-family: 'GmarketSans';
        font-size: 30px;
}*/
.page_top_banner > button {
    position: absolute;
    padding: 0;
    width: 30px;
    height: 30px;
    top: 50%;
    right: 35px;
    background-color: transparent;
    border: none;
    outline: none;
    transform: translate(0, -50%);
}
.page_top_banner > button > span {
    display: block;
    position: absolute;
    width: 24px;
    height: 1px;
    background-color: #fff;
    top: 50%;
    right: 50%;
}
.page_top_banner > button > span:first-child {
    transform: translate(50%, -50%) rotate(45deg);
}
.page_top_banner > button > span:last-child {
    transform: translate(50%, -50%) rotate(-45deg);
}

/*main page*/
.main_section_pd {
    margin-top: 100px;
}
.bt_line_title {
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
}
.bt_line_title > span {
    position: relative;
    z-index: 1;
}
.bt_line_title:before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 6px;
    /*width: 100%;*/
    height: 10px;
    background-color: #fbb200;
}
.main_section .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 40px;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7px;
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 30px;
    background: #fff;
    transition: width 0.2s ease;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    width: 27px;
    background: #fff;
}

.thumb_content_item {
    padding: 15px 0;
}
.thumb_content_item .bg_box {
    position: relative;
    padding-top: 54.54%;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.thumb_content_item .bg_box > .bg_img {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 100%;
    height: 100%;
    transform: translate(50%, -50%);
    background-position: center;
    background-size: cover;
    transition: width 0.4s ease, height 0.4s ease;
}
.thumb_content_item:hover .bg_box > .bg_img {
    width: 110%;
    height: 110%;
}
.thumb_content_item .bg_box .content_type_ico {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid #fff;
    background-color: #feb500;
    background-repeat: no-repeat;
    background-position: center;
}
.thumb_content_item .bg_box .content_type_ico.type1 {
    background-image: url("/images/icon/food.png");
}
.thumb_content_item .bg_box .content_type_ico.type2 {
    background-image: url("/images/icon/play.png");
}
.thumb_content_item .bg_box .content_type_ico.type3 {
    background-image: url("/images/icon/study.png");
}


.thumb_content_item .txt_box {
    margin-top: 20px;
}
.thumb_content_item .txt_box .flex_desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.progress_bar {
    position: relative;
    height: 3px;
    background-color: #dcdcdc;
}
.progress_bar > span {
    display: block;
    height: 100%;
    background-color: #000;
}
.thumb_content_item .progress_bar {
    margin: 10px 0;
}
.thumb_content_item .txt_box .desc {
    margin-top: 15px;
    font-size: 16px;
}
.thumb_content_item .txt_box .info_list,
.thumb_content_item .txt_box .tag_area {
    margin-top: 5px;
}
.thumb_content_item .txt_box .info_list {
    display: flex;
    flex-wrap: wrap;
}
.thumb_content_item .txt_box .info_list li {
    position: relative;
    padding: 0 7px;
    font-size: 0.875rem;
}
.thumb_content_item .txt_box .info_list li:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #000;
}
.thumb_content_item .txt_box .info_list li:first-child {
    padding-left: 0;
}
.thumb_content_item .txt_box .info_list li:first-child:before {
    display: none;
}
.tag_item {
    display: inline-block;
    margin-top: 5px;
    margin-right: 2px;
    padding: 1px 8px;
    border: 1px solid #ff8400;
    border-radius: 30px;
    color: #ff8400;
    font-size: 12px;
}
.donate_view_title .tag_item {
    margin-right: 6px;
    padding: 3px 11px;
}
.thumb_content_item .reg {
    color: #7a7a7a;
}

.thumb_content_item.complete .bg_box {
    position: relative;
}
.thumb_content_item.complete .bg_box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.7);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.thumb_content_item.complete.comp03 .bg_box:before {
    background-image: url("/images/comp_03.png");
}
.thumb_content_item.complete.comp04 .bg_box:before {
    background-image: url("/images/comp_04.png");
}
.thumb_content_item.complete.comp05 .bg_box:before {
    background-image: url("/images/comp_05.png");
}
.thumb_content_item.complete.comp06 .bg_box:before {
    background-image: url("/images/comp_06.png");
}
.thumb_content_item.complete.comp07 .bg_box:before {
    background-image: url("/images/comp_07.png");
}

.btn_area {
    padding-top: 70px;
    text-align: center;
}
.complete_more_btn {
    display: none;
}
.complete_more_btn button {
    padding: 0 15px;
    width: 100%;
}

/*210430 index_intro_section 추가*/
.index_intro_section {
    padding: 50px 0 40px;
    background-color: #faf8f5;
}
.intro_story_list {
    margin-top: 30px;
    text-align: center;
}
.intro_story_list img {
    display: block;
    margin: 0 auto;
}
.intro_story_list h5 {
    margin-top: 20px;
}
.intro_story_list h6 {
    margin-top: 5px;
    display: block;
}
.intro_story_list small {
    margin-top: 5px;
    display: block;
}

.main_video_section {
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 800px;
    background-image: url('/images/main/event/bg_event_invite.png');
    background-repeat: repeat;
}
.main_video_box {
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    cursor: pointer;
}
.main_video_box img {
    width: 100%;
}
.youtube_title {
    margin-bottom: 10px;
    text-align: center;
}
.main_video_box .video_box {
    width: 100%;
    box-sizing: border-box;
}

.video_container {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 56.25%;
}

.video_container iframe {
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.main_video_section2 {
    padding: 0;
}
.main_video_section2 .video_box {
    border: 1px solid #ccc;

}
.video_desc {
    display: none;
    padding: 10px;
}

/*210322 main_event_section 추가*/
.main_event_section {
    padding: 0;
}
.event_box {
    text-align: center;
}
.event_box h5 {
    margin-top: 6px;
}
.event_box a {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 30px;
    color: #000;
    border: 1px solid #000;
    font-size: 14px;
}
.event_complete {
    display: none;
    padding: 35px 0 50px;
    background-image: url("/images/main/banner_bg.jpg");
    background-repeat: repeat;
    color: #fff;
}
.event_complete a {
    border-color: #fff;
    color: #fff;
    font-weight: 600;
}
.event_complete h6 {
    margin-top: 6px;
}
.event_complete_img {
    margin-bottom: 20px;
}
.event_complete_img img {
    width: 185px;
    height: auto;
}
.event_invite {
    position: relative;
    padding: 70px 0 0;
    height: 410px;
    background-image: url("/images/main/event/bg_event_invite.png");
    background-repeat: repeat;
}
.event_invite a {
    background-color: #12100a;
    border-color: #12100a;
    color: #fff;
}
.event_invite p {
    margin-top: 6px;
}
.event_invite_img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.event_invite_img img {
    width: auto;
    height: 150px;
}
/* 
.event_youtube {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 410px;
        background-image: url("/images/main/banner_bg.jpg");
        background-repeat: repeat;
}
.event_youtube .video {
        width: 80%;
        color: #fff;
}
.event_youtube .video_container iframe {
        max-width: 500px;
        width: 100%;
        height: 250px;
}
.event_youtube2 {
        padding: 0;
        margin: 0;
}
*/
.event_youtube2 iframe {
    width: 100%;
    height: 100%;
}
.video {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    border-radius: 30px;
    background-color: #f0f0f0;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0px 8px 33px #999;
}

.video-container {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 50%;
}

.main_event_section iframe {
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}


.main_banner_section {
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/images/main/banner_bg.jpg");
    background-size: cover;
    color: #fff;
}

.main_banner_section h6 {
    margin: 25px 0 45px;
}
.main_banner_section a {
    display: inline-block;
    padding: 7px 30px;
    border: 1px solid #fff;
    font-weight: 500;
    font-size: 0.875rem;
}
.main_section_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_section_title .btn_area {
    padding: 0;
}
.faq_item {
    position: relative;
    padding: 28px 25px;
    height: 230px;
    border: 1px solid #bfbfbf;
    transition: transform 0.4s ease;
}
.faq_item:hover {
    transform: translateY(-10px);
    border-color: #1b1b1b;
}
.faq_item .icon_box {
    height: 40px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}
.faq_item .txt_box {
    position: absolute;
    bottom: 28px;
    left: 25px;
    right: 25px;
}
.faq_item .txt_box .title {
    font-weight: 500;
    line-height: 1.4;
}
.faq_item .txt_box a {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.75rem;
}
.faq_item .txt_box a > img {
    margin-left: 2px;
    vertical-align: baseline;
}

/*donate_view*/
.donate_end_btn_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.donate_end_btn_download button {
    display: block;
    padding: 5px 10px;
    font-size: 14px;
    color: #686868;
    border: 1px solid #686868;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.2s ease;
}
.donate_end_btn_download button:hover {
    color: #fff;
    border-color: #fbb200;
    background-color: #fbb200;
}

.donate_view_top_section {
    position: relative;
    padding-bottom: 80px;
}
.donate_view_top_section:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 60%;
    background-color: #f5f5f5;
}
.donate_view_top_section > .container {
    position: relative;
    z-index: 1;
}
.donate_view_title {
    padding: 80px 0;
    text-align: center;
}
.donate_view_title_txt {
    display: flex;
    align-items: center;
    justify-content: center;
}
.donate_view_title .txt_end {
    padding: 2px 8px;
    margin-left: 3px;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
}
.donate_view_title .tag_area {
    margin-top: 30px;
}
.donate_progress_area {
    display: flex;
    padding: 50px 0;
    margin: 0 auto;
    max-width: 1040px;
    align-items: center;
    justify-content: center;
}
.donate_progress_item {
    position: relative;
    flex: 0 0 20%;
    max-width: 20%;
    text-align: center;
}
.donate_progress_item:before {
    content: '';
    display: block;
    position: absolute;
    margin-top: -1px;
    top: 43px;
    left: 0;
    right: 50%;
    bottom: auto;
    width: 50%;
    height: 2px;
    background-color: #dcdcdc;
}
.donate_progress_item:after {
    content: '';
    display: block;
    position: absolute;
    margin-top: -1px;
    top: 43px;
    left: 50%;
    right: 0;
    bottom: auto;
    width: 50%;
    height: 2px;
    background-color: #dcdcdc;
}
.donate_progress_item .icon_box {
    position: relative;
    margin: 0 auto;
    width: 85px;
    height: 85px;
    border-radius: 100%;
    border: 2px solid #dcdcdc;
    background-color: #f6f6f6;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.donate_progress_item:nth-child(1):before {
    display: none;
}
.donate_progress_item:last-child:after {
    display: none;
}
.donate_progress_item .icon_box.status1 {
    background-image: url("/images/donate/status1.png");
}
.donate_progress_item .icon_box.status2 {
    background-image: url("/images/donate/status2.png");	
}
.donate_progress_item .icon_box.status3 {
    background-image: url("/images/donate/status3.png");
}
.donate_progress_item .icon_box.status3_1 {
    background-image: url("/images/donate/status3_1.png");
}
.donate_progress_item .icon_box.status4 {
    background-image: url("/images/donate/status4.png");
}
.donate_progress_item.on .icon_box.status1 {
    background-image: url("/images/donate/status1_on.png");
}
.donate_progress_item.on .icon_box.status2 {
    background-image: url("/images/donate/status2_on.png");	
}
.donate_progress_item.on .icon_box.status3 {
    background-image: url("/images/donate/status3_on.png");
}
.donate_progress_item.on .icon_box.status3_1 {
    background-image: url("/images/donate/status3_1_on.png");
}
.donate_progress_item.on .icon_box.status4 {
    background-image: url("/images/donate/status4_on.png");
}
.donate_progress_item.on:before,
.donate_progress_item.on:after {
    background-color: #fdb500;
}
.donate_progress_item.on .icon_box {
    border-color: #fdb500;
    background-color: #fdb500;
}
.donate_progress_item .title {
    margin-top: 20px;
}
.progress_date {
    position: absolute;
    left: 50%;
    bottom: -22px;
    width: 100%;
    transform: translateX(-50%);
}

.donate_view_thumb {
    padding-top: 54.54%;
    background-position: center;
    background-size: cover;
}
.donate_status_card {
    padding: 30px;
    margin: 0 auto;
    max-width: 700px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
}
.btn_share_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn_share {
    padding: 3px 8px;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #000;
    background-color: #fff;
}
.btn_share > span {
    display: inline-block;
    position: relative;
    margin-left: 0;
    width: 10px;
    height: 10px;
}
.btn_share > span::before {
    content: '';
    display: block;
    position: absolute;
    margin-bottom: 2px;
    width: 6px;
    height: 1px;
    background-color: #707070;
    right: 0;
    bottom: 50%;
    transform: rotate(45deg);
}
.btn_share > span::after {
    content: '';
    display: block;
    position: absolute;
    margin-top: 2px;
    width: 6px;
    height: 1px;
    background-color: #707070;
    right: 0;
    top: 50%;
    transform: rotate(-45deg);
}
.btn_share img {
    display: block;
    margin: 0 auto;
}
.donate_status_card > .percent,
.donate_status_card > .btn_share_wrap .percent {
    /*margin-top: 20px;*/
    color: #fdb500;
}
.donate_status_card .progress_bar {
    margin: 10px 0 15px;
}
.donate_status_card .reg {
    margin-top: 5px;
    color: #1d1d1d;
}
.donate_status_card .btn_area {
    padding-top: 20px;
}
.donate_status_card .btn_area button {
    width: 100%;
    height: 65px;
    font-weight: 600;
    font-size: 1.125rem;
}
.donate_status_card_list {
    margin-top: 20px;
}
.donate_status_review {}
.donate_status_review p {
    color: #fdb500;
    font-size: 1.2rem;
    font-family: 'GmarketSans';
    font-weight: 600;
}
.donate_status_card_list dl {
    display: flex;
    padding: 12px 0;
    align-items: center;
    justify-content: space-between;
}
.donate_status_card_list dl + dl {
    border-top: 1px solid #d2d2d2;
}
.donate_status_card_list dl dt {
    font-size: 0.875rem;
}
.donate_status_card_list dl dd {
    text-align: right;
}
.donate_status_desc {
    font-size: 0.875rem;
    letter-spacing: -0.75px;
}

.donate_view_info_section {
    /*padding: 80px 0;*/
}

.donate_view_section_title {
    border-bottom: 1px solid #000;
}
.donate_view_section_title .bt_line_title {
    margin-bottom: 15px;
}

.donate_agency_header {
    display: flex;
    padding: 15px 0;
    justify-content: space-between;
    flex-wrap: wrap;
}
.donate_agency_header > .donate_agency_header_obj > .desc {
    margin-top: 5px;
}
.donate_agency_header > .donate_agency_header_obj > article {
    display: flex;
    margin-top: 40px;
    border: 1px solid #c0c0c0;
}
.donate_agency_header > .donate_agency_header_obj > article dl {
    padding: 25px 15px;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    height: 100%;
    text-align: center;
}
.donate_agency_header > .donate_agency_header_obj > article dl + dl {
    border-left: 1px solid #c0c0c0;
}
.donate_agency_header > .donate_agency_header_obj > article dt {
    font-size: 0.9rem;
}
.donate_agency_header > .donate_agency_header_obj > article dd {
    margin-top: 2px;
    font-weight: 400;
    font-size: 1.875rem;
}
.donate_agency_header > .donate_agency_header_obj > table {
    margin-top: 40px;
    width: 100%;
    text-align: center;
    table-layout: fixed;
}
.donate_agency_header > .donate_agency_header_obj > table thead th {
    padding: 10px;
    background-color: #f5f5f5;
    font-size: 0.875rem;
    font-weight: 600;
}
.donate_agency_header > .donate_agency_header_obj > table tbody td {
    padding: 15px;
    font-size: 1.125rem;
    font-weight: 400;
}
.donate_agency_header > .donate_agency_header_obj > table th,
.donate_agency_header > .donate_agency_header_obj > table td {
    border: 1px solid #c0c0c0;
}
.donate_agency_header > .donate_agency_header_obj > .reg {
    padding: 5px 0;
    text-align: right;
    color: #7b7b7b;
    font-size: 0.75rem;
}
.donate_agency_header_title {
    flex: 0 1 100%;
    max-width: calc(100% - 190px);
}
.donate_agency_header > .btn_area {
    padding-top: 0;
    flex: 0 0 170px;
    max-width: 170px;
}
.donate_agency_thumb {
    flex: 0 0 100%;
    padding-top: 54.54%;
    background-position: center;
    background-size: cover;
}
.donate_agency_thumb_sm {
    padding-top: 15%;
    margin-top: 10px;
    background-position: center;
    background-size: cover;
}
.donate_agency_thumb_sm {
    border: 3px solid #FFF;
}
.donate_agency_thumb_sm.swiper-slide {
    position: relative;
}
.donate_agency_thumb_sm.swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.donate_agency_thumb_sm.swiper-slide-thumb-active {
    border: 3px solid #feb500;
}
.donate_agency_thumb_sm.swiper-slide-thumb-active::after {
    background-color: transparent;
}


.donate_agency_body .txt_box {
    padding: 20px 0;
}
.donate_agency_body .txt_box .desc_wrap {
    position: relative;
    margin-top: 10px;
    padding-top: 15px;
    overflow: hidden;
}
.donate_agency_body .txt_box .desc_wrap:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    height: 15px;
    background-color: #efefef;
}
.donate_agency_body .txt_box .desc_wrap:after {
    content: '';
    display: block;
    position: absolute;
    margin-bottom: -15px;
    bottom: 100%;
    left: -5px;
    right: 0;
    height: 100px;
    background-color: #fff;
    border-radius: 30px;
}
.donate_agency_body .txt_box .desc {
    padding: 25px 20px;
    background-color: #efefef;
    border-radius: 0 30px 30px 30px;
    text-align: justify; 
    word-break: break-all;
}

.donate_list_box li {
    display: flex;
    padding: 25px 0;
    align-items: center;
}
/* 
.donate_list_box li > a {
        display: flex;
        flex: 0 0 100%;
        max-width: 100%;
        align-items: center;
}
*/
.donate_list_box li + li {
    border-top: 1px solid #c9c9c9;
}
.donate_list_box li > .item_thumb {
    height: 120px;
    flex: 0 0 120px;
    max-width: 120px;
    background-color: #f1f1f1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
}
.donate_list_box li > .txt_box {
    display: flex;
    padding-left: 20px;
    flex: 0 1 100%;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
}
.donate_list_box li > .txt_box .txt_title_area {
    flex: 0 1 100%;
    max-width: 100%;
}
.donate_list_box li > .txt_box > .bt_area,
.donate_list_box li > .txt_box > .bt_area {
    display: flex;
    /*margin-top: 5px;*/
    flex: 0 0 195px;
    max-width: 195px;
    align-items: center;
    justify-content: space-between;
}
.donate_list_total_area {
    padding: 12px 0;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
.donate_list_total_box {
    display: flex;
    padding: 12px 0;
    align-items: center;
    justify-content: space-between;
}
.donate_list_total_area .price {
    color: #fdb500;
}
.donate_list_total_area .price > small {
    color: #000;
    font-size: 65%;
}
.donate_send_section {
    background-image: url("/images/noise_bg.jpg");
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
}
.donate_receipt_box {
    padding-top: 55px;
    margin: 0 auto;
    /*max-width: 490px;*/
    background-image: url("/images/receipt_bg.png");
    background-position: center top;
    background-size: 100% auto;	
    background-repeat: no-repeat;
}
.donate_receipt_box > .inner {
    padding: 35px 20px;
    background-color: #fff;
}
.donate_receipt_box .bt_line_title {
    margin-bottom: 15px;
}
.donate_receipt_list {
    position: relative;
    border-top: 1px solid #000;
}
.donate_receipt_list .overlay_layer {
    position: absolute;
    left: -20px;
    right: -20px;
    bottom: 85px;
    top: 0;
    background-color: rgba(0,0,0,0.15);
}
.donate_receipt_list .overlay_layer .non_member_box {
    position: absolute;
    padding: 10px 15px;
    max-width: 180px;
    width: 80%;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    border: 4px solid #fbb200;
    border-radius: 8px;
    text-align: center;
    background-color: #fff;
}
.donate_receipt_list .overlay_layer .non_member_box p {
    line-height: 1.6;
}

.donate_receipt_list li .title_area {
    display: flex;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
}
.donate_receipt_list li .title_area .title {
    font-weight: 600;
}
.donate_receipt_list li .title_area .title.flex {
    display: flex;
    align-items: center;
}
.donate_receipt_list li + li {
    border-top: 1px dashed #b5b5b5;
}
.donate_receipt_list li .content_area {
    position: relative;
    margin-bottom: 30px;
    padding: 8px 15px 8px;
    border-top: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
    background-color: #f7f7f7;
}
.donate_receipt_list li .content_area .btn_more {
    position: absolute;
    margin-top: -3px;
    left: 0;
    right: 0;
    top: 100%;
    border-top: 1px solid #f7f7f7;
}
.donate_receipt_list li .content_area .btn_more button {
    position: relative;
    width: 55px;
    height: 25px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #b5b5b5;
    border-right: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    border-radius: 0 0 5px 5px;
}
.donate_receipt_list li .content_area .btn_more button::before {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    top: 4px;
    left: 22px;
    height: 8px;
    border-bottom: 1px solid #b5b5b5;
    border-right: 1px solid #b5b5b5;
    transform: rotate(45deg);
}
.donate_receipt_list li .content_area .btn_more button.show_more_page::before {
    top: 10px;
    transform: rotate(-135deg);
}
.donate_receipt_list li dl {
    display: flex;
    padding: 8px 0;
    align-items: center;
    justify-content: space-between;
}
.donate_receipt_list li dt {
    display: flex;
    align-items: center;	
}
.donate_receipt_list li dt .member_thumb {
    margin-right: 8px;
    width: 28px;
    height: 28px;
    border: 1px solid #c9c9c9;
    border-radius: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
}
.donate_receipt_list li dt .name {
    margin-right: 5px;
    font-size: 0.9rem;
    font-weight: 400;
}
.donate_receipt_list li dt .reg {
    font-size: 0.8rem;
    color: #787878;
}
.donate_receipt_list li dd {
    font-size: 0.875rem;
}
.btnDonateWrap {
    transition: 0.4s bottom ease;
}
.btnDonateWrap.off {
    bottom: -100px;
}
.index_dn_btn {
    display: none;
    position: fixed;
    padding: 18px 20px;
    width: 100%;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #d9d9d9;
    background-color: #ebebeb;
    z-index: 10;
}
.index_btn_donate {
    position: relative;
}
/*.index_btn_donate::before {
    content: url('/images/icon/goat1.png');
    display: block;
    position: absolute;
    z-index: 2;
    pointer-events: none;
    right: -10px;
    bottom: -23px;
}*/
.index_btn_donate button {
    position: relative;
    width: 100%;
    height: 60px;
    font-size: 1.125rem;
    font-weight: 600;
    z-index: 1;
    display: inline-block;
    border: 1px solid #fbb200;
    background-color: #fbb200;
    color: #fff;
}
.index_btn_donate a {
    position: relative;
    width: 100%;
    height: 60px;
    font-size: 1.125rem;
    font-weight: 600;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fbb200;
    background-color: #fbb200;
    color: #fff;
}
.index_btn_donate a:hover {
    color: #FFF;
}

.btn_ipt_box {
    display: flex;
    align-items: center;
}
.btn_ipt_box button {
    height: 38px;	
    width: 75px;
    font-size: 0.75rem;
    font-weight: 600;
}
.btn_ipt_box input {
    margin-left: 8px;
    padding: 0 5px;
    width: 120px;
    height: 38px;	
    border: 1px solid #c9c9c9;
    font-size: 0.75rem;
    text-align: right;
}
.btn_ipt_box > p {
    margin-left: 5px;
}
.pay_type_area {
    padding-bottom: 20px;
}
.pay_type_area .pay_type_item {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
}
.pay_type_area .pay_type_item p {
    margin-left: 5px;
    font-weight: 500;
}
.pay_type_area .pay_type_item select {
    padding: 0 8px;
    height: 40px;
    border: 1px solid #b7b7b7;
    font-size: 0.875rem;
}
.denate_security_number {
    padding: 15px 0;
}
.denate_security_number_title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.denate_security_number_title h6 {
    margin-right: 5px;
}
.denate_security_number_title span {
    color: #969494;
    font-size: 11px;
}

.denate_security_number input {
    padding: 0 15px;
    height: 40px;
    border: 1px solid #d2d2d2;
    background: none;
    font-size: 0.875rem;
}
.denate_security_number input:read-only {
    background-color: #f2f2f2;
}
.denate_security_number .title {
    font-weight: 600;
}
.donate_receipt_list_agree {
    padding: 20px 0;
}
.donate_receipt_list_agree_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.donate_receipt_list_agree small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.4;
    color: #999;
    word-break: break-all;
}

.donate_receipt_list_agree a {
    display: block;
    font-size: 0.875rem;
}
.donate_receipt_list_desc {
    display: inline-block;
    position: relative;
    padding: 5px 0 15px;
    text-align: right;
    transition: all 1s ease;
    color: #ff8100;
}
.donate_receipt_list_desc:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 13px;
    width: 0;
    height: 1px;
    background-color: #ff8100;
    animation-name: bottom_line;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes bottom_line { 
    0% { width: 0; } 
    100% { width: 100%; } 
}
.title_tooltip {
    position: relative;
    display: block;
    margin-left: 6px;
    width: 18px;
    height: 18px;
    background-image: url('/images/icon/icon_help.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    cursor: pointer;
}
.title_tooltip > span {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 24px;
    left: 50%;
    padding: 10px;
    width: 202px;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 6px;
    transform: translateX(-50%);
    transition: visibility 0s, opacity 0.3s linear;
    z-index: 100;
}
.title_tooltip:hover span {
    visibility: visible;
    opacity: 1;
}
.coin_btn_area, .coin_bt_btn_area {
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
    align-items: center;
}
.coin_btn_area .btn_wrap,
.coin_bt_btn_area .btn_wrap {
    padding-right: 5px;
    padding-left: 5px;
    flex: 0 0 20%;
    max-width: 20%;
}
.coin_btn_area.cnt6 .btn_wrap {
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
}
.coin_btn_area button {
    display: block;
    width: 100%;
    height: 45px;
    border: 1px solid #bfbfbf;
    background-color: #f4f4f4;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
}
.coin_btn_area.disabled button {
    background-color: #fff;
    color: #bfbfbf;
}
.coin_bt_btn_area {
    margin-top: 15px;
    margin-bottom: 30px;
}
.coin_bt_btn_area button {
    display: block;
    width: 100%;
    height: 45px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 0.875rem;
}
.coin_bt_btn_area .btn_wrap:last-child {
    flex: 0 0 80%;
    max-width: 80%;
}
.coin_bt_btn_area button img {
    display: block;
    margin: 0 auto;
}

.btn_donate {
    position: relative;
    margin-bottom: 20px;
    padding-top: 40px;
}
/* .btn_donate:before {
    content: url('/images/icon/goat1.png');
    display: block;
    position: absolute;
    right: 3px;
    bottom: -23px;
    z-index: 2;
    pointer-events: none;
}
.btn_donate.end:before {
    content: url('/images/icon/goat2.png');
    display: block;
    position: absolute;
    right: 25px;
    bottom: -5px;
    z-index: 2;
    pointer-events: none;
} */
.btn_donate button {
    position: relative;
    width: 100%;
    height: 60px;
    font-size: 1.125rem;
    font-weight: 600;
    z-index: 1;
}
.btn_donate button span {
    display: block;
    font-size: 0.8rem;
}

.fold_item {
    padding: 0 18px;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}
.fold_item > .txt_box {
    padding: 17px 0;
    background-image: url("/images/icon/select_ico1.png");
    background-position: right 5px center;
    background-repeat: no-repeat;
}
.fold_item.size_sm {
    padding: 0 10px;
}
.fold_item.size_sm .txt_box {
    padding: 10px;
}
.fold_item .txt_box .title {
    font-weight: 500;
}
.fold_item .content_box {
    display: none;
    border-top: 1px solid #c9c9c9;
}
.fold_item .content_box img {
    max-width: 100%;
}
.fold_item.on .content_box {
    display: block;
    padding-bottom: 20px;
}

.donate_basket_list .fold_item {
    margin-top: 25px;
}

.donate_receipt_box .fold_item {
    margin-top: 20px;
}

/*210728 donate_view 변경*/
.bg_content_box .txt_box {
    padding-top: 0;
}
.modal-body .bg_content_box .txt_box {
    padding-top: 25px;
}
.donate_receipt_list {
    border: none;
}
.donate_receipt_list li .title_area {
    padding: 10px 0;
}
.coin_bt_btn_area {
    margin-top: 10px;
    margin-bottom : 20px;
}
.pay_type_area .pay_type_item {
    height: 24px;
}
.donate_receipt_list_agree {
    padding: 15px 0;
}
.delivery_box {
    display: flex;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #c9c9c9;
    align-items: center;
    justify-content: space-between;
}
.donate_basket_list .content_box img + img,
.donate_receipt_list .content_box img + img {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 2px dashed #000;
}

aside {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 100;
}
aside.on {
    display: block;
}
.aside_inner {
    margin-left: auto;
    max-width: 400px;
    height: 100%;
    width: 90%;
    background-color: #f7f7f7;
    overflow: auto;
}
.aside_header {
    padding: 15px 20px;
    background-color: #fff;
}
.aside_header_btn {
    text-align: right;
}
.aside_header_btn > * {
    margin-left: 8px;
}
.aside_header_user article {
    display: flex;
    padding: 15px 10px;
    align-items: center;
}
.aside_header_user .thumb_box {
    margin-right: 15px;
    height: 50px;
    flex: 0 0 50px;
    max-width: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    border: 2px solid #cacaca;
}
.aside_header_user .user_info {
    flex: 0 1 100%;
    max-width: 100%;
}
.aside_header_user .user_info small {
    font-size: 70%;
    font-weight: 400;
}
.aside_header_user .user_info .email {
    font-size: 0.875rem;
    color: #7f7f7f;
}
.aside_header_link ul {
    display: flex;
    justify-content: space-between;
}
.aside_header_link ul li {
    position: relative;
    padding: 10px 5px 0;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    text-align: center;
}
.aside_header_link ul li img {
    margin-bottom: 5px;
}
.aside_header_link ul li + li:before {
    content: '';
    display: block;
    position: absolute;
    margin-top: -21px;
    top: 50%;
    left: 0;
    height: 42px;
    width: 1px;
    background-color: #e3e3e3;
}
.aside_header_link.disabled ul {
    opacity: 0.4;
}
.header_alarm {
    width: 35px;
    height: 26px;
}
.header_mod {
    width: 35px;
    height: 26px;
}
.header_inv {
    width: 35px;
    height: 26px;
}

.alarm_cnt {
    position: absolute;
    padding: 2px 6px;
    top: 8px;
    left: 50%;
    background-color: #ff0000;
    color: #fff;
    border-radius: 100%;
    font-size: 11px;
}
.aside_donate {
    padding: 15px 30px;
    margin-top: 10px;
    background-color: #fff;
    text-align: center;
}
.aside_donate dl {
    display: flex;
    margin-top: 10px;
    padding: 12px 15px;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    color: #fff;
    background-color: #fdb500;
}
.aside_donate dl dd {
    font-weight: 600;
}

.aside_link {
    margin-top: 10px;
    background-color: #fff;
}
.aside_link li {
    border-bottom: 1px solid #e4e4e4;
}
.aside_link li > a {
    display: flex;
    position: relative;
    padding: 14px 40px 14px 20px;
    align-items: center;
}
.aside_link li > .txt_box {
    display: none;
    padding: 12px 0 12px 15px;
    font-size: 11px;
    background-color: #fbfbfb;
}

.aside_link li.on > .txt_box {
    display: block;
}
.aside_link li.down a > span {
    transform: rotate(135deg);
}
.aside_link li.on a > span {
    transform: rotate(-45deg);
}
.aside_link li .icon_box {
    padding-right: 15px;
    flex: 0 0 50px;
    max-width: 50px;
    width: 50px;
    text-align: center;
}
.aside_link li span {
    display: block;
    position: absolute;
    margin-top: -4px;
    top: 50%;
    right: 30px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #bababa;
    border-right: 1px solid #bababa;
    transform: rotate(45deg);
}
.aside_footer {
    padding: 15px 30px;
    text-align: right;
}
.aside_footer p {
    display: inline-block;
    vertical-align: middle;
}
.aside_footer a {
    margin-left: 13px;
}

.sub_top_section {
    display: flex;
    padding: 30px;
    height: 470px;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
}
.sub_top_section > .txt_box {
    /*padding-bottom: 190px;*/
    text-align: center;
}
.sub_top_section > .txt_box .desc {
    margin-top: 15px;
    font-weight: 400;
}

.btn_write {
    width: 110px;
    height: 110px;
    background-color: #24262d;
    color: #ffb700;
    border-radius: 100%;
    border: none;
    outline: none;
}

.absolute_btn_area {
    position: relative;
    margin-top: -75px;
    padding: 0 60px;
    text-align: right;
    z-index: 1;
}

.board_list .board_header {
    display: flex;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
}
.category_area ul {
    display: flex;
    align-items: center;
}
.category_area ul .mobile {
    display: none;
}
.category_area ul .mobile select {
    padding-left: 0;
    border: none;	
}
.category_area ul li {
    position: relative;
    padding: 0 18px;
}
.category_area ul li:first-child {
    padding-left: 0;
}
.category_area ul li + li:before {
    content: '';
    display: block;
    position: absolute;
    margin-top: -4px;
    left: 0;
    top: 50%;
    width: 1px;
    height: 8px;
    background: #c9c9c9;
}
.category_area ul li.on {
    font-weight: 600;
}
.tab_area ul {
    display: flex;
    align-items: center;
}
.tab_area ul li {
    padding: 20px;
}
.tab_area ul li.on {
    font-weight: 600;
    box-shadow: 0 1px 0 0 #ffa800;
}


.search_txt_area {
    border-bottom: 1px solid #d2d2d2;
}
.search_txt_area input {
    width: 210px;
    height: 40px;
    border: none;
    background-color: transparent;
    outline: none;
    font-size: 0.8rem;
}
.search_txt_area button {
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
}

.select_row {
    padding: 20px 0 30px;
    text-align: right;
}
.select_row .search_txt_area {
    border-bottom: none;
}
.select_group {
    display: flex;
    flex-wrap: wrap;
}
.select_group select {
    height: 40px;
    padding: 0 15px;
    padding-right: 45px;
    border: none;
    border: 1px solid #d2d2d2;
    background-image: url('/images/icon/select_ico1.png');
    background-repeat: no-repeat;
    background-position: center right 15px;
    font-size: 14px;
    appearance: none;
}
.select_group select:last-of-type {
    margin-left: -1px;
}
.select_group input {
    margin-left: -1px;
    padding: 10px 15px;
    border-top: 1px solid #d2d2d2;
    border-left: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
}
.select_group button {
    padding-right: 10px;
    border-top: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
}
.board_body {
    border-top: 1px solid #000;
}
.board_body article {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #dcdcdc;
}
.board_body article .reg {
    flex: 0 0 130px;
    max-width: 130px;
    color: #a3a3a3;
}
.board_body article .reg p {
    font-weight: 600;
}
.board_body article .content {
    flex: 0 1 100%;
    max-width: 100%;
}
.board_body article .content_txt {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.board_body article .content_txt .category {
    margin-top: 5px;
    font-weight: 400;
    color: #a3a3a3;
}
.board_body article.pay_cancel {
    color: #737373;
}
.board_body article .content_txt > button {
    padding: 5px 15px;
    font-size: 0.875rem;
}
.board_body article .content .detail {
    margin-top: 20px;
}
.board_body article .content .status {
    position: relative;
    padding-left: 12px;
    color: #ff0000;
}
.board_body article .content .status:before {
    content: '';
    display: block;
    position: absolute;
    margin-top: -3px;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #ff0000;
}
.board_body article .content .status.complete {
    color: #ff9000;
}
.board_body article .content .status.complete:before {
    background-color: #ff9000;
}

.board_body article .content > ul {
    margin-top: 15px;
}
.board_body article .content > ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.board_body article .content .content_txt_box b, 
.board_body article .content > ul li b {
    font-size: 1rem;
}
.pay_em {
    display: inline-block;
    width: 15px;
    text-align: center;
    font-style: normal;
    font-size: 1rem;
}

/*공지사항*/
.board_body article.one_line {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #dcdcdc;
}
.board_body article.one_line .content {
    overflow: hidden;
}
.board_body article.one_line .reg {
    flex: 0 0 80px;
    max-width: 80px;
    color: #a3a3a3;
}
.board_body article.one_line .category {
    flex: 0 0 150px;
    max-width: 150px;
}
.board_body article.one_line .category p {
    font-weight: 600;
}
.board_body article.one_line .title {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.board_btn_area {
    margin-top: 50px;
    text-align: center;
}
.board_btn_area > button {
    width: 230px;
    height: 45px;
    font-size: 0.875rem;
}
.board_body article.board_faq_item {
    display: block;
    padding-bottom: 0;
    cursor: pointer;
}
.board_body article.board_faq_item > .content {
    display: flex;
    padding-bottom: 30px;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
}
.board_body article.board_faq_item .reg {
    margin-top: 2px;
    flex: 0 0 30px;
    max-width: 30px;
    color: #000;
}
.board_body article.board_faq_item .content_txt {
    flex: 0 1 100%;
    max-width: 100%;
}
.board_body article.board_faq_item .content_txt > h6 {
    flex: 0 0 30px;
    max-width: 30px;
}
.board_body article.board_faq_item .content_txt > .content_txt_box {
    flex: 0 1 100%;
    max-width: 100%;
}
.board_body article.board_faq_item .arrow {
    display: block;
    margin-right: 15px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #4c4c4c;
    border-right: 1px solid #4c4c4c;
    transform: rotate(-225deg);
}
.board_body article.board_faq_item > .answer_box {
    display: none;
    padding: 20px 30px;
    background: #f8f8f8;
    color: #6c6c6c;
}
.board_body article.board_faq_item > .answer_box > h6:first-child {
    flex: 0 0 25px;
    max-width: 25px;
}
.board_body article.board_faq_item.on .arrow {
    transform: rotate(-45deg);
}
.board_body article.board_faq_item.on .answer_box {
    display: flex;
}
.answer_box a {
    color: #364fff;
}
.firecracker {
    position: relative;
    background-image: url('/images/noise_bg3.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.firecracker > .coin_img {
    position: absolute;
    flex: 0 0 885px;
    max-width: 885px;
    width: 885px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}
.firecracker > .txt_box {
    position: relative;
    z-index: 1;
}
.point_btn {
    font-size: 12px;
}

.absolute_btn_area > .btn_donate {
    margin-left: auto;
    margin-right: auto;
    max-width: 810px;
}
.absolute_btn_area > .btn_donate .btn_common {
    height: 70px;
    border-radius: 40px;
    font-size: 1.25rem;
}
/*.absolute_btn_area > .btn_donate:before {
    content: url(/images/icon/goat1.png);
    display: block;
    position: absolute;
    margin-right: -200px;
    right: 50%;
    bottom: -23px;
    z-index: 2;
    pointer-events: none;
}*/

.faq_write_header {
    padding-bottom: 70px;
    border-bottom: 1px solid #000;
}
.faq_write_header > .title {
    margin-bottom: 35px;
}
.faq_write_header dl {
    display: flex;
    padding: 5px 0;
    font-size: 1rem;
}
.faq_write_header dl dt {
    flex: 0 0 80px;
    max-width: 80px;
}

.faq_write_body {
    padding: 30px 0;
}
.write_item_row {
    display: flex;
    justify-content: space-between;
}
.write_item_row > .write_item {
    flex: 0 1 50%;
    max-width: 50%;
}
.write_item_row > .write_item + .write_item {
    margin-top: 0;
    margin-left: 15px;
}
.write_item + .write_item {
    margin-top: 45px;
}
.write_flex_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.write_item_25 {
    flex: 0 1 25% !important;
    max-width: 25% !important;
}
.write_item_50 {
    flex: 0 1 50% !important;
    max-width: 50% !important;
}
.write_item_75 {
    flex: 0 1 75% !important;
    max-width: 75% !important;
}
.input_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.input_flex {}
.input_flex span.space_span {
    display: inline-block;
    margin: 0 4px;
}

.write_item input {
    padding: 0 10px;
    height: 40px;
    border: 1px solid #d2d2d2;
    background: none;
    font-size: 0.875rem;
}
.write_item input:read-only {
    background-color: #f2f2f2;
}
.write_item_select {
    padding: 0 15px;
    height: 50px;
    border: 1px solid #d2d2d2;
    background: none;
    font-size: 0.875rem;
}
.write_item button {
    padding: 5px 10px;
    font-weight: 600;
    font-size: 0.75rem;
    color: #000;
}
.write_item .title {
    font-weight: 500;
}
.write_item .title .desc {
    color: #808080;
    font-weight: 300;
}
.help_text {
    display: block;
    font-size: 11px;
    color: #999;
}
.write_item_ipt {
    margin-top: 10px;
}
.write_item_ipt > input,
.write_item_ipt > select,
.write_item_ipt > textarea {
    width: 100%;
}
.write_item textarea {
    padding: 15px;
    width: 100%;
    height: 190px;
    border: 1px solid #d2d2d2;
    background: none;
    font-size: 0.875rem;
    resize: none;
}

.write_item_ipt select {
    padding: 0 10px;
    height: 40px;
    border: 1px solid #d2d2d2;
    background: none;
    font-size: 0.875rem;
}
.use_btn_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.use_btn_box > input,
.use_btn_box > .use_del_box {
    flex: 0 1 100%;
    max-width: 100%;
}
.use_del_box {
    position: relative;
}
.use_del_box > input {
    width: 100%;
}
.use_del_box > button {
    position: absolute;
    margin-top: -12px;
    padding: 8px;
    top: 50%;
    right: 10px;
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    background-color: transparent;
}
.use_del_box > button img {
    display: block;
    width: 100%;
}
.use_btn_box > button {
    margin-left: 30px;
    height: 50px;
    flex: 0 0 100px;
    max-width: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}
.no_file input { display: none; }
.file_upload_item {
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 100px;
    width: 100px;
    border: 1px dashed #bfbfbf;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    cursor: pointer;
}
.file_upload_item + .file_upload_item,
.no_file + .file_upload_item {
    margin-left: 25px;
}
.no_file:first-child + .file_upload_item {
    margin-left: 0;
}
.file_upload_item > input {
    display: none;
}
.file_upload_item:before {
    content: '';
    display: block;
    position: absolute;
    margin-top: -22px;
    width: 1px;
    height: 45px;
    top: 50%;
    right: 50%;
    background-color: #bfbfbf;
}
.file_upload_item:after {
    content: '';
    display: block;
    position: absolute;
    margin-right: -22px;
    width: 45px;
    height: 1px;
    top: 50%;
    right: 50%;
    background-color: #bfbfbf;
}
.file_upload_item.in_file:before,
.file_upload_item.in_file:after {
    display: none;
}
.file_upload_item .del_file_btn {
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 23px;
    height: 23px;
    background-color: #a9a9a9;
    border-radius: 100%;
}
.file_upload_item .del_file_btn:before {
    content: '';
    display: block;
    position: absolute;
    margin-top: -8px;
    margin-right: 11px;
    width: 1px;
    height: 17px;
    top: 50%;
    right: 0;
    background-color: #fff;
    transform: rotate(45deg);
}
.file_upload_item .del_file_btn:after {
    content: '';
    display: block;
    position: absolute;
    margin-top: -8px;
    margin-right: 11px;
    width: 1px;
    height: 17px;
    top: 50%;
    right: 0;
    background-color: #fff;
    transform: rotate(-45deg);
}
.filename_upload_item_wrap {
    position: relative;
}
.filename_upload_item_wrap + .filename_upload_item_wrap {
    margin-top: 10px;
}
.filename_upload_item_wrap .btn_minus {
    position: absolute;
    margin-top: -15px;
    right: 15px;
    top: 50%;
}
.filename_upload_item {
    padding: 12px 15px;
    width: 100%;
    border: 1px solid #d2d2d2;
    background: none;
    font-size: 0.875rem;
    cursor: pointer;
}
.filename_upload_item input {
    display: none;
}

.new_box {}
.new_box ul {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.new_box ul li {
    display: flex;
    align-items: center;
    width: 50%;
}

.faq_write_footer {
    padding-top: 60px;
    border-top: 1px solid #d2d2d2;
    text-align: center;
}
.faq_write_footer button {
    width: 360px;
    height: 65px;
}

.qna_view_header {
    padding-bottom: 80px;
}
.qna_view_header .reg {
    margin-top: 25px
}
.qna_view_header .qna_status_box {
    position: relative;
    margin-top: 50px;
    padding: 25px;
    border: 1px solid #d2d2d2;
    text-align: center;
}
.qna_view_header .qna_status_box.complete {
    border-color: #ffb700;
}
/*.qna_view_header .qna_status_box:before {
    content: url(/images/icon/goat1.png);
    display: block;
    position: absolute;
    margin-bottom: -19px;
    right: 25px;
    bottom: 100%;
    z-index: 2;
    pointer-events: none;
}*/
.qna_answer_box {
    margin-top: 20px;
}
.qna_answer_box h4 {
    margin-bottom: 15px;
}

.qna_view_body {
    padding: 60px 15px;
    background-color: #fff;
}
.qna_view_body_item > .title {
    margin-bottom: 15px;
}
.qna_view_body_item + .qna_view_body_item {
    margin-top: 80px;
}
.qna_view_section {
    padding-top: 80px;
}
.attach_file_wrap {
    display: flex;
}
.attach_file_wrap > div {
    width: 100px;
    height: 100px;
    border-radius: 3px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #f1f1f1;
}
.attach_file_wrap > div + div {
    margin-left: 25px;
}
.board_view_btn_area {
    margin-top: 55px;
    text-align: center;
}
.board_view_btn_area > button {
    width: 230px;
    height: 45px; 
    border: 1px solid #000;
    background-color: #fff;
}
.board_view_btn_area > button > p {
    display: inline-block;
    vertical-align: middle;
}
.board_view_btn_area > button + button {
    margin-left: 25px;
}

.write_box_title {
    margin-top: 30px;
    padding: 5px 0;
    border-bottom: 1px solid #000;
}

.upload_thumb_img > label {
    display: flex;
    align-items: center;
}
.upload_thumb_img label {
    cursor: pointer;
}
.upload_thumb_img .thumb_img {
    margin-right: 12px;
    flex: 0 0 50px;
    max-width: 50px;
    width: 50px;
    height: 50px;
    border: 2px solid #cacaca;
    border-radius: 100%;
    background-position: center;
    background-size: cover;
}
.upload_thumb_img input {
    display: none;
}
.upload_thumb_img p {
    display: inline-block;
    color: #888;
    vertical-align: middle;
    font-weight: 500;
}
.mod_password_area {
    display: flex;
    align-items: center;
}
.mod_password_area > * {
    flex-grow: 1;
}
.mod_password_area > * + * {
    margin-left: 8px;
}
.phone_auth_box {
    display: flex;
    align-items: center;	
}
.phone_auth_box > * + * {
    margin-left: 15px;
}
.phone_auth_box .inner {
    position: relative;
    flex: 0 1 50%;
    max-width: 50%;
}
.phone_auth_box.no_flex {
    flex-wrap: wrap;
}
.phone_auth_box.no_flex > * + * {
    margin-left: 0;
    margin-top: 45px;
}
.phone_auth_box.no_flex .inner {
    flex: 0 0 100%;
    max-width: 100%;	
}
.phone_auth_box .inner > input {
    width: 100%;
}
.phone_auth_box .inner button {
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    color: #fbb200;
    font-weight: 600;
}
.phone_auth_box .inner .right_obj {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    font-size: 0.75rem;
}
.btn_auth_parent {
    width: 100%;
    height: 40px;
    background-color: #fbb200;
    border: 1px solid #fbb200;
    border-radius: 4px;
}

.edit_bottom_wrap {
    background-color: #fff;
}
.edit_bottom_box {
    display: flex;
    padding: 45px 0;
    align-items: center;
    justify-content: space-between;
}
.edit_bottom_box .right_box {
    flex: 0 0 40%;
    max-width: 40%;
}
.edit_bottom_box input {
    padding: 0 15px;
    width: 100%;
    height: 50px;
    border: 1px solid #d2d2d2;
    background: none;
    font-size: 0.875rem;
}
.edit_btn_area {
    padding: 70px 0;
    text-align: center;
}
.edit_btn_area button {
    display: block;
    margin: 0 auto;
    width: 280px;
    height: 70px;
}
.edit_btn_area button.reject {
    margin: 10px auto 0;
    width: 120px;
    height: 40px;
    border: 0;
    color: #ccc;
    background-color: #fff;
    text-decoration: underline;
}
.edit_btn_area .btn_secession {
    position: absolute;
    top: 15px;
    left: 0;
    border: none;
    background: none;
    width: auto;
    height: auto;
    color: #9c9c9c;
    text-decoration: underline;
}
.edit_bottom_section {
    margin-top: 90px;
    padding: 50px 0;
}

.login_box {
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
    text-align: center;
}
.login_box_title {
    padding-bottom: 30px;
}
.login_box_title .desc {
    margin-top: 15px;
    font-weight: 400;
}
.login_box .write_item {
    margin-top: 20px;
}
.login_box .chk_area {
    margin-top: 20px;
    text-align: left;
}
.login_box .btn_area {
    margin-top: 20px;
    padding: 0;
}
.login_box .btn_area button {
    display: block;
    width: 100%;
    height: 60px;
    font-weight: 600;
}
.login_box .bt_link_area,
.login_box .sns_login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}
.login_box .bt_link_area {
    padding: 18px 0;
}
.login_box .bt_link_area .left_box {
    color: #6b6b6b;	
}
.login_box .bt_link_area .right_box {
    color: #fbb200;
    font-weight: 600;
}
.login_box .sns_login {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid #e5e5e5;
}
.login_box .sns_login img {
    max-width: 100%;
    height: auto;
}
.login_box_title_tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.login_box_title_tab li {
    font-size: 1.875rem;
    color: #797979;
}
.login_box_title_tab li.on {
    color: #000;
    font-weight: 600;
}
.login_box .phone_auth_box.no_flex > * + * {
    margin-top: 20px;
}

.service_chk_list {
    margin: 45px 0;
}
.service_chk_list li {
    display: flex;
    padding: 20px 15px 20px 23px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}
.service_chk_list li .right_box p {
    color: #6f6f6f;
    font-size: 0.75rem;
}
.service_chk_list li .right_box > a {
    display: block;
    position: relative;
    padding-right: 22px;
}
.service_chk_list li .right_box > a:after {
    content: '';
    display: block;
    position: absolute;
    margin-top: -4px;
    top: 50%;
    right: 3px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #d4d4d4;
    border-top: 1px solid #d4d4d4;
    transform: rotate(45deg);
}
.service_chk_list label h6 {
    font-weight: 500;
}
.service_chk_list .all_chk_item {
    padding: 20px 15px;
    border: 1px solid #fdb500;
}
.service_chk_list label h6 {
    margin-left: 20px;
}
.service_chk_list label h6 > span {
    color: #a9a9a9;
}


.coin_bg_section {
    position: relative;
    overflow: hidden;
}
.coin_bg_section > .txt_box {
    position: relative;
    padding-bottom: 40px;
    z-index: 1;
}
.coin_bg_section > .coin_img,
.coin_bg_section > .goat_img {
    position: absolute;
}
.coin_bg_section > .coin_img {
    flex: 0 0 885px;
    max-width: 885px;
    width: 885px;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 0);
    text-align: center;
}

.coin_img {
    text-align: center;
}
.coin_img > img {
    width: 30%;
    transition: width 0.4s ease;
}
.coin_img.on > img {
    width: 100%;
}


.coin_bg_section > .goat_img {
    bottom: -25px;
    right: 50%;
    transform: translate(50%, 0);
}
.donate_list_section .search_txt_area {
    display: inline-block;
}
.donate_list_section .thumb_content_item {}
.donate_list_section .btn_area {
    margin-top: 50px;
}
.donate_list_section .btn_area button {
    padding: 0 15px;
    width: 225px;
    height: 55px;
    font-size: 0.875rem;
}
.sub_top_tab {
    margin-bottom: 40px;
    border-bottom: 1px solid #dcdcdc;
}
.sub_top_tab > ul {
    display: flex;
    justify-content: center;
}
.sub_top_tab li {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
}
.sub_top_tab li > a {
    display: inline-block;
    padding: 30px 45px;
    color: #797979;
    font-size: 1.125rem;
    font-weight: 500;
}
.sub_top_tab li.on > a {
    color: #000;
    font-weight: 600;
    box-shadow: 0 1px 0 0 #fdb500;
}

.smile_bg_section,
.talk_bg_section {
    position: relative;
}
.smile_bg_section > .txt_box,
.talk_bg_section > .txt_box {
    position: relative;
    padding-bottom: 40px;
    z-index: 1;
}
.smile_bg_section > .coin_img,
.smile_bg_section > .goat_img,
.talk_bg_section > .coin_img,
.talk_bg_section > .goat_img {
    position: absolute;
}
.smile_bg_section > .coin_img,
.talk_bg_section > .coin_img {
    flex: 0 0 885px;
    max-width: 885px;
    width: 885px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}
.smile_bg_section > .coin_img,
.smile_bg_section > .coin_img > img,
.talk_bg_section > .coin_img,
.talk_bg_section > .coin_img > img {
    max-width: 100%;
}
.smile_bg_section > .goat_img {
    bottom: -26px;
    right: 50%;
    transform: translate(50%, 0);
}
.talk_bg_section > .goat_img {
    bottom: 0;
    right: 50%;
    transform: translate(50%, 0);	
}

.smile_bg_section > .goat_img > img {
    margin: 0 -50px;
}
.smile_bg_section > .goat_img > img:first-child {
    position: relative;
    z-index: 1;
}

.scene_top_area {
    padding-top: 65px;	
}
.scene_top_title {
    position: relative;
    padding: 45px 15px;
    text-align: center;
}
.scene_top_title > img {
    position: absolute;
    margin-left: 10px;
    top: 10px;
    left: 50%;
    z-index: 1;
}
.scene_top_title > .desc {
    margin-top: 40px;
}
.square_bg {
    padding-top: 100%;
    background-color: #f1f1f1;
}
.talk_txt {
    padding-left: 30px;
    background-image: url("/images/icon/talk.png");
    background-position: left center;
    background-repeat: no-repeat;	
}
.scene_top_area .square_bg {
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
    cursor: pointer;
}
.scene_swiper_container {
    padding: 30px 0 65px;
}

.swiper-container-horizontal>.swiper-pagination-progressbar, .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: 1px;
    top: auto;
    bottom: 0;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000;
}
.alarm_section_title {
    display: inline-block;
    position: relative;
}
.alarm_section_title > .circle {
    position: absolute;
    top: 2px;
    right: -11px;
    width: 10px;
    height: 10px;
    border: 2px solid #fbb200;
    border-radius: 100%;
    background-color: #fbb200;
}
.alarm_list ul {
    padding-left: 55px;	
}
.alarm_list li {
    display: flex;
    position: relative;
    padding: 25px 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}
.alarm_list .txt_box > .circle {
    position: absolute;
    top: 33px;
    left: -45px;
    width: 10px;
    height: 10px;
    border: 2px solid #ccc;
    border-radius: 100%;
    background-color: #fff;
    z-index: 1;
}
.alarm_list li:first-child:before {
    display: none;
}
.alarm_list li:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -40px;
    height: 33px;
    width: 1px;
    background-color: #e4e4e4;
}

.alarm_list li:after {
    content: '';
    display: block;
    position: absolute;
    top: 33px;
    bottom: 0;
    left: -40px;
    width: 1px;
    background-color: #e4e4e4;
}


.alarm_list .txt_box > .circle.on {
    border-color: #fbb200;
    background-color: #fbb200;
}
.alarm_list .txt_box > .category {
    margin-bottom: 3px;
    color: #fba500;
}
.alarm_list .txt_box > .reg {
    margin-top: 15px;
    color: #737373;
}

.alarm_section .btn_area button {
    padding: 0 15px;
    width: 225px;
    height: 55px;
    font-size: 0.875rem;
}

.tot_search_box {
    display: flex;
    padding-top: 55px;
    align-items: center;
    border-bottom: 1px solid #000;
}
.tot_search_box > input {
    flex: 0 1 100%;
    height: 55px;
    font-size: 1.25rem;
    background-color: transparent;
    border: none;
    outline: none;
}
.tot_search_box .del_txt_btn {
    padding: 0;
    flex: 0 0 30px;
    max-width: 30px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 100%;
    background-color: #eee;
    outline: none;
}
.tot_search_box .search_btn {
    padding: 0;
    flex: 0 0 30px;
    max-width: 30px;
    border: none;
    background-color: transparent;
    outline: none;
}
.searched_list {
    margin-bottom: 20px;
}
.searched_list ul li {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #dcdcdc;
    align-items: center;
    justify-content: space-between;
    color: #a3a3a3;
}
.searched_list ul li > .right_box {
    display: flex;
    align-items: center;
}
.searched_list ul li > .right_box button {
    margin-left: 15px;
    padding-right: 0;
    border: none;
    background-color: transparent;
    outline: none;
}
.searched_list ol {
    padding: 10px 0;
}
.searched_list ol li {
    display: flex;
    padding: 10px 0;
    align-items: center;
    color: #a3a3a3;
}
.searched_list ol li > img {
    margin-right: 12px;
}
.search_bt_area {
    margin-top: 60px;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid #dcdcdc;
    text-align: center;
}
.search_bt_area .tag_item {
    padding: 3px 12px;
    margin-right: 4px;
    font-size: 1rem;
}
.search_bt_btn_area {
    margin-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}
.search_bt_btn_area button + button {
    margin-left: 30px;
}
.search_result_area {}
.no_result {
    padding: 50px 0;
    text-align: center;
}
.search_result_no {
    position: relative;
    margin-top: 20px;
    padding: 20px 0 20px 124px;
    background: #efefef;
}
.search_result_no::after { 
    content: '';
    position: absolute;
    top: -11px;
    left: 0;
    width: 104px;
    height: 80px;
    background-image: url(/images/icon/goat2.png); 
    background-position: 0 0;
    background-repeat: no-repeat;
}



.search_result_tab {
    display: flex;
    align-items: center;
}
.search_result_tab li {
    font-size: 1.25rem;
    color: #797979;
    font-weight: 500;
}
.search_result_tab li.on {
    color: #000;
    font-weight: 700;
}
.search_result_tab li + li {
    margin-left: 30px;
}
.search_result_area {
    margin-bottom: 30px;
}

.donate_complete_section {
    text-align: center;
}
.donate_complete_section img {
    margin-bottom: 50px;
    max-width: 100%;
}
.donate_complete_section button {
    margin-top: 40px;
    width: 360px;	
    height: 60px;
    font-weight: 600;
    font-size: 1.125rem;
}

/*센터 상세*/
.center_view_top_section_inner {
    background-image: url("/images/noise_bg6.jpg");
    color: #fff;
}
.center_view_top_section .donate_view_title {
    padding-bottom: 50%;
}
.center_view_top_bg {
    margin-top: -42%;
    padding-top: 54.54%;
    top: 50%;
    background-position: center;
    background-size: cover;
}
.child_intro_content {
    padding: 20px 0 45px;
}
.child_intro_leader_name > * {
    line-height: 1.3;
}
.child_intro_leader_content_wrap {
    position: relative;
    padding-top: 10px;
}
.child_intro_leader_content_wrap > .tail {
    position: relative;
    height: 15px;
    overflow: hidden;
}
.child_intro_leader_content_wrap > .tail:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    height: 15px;
    background-color: #efefef;
}
.child_intro_leader_content_wrap > .tail:after {
    content: '';
    display: block;
    position: absolute;
    margin-bottom: -15px;
    bottom: 100%;
    left: -5px;
    right: 0;
    height: 100px;
    background-color: #fff;
    border-radius: 30px;
}
.child_intro_leader_content {
    position: relative;
    padding: 25px 20px;
    background-color: #efefef;
    border-radius: 0 30px 30px 30px;
}
/*.child_intro_leader_content:after {
    content: '';
    display: block;
    position: absolute;
    margin-bottom: -5px;
    bottom: 100%;
    right: 0;
    width: 136px;
    height: 92px;
    background-image: url(/images/icon/goat7.png);
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
}*/
.child_intro_leader_content > img {
    max-width: 100%;
    height: auto;
}
.child_intro_box {
    position: relative;
    padding: 40px 0;
    z-index: 10;
}
.child_intro_box:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/firecracker.png");
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;	
    z-index: -1;
}
.child_intro_box ul {
}
.child_intro_box li {
    padding: 5px 20px;
    font-size: 1rem;
}
.child_intro_box li > span {
    color: #ffcd1c;
}
.child_intro_box li b {
    font-size: 1.4rem;
}

/*
.child_intro_box > * {
        line-height: 3;
}
*/

.none_list {
    padding: 30px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #707070;
}

/*goat_banner*/
.goat_banner {
    position: relative;
    margin-top: 15px;
    border: 1px solid #ccc;
    background-color: #ffdd92;
    overflow: hidden;
}
.goat_banner_img {
}
.goat_banner_img a {
    display: block;
    height: 180px;
    background-image: url('/images/main/img_direct.png');
    background-position: center;
    background-size: cover;
}
.goat_banner_img.second a {
    background-image: url('/images/birthday/second/second_birthday.png');
}
.goat_banner_img img {
    height: 120px;
    transition: all ease 0.3s;
}
.goat_banner_img a:hover img {
    transform: scale(1.1);
}
.goat_banner_direct {}
.goat_banner_direct a {
    display: block;
    height: 180px;
    background-image: url('/images/main/img_subscription.png');
    background-position: center;
    background-size: cover;
}
.goat_banner_direct.stop a {
    background-image: url('/images/main/220627_banner.png') !important;
}
.goat_banner_title {
    background-color: #fff;
}
.goat_banner_title ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.goat_banner_title ul li {
    padding: 5px 10px;
}
.goat_banner_title ul li a {
    display: block;
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #fbb200;
    color: #fbb200;
    transition: all ease 0.2s;
    font-size: 13px;
}
.goat_banner_title ul li a:hover {
    background-color: #fbb200;
    color: #fff;
}
.goat_banner_children a {
    display: block;
    height: 180px;
    background-image: url('/images/main/img_children.png');
    background-position: center;
    background-size: cover;
}

/*service*/
.tab_line_area ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab_line_area ul li {
    position: relative;
    padding: 20px;
    color: #6a6a6a;
    font-size: 1.125rem;
}
.tab_line_area ul li + li:before {
    content: '';
    display: block;
    position: absolute;
    margin-top: -7px;
    left: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background-color: #d5d5d5
}
.tab_line_area ul li.on {
    font-weight: 600;
    color: #000;
}
.service_section {
    overflow: hidden;
}
.service_section1 {
    padding-top: 45px;
    text-align: center;
}
.service_section1_title {
    position: relative;
    padding-top: 50px;
}

.service_section1_bg_icon1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.service_section1_bg_icon1 .img_wrap {
    position: absolute;
    margin-top: 0;
    margin-right: 0;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    transition: margin 0.7s ease, opacity 0.4s ease;
}
.active .service_section1_bg_icon1 .img_wrap:nth-child(1) {
    margin-top: -80px;
    margin-right: 70px;
}
.active .service_section1_bg_icon1 .img_wrap:nth-child(2) {
    margin-top: 5px;
    margin-right: 140px;
}
.active .service_section1_bg_icon1 .img_wrap:nth-child(3) {
    margin-top: -80px;
    margin-right: -102px;
}
.active .service_section1_bg_icon1 .img_wrap:nth-child(4) {
    margin-top: 25px;
    margin-right: 230px;
}
.service_section1_bg_icon1 .fire {
    position: absolute;
    margin-top: 20px;
    margin-right: -160px;
    top: 50%;
    right: 50%;
    width: 40px;
    height: 40px;
    transform: translate(50%, -50%);
}
.service_section1_bg_icon1 .fire span {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background-color: #f8cd65;
    border-radius: 5px;
    transition: margin 0.7s ease, opacity 0.4s ease;
}
.service_section1_bg_icon1 .fire span:nth-child(odd) {
    width: 4px;
    height: 18px;
    animation: fire1 1.1s ease-in-out;
}
.service_section1_bg_icon1 .fire span:nth-child(even) {
    width: 18px;
    height: 4px;	
    animation: fire2 1.1s ease-in-out;
}
.active .service_section1_bg_icon1 .fire span:nth-child(1) {
    margin-top: -18px;
}
.active .service_section1_bg_icon1 .fire span:nth-child(2) {
    margin-right: -15px;
}
.active .service_section1_bg_icon1 .fire span:nth-child(3) {
    margin-top: 18px;	
}
.active .service_section1_bg_icon1 .fire span:nth-child(4) {
    margin-right: 15px;	
}
@keyframes fire1 {
    0% { height: 0; }
    50% { height: 18px; }
}
@keyframes fire2 {
    0% { width: 0; }
    50% { width: 18px; }
}
.service_section1_bg_icon2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.active .service_section1_bg_icon2 .img_wrap {
    position: absolute;
    top: 50%;
    right: 50%;
    opacity: 1;
    transform: translate(50%, -50%);
    transition: margin 0.7s ease, opacity 0.4s ease;
}
.active .service_section1_bg_icon2 .img_wrap:nth-child(1) {
    margin-top: -55px;
    margin-right: -70px;
}
.active .service_section1_bg_icon2 .img_wrap:nth-child(2) {
    margin-top: -65px;
    margin-right: -130px;
}
.active .service_section1_bg_icon2 .img_wrap:nth-child(3) {
    margin-top: -105px;
    margin-right: -115px;
}
.active .service_section1_bg_icon2 .img_wrap:nth-child(4) {
    margin-top: 50px;
    margin-right: -245px;
}
.service_section1_title_txt {
    position: relative;
    z-index: 1;
}
.service_section_img {
    font-family: 'GmarketSans';
}

/*서비스 소개 폭*/
.service_section_img.main_text_title1 h1.title {
    padding-bottom: 4px;
}

.service_section1 .tab_line_area {
    margin-bottom: 30px;
}

.service_section .desc_txt {
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    font-weight: 400;
    text-align: justify;
    word-break: break-all;
    font-size: 1.125rem;
}

.service_section2 {
    padding-top: 90px;
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    background-image: url("/images/noise_bg7.jpg");
    text-align: center;
}
.service_section3 {
    padding: 180px 0 180px;
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    background-image: url("/images/noise_bg8.jpg");
    text-align: center;
    color: #fff;
}
.service_section3 .bt_line_animation:before {
    background-color: #fff;
}
.service_section_title {
    margin-bottom: 50px;
}


.service_section_bt_area {
    position: relative;
    margin-top: 80px;
    height: 250px;
    overflow: hidden;
}
.service_section_bt_area > img {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 0);
}

.service_section2 .service_section_bt_area {
    height: 360px;
}
.cart_img_wrapper {
    position: relative;
    padding: 30px 0 80px;
}
.service_section3 .cart_img_wrap {
    display: inline-block;
    position: relative;
}
.service_section3 .cart_img_wrap > span:first-child {
    display: flex;
    position: absolute;
    top: -15px;
    right: -27px;
    width: 44px;
    height: 41px;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/images/service/cart_bg.png");
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 1.25rem;
}
.service_section3 .cart_img_wrap > span:last-child {
    position: absolute;
    height: 3px;
    bottom: 0;
    right: 100%;
    left: 0px;
    background-color: #fff;
    border-radius: 4px;
    animation: forward 0.7s infinite linear;
}
@keyframes forward {
    0% { 
        right: 0px;
        left: 100%;	
    }
    33% { 
        right: 0px;
        left: 50px;
    }
    66% {
        right: 50px;
        left: 0px;
    }
    99% {
        right: 100%;
        left: 0px;
    }
}
.cart_img_wrapper .cart_img_bg {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}
.cart_img_wrapper .cart_img_bg:first-child {
    margin-right: -95px;
    margin-top: -70px;
}

.cart_img_wrapper .cart_img_bg:first-child img:first-child {
    width: 20px;
    animation: star1 0.4s infinite ease-in-out;
}	
.cart_img_wrapper .cart_img_bg:first-child img:last-child {
    margin-top: 35px;
    width: 13px;
    animation: star2 0.7s infinite ease-in-out;
}
.cart_img_wrapper .cart_img_bg:last-child {
    margin-right: 75px;
    margin-top: 30px;
}
.cart_img_wrapper .cart_img_bg:last-child img:first-child {
    width: 10px;
    animation: star3 0.5s infinite ease-in-out;
}
.cart_img_wrapper .cart_img_bg:last-child img:last-child {
    margin-top: -30px;
    width: 20px;
    animation: star4 0.9s infinite ease-in-out;
}

@keyframes star1 {
    0% { 
        width: 20px;
    }
    50% { 
        width: 19px;
    }
    100% {
        width: 20px;
    }
}
@keyframes star2 {
    0% { 
        width: 14px;
    }
    50% { 
        width: 13px;
    }
    100% {
        width: 14px;
    }
}
@keyframes star3 {
    0% { 
        width: 10px;
    }
    50% { 
        width: 11px;
    }
    100% {
        width: 10px;
    }
}
@keyframes star4 {
    0% { 
        width: 20px;
    }
    50% { 
        width: 19px;
    }
    100% {
        width: 20px;
    }
}


.service_section4 {
    position: relative;
    padding: 100px 0 150px;
    text-align: center;
}
.service_section4_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.sevice_swiper_item {
    padding-top: 40px;
    text-align: center;
}
.sevice_swiper_item .icon_box {
    margin-bottom: 30px;
    height: 110px;
    background-repeat: no-repeat;
    background-position: center;
}

/*agreement*/
.agreement_box p, 
.agreement_box h5,
.agreement_box h6,
.agreement_box ul,
.agreement_box li
{
    margin-bottom: 8px;
}
.agreement_box p {
    font-size: 13px;
}
.agreement_box ul {
    padding-left: 20px;
}
.agreement_box li {
    font-size: 13px;
}
.agreement_box h5,
.agreement_box h6 {
    margin-top: 20px;
}
.agreement_box table {
    margin-bottom: 8px;
    border-collapse: collapse;
}
.agreement_box table th {
    padding: 4px 8px;
    font-size: 14px;
    text-align: center;
    background-color: #f6f6f6;
    border: 1px solid #efefef;
}
.agreement_box table td {
    padding: 4px 8px;
    font-size: 14px;
    border: 1px solid #efefef;
}
.main_section {
    position: relative;
    height: 700px;
}
.main_swiper {
    height: 700px;
}

.main_swiper .swiper-slide {
    display: flex;
    position: relative;
    background-size: 100% 650px;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.main_swiper .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.main_swiper .bg_img img {
    max-width: 100%;
    width: 100%;
}
.main_swiper .flog_img {
    position: absolute;
    margin-right: 420px;
    bottom: 150px;
    right: 50%;
    z-index: 1;
}
.main_swiper .img_obj1 {
    position: absolute;
    margin-right: 300px;
    bottom: 30px;
    right: 50%;
}
.main_swiper .img_obj2 {
    position: absolute;
    margin-left: 300px;
    bottom: 63px;
    left: 50%;
}

.fixed_img_wrap {
    position: absolute;
    bottom: 0;
    height: 270px;
    width: 100%;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}
.fixed_img_wrap img {
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 0);
}

.main_guide_wrap {
    position: relative;
    width: 345px;
    height: 405px;
    z-index: 1;
}
.main_guide_wrap img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.main_guide_wrap .main_text_desc_wrap {
    margin-top: 30px;
    transform: translate(0, 80px);
    opacity: 0;
    transition: transform 0.9s ease-in-out , opacity 0.3s ease-in-out;
    transition-delay: 0.4s, 0.4s;
}
.main_guide_wrap .main_text_desc_wrap h5 {
    margin-bottom: 10px;
}
.main_title_pastel h6 {
    padding: 25px 0;
    background-image: url('/images/main/bg_pastel.png');
    background-position: center;
    background-size: 255px auto;
    background-repeat: no-repeat;
}
.main_slide_animation > * {
    opacity: 0;
    transform: translate(0, 80px);
    transition: transform 0.9s ease-in-out , opacity 0.3s ease-in-out;
}
.main_slide_animation:first-child > * {
    transition-delay: 0.3s, 0.3s;
}
.main_slide_animation:nth-child(2) > * {
    transition-delay: 0.6s, 0.6s;
}
.main_slide_animation:nth-child(3) > * {
    transition-delay: 0.9s, 0.9s;
}
.main_guide_wrap .title {
    font-family: 'GmarketSans';
}
.main_guide_wrap .subtitle {
    line-height: 1.2;
    font-weight: 400;
}
.main_guide_wrap .desc {
    /*font-family: 'GmarketSans';*/
    font-weight: 400;	
}

.main_guide_wrap.active .main_slide_animation > * {
    opacity: 1;
    transform: translate(0, 0);
}
.bt_line_animation {
    display: inline-block;
    position: relative;
}
.bt_line_animation:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: all 1s ease;
    transition-delay: 1.1s;
}
.bt_line_animation.white:before {
    background-color: #fff;
}
.active .bt_line_animation:before {
    width: 100%;
}
.main_guide_wrap.active .main_text_desc_wrap {
    transform: translate(0, 0px);
    opacity: 1;
}

/*폭 정리*/
.main_text_title1 h1 {
    margin: 0 auto;
    margin-bottom: 4px;
    width: 185px;
    line-height: 1 !important;
}
.main_text_title1 h1.per {
    font-size: 65px;
    font-weight: 400;
    margin-bottom: 20px;
}
.main_text_title1 .subtitle {
    margin: 0 auto;
    width: 185px;
    line-height: 1 !important;
    font-size: 26px;
    text-align: justify;
    font-weight: 400;
}
.main_text_title1 .subtitle01 {
    margin-top: 7px;
}
.main_text_title1 .subtitle02 {
    margin-top: 2px;
    letter-spacing: 0.3px;
}
.main_text_svg {
    margin: 8px auto 0;
    width: 185px;
}
.main_text_svg img {
    max-width: 100%;
}

.main_text_titie2 h3 {
    width: 128px;
    margin-bottom: 4px;
    font-size: 26px;
    line-height: 1 !important;
}
.main_text_titie2 h2 {
    margin: 9px auto 0;
    width: 125px;
    font-size: 64px;
    line-height: 1 !important;
}

.main_text_titie3 h3 {
    width: 128px;
    margin-bottom: 4px;
    font-size: 26px;
    line-height: 1 !important;
}
.main_text_titie3 h2 {
    margin: 9px auto 0;
    width: 125px;
    font-size: 64px;
    line-height: 1 !important;
}

.main_text_titie4 h3 {
    width: 128px;
    margin-bottom: 4px;
    font-size: 26px;
    line-height: 1 !important;
}
.main_text_titie4 h2 {
    margin: 9px auto 0;
    width: 125px;
    font-size: 64px;
    line-height: 1 !important;
}

.main_guide_wrap .main_text_desc_title {
    margin: 35px auto 20px;
}
.main_guide_wrap .fixed_txt {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.main_guide_wrap.active .fixed_txt {
    opacity: 1;
}

.main_swiper_next {
    margin-top: -20px;
    width: 30px;
    height: 40px;
    background-size: 21px 37px;
    background-image: url('/images/icon/swiper_next.png');
}
.main_swiper_prev {
    margin-top: -20px;
    width: 30px;
    height: 40px;
    background-size: 21px 37px;
    background-image: url('/images/icon/swiper_prev.png');
}

/*공지사항 보기*/
.board_view_header {
    text-align: center;
}
.board_view_header .category {
    margin-bottom: 10px;
    color: #ffb700;
}
.board_view_header .reg {
    margin-top: 25px;
    margin-bottom: 35px;
}
.board_view_body {
    padding: 45px 0;
    border-top: 2px solid #000;
}
.board_view_body img {
    max-width: 100% !important;
    height: auto !important;
}
.board_view_footer {
    border-top: 1px solid #000;
}
.board_view_footer li {
    border-bottom: 1px solid #d2d2d2;
    background-color: #fafafa;
}
.board_view_footer li > a {
    display: flex;
    padding: 15px 0;
    align-items: center;
}
.board_view_footer li .title {
    position: relative;
    padding: 0 40px;
    font-weight: 300;
}
.board_view_footer li .title:after {
    content: '';
    display: block;
    position: absolute;
    margin-top: -10px;
    top: 50%;
    right: 0;
    height: 20px;
    width: 1px;
    background-color: #d2d2d2;
}
.board_view_footer li .category {
    padding-left: 40px;
    flex: 0 0 130px;
    max-width: 130px;
    font-weight: 600;
}
.board_view_footer .btn_area {
    padding-top: 35px;
}
.board_view_footer .btn_area a {
    display: inline-block;
    padding: 18px 25px;
    font-size: 0.875rem;
}
.board_view_footer .btn_area a:hover {
    color: #fff;
}
.list_ico {
    display: inline-block;
    position: relative;
    padding: 0;
    width: 11px;
    height: 9px;
} 
.list_ico span {
    display: inline-block;
    position: absolute;
    left: 0px;
    width: 11px;
    height: 1px;
    background: #fff;
}
.list_ico span:nth-of-type(1) {
    top: 0;
}
.list_ico span:nth-of-type(2) {
    top: 4px;
}
.list_ico span:nth-of-type(3) {
    bottom: 0;
}

.attach_file_list {
    margin-top: 55px;	
}
.attach_file_list ul {
    margin-top: 20px;
}
.attach_file_list ul li + li {
    margin-top: 10px;
}
.attach_file_list ul li > a {
    display: flex;
    padding: 15px 30px;
    border: 1px solid #d2d2d2;
    align-items: center;
    justify-content: space-between;
}

.review_list {
    margin-top: 50px;
}
.review_list_header {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-end;
    justify-content: space-between;
}
.review_list_header small {
    display: inline-block;
    font-size: 60%;
    vertical-align: super;
    font-weight: 600;
}
.review_list_header button {
    border: none;
    background-color: transparent;
    font-size: 0.875rem;
    font-weight: 600;
}
.review_list_body ul.donate_review_list {
    border-top: 1px solid #000;
}
.review_list_body .ins_donate_review_area + ul.donate_review_list,
.review_list_body .ins_donate_review_area + div > ul.donate_review_list {
    border-top: none;
}
.ins_donate_review_area .member_info {
    display: flex;
    align-items: center;
}
.ins_donate_review_area .thumb_img {
    display: block;
    margin-right: 10px;
    flex: 0 0 35px;
    max-width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: #fbfbfb;
    background-position: center;
    background-size: cover;
}
.ins_donate_review_area .ins_donate_review_box {
    display: flex;
    margin-top: 15px;
}
.ins_donate_review_area .ins_donate_review_box textarea {
    padding: 15px;
    flex: 0 1 100%;
    max-width: 100%;
    height: 95px;
    border: 1px solid #000;
    resize: none;
}
.ins_donate_review_area .ins_donate_review_box button {
    margin-left: 30px;
    flex: 0 0 100px;
    max-width: 100px;
    height: 95px;
    background-color: #fff;
    border: 1px solid #000;
    font-size: 0.875rem;
    font-weight: 600;
}
.donate_review_list li {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #d2d2d2;
    align-items: center;
    font-size: 0.875rem;
}

.donate_review_list li .thumb_img {
    display: block;
    flex: 0 0 35px;
    max-width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: #fbfbfb;
    background-position: center;
    background-size: cover;
}

.donate_review_list li .title {
    padding: 0 15px;
    flex: 0 1 100%;
    max-width: 100%;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.donate_review_list li.on {
    background-color: #fdfdfd;
}
.donate_review_list li.on .title {
    white-space: break-spaces;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
}

.donate_review_list li .price {
    flex: 0 0 110px;
    max-width: 110px;
    font-weight: 500;
}
.donate_review_list li .name {
    flex: 0 0 125px;
    max-width: 125px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
}
.donate_review_list li .reg {
    flex: 0 0 110px;
    max-width: 110px;
    text-align: right;
    color: #8b8b8b;
}

.camera_img_wrap {
    position: relative;
}
.camera_img_wrap img:nth-child(2) {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -40%);
}

.balloon_txt {
    position: relative;
    margin-top: 10px;
    padding-top: 15px;
    overflow: hidden;
}
.balloon_txt:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    height: 15px;
    background-color: #efefef;
}
.balloon_txt .desc {
    padding: 25px 20px;
    background-color: #efefef;
    border-radius: 0 30px 30px 30px;
    text-align: justify;
    word-break: break-all;
}
.balloon_txt .desc img {
    display: block;
    max-width: 100%;
}
.balloon_txt .desc table {
    width: 100%;
    border-collapse: collapse;
}
.balloon_txt:after {
    content: '';
    display: block;
    position: absolute;
    margin-bottom: -15px;
    bottom: 100%;
    left: -5px;
    right: 0;
    height: 100px;
    background-color: #fff;
    border-radius: 30px;
}

.service_point_section {
    padding: 80px 0;	
    text-align: center;
}

.service_point_section .desc_txt {
}

.service_point_section1 {
    padding-top: 45px;
}
.service_point_section1_title {
    margin-top: 80px;
}
.service_point_section1 .service_point_img {
    position: relative;
    margin: 40px auto 0;
    width: 260px;
}
.service_point_section1 .service_point_img .img_wrap:nth-child(1) {
    position: absolute;
    width: 30%;
    top: 30%;
    right: 50%;
    transform: translate(50%, -50%);
    transition: width 0.7s ease;
}
.service_point_section1 .service_point_img .img_wrap:nth-child(1) img {
    width: 100%;
}
.service_point_section1_title.active .service_point_img .img_wrap:nth-child(1) {
    width: 100%;
}

.service_point_section2 {
    padding: 80px 0 80px;
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    background-image: url(/images/noise_bg8.jpg);
    text-align: center;
    color: #fff;
}
.service_point_section2 .service_point_img {
    position: relative;
    margin: 0 auto;
    height: 322px;
    width: 280px;
    border-bottom: 1px solid #fff;
    overflow: hidden;
}
.service_point_section2 .service_point_img > img {
    position: absolute;
    right: 50%;
    transform: translate(50%, 60px);
}
.service_point_section2_title > h1 {
    position: relative;
    margin-bottom: -40px;
    font-size: 4rem;
    color: #ffd244;
    z-index: 1;
}

.service_point_section3 {
    padding-top: 90px;
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    background-image: url(/images/noise_bg7.jpg);
    text-align: center;
}
.service_coin_img_wrapper {
    position: relative;
    padding: 50px 0;
}
.service_coin_img_wrapper .service_coin_img_wrap {
    position: relative;
    top: -25px;
    animation: bound 0.5s infinite cubic-bezier(0.5, 0.2, 0.8, 0.35);
    animation-direction: alternate;
}
.service_coin_img_wrapper > span {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 50%;
    width: 30px;
    height: 10px;
    border-radius: 30px;
    background-color: rgba(0,0,0,0.1);
    transform: translate(50%, 0);
    animation: boundShadow 0.5s infinite cubic-bezier(0.5, 0.2, 0.8, 0.35);
    animation-direction: alternate;
}
.service_coin_img_wrapper .service_coin_img_bg:first-child {
    margin-right: 75px;
    margin-top: 30px;
}
.service_coin_img_wrapper .service_coin_img_bg {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}
.service_coin_img_wrapper .service_coin_img_bg:last-child {
    margin-right: -80px;
    margin-top: -25px;
}
.service_coin_img_wrapper .service_coin_img_bg:last-child img:first-child {
    width: 21px;
    animation: star5 0.4s infinite ease-in-out;
}
.service_coin_img_wrapper .service_coin_img_bg:last-child img:last-child {
    margin-top: 35px;
    width: 13px;
    animation: star2 0.7s infinite ease-in-out;
}
.service_coin_img_wrapper .service_coin_img_bg:first-child img {
    width: 28px;
    animation: star6 0.9s infinite ease-in-out;
}

@keyframes bound {
    0% { 
        top: -25px;
    }
    100% {
        top: 25px;
    }
}
@keyframes boundShadow {
    0% { 
        width: 30px;
    }
    100% {
        width: 75px;
    }
}
@keyframes star5 {
    0% { 
        width: 21px;
    }
    50% { 
        width: 20px;
    }
    100% {
        width: 21px;
    }
}
@keyframes star6 {
    0% { 
        width: 28px;
    }
    50% { 
        width: 27px;
    }
    100% {
        width: 28px;
    }
}

.sevice_point_swiper_item {
    position: relative;
    padding: 50px 25px;
    height: 100%;
    background-color: #fff;
    text-align: left;
}
.sevice_point_swiper_item1 {
    border: 3px solid #eaeaea;
}
.sevice_point_swiper_item1:before {
    content: url("/images/service/point/section3_slide2.png");
    display: inline-block;
    position: absolute;
    top: -5px;
    right: -3px;
}
.sevice_point_swiper_item2 {
    background-image: url("/images/noise_bg9.jpg");
    background-position: center;
    border: 3px solid #5a32c7;
    color: #fff;
}
.sevice_point_swiper_item3 {
    border: 3px solid #ffc000;
}
.sevice_point_swiper_item3:before {
    content: url("/images/service/point/section3_slide1.png");
    display: inline-block;
    position: absolute;
    bottom: -15px;
    right: -3px;
}
.sevice_point_swiper_item4 {
    background-image: url("/images/noise_bg8.jpg");
    background-position: center;
    color: #fff;
}
.sevice_point_swiper_item4:before {
    content: url("/images/service/point/section3_slide3.png");
    display: inline-block;
    position: absolute;
    top: -10px;
    right: -3px;
}


.sevice_point_swiper_item > .title {
    margin-bottom: 30px;
}
.pay_cancel_box {
    padding: 35px 25px;	
}
.pay_cancel_box button {
    margin-top: 30px;
    width: 100%;	
    height: 45px;
}
.cancel_history_modal {
    color: #000;
}
.pay_cancel_box ul {
    margin: 30px 0 15px;
    padding: 7px 0;
    border-top: 2px solid #000;
    border-bottom: 1px solid #000;
}
.pay_cancel_box ul li {
    display: flex;
    padding: 5px 0;
    align-items: center;
    justify-content: space-between;
}
.service_section .bt_line_animation:before {
    transition-delay: 0s;
}
.ticket_box_wrap {
    position: relative;
    padding: 50px 0 80px;
    background-image: url('/images/donate/bg1.jpg');
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
}
.ticket_layer_txt img:first-child {
    max-width: 80px;
}
.ticket_layer_txt img:last-child {
    max-width: 90px;
}
.ticket_box_wrap .ticket_box {
    margin-top: 0;
}
.ticket_layer_txt {
    display: flex;
    position: absolute;
    padding: 0 20px;
    left: 0;
    right: 0;
    bottom: 15px;
    align-items: center;
    justify-content: space-between;
}
.ticket_box {
    position: relative;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 25px;
    max-width: 420px;
}
.ticket_box_top span:first-child {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 5px;
}
.ticket_box_top span:last-child {
    display: block;
    position: absolute;
    top: 9px;
    left: 7px;
    right: 7px;
    height: 15px;
    background: #9d9d9d;
    border: 2px solid #000;
    border-radius: 5px;
}
/* 
.ticket_box:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 32px;
        background: #fff;
        border: 2px solid #000;
        border-radius: 5px;
}
.ticket_box:after {
        content: '';
        display: block;
        position: absolute;
        top: 9px;
        left: 7px;
        right: 7px;
        height: 15px;
        background: #9d9d9d;
        border: 2px solid #000;
        border-radius: 5px;
}
*/
.ticket_layer_img {
    position: absolute;
    left: -93px;
    bottom: 70px;
    width: 183px;
}
.ticket_inner {
    position: relative;
    margin-top: -14px;
    z-index: 1;
}
.ticket_box_header {
    padding: 0 10px;
    background-color: #fff;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    font-family: 'GmarketSans';
    text-align: center;
}
.ticket_box_header .ticket_box_inner {
    position: relative;
    padding: 15px 0;
}
.ticket_box_inner::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(90deg, #000, #000 75%, transparent 75%, transparent 100%);
    background-size: 13px 2px;
}
.ticket_box_inner.no_dashed::after {
    display: none;
}
.ticket_box_header .title {
    color: #8c8c8c;
}
.ticket_box_body {
    padding: 0 10px 25px;
    background-color: #fff;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    text-align: left;
    font-family: 'GmarketSans';
}
.ticket_box_inner .accent,
.ticket_box_inner .accent dt {
    font-weight: 600;
}
.ticket_box_body .ticket_box_inner {
    position: relative;
    padding: 10px 0;
}
.ticket_box_inner dl {
    display: flex;
    padding: 5px 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
}
.ticket_box_inner dl dt {
    font-weight: 400;
}
.ticket_box_body_desc {
    position: relative;
    text-align: center;
}
.ticket_box_body_desc::before {
    content: '*****************************';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    font-size: 1.8rem;
}
.ticket_box_body_desc h4 {
    display: inline-block;
    padding: 0 4px;
    position: relative;
    background-color: #fff;
    z-index: 1;
}
.ticket_box_body_desc p {
    margin-top: 10px;
    color: #989898;
    text-align: left;
    line-height: 1.4;
}
.ticket_box_body_desc > img {
    display: block;
    position: relative;
    margin-top: 20px;
    width: 100%;
    z-index: 1;
}
.barcode_box {
    display: flex;
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}
.barcode_box span {
    display: block;
    margin: 0 1px;
    width: 3px;
    height: 30px;
    background-color: #000;
}
.barcode_box span:nth-child(1),
.barcode_box span:nth-child(8),
.barcode_box span:nth-child(9),
.barcode_box span:nth-child(15) {
    width: 2px;
}
.barcode_box span:nth-child(2n) {
    width: 4px;	
}
.barcode_box span:nth-child(3n) {
    width: 2px;	
}
.barcode_box span:nth-child(4n) {
    width: 3px;	
}
.barcode_box span:nth-child(7n) {
    width: 1px;	
}
.barcode_box span:nth-child(9n) {
    width: 7px;	
}
.barcode_box span:nth-child(11n) {
    width: 4px;	
}
.barcode_box span:nth-child(17n) {
    width: 6px;	
}
.barcode_box span:nth-child(19n) {
    width: 6px;	
}
.triangle_shape {
    display: flex;
    position: absolute;
    margin-top: -3.67%;
    left: 2px;
    right: 2px;
    top: 100%;
}
.triangle_shape li {
    display: block;
    position: relative;
    flex: 0 0 10%;
    max-width: 10%;
    overflow: hidden;
}
.triangle_shape span {
    display: block;
    padding-top: 100%;
    width: 100%;
    transform: rotate(45deg) translate(-25%, -25%);
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    background-color: #fff;
}

.donate_ticket_section .btn_area {
    padding-top: 0;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
}
.donate_ticket_section button {
    display: block;
    width: 100%;	
    height: 60px;
    font-weight: 600;
    font-size: 1.125rem;
}
.donate_ticket_section button + button {
    margin-top: 15px;
}
.share_section > .coin_img {
    flex: 0 0 1200px;
    max-width: 1200px;
    width: 1200px;
    top: 5%;
    right: 50%;
    transform: translate(50%, 0);
}
.share_section .txt_box {
    position: relative;
    padding: 100px 15px 300px;
    text-align: center;
    z-index: 1;
}

.share_info_box {
    position: relative;
    margin-top: -38%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100%;
    background-image: url(/images/noise_bg3.jpg);
    box-shadow: inset 0 0 0 1px #bfbfbf;
    border-radius: 5px;
    text-align: center;
}
.share_info_box_bg {
    position: absolute;
    top: 2%;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
.share_info_box_content {
    position: absolute;
    top: 50%;
    left: 25px;
    right: 25px;
    transform: translate(0, -50%);
    z-index: 1;
}
.share_info_box .thumb_box {
    position: absolute;
    margin-right: -55px;
    top: -55px;
    right: 50%;
    width: 110px;
    height: 110px;
    border-radius: 100%;
    border: 1px solid #bfbfbf;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.share_info_box .txt_box {
    margin-top: 35px;
}
.share_info_box .tag_area {
    margin-top: 25px;
}
.share_info_box .tag_item {
    padding: 3px 8px;
    background-color: #fff;
    font-size: 1.2rem;
}
.share_info_box .btn_donate button {
    font-size: 1.25rem;
    border-radius: 30px;
}
.share_btn_list {
    margin-bottom: 100px;
}
.share_btn_list li {
    display: flex;
    padding: 20px 15px;
    border-bottom: 1px solid #dcdcdc;
    align-items: center;
    cursor: pointer;
}
.share_btn_list .icon_box {
    margin-right: 25px;
    flex: 0 0 36px;
    max-width: 36px;
    height: 36px;
    width: 36px;
    border: 1px solid #e1e1e1;
    border-radius: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.modal_share_list {
    text-align: center;
}
.modal_share_list button {
    margin: 0 7px;
    padding: 0 7px;
    height: 50px;
    width: 50px;
    border: 1px solid #e1e1e1;
    border-radius: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    vertical-align: middle;
}
.modal_share_list button img {
    display: block;
    margin: 0 auto;
    width: 80%;
}

.share_box {
    display: flex;
    width: 600px;
    height: 600px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url("/images/firecracker.png");
    background-position: center;
    background-size: contain;
    background-color: #f7f7f7;
}
.share_box .inner {
    padding: 25px;
    flex: 0 0 100%;
    max-width: 100%;
}
.share_box .thumb_box {
    margin: 0 auto 30px;
    width: 110px;
    height: 110px;
    border-radius: 100%;
    border: 1px solid #bfbfbf;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.share_box .tag_area {
    margin-top: 25px;
}
.share_box .tag_item {
    padding: 3px 8px;
    background-color: #fff;
    font-size: 1.2rem;
}
.share_box .btn_donate button {
    font-size: 1.25rem;
    border-radius: 30px;
}



/* login_select */
.link_group a {
    padding: 0 10px;
    font-size: 22px;
    color: #b2b2b2;
}
.link_selected {
    font-weight: 600;
    color: #000 !important;
}
.login_group a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    margin: 20px 0;
}
.link_kakao {
    background-color: #f9e000;
    font-weight: 600;
}
.link_kakao span::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 27px;
    margin-right: 5px;
    background-image: url("/images/icon/kakao_icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    vertical-align: middle;
}
.link_login {
    border: 1px solid;
}

.find_group {
    text-align: right;
    color: #6b6b6b;
}
.find_group a:first-child {
    padding-right: 10px;
}
.find_group a:first-child::after {
    content: "|";
    padding-left: 10px;
    font-size: 1px;
    vertical-align: top;
}

.banner_wrapper {
    padding-bottom: 50px;
    text-align: center;
}
.banner_wrapper img {
    width: 100%;
}

.fund_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.fund_header_text {
    margin-bottom: 15px;
}
.fund_header_text .bt_line_title {
    margin-bottom: 10px;
}
.fund_header_text p {
    font-size: 18px;
}
.waiting_count {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    font-size: 14px;
    color: #fbb200;
    cursor: pointer;
}
.waiting_count strong {
    line-height: 1.2;
    font-size: 50px;
}

.fund_badge {
    position: absolute;
    top: 49%;
    right: 15px;
    padding: 8px 10px;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    background-color: #000;
    font-size: 12px;
    color: #FFF;
    transform: translateY(-50%);
}
.fund_badge::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 13.0px;
    border-color: transparent transparent transparent #000000;
}
.donate_list_section .fund_badge {
    top: 52%;
}
.fund_main .thumb_content_item .txt_box,
.donate_list_section .thumb_content_item .txt_box {
    margin-top: 30px;
}
.mobile_only {
    display: none;
    font-size: 14px;
    border-bottom: 2px solid #fbb200;
}


/* 21-01-06 재성 추가 */
.invite_kakao_area {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url("/images/invite/bg1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
}
.invite_kakao_area .absolute_btn_area {
    margin-top: -45px;
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
    width: 90%;
}
.invite_kakao_area .btn_donate {
    font-family: 'GmarketSans';
}
.invite_kakao_area .btn_donate button {
    color: #000;
}
.invite_kakao_area .absolute_btn_area > .btn_donate:before {
    margin-right: 0;
    right: 0;
    bottom: -27px;
}
.invite_kakao_area .btn_donate:after {
    content: '';
    display: block;
    position: absolute;
    margin-right: -5px;
    right: 50%;
    top: 100%;
    width: 0;
    height: 0;
    border-top: 10px solid #fbb200;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
}
.invite_dashboard_wrap {
    padding-left: 15px;
    padding-right: 15px;
}
.invite_dashboard {
    display: flex;
    transform: translate(0, -120px);
    align-items: center;
    justify-content: space-between;
}
.invite_dashboard article {
    margin: 0 35px;
    flex: 0 1 50%;
    max-width: 50%;
}
.invite_dashboard article:first-child {
    margin-left: 0;
}
.invite_dashboard article:last-child {
    margin-right: 0;
}
.invite_dashboard article .inner {
    position: relative;
    background-color: #fff;
    border: 2px solid #b5b5b5;
    border-radius: 3px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}
.invite_dashboard article h5 {
    position: relative;
    padding-top: 50px;
    padding-bottom: 25px;
}
.invite_dashboard article h5:after {
    content: '';
    display: block;
    position: absolute;
    margin-right: -25px;
    bottom: 0;
    right: 50%;
    width: 50px;
    height: 1px;
    background-color: #000;
}
.invite_dashboard article h1 {
    padding-top: 10px;
    padding-bottom: 60px;
    color: #fdb500;
}
.invite_dashboard article span {
    display: block;
    position: absolute;
    margin-right: -25px;
    bottom: -25px;
    right: 50%;
    width: 50px;
    height: 50px;
    background-color: #fdb500;
    border-radius: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.invite_dashboard article span:before, 
.invite_dashboard article span:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    background-color: #fff;
    transform: translate(50%, -50%);
}
.invite_dashboard article span:before {
    width: 2px;
    height: 14px;
}
.invite_dashboard article span:after {
    width: 14px;
    height: 2px;
}
.invite_dashboard article .inner:hover {
    border-color: #fdb500;
    transform: translate(0, -20px);
}
.invite_dashboard article .inner:hover span {
    opacity: 1;
}
.invite_bt_section {
    padding-bottom: 180px;
}
.invite_bt_section .board_list {
    background-color: #fff;
}
.invite_bt_section .board_body article {
    padding-top: 15px;
}
.invite_bt_section .board_body article.board_faq_item > .content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
}
.invite_bt_section .board_body article.board_faq_item .arrow {
    margin-right: 0px;
    width: 9px;
    height: 9px;
}
.invite_bt_section .board_body article.board_faq_item > .answer_box {
    padding: 20px;
    border-top: 1px solid #dcdcdc;
}
.invite_modal_content {
    padding: 90px 65px;
    background-color: #fff;
}
.invite_modal_content .cnt {
    color: #fdb500;
    font-size: 2.5rem;
}


.invite_modal_content table {
    margin-top: 30px;
    width: 100%;
    border-top: 2px solid #000;
}
.invite_modal_content table tr {
    border-bottom: 1px solid #c9c9c9;
}
.invite_modal_content table td {
    padding: 13px 0;
    font-size: 0.875rem;
}
.invite_modal_content table .reg {
    text-align: right;
    color: #717171;
}

.invite_copy_btn_area {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
    width: 90%;
    text-align: center;
    font-family: 'GmarketSans';
}
.invite_copy_btn_area button {
    width: 100%;
    height: 70px;
    background: none;
    border-radius: 40px;
    border: 2px solid #fbb200;
    color: #000;
    font-size: 1.25rem;
    outline: none;
}

.kakao_sync_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.kakao_sync_btn {
    display: block;
    padding-left: 25px;
    width: 170px;
    height: 45px;
    border: 1px solid #fee500;
    border-radius: 4px;
    font-weight: 600;
    background-image: url('/images/kakao_sync.png');
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-color: #fee500;
}
.quick_kakao {
    position: fixed;
    display: block;
    right: 40px;
    bottom: 40px;
    width: 100px;
    height: 73px;
    text-indent: -9999px;
    background-image: url('/images/ico/float_counsel.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 11;
}


/* 친구초대 페이지 */
.invite_section {
    font-family: 'GmarketSans';
}
.invite_section1 {
    padding-bottom: 0;
    background-image: url('/images/noise_bg10.jpg');
    background-repeat: repeat;
    background-position: center;
    text-align: center;
    color: #fed15c;
}
.invite_section1 > img {
    margin-top: 40px;
    max-width: 100%;
}
.invite_section2 {
    position: relative;
    background-image: url('/images/noise_bg11.jpg');
    background-repeat: repeat;
    background-position: center;
    text-align: center;
}
.invite_section2 .title_box > span {
    display: inline-block;
    margin: 15px 0 45px;
    padding: 3px 10px;
    background-color: #cf7a22;
    border-radius: 50px;
    color: #fff;
}
.invite_section2 .ticket_bg_wrap {
    padding-left: 30px;
    padding-right: 30px;
}
.invite_section2 .ticket_bg {
    position: relative;
    margin-top: 30px;
    padding: 30px 10px 25px;
    background-color: #fff;
    border-radius: 4px;
    text-align: center;
}
.invite_section2 .ticket_bg::before,
.invite_section2 .ticket_bg::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    background-image: url('/images/noise_bg11.jpg');
    background-repeat: repeat;
    background-position: center;
    border-radius: 100%;
    transform: translate(0, -50%);
} 
.invite_section2 .ticket_bg::before {
    left: -23px;
}
.invite_section2 .ticket_bg::after {
    right: -23px;
}

.invite_section2 .ticket_bg + .ticket_bg {
    margin-top: 20px;
}
.invite_section2 .ticket_bg h1 {
    padding: 20px 0;
    line-height: 1;
    color: #ffb700;
}
.invite_section2 .ticket_bg > span {
    display: inline-block;
    padding: 4px 15px;
    border-radius: 8px;
    background-color: #bcbcbc;
    color: #fff;
    font-family: 'Noto Sans KR', 'Spoqa Han Sans', 'Helvetica', 'Arial', sans-serif;
}
.invite_section3 {
    position: relative;
    background-image: url('/images/noise_bg12.jpg');
    background-repeat: repeat;
    background-position: center;
    text-align: center;
    color: #fff;
}
.invite_section3 > img:first-child {
    position: absolute;
    top: -40px;
    right: 30%;
}
.invite_section3 > img:nth-child(2) {
    position: absolute;
    bottom: 15px;
    left: 20%;
}
.invite_section3 .btn_box {
    margin-top: 30px;
}
.invite_section3 .btn_box .kakao_link {
    padding: 0 40px;
    height: 90px;
    background-color: #fff7d0;
    border-radius: 10px;
    border: none;
    color: #000;
    font-size: 1.125rem;
    font-weight: 600;
    vertical-align: middle;
}
.invite_section3 .btn_box .url_copy {
    margin-left: 20px;
    margin-bottom: 3px;
    vertical-align: middle;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
}
.invite_section3 .dl_wrap {
    display: flex;
    margin-top: 80px;
    align-items: center;
    justify-content: center;
}
.invite_section3 .dl_wrap dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
}
.invite_section3 .dl_wrap dl + dl {
    margin-left: 120px;
}
.invite_section3 .dl_wrap dt {
    font-weight: 400;
}
.invite_section3 .dl_wrap dd {
    margin-left: 40px;
    cursor: pointer;
}
.invite_section3 .dl_wrap dd span {
    font-size: 140%;
    font-weight: 600;
}
.dl_desc {
    text-align: center;
    margin-top: 10px;
}

.invite_section4 {
    position: relative;
    background-image: url('/images/noise_bg13.jpg');
    background-repeat: repeat;
    background-position: center;
    color: #000;
}
.invite_section4:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}
.invite_section4:after {
    content: '종료된 이벤트 입니다.';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    z-index: 11;
}
.invite_section4 .title_box > span {
    display: inline-block;
    margin: 15px 0 45px;
    padding: 3px 15px;
    background-color: #cf7a22;
    border-radius: 50px;
    color: #fff;
}
.invite_section4 .content_box {
    margin-top: 40px;
    background-color: #fff;
    text-align: center;
}
.invite_section4 .content_box .title {
    padding: 5px 10px;
    background-color: #000;
    color: #fff;
}
.invite_section4 .content_box .icon_wrap {
    padding: 20px 0 0;
}
.invite_section4 .content_box .icon_wrap h6 {
    text-align: center;
}
.invite_section4 .content_box .icon_wrap .icon_box {
    display: flex;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
}
.invite_section4 .content_box .icon_wrap .icon_box img {
    max-width: 200px;
    flex: 0 0 30%;
}
.invite_section4 .content_img {
    display: flex;
    align-items: center;
}
.invite_section4 .content_img article {
    margin-top: 30px;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    color: #000;
}
.invite_section4 .content_img article img {
    margin-bottom: 15px;
    max-width: 90%;
}
.invite_box {
    padding: 0 20px;
}
.invite_box > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.invite_box > ul li {
    position: relative;
    width: 100%;
    padding-top: 25%;
    background-image: url('/images/invite/img6.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.invite_box > ul li.on {
    background-image: url('/images/invite/img4.png') !important; 
}
.invite_box > ul li.last_count {
    background-image: url('/images/invite/img6_none.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.invite_box > ul li.last_count.on {
    background-image: url('/images/invite/img4_none.png') !important; 
}
.invite_box > ul li.last_count.on label {
    color: #4c30c0;
}
.invite_box > ul li.last_count label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #a7a7a7;
    font-weight: 600;
    font-size: 2rem;
}

.invite_section .event_txt {
    display: inline-block;
    position: absolute;
    padding: 7px 50px;
    top: 0;
    right: 50%;
    transform: translate(50%, 0);
    border-radius: 0 0 45px 45px;
    color: #fff;
}

.welcome_section1 .event_txt {
    display: inline-block;
    position: absolute;
    padding: 7px 50px;
    top: 0;
    right: 50%;
    transform: translate(50%, 0);
    border-radius: 0 0 45px 45px;
    color: #fff;
}
.welcome_section2 button:hover {
    background-color: #301a15;
    font-weight: 600;
    color: #fff;
}
.welcome_section2 button {
    padding: 0;
    height: 70px;
    width: 100%;
    border-radius: 8px;
    background-color: #fff5c6;
    border: none;
    font-family: 'Noto Sans KR', 'Spoqa Han Sans', 'Helvetica', 'Arial', sans-serif;
}
.welcome_section1 {
    position: relative;
    background-image: url('/images/noise_bg13.jpg');
    background-repeat: repeat;
    background-position: center;
}
.welcome_section1 .title_area {
    text-align: center;
    font-family: 'GmarketSans';
}
.welcome_section1 .title_area h1 {
    margin-top: 25px;
    margin-bottom: 80px;
    line-height: 1.4;
}
.welcome_section1 .txt_box {
    margin-top: 45px;
    text-align: center;
    font-family: 'GmarketSans';
}
.welcome_section1 .txt_box .title {
    margin-bottom: 20px;
}
.welcome_section1 .txt_box .desc {
    font-weight: 400;
}
.welcome_section1 .img_box {
    text-align: center;
}
.welcome_section2 {
    padding: 30px 15px 40px;
}
.welcome_section2 .scene_swiper_container {
    padding: 0;
}
.welcome_section2 .square_bg {
    background-position: center;
    background-size: cover;
    cursor: pointer;
}
.welcome_section2 .talk_txt {
    margin-top: 15px;
}
.welcome_section3 {
    position: relative;
    background-image: url('/images/noise_bg12.jpg');
    background-repeat: repeat;
    background-position: center;
    text-align: center;
    color: #fff;
}

.welcome_copy_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fff5c6;
}
.welcome_copy_area input {
    padding: 0 15px;
    flex: 0 1 100%;
    max-width: calc(100% - 90px);
    height: 65px;
    background-color: transparent;
    border-radius: 8px;
    border: none;
    color: #fff5c6;
    font-size: 1.25rem;
}
.welcome_copy_area button {
    padding: 0;
    width: 90px;
    flex: 0 0 90px;
    max-width: 90px;
    height: 65px;
    background-color: #fff5c6;
    border: none;
    font-size: 1rem;
}

.welcome_section3 .kakao_link {
    margin-top: 25px;
    padding: 0 40px;
    width: 100%;
    height: 80px;
    background-color: #fff7d0;
    border-radius: 10px;
    border: none;
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: middle;
}
.mobile_br {
    display: none;
}

.join_comp_box {
    padding: 0 60px;
    border: 1px solid #dcdcdc;
    text-align: left;
}
.join_comp_box article {
    padding: 55px 0;	
}
.join_comp_box article + article {
    border-top: 1px solid #dcdcdc;
}
.join_comp_box button {
    margin-top: 25px !important;
    width: 100%;
    font-size: 1rem;
    color: #000;
    font-weight: 400;
}
.join_comp_box button:hover {
    font-weight: 600;
    border-color: #fbb200;
    background-color: #fbb200;
    color: #fff;
}


/* 21.04.30 재성 유튜브 작업 */
.youtube_area {
    position: relative;
    padding-top: 77.25%;
}
.youtube_area iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.main_review_section {
    padding: 0;
}
.main_review_area {
    position: relative;
    padding-bottom: 30px;
}
.reviewSwiper {
    margin-top: 15px;
}
.reviewSwiper .swiper-slide {
    border: 1px solid #b5b6b7;
    border-radius: 8px;
    background-color: #fff;
}
.main_review_list {
    cursor: pointer;
}
.main_review_list_thumb {
    width: 100%;
    padding-top: 66.66%;
    border-radius: 8px 8px 0 0;
    background-color: #f2f2f2;
    background-size: cover;
}
.main_review_list_desc {
    padding: 20px 12px;
}
.main_review_list_desc h6 {}
.main_review_list_desc p {
    margin-top: 5px;
    word-break: break-all;
    text-align: justify;
    letter-spacing: -0.75px;
}
.reviewPaging {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.reviewPaging .swiper-pagination-bullet {
    background-color: #ffd981;
    margin: 0 4px;
}
.reviewPaging .swiper-pagination-bullet-active {
    width: 8px;
    background-color: #ffb200;
}
.main_faq_section {
    padding: 0;
    padding-bottom: 100px;
}
.faq_new {
    display: none;
}
.faq_new ul {
    margin-top: 20px;
    margin-bottom: 20px;
}
.faq_new ul li {
    padding: 10px 15px;
    border: 1px solid #b3b4b5;
    border-radius: 4px;
}
.faq_new ul li + li {
    margin-top: 10px;
}
.faq_new ul li a {
    padding: 10px 0 10px 30px;
    background-image: url('/images/main/faq_ico5.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px auto;
}
.faq_new .more_faq {
    text-align: center;
}
.faq_new .more_faq a {
    display: inline-block;
    border-bottom: 1px solid #000;
    padding-bottom: 3px;
}

.main_banner_area {
    padding: 0;
}
.main_banner_box {
    margin-top: 20px;
    border: 1px solid #b1b1b1;
}
.main_banner_thumb {
    width: 100%;
    padding-top: 56.25%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid #b1b1b1;
}
.banner_thumb01 {background-image: url('/images/main/event/banner01.png');}
.banner_thumb02 {background-image: url('/images/main/event/banner02.png');}
.main_banner_desc {}
.main_banner_desc ul {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main_banner_desc ul li {
}
.main_banner_desc ul li h5 {}
.main_banner_desc ul li p {}
.main_banner_desc ul li a {
    display: block;
    padding: 6px 18px;
    color: #ffbc21;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #ffbc21;
}

.btn_more {
    text-align: center;
}
.btn_more button {
    border: none;
    background-color: transparent;
    font-size: 0.875rem;
}

/* 210705 로그인모달 */
.modal_login_header {
    background-color: #FFF;
}
.modal_login_header .close {
    margin: 15px 15px 0;
    text-shadow: none;
    opacity: 1;
}
.pay_type_area {
    display: flex;
}
.pay_type_area .pay_type_item + .pay_type_item {
    margin-left: 20px;
}
.add_info_box {
    display: flex;
    align-items: center;
}
.add_info_box .title {
    flex: 0 0 100px;
    max-width: 100px;
}
.add_info_box .write_item_ipt {
    flex: 0 1 100%;
    max-width: 100%;
}

/* 210805 결제정보 */
.write_item .btn_yellow {
    width: 120px;
    padding: 15px 0;
    border: none;
    background-color: #fbb200;
    color: #FFF;
}

/* 210820 기부뷰페이지 수정 */
.profile_container {
    padding-top: 70px;
    margin: 40px 0 0;
    border-radius: 20px;
    background-color: #f9f9f9;
}
.profile_box {
    position: relative;
    padding: 40px;
    border-radius: 0 0 20px 20px;
    background-color: #efefef;
}
.profile_box .title {
    margin-top: 10px;
}
.profile_box p {
    margin-top: 10px;
    font-size: 16px;
    color: #888;
}

.manager_img {
    position: absolute;
    top: -39px;
    left: 40px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* 210824 단독기부 */
.web_img {
    display: inline-block;
}
.mobile_img {
    display: none;
}
.single_container {
    max-width: 1030px;
    padding: 0 15px;
    margin: 0 auto;
}
.single_box {
    font-family: 'GmarketSans';
    letter-spacing: -0.1rem;
    text-align: center;
}
.single_box img {
    max-width: 100%;
}
.single_box h1 {
    font-size: 74px;
}
.single_top_top {
    position: relative;
    height: 600px;
    padding: 100px 0;
    background-image: url("/images/donate/single_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #FFF;
}
.single_top_top h1 {
    margin: 30px 0;
}
.single_img_box {
    position: absolute;
    left: 7%;
    right: 0;
    bottom: -30px;
    width: 86%;
    text-align: center;
}


.single_top_bottom {
    padding: 150px 0 120px;
}
.single_square_top {
    position: relative;
    max-width: 860px;
    padding: 110px 0 80px;
    margin: 0 auto;
    border: 4px solid #ffb700;
}
.single_square_top p {
    line-height: 1.5;
}
.badge_title {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 35px 60px 30px;
    font-size: 50px;
    line-height: 1;
    color: #FFF;
    transform: translate(-50%, -50%);
}
.badge_title.yellow {
    background-color: #ffb700;
}
.badge_title.brown {
    background-color: #2c1808;
}
.single_square_top p {
    font-size: 38px;
}

.single_square_middle {
    max-width: 700px;
    padding: 100px 0;
    margin: 0 auto;
}
.single_square_middle p {
    font-size: 34px;
    letter-spacing: -0.05em;
}
.single_circle {
    width: 160px;
    height: 160px;
    margin: 30px auto;
    border-radius: 50%;
    background-color: #ffe19e;
    background-repeat: no-repeat;
    background-position: center;
}
.single_circle.one {
    background-image: url("/images/donate/map_icon.png");
}
.single_circle.two {
    background-image: url("/images/donate/cart_icon.png");
    background-position: left 36px center;
}
.single_circle.three {
    background-image: url("/images/donate/medal_icon.png");
}
.single_circle + span {
    font-size: 24px;
}

.single_square_bottom {
    max-width: 960px;
    padding: 80px 0;
    margin: 0 auto;
    background-color: #fff5df;
}
.single_square_bottom p {
    font-size: 30px;
    line-height: 1.5;
}
.single_square_bottom h2 {
    margin-top: 20px;
    font-size: 52px;
}
.mark_line {
    position: relative;
}
.mark_line::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffca12;
}
.mark_line span {
    position: relative;
    z-index: 1;
}
.mark_line.light::before {
    background-color: #ffe6a5;
}

.single_middle {
    padding-top: 140px;
    background-color: #fef5e4;
}
.single_middle_body {
    position: relative;
    padding: 110px 0 180px;
    margin-top: 100px;
    background-image: url("/images/donate/single_bg_middle.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.single_middle_text {
    font-size: 46px;
    line-height: 1.4;
}

.single_list_container {
    padding: 80px 0 140px;
}
.single_list_top {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
}
.single_list_top span {
    font-size: 42px;
    font-weight: 600;
    color: #FFF;
}
.single_list_top img {
    transform: translateY(24px);
}
.single_list_box {
    padding: 50px;
    border-radius: 15px;
    background-color: #fef5e4;
    text-align: left;
}
.single_list_box li {
    display: flex;
    align-items: center;
    font-size: 32px;
}
.single_list_box li span {
    padding-top: 6px;
}
.single_list_box li::before {
    content: "";
    flex: 0 0 50px;
    max-width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 50%;
    background-image: url("/images/donate/chk_icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffdd92;
}
.single_list_box li + li {
    margin-top: 20px;
}

.single_middle_bottom {
    padding-left: 15px;
    padding-right: 15px;
    color: #FFF;
}
.single_middle_bottom h1 {
    display: inline-block;
    margin-bottom: 25px;
    padding: 30px 40px 15px;
    border-top: 5px dashed #fff;
    border-bottom: 5px dashed #fff;
    line-height: 1.2;
}
.single_middle_bottom p {
    font-size: 38px;
    line-height: 1.5;
    color: #2c1808;
}
.numbering {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFF;
    font-size: 24px;
    line-height: 2.4em;
    color: #2c1808;
}
.single_img_container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 80px auto 50px;
}
.single_img_content {
    margin-top: 80px;
}
.single_img_content p {
    margin: 30px 0;
    font-size: 32px;
    font-weight: 600;
}
.single_img {
    padding-top: 75%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.single_img.one {
    background-image: url("/images/donate/single_img1.png");
}
.single_img.two {
    background-image: url("/images/donate/single_img2.png");
}
.single_img.three {
    background-image: url("/images/donate/single_img3.png");
    background-position: center top -75px;
}
p.single_caption {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 400;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.single_bottom {
    padding: 150px 0;
    background-color: #fef5e4;
}
.single_bottom p {
    font-size: 34px;
}
.link_email {
    display: block;
    max-width: 800px;
    padding: 20px;
    margin: 50px auto;
    background-color: #FFF;
    font-size: 32px;
    color: #2c1808;
    word-break: break-word;
    letter-spacing: 0.5px;
}
.link_email span::before {
    content: "";
    display: inline-block;
    width: 61px;
    height: 36px;
    margin-right: 30px;
    background-image: url("/images/donate/letter_icon.png");
    background-repeat: no-repeat;
    vertical-align: middle;
}
.btn_inquiry {
    display: inline-block;
    padding: 20px;
    width: 280px;
    border: none;
    font-size: 34px;
    font-weight: 600;
}
.btn_inquiry:hover {
    color: #FFF;
}

.single_form_container {
    max-width: 600px;
    padding-bottom: 30px;
    margin: 0 auto;
}
.single_input_box {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.single_input_box label {
    flex: 0 0 100px;
    max-width: 100px;
}
.single_input_box input,
.single_input_box textarea {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 13px 15px 10px;
    border: none;
}
.single_input_box textarea {
    resize: none;
}
.single_privacy_chk {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 30px;
}
.single_privacy_chk h4 {
	margin-bottom: 20px;
}
.single_privacy_chk ul {}
.single_privacy_chk ul li {
	margin-bottom: 10px;
	text-align: left;
}
.single_privacy_chk label p {
	font-size: 1rem;
	margin :  0 !important;
}

.customoverlay {
    float:left;
    position: relative;
    bottom: 85px;
    left: auto;
    border: 1px solid #ccc;
    border-radius: 6px;
    border-bottom: 2px solid #ddd;
}
.customoverlay:nth-of-type(n) {
    border: 0; 
    box-shadow: 0px 1px 2px #888;
}
.customoverlay a {
    display: block;
    text-decoration: none;
    color: #000;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    background: #fbb200;
    background: #fbb200 url('https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/arrow_white.png') no-repeat right 14px center;
}
.customoverlay .title {
    display: block;
    text-align: center;
    background: #fff;
    margin-right: 35px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
}
.customoverlay::after {
    content: '';
    position: absolute;
    margin-left: -12px;
    left: 50%;
    bottom: -12px;
    width: 22px;
    height: 12px;
    background: url('https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/vertex_white.png');
}

.donate_thumb_swiper_next,
.donate_thumb_swiper_prev {
    width: 21px;
    height: 36px;
    background-size: 8px 13px;
    background-color: rgba(0, 0, 0, 0.5);
}
.donate_thumb_swiper_next {
    right: 0;
}
.donate_thumb_swiper_prev {
    left: 0;
}

/* 단독기부 210927 */
.subs_banner.on {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
}

.subs_container h1,
.subs_container h2,
.subs_container h2 + p {
    font-family: 'GmarketSans';
}
.subs_container h2 {
    font-size: 50px;
    line-height: 1.4;
}
.subs_container h2 + p {
    margin-top: 50px;
    font-size: 20px;
    line-height: 1.5;
}

.subs_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 27px;
    border-bottom: none;
}
.subs_header h1 {
    font-size: 30px;
}
.subs_header button {
    padding: 15px 30px;
    border-radius: 10px;
}

.subs_section {
    padding: 100px 0;
}

.subs_section.bgi {
    padding: 100px 0 350px;
    background-repeat: no-repeat;
    background-size: 500px;
}

.subs_section.first {
    background-image: url("/images/donate/calendar.png");
    background-position: right 770px bottom -30px;
    background-color: #fff0d2;
}

.direct_arrow {
    position: relative;
    left: -15px;
    width: 430px;
    padding: 10px 20px 0;
    background-color: #ffdd92;
}
.direct_arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -160px;
    border-top: 90px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 90px solid #ffdd92;
    border-left: 70px solid transparent;
    transform: translateY(-50%) rotate(90deg);
}

.subs_section.second {
    background-color: #ffdd92;
}
.subs_section.second h2 {
    margin-bottom: 50px;
}

.container_mockup {
    max-width: 790px;
    padding: 0 15px;
    margin: 0 auto;
}
.mockup {
    padding: 30px;
    border-radius: 60px;
    background-color: #efefef;
}
.mockup_bg {
    position: relative;
    padding: 100px 35px 80px;
    border-radius: 60px;
    background-color: #fff;
}
.mockup_bg::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    width: 50%;
    height: 50px;
    border-radius: 20px;
    background-color: #efefef;
    transform: translateX(-50%);
}

.subs_form .coin_btn_area.six .btn_wrap {
    flex: 0 0 16.66666666666667%;
    max-width: 16.66666666666667%;
}
.subs_form .coin_btn_area.six .btn_wrap:last-child button {
    background-color: #fff;
}
.subs_form .coin_bt_btn_area.one .btn_wrap {
    flex: 0 0 100%;
    max-width: 100%;
}
.subs_form .coin_bt_btn_area button {
    border-color: #d2d2d2;
}
.subs_form .btn_monthly {
    display: flex;
    justify-content: center;
    align-items: center;
}
.subs_form .btn_monthly p {
    margin-left: 10px;
}
.subs_btn_group input {
    display: none;
}
.subs_btn_group span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    margin: 5px 0;
    margin-right: 15px;
    border: 2px solid #f4f4f4;
    border-radius: 30px;
    background-color: #f4f4f4;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}
.subs_btn_group label:last-child span {
    margin-right: 0;
}
.subs_btn_group input:checked + span {
    border: none;
    background-color: #ffdd92;
}
.subs_btn_group input:checked + span::before {
    content: "";
    display: block;
    width: 17px;
    height: 15px;
    margin-right: 10px;
    background-image: url("/images/donate/chk_icon_orange.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.subs_btn_group.disabled span {
    border: 1px solid #CCC;
    background-color: #fff;
    color: #CCC;
}
.subs_btn_group.disabled input:checked + span {
    border: none;
    background-color: #CCC;
    color: #FFF;
    cursor: default;
}
.subs_btn_group.disabled input:checked + span::before {
    background-image: url("/images/donate/chk_icon_white.png");
}

.subs_info {
    padding: 30px 40px;
    margin-top: 40px;
    border-radius: 10px;
    background-color: #f2f2f2;
}
.subs_info p {
    margin: 5px 0;
}

.subs_form .btn_common {
    width: 100%;
    padding: 20px;
    margin: 15px 0;
    font-size: 16px;
}

.subs_section.third {
    background-color: #fff0d2;
    text-align: center;
}
.subs_section.third h2 {
    display: inline-block;
    padding: 17px 20px 10px;
    border-radius: 5px;
    background-color: #ffdd92;
}

.subs_process {
    display: flex;
    justify-content: center;
    padding: 100px 0 50px;
}
.subs_process li {
    position: relative;
}
.subs_process li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    width: 100px;
    height: 50px;
    background-color: #c0d8fb;
    transform: translateY(-70%);
}
.subs_process .numbering {
    position: absolute;
    top: -25px;
    left: 50%;
    background-color: #61a7f9;
    line-height: 2;
    color: #FFF;
    transform: translateX(-50%);
    z-index: 20;
}
.process_circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 20px;
    border: 2px solid #61a7f9;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    z-index: 10;
}
.process_circle.one {
    background-image: url("/images/donate/note.png");
}
.process_circle.two {
    background-image: url("/images/donate/dollar.png");
}
.process_circle.three {
    background-image: url("/images/donate/dollar_process.png");
}
.process_circle.four {
    background-image: url("/images/donate/mobile.png");
}
.process_circle + h3 {
    margin-top: 10px;
    font-size: 24px;
    color: #61a7f9;
}

.subs_process_list {
    padding: 0 50px;
}
.subs_process_list li {
    display: flex;
    align-items: center;
    margin: 30px 0;
}
.subs_process_list h3 {
    flex: 0 0 200px;
    max-width: 200px;
    padding: 15px;
    margin-right: 20px;
    border-radius: 5px;
    background-color: #61a7f9;
    font-size: 20px;
    color: #FFF;
}
.subs_process_list p {
    flex: 0 1 100%;
    max-width: 100%;
    font-size: 18px;
    text-align: left;
}

.subs_section.fourth {
    background-image: url("/images/donate/cart.png");
    background-position: right 50% bottom;
    background-size: 600px;
    background-color: #f2f2f2;
}

.subs_section.fifth {
    padding-bottom: 400px;
    background-image: url("/images/donate/mobile_talk.png");
    background-position: right 770px bottom -1px;
    background-color: #ffdd92;
}

.subs_section.sixth {
    padding: 130px 0;
    background-image: url("/images/donate/note_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.subs_section.sixth h2 {
    text-align: center;
}

.talk_group {
    width: 550px;
    margin: 30px 0;
}
.talk_group.left {
    margin-right: auto;
}
.talk_group.right {
    margin-left: auto;
}
.talk_group h4 {
    margin-bottom: 10px;
    font-family: 'kcc';
    font-size: 24px;
}
.talk_group.right h4 {
    text-align: right;
}

.img_bubble {
    height: 300px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.text_bubble {
    position: relative;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #ffdd92;
}
.text_bubble::before {
    content: "";
    position: absolute;
    top: 10px;
    border-top: 30px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid #ffdd92;
    border-left: 15px solid transparent;
}
.talk_group.left .text_bubble::before {
    left: -45px;
    transform: rotate(-90deg);
}
.talk_group.right .text_bubble::before {
    right: -45px;
    transform: rotate(90deg);
}

.underline {
    margin-top: 100px;
    font-family: 'kcc' !important;
}
.underline span {
    position: relative;
}
.underline span::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 10px;
    background-color: #fbb200;
    opacity: 0.4;
}

.subs_section.seventh {
    padding: 150px 0;
}

.faq_box {
    margin: 80px 0;
}

.faq_box + .btn_common {
    display: block;
    width: 500px;
    padding: 20px;
    margin: 0 auto;
    font-size: 18px;
    text-align: center;
}
.faq_box + .btn_common:hover {
    color: #FFF;
}

.kakao_mark {
    position: relative;
}
.kakao_mark::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 90px;
    width: 50px;
    height: 20px;
    background-image: url("/images/donate/icon_kakaopay.png");
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.subs_form .subs_submit_btn {
    margin-top: 80px;
    text-align: center;
}
.subs_form .subs_submit_btn .btn_common {
    width: 240px;
    margin: 0 5px;
}
.subs_form .subs_submit_btn .btn_modify {
    border-color: #fff0d2;
    background-color: #fff0d2;
    color: #000;
}
.btn_quit {
    display: block;
    margin: 15px auto;
    border: none;
    background-color: transparent;
    font-size: 12px;
    color: #999;
}

.subs_form .with_help,
.subs_form .with_help + .help_text {
    display: inline-block;
}
.subs_form .with_help + .help_text {
    margin-left: 10px;
}

.subs_table > h4 {
    margin-bottom: 30px;
}
.subs_table > span {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}
.subs_table .table th,
.subs_table .table td {
    text-align: center;
}
.subs_table .table th {
    border-top: 1px solid #000;
    border-bottom: 1px solid #dfdfdf;
}

li.agree_row {
    padding: 20px 10px;
    border-top: 1px dotted #CCC;
    border-bottom: 1px dotted #CCC;
}
.agree_chk {
    display: flex;
    cursor: pointer;
}
.agree_chk input {
    display: none;
}
.agree_chk input + span {
    width: 25px;
    height: 25px;
    border: 1px solid #dfdfdf;
}
.agree_chk input:checked + span {
    border-color: #fbb200;
    background-image: url("/images/donate/chk_icon.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
    background-color: #fbb200;
}
label.agree_chk h6 {
    margin-left: 15px;
}

li.agree_row.disabled .agree_chk {
    cursor: default;
}

.header_link {
    display: block;
    padding: 15px 0;
    margin-bottom: 20px;
    border: 1px solid;
    text-align: center;
    font-size: 14px;
}
.subscription_btn {
    margin-left: 8px;
    padding: 1px 6px;
    background-color: #fbb200;
    border: 1px solid #fbb200;
    border-radius: 20px;
    color: #000;
    font-size: 9px;
}
.subscription_btn_area button {
    display: block;
    width: 100%;
    padding: 15px 20px;
}

.text_yn {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    color: #999;
}
.birthday_img {
    width: 809px;
    max-width: 100%;
    margin: 0 auto 30px;
}
.birthday_img img {
    display: block;
    max-width: 100%;
    height: auto;
}
.birthday_review {
    margin: 0 auto;
    padding: 0 30px 60px;
    max-width: 768px;
}
.birthday_review .title {
    font-family: 'GmarketSans';
    font-weight: 600;	
}
.birthday_review_ipt_wrap {
    display: flex;
    padding: 20px 0;
    align-items: center;
}
.birthday_section .thumb_img {
    display: block;
    margin-right: 15px;
    flex: 0 0 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    background-image: url('/images/profile.jpg');
    background-color: #fbfbfb;
    background-position: center;
    background-size: cover;
}
.birthday_review_ipt_box {
    display: flex;
    flex: 0 1 100%;
    max-width: calc(100% - 55px);
    border: 1px solid #dbdbdb;
    border-radius: 4px;
}
.birthday_review_ipt_box > input {
    padding: 0 15px;
    flex: 0 1 100%;
    max-width: calc(100% - 70px);
    height: 50px;
    border: none !important;
    border-radius: 0;
    outline: none !important;
    background-color: #fff !important;
}
.birthday_review_ipt_box > button {
    flex: 0 0 70px;
    max-width: 70px;
    height: 50px;
    outline: none !important;
    border: none !important;
    background-color: #fff !important;
    color: #ffb700;
}
.birthday_review_wrap {
    display: flex;
    padding: 20px 0;
    align-items: flex-start;
}
.birthday_review_box {
    flex: 0 1 100%;
    max-width: calc(100% - 55px);
}
.birthday_review_box .name_area {
    display: flex;
    margin-bottom: 8px;
    align-items: center;
}
.birthday_review_box .name_area .name {
    line-height: 1;
    font-weight: 600;
}
.birthday_review_box .name_area .controller_area {
    margin-left: 10px;
}
.birthday_review_box .name_area .controller_area button {
    padding: 1px 5px;
    font-size: 0.75rem;
}
.birthday_review_box > .contents {
    margin-bottom: 8px;
    line-height: 1.2;
    font-size: 1.125rem;
}
.birthday_review_box > .mod_contents {
    display: none;
    margin-bottom: 8px;
}
.birthday_review_box > .review_info {
    line-height: 1;
    font-size: 1rem;
    color: #757575;	
}
.birthday_review_box .mod_contents .birthday_review_ipt_box {
    max-width: 100%;	
}
.birthday_review_box.on .contents {
    display: none;
}
.birthday_review_box.on .mod_contents {
    display: block;
}
.thirdbirth_area {
    width: 730px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
.thirdbirth_area img {
    max-width: 100%;
}
.thirdbirth_img_box img {
    display: block;
}
.thirdbirth_vote {
    text-align: center;
}
.thirdbirth_vote label {
    display: block;
}
.thirdbirth_vote label p {
    font-size: 18px;
    font-weight: 600;
}
.thirdbirth_vote button {
    border: none;
}
.thirdbirth_vote button:hover {
    border: none;
    background: none;
}
.thirdbirth_vote button:focus {
    outline: 0;
}

/* 센터등록 */
.reg_center_section_title {
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
}
.reg_center_section_title .subtitle {
    color: #4c4c4c;	
    font-weight: 400;
    font-size: 1.625rem;
}

.reg_center_banner {
    padding-top: 80px;
    padding-bottom: 80px;
}
.reg_center_banner .title_box,
.reg_center_banner .desc_box {
    padding: 20px;
}
.reg_center_banner .desc_box ul {
    padding: 15px 0;
}
.reg_center_banner .desc_box > * {
    line-height: 2;	
}
.lg_ipt_area {
    padding: 60px 0;
}
.lg_ipt_row {
    padding: 40px 0;
}
.lg_ipt_title {
    padding-bottom: 20px;
}
.lg_ipt_title .title {
    padding-bottom: 5px;
}
.lg_ipt_title .desc {
    font-weight: 400;
}
.lg_ipt_title .sub_desc {
    font-size: 0.75rem;
    color: #999;
}
.lg_ipt_title > ul {
    margin-top: 5px;
    font-size: 0.875rem;
}
.lg_ipt_title > ul li {
    padding: 2px 0;
}
.lg_ipt_item > input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    font-size: 0.875rem;
}
.lg_ipt_item > textarea {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    min-height: 150px;
    border-radius: 0;
    border: 1px solid #e6e6e6;
    background-color: #fff;
    font-size: 0.875rem;
    resize: none;
}
.custom_file_uploader {
    display: block;
    width: 100%;
}
.custom_file_uploader > input {
    display: none;
}
.custom_file_uploader > .inner_box {
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
}
.custom_file_uploader > .inner_box.no_file {
    color: #999;
}
.custom_file_uploader > .inner_box > span {
    display: block;
    padding: 8px 15px;
    flex: 0 0 80px;
    max-width: 80px;
    background-color: #777;
    border-radius: 3px;
    color: #fff;
    font-size: 0.75rem;
}
.reg_center_photo_info .bt_line_title {
    margin-bottom: 20px;
}
.reg_center_photo_info_title {
    padding: 40px 0 20px;	
    text-align: center;
    font-family: 'GmarketSans';
}
.reg_center_photo_info_title img {
    display: block;
    margin: 0 auto 10px;
}
.reg_center_photo_info_banner {
    display: flex;
    margin-bottom: 15px;
    padding: 30px 65px;
    background-color: #fffbf2;
}
.reg_center_photo_info_banner > h4 {
    padding: 10px 20px;
    flex: 0 0 130px;
    max-width: 130px;
    font-family: 'GmarketSans';

}
.reg_center_photo_info_banner > ul {
    padding: 10px 20px;
    flex: 0 1 100%;
    max-width: 100%;
    font-size: 0.875rem;
}
.reg_center_photo_info_banner > ul li {
    padding: 2px 0;
    letter-spacing: -1px;
}
.reg_center_photo_info article {
    padding: 25px 0;
}
.reg_center_photo_info article img {
    margin: 10px 0;
    width: 100%;
}
.lg_ipt_item.chk_area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.lg_ipt_area button {
    padding: 13px 25px;
    border-radius: 3px;
}
.lg_ipt_item.chk_area .custom_chk {
    margin-right: 10px;
}
.lg_ipt_area .custom_chk input[type=checkbox] + span {
    width: 18px;
    height: 18px;
    border: 2px solid #777;
    border-radius: 3px;
}
.custom_chk input[type=checkbox]:checked + span {
    border-color: #fdb500;
    background-color: #fdb500;
}
.custom_chk input[type=checkbox]:checked + span::before {
    content: '';
    display: block;
    position: absolute;
    margin-top: -4px;
    margin-right: -5px;
    top: 50%;
    right: 50%;
    width: 10px;
    height: 5px;
    background-color: transparent;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.custom_chk input[type=radio] + span {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #bbb;
    border-radius: 100%;
    vertical-align: middle;
}
.custom_chk input[type=radio]:checked + span {
    border-color: #fdb500;
}
.custom_chk input[type=radio]:checked + span::before {
    margin-top: -4px;
    margin-right: -4px;
    width: 8px;
    height: 8px;
}
.ipt_btn_flex {
    display: flex;
    align-items: center;
}
.ipt_btn_flex > input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    font-size: 0.875rem;
}
.ipt_btn_flex > * + * {
    margin-left: 15px;
}
.ipt_btn_flex button {
    padding: 11px 25px;
    border-radius: 3px;
}
.ipt_btn_flex + div,
.ipt_btn_flex + .ipt_btn_flex {
    margin-top: 15px;
}

.cropper_area {
	overflow: hidden;
	width: 250px; 
	height: 250px;
}
.pay_kakao_btn_area button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid #fbb200;
    background-color: #fbb200;
    color: #fff;
    border-radius: 30px;
}

.inner_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner_header .title_txt {
    display: flex;
    align-items: center;
}

.crop_modal .modal-content {
    border: none;
    border-radius: 10px;
}
.crop_modal .modal-body {
    padding: 25px 30px;
}
.crop_area {
    margin: 20px 0;
}
.crop_modal .btn_area {
    text-align: center;
}
.crop_modal .btn_area button {
    width: 125px;
    height: 50px;
    padding: 0;
    border-radius: 3px;
    font-size: 1.125rem;
}
.crop_modal .btn_area button + button {
    margin-left: 5px;
}
.photo_result {
    margin-top: 20px;
}

.sticky {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 100;
}
.children_event {
    text-align: center;
}

.children_event_float  {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}
.children_event_form {
    position: relative;
    width: 100%;
    max-width: 768px;
    padding: 50px 0;
    margin: 0 auto;
    background-color: #fff6e3;
}
.children_event_form form {
    margin: 0 auto;
    width: 360px;
    max-width: 100%;
}
.children_event_form .custom_chk {
    display: block;
}
.children_event_form .custom_chk + .custom_chk {
    margin-top: 10px;
}
.children_event_form .custom_chk input {
    display: none;
}
.children_event_form .custom_chk input[type=radio] + span {
    display: inline-block;
    position: relative;
    width: 26px;    
    height: 26px;   
    border: 2px solid #ff810d;
    border-radius: 100%;
    vertical-align: middle;
    background-color: #fff;
}
.children_event_form .custom_chk input[type=radio]:checked + span:before {
    content: '';
    display: block;
    position: absolute;
    margin-top: -5px;
    margin-right: -5px;
    top: 50%;
    right: 50%;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #ff810d;
}
.children_event_form .custom_chk p {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    font-family: 'GmarketSans';
    font-size: 22px;
    font-weight: 600;
    color: #4c3400;
}
.children_event img,
.children_event_float img {
    max-width: 100%;
    height: auto;
}
.children_event_btn {
    margin-top: 20px;
}
.children_event_btn button {
    display: block;
    margin: 0 auto;
    width: 305px;
    height: 149px;
    text-indent: -9999px;
    background: none;
    background-image: url('/images/children/submitbtn.png');
    background-size: 305px 149px;
    border: none;
}
.children_event_btn button:focus {outline: 0;}
.children_complete {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}
.children_complete:after {
    content: '';
    width: 100%;
    height: 100%;
}
.children_complete p {
    position: absolute;
    color: #fff;
    font-size: 36px;
    font-family: 'GmarketSans';
    font-weight: 600;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    line-height: 1.4;
}

.pdf_btn_area {
    margin-top: 20px;
    text-align: right;
}
.pdf_btn_area .btn_common {
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.sign_area {
    position: relative;
}
.sign_area strong {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 22px;
    color: rgba(253, 181, 0, 0.5);
    transform: translate(-50%, -50%);
}
.btn_reset {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 150px;
    height: 50px;
    padding: 0 !important;
    border: none;
    background-color: transparent;
    color: #999;
}
.btn_reset:focus {
    outline: none;
}
.btn_reset span::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-image: url('/images/icon/icon_reset.png');
    background-repeat: no-repeat;
    vertical-align: middle;
}
.alert_btn_area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #424242;
    background-color: #fff;
}
.alert_btn_area.on {
    border-color: #ccc;
    background-color: #f0f0f0;
}
.alert_btn_area > img {
    margin-right: 4px;
    display: block;
    width: 18px;
    height: auto;
}
.alert_btn_area span {
    display: block;
    color: #424242;
    font-size: 16px;
}

.join_container {
    max-width: 540px;
    padding: 80px 85px;
    margin: 0 auto;
    background-color: #FFF;
}
.header_with_caption {
    margin-bottom: 38px;
    text-align: center;
}
.header_with_caption > span {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
.header_with_caption h3 {
    font-size: 28px;
    font-weight: 500;
}
.circle_lock_img {
    display: block;
    width: 141px;
    height: 141px;
    margin: 0 auto;
    border-radius: 50%;
    background-image: url('/images/icon/img_lock.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    background-color: #FFFAEC;
}
.dormant_text {
    margin-top: 38px;
    margin-bottom: 30px;
    text-align: center;
}
.login_btn_group {
    margin-top: 25px;
}
.btn_full {
    width: 100%;
    height: 55px;
    border: 0;
    border-radius: 10px;
    background-color: #FDBC19;
    color: #FFF;
}


.event_img_box {
    width: 700px;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
}
.event_img_box img {
    max-width: 100%;
    height: auto;
}


/* 친구초대 이벤트 */
.invite_event_header {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    background-color: #382A1E;
    overflow: hidden;
}
.coin01 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-280%);
}
.coin02 {
    position: absolute;
    bottom: -70px;
    right: 40px;
}
.coin03 {
    position: absolute;
    top: -50px;
    left: 40px;
}

.invite_event_footer {
    padding-top: 100px;
    padding-bottom: 180px;
    background-color: #35271A;
}
.event_title_area {
    position: relative;
    padding: 0 20px;
    text-align: center;
}
.event_title_area .badge_area {
    margin-bottom: 40px;
}
.event_title {}
.event_title img {
    max-width: 100%;
}
.invite_box {
    position: relative;
    margin-top: 120px;
    padding: 100px 80px;
    background-repeat: repeat-x;
    background-position: top;
    background-color: #FFF;
}
.invite_box + .invite_box {
    margin-top: 20px;
}
.invite_box.bg_arr:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #382A1E;
    background-image:url('/images/event/invite/arrow.png');
    background-repeat: repeat-x;

}
.invite_box .badge_area {
    margin-bottom: 34px;
}
.invite_box h1 {
    margin-bottom: 24px;
}
.invite_table {
    margin-top: 60px;
    border: 2px solid #FFCA0E;
    border-radius: 20px;
    overflow: hidden;
}
.invite_table table {
    width: 100%;
    border-collapse: collapse;
}
.invite_table table th {
    padding: 20px 20px;
    background-color: #FFF9E2;
}
.invite_table table td {
    padding: 40px 20px;
}
.invite_table + .invite_table {
    margin-top: 20px;
}
.invite_table img + img {
    margin-top: 10px;
}
.invite_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}
.invite_btn .kakao_link {
    width: 100%;
    padding: 34px 40px;
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    background-color: #382A1E;
    border: 1px solid #382A1E;
    border-radius: 12px;
}
.invite_btn .url_copy {
    color: #999;
    font-weight: 700;
    text-decoration: underline;
    background: none;
    border: none;
}
.invite_icon {}
.invite_icon img {
    display: block;
    margin: auto;
    width: 140px;
    height: 140px;
}
.invite_event_footer .index_faq_area {
    margin: 0;
    padding: 0;
    color: #FFF;
    background: none;
}
.event_desc_list {
    margin-top: 40px;
}
.event_desc_list ul {}
.event_desc_list ul li {
    font-size: 0.875rem;
    text-align: left;
    color: #9b9b9b;
}
.invite_event_header .container_md,
.invite_event_footer .container_md {
    max-width: 780px;
}
.invite_box.text_center {
    text-align: center;
}
.invite_box .highlight {
    font-size: inherit;
}
.badge_area {
    display: flex;
    align-items: center;
    gap: 8px;
}
.badge_area.center {
    justify-content: center;
}
.badge {
    padding: 4px 12px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.192px;
    background-color: #FFCA10;
    color: #FFF;
    border-radius: 20px;
}
.badge_area.lg .badge {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    color: #FFF;
    font-weight: 700;
    border-radius: 50px;
}
.badge.black {
    background-color: #000 !important;
}
.badge.light {
    color: #FFCA10 !important;
    background-color: #FFF5D0 !important;
}
.badge.brown {
    background-color: #5F4934 !important;
}
.index_faq_area {
    margin-top: 40px;
    padding: 50px 0;
    background-color: #FFF;
    border-radius: 16px;
}
.index_faq_area ul {
    margin: 0 auto;
    max-width: 740px;
}
.index_faq_area ul li {
    padding: 32px 0;
    
}
.index_faq_area ul li + li {
    border-top: 1px solid #ECECEC;
}
.faq_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.faq_body {
    display: none;
    margin-top: 20px;
}
.toggleListTop .btn_ico {
    display: inline-block;
    font-size: 0 !important;
    width: 16px;
    height: 16px;
    background: none;
    background-image: url(/images/ico/arrow/arrow_gray_down.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
}
.fourth_vote_box {
    text-align: center;
    width: 700px;
    margin: 0 auto;
    max-width: 100%;
    padding: 50px 68px;
    position: relative;
    background-color: #ffe269;
}
.fourth_vote_area {
    position: relative;
    padding: 50px 50px;
    border: 4px solid #512c12;
    text-align: left;
}
.fourth_vote_area > img {
    position: absolute;
    top: 0;
    left: 0;
}
.fourth_vote_list {
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.fourth_vote_list label p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #512c12;
}
.fourth_vote_box button {
    margin: 30px auto 0;
    padding: 14px 30px;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFF;
    background-color: #512c12;
    border-radius: 50px;
}

.fourth_private_area {
    position: relative;
    padding: 50px 130px;
    background-color: #ff7e27;
}
.fourth_info_box {
    position: relative;
    padding: 50px 50px 80px;
    background-color: #FFF;
}
.fourth_info_box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #ff7e27;
    background-image: url(/images/event/invite/arrow.png);
    background-repeat: repeat-x;
}
.fourth_info_box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #ff7e27;
    background-image: url(/images/event/invite/arrow.png);
    background-repeat: repeat-x;
    rotate: 180deg;
}
.fourth_info_box span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 30px;
    background-color: #000;
    color: #FFF;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 3px;
    font-weight: 600;
}
.fourth_info_box ul {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed #000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fourth_info_box ul li {
    font-size: 1.125rem;
    font-weight: 500;
}

