@charset "utf-8";

:root {
  --layer-popup-close-btn-color: #468cff;
  --layer-popup-confirm-btn-color: #468cff;
  --layer-popup-cancel-btn-color: #828993;
}

#wrap.home { overflow-x: hidden;}

.hide { display:none!important;}

#loadingModal { position:fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1200;}
#loadingModal .inner-overlay { opacity: 1; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.4); z-index: 998; transition-delay: .1s;}
#loadingModal.off { display: none;}
#loadingModal.off .inner-overlay { width: 0; opacity: 0; transition-delay: 0s;}

.spinner-wrap { height: 100%; display: flex; justify-content: center; align-items: center;}
.spinner { width: 80px; height: 80px; border: 12px #fff solid; border-top: 12px solid #468cff; border-radius: 50%; animation: spinner-wrap-anime 0.8s infinite linear; z-index: 1200;}
@keyframes spinner-wrap-anime {
  100% {
    transform: rotate(360deg);
  }
}
.loading-overlay { position: fixed; top: 0; left: 0; width: 0; height: 0; background: rgba(0, 0, 0, 0.4); z-index: 998; opacity: 0; transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);}
.loading-overlay.on { width: 100vw; height: 100vh; opacity: 1; transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);}

.loading-overlay2 { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; opacity: 1; background: rgba(0, 0, 0, 0.4); z-index: 998; transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);}
.loading-overlay2.off { width: 0; height: 0; opacity: 0; transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);}

._side-bar { width: 100%; position: fixed; top: 0; left: -100%; height: 100vh; z-index: 999; background: #fff; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: scroll;}
._side-bar .innerConts { margin-bottom: 40px;}
._side-bar.on { left: 0;}
._side-bar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
._side-bar-overlay.on {
  width: 100vw;
  height: 100vh;
  opacity: 1;
  transition: opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.tc_yellow_f {color:#eda822!important;}

.float-layer { position: fixed; display:flex; visibility: hidden; width: 100%; height: 100%; top: 0; left: 0; align-items: center; justify-content: center;}
.float-layer .inner { background-color: #fff; opacity: 0; box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5); z-index: 2000001; width: 90%; max-width: 380px; transition: all .2s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(10vh); border-radius: .5rem;}
.float-layer .inner-overlay { opacity: 0; position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.4); z-index: 1900000;  transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1);}
.float-layer.on { visibility: visible; z-index: 2000000;}
.float-layer.on .inner { transform: translateY(0vh); opacity: 1;}
.float-layer.on .inner-overlay { opacity: 1; transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1);}

.float-layer .message { padding: 30px; font-size: 14px; text-align: center;}
.float-layer .message ul li {height:20px;line-height:20px;}
.float-layer .message .item_title {font-weight:900;}
.float-layer .message .align_left {text-align:left}
.float-layer .message .align_right {text-align:right}
.float-layer .title-area { display: flex; width: 100%; height: 50px; text-align: center; line-height: 50px; font-size: 15px; font-weight: 500; color:#468cff; overflow: hidden; border-bottom: 1px solid #e2e7ee;}
.float-layer .title-area .title {width:100%;text-align:center}
.float-layer .btn-area { display: flex; width: 100%; height: 50px; line-height: 50px; font-size: 15px; font-weight: 500; overflow: hidden; border-top: 1px solid #e2e7ee;}
.float-layer .btn-area a { width: 100%; float: left; text-align: center; border-left: 1px solid #e2e7ee; text-decoration: none; font-weight: 600;}
.float-layer .btn-area a:first-child { border-left: none;}
.float-layer .btn-area .btn-cancel { color: var(--layer-popup-cancel-btn-color);}
.float-layer .btn-area .btn-confirm { color: var(--layer-popup-confirm-btn-color);}
.float-layer .btn-area .btn-close { color: var(--layer-popup-close-btn-color);}

.daumSearchZonecodeWrap { position: fixed; display:flex; width: 100%; height: 100%; top: 0; left: 0; align-items: center; justify-content: center; z-index: 1100;}
.daumSearchZonecodeWrap .search-inner { -webkit-overflow-scrolling:touch; background-color: #fff; opacity: 0; box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5); z-index: 1001; width: 80%; max-width: 560px; margin: 0 auto; height: 466px; transition: all .2s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(10vh);}
.daumSearchZonecodeWrap .inner-overlay { opacity: 0; position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.4); z-index: 998; transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1);}
.daumSearchZonecodeWrap.on .search-inner { transform: translateY(0vh); opacity: 1; z-index: 1000;}
.daumSearchZonecodeWrap.on .inner-overlay { opacity: 1; transition-delay: 0s;}

.fullsize-iframe {
  overflow:hidden;
  overflow-x:hidden;
  overflow-y:hidden;
  height:0vh;
  width:100%;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  bottom:0;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  transition: .2s all;
}
.fullsize-iframe.on {
  top: 0;
  height:100%;
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.main-category-wrap { margin-top: 20%; position: relative;}
.main-category-wrap .swiper-slide { font-size: 18px; cursor: pointer; align-self: self-end; width: auto; white-space: nowrap; padding: 8px 12px;}
.main-category-wrap .swiper-slide.on { background: rgb(255, 246, 190); color: rgb(212, 196, 99); font-weight: 600; border-radius: 10px;}
.main-cate-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 42px;
  background: -webkit-gradient(linear,left top,right top,color-stop(16.66%,#fff),color-stop(100%,rgba(255,255,255,0)));
  z-index: 2;
}
.main-cate-next {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 42px;
  background: -webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,0)),color-stop(60%,#fff));
  z-index: 2;
}
#divMainItemList { margin-top:0!important;}
#divMainItemList  div:first-child { margin-top: 0!important;}

.main-policy-conts { border-bottom: 1px solid #eee; padding-bottom: 20px;}
.main-policy-conts ul { display: flex; flex-flow: wrap; line-height: 2; justify-content: center;}
.main-policy-conts ul li { padding-right: 10px; cursor: pointer;}
.main-policy-conts ul li.sep { color: #999;}
.main-policy-conts ul li:last-child { padding-right: 0;}

._js-check-real-name { cursor:pointer;}

.campaign-tag .heart-sns { background:url(/assets/app/img/heart-off.png) center no-repeat; width:28px; height:24px; background-size:28px 24px; color:#ff685b; font-size:11px; display: flex; justify-content: center; align-items:center; font-weight:600; margin-right:5px; cursor: pointer;}
.campaign-tag .heart-sns.on { background:url(/assets/app/img/heart-on.png) center no-repeat; background-size:28px 24px; color: #fff;}

/*#divCampaignList .box_Btype:first-child { margin-top: 0;}*/
.fund-step.cash span { display:inline-block; width:33.333333%; box-sizing:border-box; font-weight:600;}
.select-location { position: absolute; top: 21px; right: 0; margin-right: 46px;}
.map-filter-txt span span { display:inline;}
.header-login.__member span { padding: 0 16px;}
.prev-btn-not-btn { position:absolute; left:24px; top:10px;background:url(/assets/app/img/btn_back.png) left center no-repeat; width:34px; height:34px; background-size:9px 16px;}
.prev-btn-not-btn a { display:block; width:34px; height:34px;}

.map-btn.on { position:absolute; right:12px; top:10px;background:url(/assets/app/img/map.png) center no-repeat; width:40px; height:38px; background-size:16px 20px;}
._js-attendance-month { color: #fff!important;}
._js-attendance-month.tc_999 { color: #999!important;}

#divCompleteAttndance .dim { top: 0; opacity: 0; visibility: hidden; transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);}
#divCompleteAttndance .attend-popup { bottom: -174px; transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);}
#divCompleteAttndance.on .dim { opacity: 1; visibility: visible;}
#divCompleteAttndance.on .attend-popup { bottom: 0;}

.pay-btn { margin: 0 -4px;}
.pay-btn li { margin: 0 4px 9px; flex-grow: 1; flex-basis: 110px;}

._js-payment-pp.on { background-color: #468cff;}
._js-payment-pp.on a { color: #fff;}
._js-payment-gvp.on { background-color: #468cff;}
._js-payment-gvp.on a { color: #fff;}
.withToghter-btn.on p:nth-child(2) a { color: #fff;}

._js-home-link, .kakao-call { cursor: pointer;}
.col4 ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.col4 { margin: 0 -5px;}
.col4 ul li { flex-basis: 100%; padding: 0 5px;}
.col4 ul li:first-child { margin-left: 0;}
.col4 ul li:last-child { flex-basis: 60px; text-align: right;}
.col4 ul li a { display:inline-block; width: 58px; height: 46px; text-align: right;}
.col4 ul li a:after { content:''; background:url(/assets/app/img/check_box_checkOFF.png) center 10px no-repeat; width:30px; height:30px; background-size:30px 30px; display:inline-block;}

._field-campaignStory img { max-width: 100%;}

#recentSearchWordList li { cursor:pointer;}
._search-word-wrap { position:relative;}
._search-word-delete { position: absolute; top: 11px; right: 19px; cursor: pointer;}
._search-word-delete img { width: 14px;}

.search-conts-keyword { display: flex; flex-wrap: wrap;}
.search-conts-keyword span { margin-bottom: 12px; cursor: pointer;}

#divSnsShare .dim { top: 0; opacity: 0; visibility: hidden; transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);}
#divSnsShare .attend-popup { bottom: -200px; transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);}
#divSnsShare.on .dim { opacity: 1; visibility: visible;}
#divSnsShare.on .attend-popup { bottom: 0;}

a.login-sns-apple { background:#000; color:#fff; }
a.login-sns-apple:before { content:''; display:inline-block; background:url(/assets/app/img/apple_logo.png) center no-repeat; background-size:60px 60px; width:30px; height:30px; margin-right:7px; margin-top:1px; vertical-align:middle;}


#divPlatformPolicy .dim { top: 0; opacity: 0; visibility: hidden; transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);}
#divPlatformPolicy .attend-popup { top: 100vh; transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);}
#divPlatformPolicy.on .dim { opacity: 1; visibility: visible;}
#divPlatformPolicy.on .attend-popup { top: 46px;}
.btn-policy-detail {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 0;
  top: 14px;
  z-index: 100;
}
.policy-title { position:absolute; width:calc(100% - 80px); top: 20px; margin: 0 40px; font-size: 18px;}
.policy-content {
  padding: 10px 15px 30px;
  overflow-y: scroll;
  height: calc(100vh - 135px);
  text-align:left;
}

img.__editor-img { max-width: 100%; margin-top: 10px;}

#snsNickName { font-size: 14px;}

.btn-ranking-wrap { position: absolute; right: 24px; top: 81px; color: #eee; font-size: 16px;}