@charset "UTF-8";
#skipnavigation a {
  position: absolute;
  left: -99999px;
  font-size: 0.933em;
}

#skipnavigation a:focus {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  color: #fff;
  text-align: center;
  background-color: #0e3091;
  z-index: 9999;
}

body {
  background: #FFF;
}

body.body_bg_gray {
  background-color: #FFF;
}

/* Wrap */
#wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}

/* Header */
header {
  position: relative;
  top: 0;
  width: 100%;
  height: 56px;
  z-index: 11;
  /* 2024-11-11 가상카테고리 타이틀 두 줄 노출 수정 요청 : 두 줄 노출 시 .on_tit 추가 [S] */
  /* 2024-11-11 가상카테고리 타이틀 두 줄 노출 수정 요청 : 두 줄 노출 시 .on_tit 추가 [E] */
}
header:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
header .header_wrap {
  display: flex;
  justify-content: space-between;
  position: fixed;
  padding: 0;
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  background: #fff;
  transition: background-color 0.7s;
}
header .header_wrap > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_wrap .title_area {
  position: relative;
}
header .header_wrap .title_area .tit {
  display: block;
  padding: 5px 0;
  margin-left: 44px;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-family: "Apple SD Gothic Neo", "애플고딕";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
header .header_wrap .title_area .historyback_btn,
header .header_wrap .title_area .back_btn {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}
header .header_wrap .btn_area {
  margin-right: 20px;
  flex-basis: 0;
}
header.on_tit {
  height: auto;
}
header.on_tit .header_wrap {
  height: auto;
  padding: 0 0 15px;
  overflow: hidden;
}
header.on_tit .header_wrap > div {
  align-items: flex-start;
  margin-top: 20px;
}
header.on_tit .header_wrap .title_area .tit {
  padding: 0;
}
header.on_tit .header_wrap .title_area .historyback_btn,
header.on_tit .header_wrap .title_area .back_btn {
  top: 0;
  transform: initial;
}

/* Header Icon Button */
header .title_area::after,
header .btn_area::after {
  content: "";
  display: block;
  clear: both;
}
header .title_area .btn_icon,
header .btn_area .btn_icon {
  display: block;
  position: relative;
  float: left;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border: none;
}
header .title_area .btn_icon .ico,
header .btn_area .btn_icon .ico {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header .title_area .btn_icon.alram_btn .ico,
header .btn_area .btn_icon.alram_btn .ico {
  left: 0;
  top: 0;
  transform: none;
}
header .btn_area .btn_icon {
  margin-left: 10px;
}
header .btn_area .btn_icon:first-child {
  margin-left: 0;
}
.cart_btn,
.alram_btn {
  position: relative;
}
.cart_btn .num,
.alram_btn .num {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  min-width: 12px;
  height: 12px;
  padding: 2px 2px 2px;
  border-radius: 8px;
  background: #F43636;
  color: #FFF;
  font-size: 8px;
  line-height: 10px;
  font-weight: bold;
  text-align: center;
}

.alram_btn.alram_new::before {
  content: "new";
  position: absolute;
  top: 2px;
  right: 2px;
  display: block;
  width: 6px;
  height: 6px;
  overflow: hidden;
  border-radius: 100%;
  background-color: #F43636;
  font-size: 1px;
  text-indent: -999px;
}
.alram_btn.alram_new i.ico {
  animation: smallSwing ease-in-out 0.6s alternate;
  animation-delay: 1s;
  animation-iteration-count: 5;
}

@keyframes smallSwing {
  0% {
    transform: rotate(12deg);
  }
  30% {
    transform: rotate(-12deg);
  }
  60% {
    transform: rotate(12deg);
  }
}
/* Header > 상품검색 : 검색박스 있는 경우 */
.wrap_search header {
  height: 56px;
}
.wrap_search header .header_wrap {
  height: 56px;
}
.wrap_search header .search_area {
  flex-basis: 100%;
}
.wrap_search .search_replace_wrap {
  position: fixed;
  top: 56px;
  width: 100%;
  height: calc(100% - 28px);
  background: #fff;
  border-top: 1px solid #EEE;
  display: none;
}
.wrap_search .search_replace_wrap.show {
  display: block;
}
.wrap_search .search_replace_wrap ul {
  height: calc(100% - 28px);
  overflow-y: scroll;
  padding: 20px;
  margin-bottom: 20px;
}
.wrap_search .search_replace_wrap ul li {
  position: relative;
  border-bottom: 1px solid #EEE;
}
.wrap_search .search_replace_wrap ul li ::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(/assets/images/common/icon_search_faq.png) center no-repeat;
  background-size: 100%;
  margin-right: 4px;
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
}
.wrap_search .search_replace_wrap ul li a {
  display: block;
  width: 100%;
  padding: 14px 22px 12px;
}
.wrap_search .search_replace_wrap ul li a strong {
  font-weight: 800;
  color: #F96B00;
}

/* Header > 카테고리 메인 */
.tit.type_select {
  padding-right: 28px !important;
  cursor: pointer;
}
.tit.type_select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url(/assets/images/renew.common/ico_arr_down_header.png) 50% no-repeat;
  background-size: 24px auto;
  transform: translateY(-50%);
}

/* 2024-11-11 가상카테고리 타이틀 두 줄 노출 수정 요청 */
header.on_tit .tit.type_select::before {
  top: 0;
  transform: initial;
}

/* Container */
/* Sub Section */
#sub_section {
  position: relative;
  background: #FFF;
}

/* Footer */
.tempfooter {
  background: #FFF;
}

#wrap.body_gray .tempfooter {
  background: #F5F5F5 !important;
}
#wrap.body_gray .btn_group {
  background: #F5F5F5;
}
#wrap.body_gray .btn_bottom_fixed .btn_group {
  background: #FFF;
}

#wrap.body_lightgray .tempfooter {
  background: #FAFAFA !important;
}
#wrap.body_lightgray .btn_group {
  background: #FAFAFA;
}
#wrap.body_lightgray .btn_bottom_fixed .btn_group {
  background: #FFF;
}

.btn_group.bg_wht {
  background: #FFF !important;
}

/* 팝업 스타일 페이지 (app에서 사용) */
#wrap.wrap_poppage.ip_warming {
  max-width: 750px;
  padding: 0 clamp(20px, 5.333vw, 40px);
  margin: 0 auto;
}
#wrap.wrap_poppage.ip_warming header {
  height: 100%;
}
#wrap.wrap_poppage.ip_warming header .header_wrap {
  position: relative;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(27px, 7.2vw, 54px) 0 clamp(18px, 4.8vw, 36px);
  border-bottom: 1px solid rgba(99, 101, 105, 0.5);
}
#wrap.wrap_poppage.ip_warming header .header_wrap h1 {
  display: block;
  width: 20.5333333333vw;
  height: 4.2666666667vw;
  max-width: 154px;
  max-height: 32px;
}
#wrap.wrap_poppage.ip_warming header .header_wrap h1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#wrap.wrap_poppage.ip_warming section .content {
  padding-top: clamp(115px, 30.667vw, 230px);
}
#wrap.wrap_poppage.ip_warming section .content .txt {
  padding-top: clamp(20px, 5.333vw, 40px);
  padding-bottom: clamp(14px, 3.733vw, 28px);
  text-align: center;
  color: #232425;
  border-bottom: 1px solid #EEE;
}
#wrap.wrap_poppage.ip_warming section .content .txt strong {
  font-size: clamp(24px, 6.4vw, 48px);
}
#wrap.wrap_poppage.ip_warming section .content .txt p {
  padding-top: clamp(20px, 5.333vw, 40px);
  font-size: clamp(14px, 3.733vw, 28px);
  letter-spacing: -0.8px;
}
#wrap.wrap_poppage.ip_warming section .content .desc {
  padding-top: clamp(20px, 5.333vw, 40px);
  padding-bottom: clamp(20px, 5.333vw, 40px);
  font-size: clamp(14px, 3.733vw, 28px);
  letter-spacing: -1.84px;
  text-align: center;
  color: #4D4E4F;
}
#wrap.wrap_poppage.ip_warming section .content .desc span {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  font-weight: 700;
  color: #F98600;
}
#wrap.wrap_poppage.ip_warming section .content .desc span i {
  width: 6.6666666667vw;
  height: 3.4666666667vw;
  max-width: 50px;
  max-height: 26px;
  margin: 0 clamp(2px, 0.533vw, 4px);
  background: url("/assets/images/renew.contents/ico_allow.png") center center/contain no-repeat;
}
#wrap.wrap_poppage.ip_warming .tempfooter {
  display: none;
}
#wrap.wrap_poppage header .header_wrap {
  padding: 0 50px;
  border-bottom: 1px solid #EEE;
  background: #FFF;
  justify-content: center;
}
#wrap.wrap_poppage header .header_wrap .title_area .tit {
  margin: 0;
  text-align: center;
}
#wrap.wrap_poppage header .header_wrap .btn_area {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
#wrap.wrap_poppage header .header_wrap .btn_area .btn_icon.btn_close_popup {
  right: -4px;
}
#wrap.wrap_poppage .tempfooter {
  padding-bottom: 100px !important;
}

/* contents */
.section .section_head {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #EEE;
}
.section .section_head .tit {
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
}
.section.bg_gray {
  background: #F5F5F5;
}
.section.bg_gray .block {
  border-top: 8px solid #F5F5F5;
}
.section.bg_gray .block.bdt1 {
  border-top: 1px solid #F5F5F5;
}
.section.bg_gray .block.fst, .section.bg_gray .block.bdt0 {
  border-top-width: 0;
}

/* 컨텐츠 블록 */
.block {
  padding-left: 20px;
  padding-right: 20px;
  background: #fff;
}
.block .block_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 15px;
}
.block .block_head .tit {
  display: flex;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
}
.block .block_head .tit .icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  align-self: center;
}
.block .block_head .tit_group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.block .block_head .tit_group .tit {
  margin-right: 8px;
}
.block .block_head.bdt1 {
  border-top: 1px solid #EEE;
}
.block .block_body {
  padding-bottom: 20px;
}
.block .block_body.bdt1 {
  border-top: 1px solid #EEE;
}
.block .btn_group {
  padding-left: 0;
  padding-right: 0;
}
.block .block_head.head_type02 {
  height: 48px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.block .block_head.head_type02 .tit {
  font-size: 0.875rem;
}
.block .block_head.head_type03 {
  padding-top: 20px;
  padding-bottom: 0;
}
.block .block_head.type_mline {
  flex-direction: column;
  align-items: flex-start;
}
.block .block_head.type_mline .tit_sub {
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.42857;
  font-weight: 800;
  padding-top: 8px;
  color: #4D4E4F;
  font-weight: 700;
}
.block .block_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 20px;
}
.block .block_tit .tit {
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
}

/* body 영역 > 서브 타이틀 들어가는 경우 */
.block_body .sub_tit,
.block_body .tit_sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}
.block_body dl.desc {
  color: #4D4E4F;
}
.block_body dl.desc + .desc {
  margin-top: 20px;
}
.block_body dl.desc dt {
  font-weight: 700;
}
.block_body dl.desc dt + dd {
  margin-top: 8px;
}
.block_body dl.desc dd {
  font-weight: 400;
}
.block_body dl.desc dd .link_list {
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: -0.4px;
}
.block_body dl.desc dd .link_list.except a {
  color: #4D4E4F;
  text-decoration: none;
}
.block_body dl.desc dd .link_list a {
  margin-right: 5px;
  color: #6D91EF;
  text-decoration: underline;
}
.block_body dl.desc dd .link_list a:after {
  content: ",";
  font-size: 14px;
}
.block_body dl.desc dd .link_list a:last-of-type:after {
  display: none;
}
.block_body dl.desc dd .link_list a span {
  font-size: 0.875rem;
}
.block_body.bdb1 {
  border-bottom: 1px solid #EEE;
}

.block.bdb1 {
  border-bottom: 1px solid #EEE;
}

.block.bg_gray {
  background: #F5F5F5;
}

.txt_sub {
  color: #626364;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.border_box {
  border-top: 1px solid #eee;
}

/* 메세지 박스 */
.box_message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
}
.box_message div + div {
  margin-top: 20px;
}
.box_message .img_area {
  min-width: 100px;
  min-height: 100px;
}
.box_message .txt_area {
  font-size: 1rem;
  text-align: center;
}
.box_message .txt_area + .btn_area {
  margin-top: 24px;
}
.box_message .txt_area .point {
  color: #5175F4;
}
.box_message .txt_area .msg {
  color: #626364;
  font-weight: 400;
  font-size: 0.875rem;
  margin-top: 12px;
  display: inline-block;
}

/* 상단 메시지 박스 */
.top_message {
  min-height: 84px;
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
}
.top_message + .block {
  border-top: 8px solid #F5F5F5;
}
.top_message strong {
  font-weight: 700;
}

/* 공통 스타일 */
.popup_head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 0 55px;
  border-bottom: 1px solid #EEE;
}
.popup_head .tit {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
}

.popup_productbody,
.popup_body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup_foot {
  position: relative;
}
.popup_foot .btn_group {
  margin: 0;
}

.btn_close_popup {
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
  width: 54px;
  height: 56px;
  overflow: hidden;
  border: 0;
  background: transparent;
  background-color: rgba(0, 0, 0, 0);
  font-size: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 5;
}
.btn_close_popup::before, .btn_close_popup::after {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn_close_popup::before {
  border: none;
  background-color: #fff;
}
.btn_close_popup::after {
  background: url(/assets/images/renew.look.feel/ico_cancel.png);
  background-size: 24px;
}
.btn_close_popup:active::after {
  opacity: 0.5;
}

/* 모달 팝업 */
.modal_open {
  overflow: hidden;
}

.modal_popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: flex;
  justify-content: center;
  align-items: center;
  /* // 얼럿 팝업 */
}
.modal_popup .dimmed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal_popup .popup_wrap {
  position: relative;
  z-index: 110;
  transition-duration: 0.3s;
  transition-property: transform;
  background-color: #fff;
}
.modal_popup .popup_wrap:focus {
  outline: 0;
}
.modal_popup.hide {
  visibility: hidden;
  transition-duration: 0.3s;
  /* 2025-02-07 [개선] 상품 썸네일 팝업 :: 팝업 닫기 시 이미지 딜레이 방지 */
}
.modal_popup.hide .popup_wrap {
  animation: modal-flyout 0.4s;
}
.modal_popup.hide .popup_slider_wrap {
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}
.modal_popup.show {
  visibility: visible;
  transition-duration: 0.3s;
}
.modal_popup.show .popup_wrap {
  animation: modal-flyin 0.4s;
}
.modal_popup.modal_alert {
  z-index: 150;
}
.modal_popup.modal_alert .popup_wrap {
  width: 300px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #DEDEDE;
}
.modal_popup.modal_alert .popup_head {
  justify-content: center;
}
.modal_popup.modal_alert .popup_head.type02 {
  height: auto;
  padding: 36px 0 20px;
  border-bottom: none;
}
.modal_popup.modal_alert .popup_head .tit {
  font-weight: bold;
}
.modal_popup.modal_alert .popup_head ~ .popup_body {
  padding-top: 0;
}
.modal_popup.modal_alert .popup_body {
  padding: 36px 20px 24px;
  max-height: calc(100vh - 300px);
}
.modal_popup.modal_alert .popup_body.type02 {
  max-height: fit-content;
}
.modal_popup.modal_alert .popup_body.type02 .cont_term {
  letter-spacing: -0.6px;
}
.modal_popup.modal_alert .popup_foot {
  padding: 0;
}
.modal_popup.modal_alert .popup_foot .btn_group {
  padding: 0 20px 20px;
}
.modal_popup.modal_alert .popup_foot .btn_group .btn_main + .btn_main {
  margin-left: 4px;
}
.modal_popup.modal_alert .btn_close_popup {
  display: none;
}
.modal_popup.modal_alert.no_dimmed {
  left: 50%;
  right: auto;
  bottom: auto;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.modal_popup.modal_alert.no_dimmed .popup_wrap {
  box-shadow: 0px -1px 35px 0px rgba(0, 0, 0, 0.13);
}
.modal_popup.modal_alert.no_dimmed .dimmed {
  display: none;
}
.modal_popup.modal_alert.show {
  visibility: visible;
  transition-duration: 0.3s;
}
.modal_popup.modal_alert.show .popup_wrap {
  animation: modal-flyin-alert 0.3s;
}
.modal_popup.modal_alert.hide {
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}
.modal_popup.modal_alert.hide .popup_wrap {
  animation: modal-flyout-alert 0.3s;
}
.modal_popup.modal_middle .popup_wrap {
  overflow: hidden;
  width: calc(100vw - 60px);
  margin: 0 20px;
  padding: 30px 0;
  border-radius: 12px;
}
.modal_popup.modal_middle .popup_wrap.type02 {
  width: calc(100vw - 20px);
}
.modal_popup.modal_middle .popup_head {
  justify-content: flex-start;
  height: auto;
  margin: 0 20px;
  margin-top: -30px;
  padding: 30px 35px 16px 0;
  border-bottom: 1px solid #EEE;
}
.modal_popup.modal_middle .popup_head .tit {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.333;
}
.modal_popup.modal_middle .popup_head ~ .popup_body {
  padding-top: 16px;
}
.modal_popup.modal_middle .popup_body {
  padding: 0 20px 0;
  max-height: calc(100vh - 300px);
}
.modal_popup.modal_middle .popup_foot {
  padding: 0;
}
.modal_popup.modal_middle .popup_foot .btn_group {
  margin-top: -2px;
  margin-bottom: -11px;
  padding: 20px 20px 0;
}
.modal_popup.modal_middle .popup_foot .bottom_close {
  margin-top: 0;
  margin-bottom: -12px;
  padding-top: 16px;
  padding-bottom: 0;
  border-top: 1px solid #EEE;
  display: flex;
}
.modal_popup.modal_middle.no_dimmed {
  left: 50%;
  right: auto;
  bottom: auto;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.modal_popup.modal_middle.no_dimmed .popup_wrap {
  box-shadow: 0px -1px 35px 0px rgba(0, 0, 0, 0.13);
}
.modal_popup.modal_middle.no_dimmed .dimmed {
  display: none;
}
.modal_popup.modal_bottomsheet {
  height: 100%;
  align-items: flex-end;
}
.modal_popup.modal_bottomsheet .popup_head,
.modal_popup.modal_bottomsheet .popup_foot {
  flex: 0 0 auto;
}
.modal_popup.modal_bottomsheet .popup_head {
  height: 69px;
}
.modal_popup.modal_bottomsheet .popup_head .tit {
  margin-top: 14px;
}
.modal_popup.modal_bottomsheet .popup_body {
  padding-top: 36px;
  padding-bottom: 0;
  flex: 1 1 auto;
}
.modal_popup.modal_bottomsheet .popup_head + .popup_body {
  padding-top: 0;
}
.modal_popup.modal_bottomsheet .popup_head + .popup_body.main_banner {
  display: flex;
  flex-direction: column;
}
.modal_popup.modal_bottomsheet .popup_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  max-height: calc(100% - 8px);
  border-radius: 12px 12px 0 0;
  box-shadow: 0px -1px 35px 0px rgba(0, 0, 0, 0.13);
}
.modal_popup.modal_bottomsheet .popup_wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  width: 42px;
  height: 4px;
  border-radius: 4px;
  background: #DEDEDE;
  transform: translateX(-50%);
}
.modal_popup.modal_bottomsheet .popup_wrap .btn_close_popup {
  top: 7px;
}
.modal_popup.modal_bottomsheet.no_dimmed {
  height: auto;
  top: auto;
}
.modal_popup.modal_bottomsheet.no_dimmed .dimmed {
  display: none;
}
.modal_popup.modal_bottomsheet.show {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.3s;
}
.modal_popup.modal_bottomsheet.show .popup_wrap {
  animation: modal-flyin-bs 0.4s;
}
.modal_popup.modal_bottomsheet.hide {
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}
.modal_popup.modal_bottomsheet.hide .popup_wrap {
  animation: modal-flyout-bs 0.4s;
}
.modal_popup.modal_bottomsheet.no_slideClose .popup_wrap::before {
  display: none;
}
.modal_popup.modal_bottomsheet.no_slideClose .popup_head .tit {
  margin-top: 7px;
}
.modal_popup.modal_toggle {
  position: relative;
  display: block;
  z-index: auto;
}
.modal_popup.modal_toggle .popup_wrap {
  z-index: auto;
}
.modal_popup.modal_toggle .toggle_cont {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px 12px 0 0;
  background-color: #fff;
}

/* 풀팝업 */
.modal_full {
  flex-direction: column;
  align-items: normal;
  height: 100%;
}
.modal_full .dimmed {
  background-color: rgba(0, 0, 0, 0);
}
.modal_full .popup_wrap {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  height: 100%;
  border-radius: 12px 12px 0 0;
}
.modal_full .popup_head {
  flex: 0 0 auto;
}
.modal_full .popup_body {
  flex: 1 1 auto;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal_full .popup_foot {
  flex: 0 0 auto;
}
.modal_full.full_page .popup_wrap {
  border-radius: 0;
}
.modal_full.full_page.show {
  transition-duration: initial;
}
.modal_full.full_page.show .popup_wrap {
  animation: none;
}
.modal_full.full_page.hide {
  transition-duration: initial;
}
.modal_full.full_page.hide .popup_wrap {
  animation: none;
}
.modal_full.full_fade.show {
  visibility: visible;
  transition-duration: 0.3s;
}
.modal_full.full_fade.show .popup_wrap {
  animation: modal-fadein 0.4s;
}
.modal_full.full_fade.hide {
  visibility: hidden;
  transition-duration: 0.3s;
}
.modal_full.full_fade.hide .popup_wrap {
  animation: modal-fadeout 0.4s;
}

.dim_hide > .dimmed {
  opacity: 0;
  transition: 0.3s;
}

.box_alert {
  color: #232425;
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
}
.box_alert .txt_sub {
  margin-top: 12px;
  color: #A9A9A9;
  font-size: 0.875rem;
}
.box_alert .txt_sub.small {
  color: #4D4E4F;
  font-size: 0.75rem;
}

/* fadein/fadeout */
@keyframes modal-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* flyin/flyout */
@keyframes modal-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes modal-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes modal-flyin-bs {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes modal-flyout-bs {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes modal-flyin-alert {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes modal-flyout-alert {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
}
/* 앱에서 호출하는 팝업 스타일 레이아웃 페이지 */
.popup_wrap.wrap_page {
  padding-bottom: 120px;
}

/* 공통 토스트팝업 */
.popup_toast {
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 130;
}
.popup_toast.pos_top {
  top: 80px;
  bottom: unset;
}
.popup_toast .toast_wrap {
  width: calc(100% - 40px);
  margin: 0 20px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  color: #fff;
  text-align: center;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-weight: 700;
}

.popup_snackbar {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  width: auto;
  padding: 6px 12px;
  margin: 0 14px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 6px;
  z-index: 110;
}
.popup_snackbar strong {
  font-weight: bold;
}
.popup_snackbar p {
  padding-right: 14px;
  font-weight: bold;
}
.popup_snackbar.type02 {
  align-items: flex-start;
}
.popup_snackbar.type02.pickup .snackbar_area > i {
  background: url(/assets/images/renew.common/ico_pickup_bag.png) no-repeat center center/contain;
}
.popup_snackbar.type02.no_delivery .snackbar_area > i {
  background: url(/assets/images/renew.common/ico_no_delivery.png) no-repeat center center/contain;
}
.popup_snackbar.type02 .snackbar_area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup_snackbar.type02 .snackbar_area > i {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  background: url(/assets/images/renew.common/ico_delivery_moto.png) no-repeat center center/contain;
}
.popup_snackbar.type02 div p {
  padding-right: 0;
  font-weight: normal;
}
.popup_snackbar .ico_delete {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url(/assets/images/renew.common/icon-delete-16.svg) no-repeat center center/cover;
}

/* 상품검색 팝업 */
.modal_full.modal_search .popup_wrap {
  border-radius: 0;
}
.modal_full.modal_search .popup_wrap .popup_head {
  height: 60px;
  margin: 0;
  padding-left: 48px;
  padding-right: 20px;
  border-bottom: none;
  background: #FFD84E;
}
.modal_full.modal_search .popup_wrap .popup_head .btn_icon.back_btn,
.modal_full.modal_search .popup_wrap .popup_head .close-modal {
  top: 14px;
}
.modal_full.modal_search .popup_wrap .popup_head .search_area {
  width: 100%;
}
.modal_full.modal_search .popup_wrap .popup_head .search_wrap .input_srch .form_text {
  height: 40px;
  padding-top: 9px;
  padding-bottom: 9px;
  border: none;
}

/* 2024-12-10 앱 메인 플로팅 배너 추가 :: ui.main.css 와 충돌 방지 위해 '_gn24' 붙여 사용 */
.floating_banner_gn24 {
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 10;
  width: 60px;
}
.floating_banner_gn24 > a {
  display: block;
  width: 60px;
  height: auto;
}
.floating_banner_gn24 > a > img {
  width: 100%;
}
.floating_banner_gn24 .btn_close_banner {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: -8px;
  text-indent: -9999px;
  overflow: hidden;
}
.floating_banner_gn24 .btn_close_banner::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(/assets/images/renew.common/ico_popup_close02.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.floating_banner_gn24.hide {
  visibility: hidden;
  transition-duration: 0.3s;
}

/* 2025-02-07 [개선] 상품 썸네일 팝업 :: [S] */
.popup_slider_wrap .popup-swiper {
  /* 2025-03-14 [개선] 상품 팝업 스와이프 :: 확대 시 슬라이드 겹치는 문제 보완 */
}
.popup_slider_wrap .popup-swiper.swiper-container {
  height: calc(100vh - 100px);
  margin-top: -56px;
}
.popup_slider_wrap .popup-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.popup_slider_wrap .popup-swiper .swiper-slide.swiper-slide-prev, .popup_slider_wrap .popup-swiper .swiper-slide.swiper-slide-next {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.popup_slider_wrap .thumb-swiper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 20px;
  background: #fff;
}
.popup_slider_wrap .thumb-swiper .swiper-wrapper .swiper-slide {
  border: 1px solid #DEDEDE;
  border-radius: 6px;
  overflow: hidden;
  width: 20%;
}
.popup_slider_wrap .thumb-swiper .swiper-wrapper .swiper-slide.on {
  border: 2px solid #FFBB0D;
}
.popup_slider_wrap .thumb-swiper .swiper-wrapper .swiper-slide img {
  vertical-align: middle;
}

.barcode_ssg_wrap .barcode_ssg .barcode_ssg_cont01 .block_head {
  padding: 20px 0 0;
}
.barcode_ssg_wrap .barcode_ssg .barcode_ssg_cont01 .block_head .tit {
  width: auto;
}
.barcode_ssg_wrap .barcode_ssg .barcode_ssg_cont01 .block_head .tit .point {
  color: #F98600;
  margin-left: 8px;
}
.barcode_ssg_wrap .barcode_ssg .barcode_ssg_cont01 .block_head .chk {
  color: #626364;
}
.barcode_ssg_wrap .barcode_ssg .barcode_ssg_cont03 {
  display: none;
}
.barcode_ssg_wrap .barcode_ssg .barcode_ssg_cont03.on {
  display: block;
}
.barcode_ssg_wrap .barcode_ssg .barcode_ssg_cont03 .block_head {
  padding: 12px 0;
}
.barcode_ssg_wrap .barcode_ssg .barcode_ssg_cont04 {
  border-top: 1px solid #EEE;
  padding-top: 16px;
}
.barcode_ssg_wrap .barcode_ssg .block_body {
  padding-bottom: 16px;
}

.barcode_coupon_wrap .barcode_coupon {
  min-height: calc(100vh - 150px);
}
.barcode_coupon_wrap .barcode_coupon .coupon_wrap .total_area {
  margin-bottom: 15px;
}
.barcode_coupon_wrap .barcode_coupon .coupon_wrap .total_area .total_count {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
}
.barcode_coupon_wrap .barcode_coupon .coupon_wrap .total_area .total_count .num {
  font-weight: 800;
  color: #5175F4;
}
.barcode_coupon_wrap .barcode_coupon .coupon_wrap .item_coupon2 {
  filter: grayscale(1);
}
.barcode_coupon_wrap .barcode_coupon .coupon_wrap .item_coupon2.on {
  filter: none;
}
.barcode_coupon_wrap .barcode_coupon .coupon_wrap .list_none {
  width: 100%;
  min-height: calc(100vh - 250px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.barcode_coupon_wrap .barcode_coupon .coupon_wrap .list_none p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
}

.barcode_2x_wrap .barcode_box {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px 0;
}
.barcode_2x_wrap .barcode_box .barcode {
  width: 100%;
  height: 100%;
  max-width: 260px;
  max-height: 260px;
  padding: 20px;
  overflow: hidden;
  background: #fff;
}
.barcode_2x_wrap .barcode_box .barcode img {
  width: 100%;
  height: 100%;
}
.barcode_2x_wrap .barcode_box .barcode_time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 24px;
}
.barcode_2x_wrap .barcode_box .barcode_time .time {
  color: #2D2EFE;
}
.barcode_2x_wrap .barcode_box .barcode_time .ico.ico_reset {
  width: 24px;
  height: 24px;
}

/* 통합바코드 */
.barcode_top {
  padding: 16px 20px 24px;
  background: #FFF9E4;
}
.barcode_top .tit_area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.barcode_top .tit_area.center {
  align-items: center;
}
.barcode_top .tit {
  margin-bottom: 24px;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
}
.barcode_top .barcode_swit {
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-align: center;
}
.barcode_top .barcode_swit .toggle_checkbox {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.barcode_top .barcode_swit .toggle_checkbox input[type=checkbox] + label + .txt .on {
  display: none;
}
.barcode_top .barcode_swit .toggle_checkbox input[type=checkbox] + label + .txt .off {
  display: inline-block;
}
.barcode_top .barcode_swit .toggle_checkbox input[type=checkbox]:checked + label + .txt .on {
  display: inline-block;
}
.barcode_top .barcode_swit .toggle_checkbox input[type=checkbox]:checked + label + .txt .off {
  display: none;
}
.barcode_top .barcode_swit .toggle_checkbox .txt {
  position: relative;
  padding-right: 8px;
}
.barcode_top .barcode_swit .toggle_checkbox .txt strong {
  font-weight: 800;
  color: #F98600;
}
.barcode_top .barcode_swit .toggle_checkbox .txt strong.off {
  color: #9A9A9A;
}
.barcode_top .barcode_swit .toggle_checkbox .txt .ico_help {
  position: absolute;
  right: 8px;
  cursor: pointer;
}
.barcode_top .box_barcode {
  overflow: hidden;
  border: 1px solid #DEDEDE;
  border-radius: 12px;
  background: #FFF;
}
.barcode_top .box_barcode .barcode_head {
  height: 56px;
  background: #F5F5F5;
}
.barcode_top .box_barcode .barcode_head .info_point {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-top: 2px;
}
.barcode_top .box_barcode .barcode_head .info_point dt {
  margin-left: 20px;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.42857;
  font-weight: 800;
  color: #757575;
}
.barcode_top .box_barcode .barcode_head .info_point dd {
  margin-right: 18px;
}
.barcode_top .box_barcode .barcode_head .link_point {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  position: relative;
  padding-right: 26px;
  color: #5175F4;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 28px;
}
.barcode_top .box_barcode .barcode_head .link_point::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  margin-top: -11px;
  border-radius: 50%;
  background: url(/assets/images/renew.common/ico_arr_right.png) no-repeat center;
  background-size: contain;
}
.barcode_top .box_barcode .barcode_head .link_point > span {
  margin-left: 2px;
}
.barcode_top .box_barcode .barcode_body {
  padding: 0 0px;
}
.barcode_top .box_barcode .barcode_body .barcode {
  width: 256px;
  height: 84px;
  margin: 0 auto;
  text-align: center;
}
.barcode_top .box_barcode .barcode_body .barcode_img {
  height: 52px;
}
.barcode_top .box_barcode .barcode_body .barcode_num_area {
  color: #000;
  text-align: center;
}
.barcode_top .box_barcode .barcode_body .barcode_area {
  padding: 30px 10px;
}
.barcode_top .barcode_box {
  width: 100%;
  padding: 12px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px 0;
}
.barcode_top .barcode_box .barcode {
  width: 100%;
  height: 100%;
  max-width: 170px;
  max-height: 170px;
  background: #fff;
  border-radius: 6px;
  padding: 14px;
  overflow: hidden;
}
.barcode_top .barcode_box .barcode > a {
  width: 100%;
  height: 100%;
  display: block;
}
.barcode_top .barcode_box .barcode_time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}
.barcode_top .barcode_box .barcode_time .time {
  color: #2D2EFE;
}
.barcode_top .barcode_box.off .barcode {
  position: relative;
}
.barcode_top .barcode_box.off .barcode > a {
  pointer-events: none;
}
.barcode_top .barcode_box.off .barcode img {
  filter: grayscale(1);
  opacity: 0.4;
}
.barcode_top .barcode_box.off .barcode:after {
  content: "";
  width: 81px;
  height: 83px;
  background: url("/assets/images/renew.contents/dim_barcode.png") 0 0 no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.barcode_top .barcode_box.off .barcode_time {
  opacity: 0.5;
}
.barcode_top .barcode_box.off .barcode_time a {
  pointer-events: none;
}
.barcode_top .point_box {
  width: 100%;
}
.barcode_top .point_box > div {
  width: 100%;
  max-width: 260px;
  background: #fff;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
  margin: 0 auto;
  gap: 0 12px;
}
.barcode_top .point_box > div .logo {
  width: 100%;
  height: auto;
  max-width: 55px;
  position: relative;
}
.barcode_top .point_box > div .txt {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  color: #757575;
}
.barcode_top .point_box > div .txt p:first-child {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 800;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  color: #232425;
}
.barcode_top .point_box > div div:nth-child(2) {
  width: 1px;
  height: 33px;
  background: #dedede;
}
.barcode_top .card_list_swiper {
  width: calc(100% + 40px);
  margin-left: -20px;
}
.barcode_top .card_list_swiper .swiper-wrapper {
  align-items: center;
  margin-left: -12px;
}
.barcode_top .card_list_swiper .swiper-slide {
  width: 177px;
  height: 88px;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
  background: #fff;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  opacity: 0.8;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 7px;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap .img {
  width: 30px;
  height: 51px;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 59px;
  text-align: center;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap > .txt {
  display: flex;
  flex-direction: column;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-weight: 400;
  color: #4D4E4F;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap > .txt div:first-child {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 800;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  max-height: 20px;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap > .txt div.num {
  letter-spacing: -1px;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap > .txt div:last-child {
  max-height: 18px;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap .add_card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 8px;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap .add_card .img {
  border: 1px solid #DEDEDE;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap .add_card .img img {
  width: 18px;
  height: 18px;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap .add_card .txt {
  font-size: 0.625rem;
  line-height: 0.875rem;
  font-weight: 400;
  color: #4D4E4F;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap .add_card .txt div:first-child {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 800;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  position: relative;
  width: max-content;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap .add_card .txt div:first-child:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 11px;
  position: absolute;
  right: -12px;
  top: 4px;
  background: url("/assets/images/renew.common/ico_arr_barcode.png") 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}
.barcode_top .card_list_swiper .swiper-slide .card_wrap .add_card .txt div:last-child {
  font-size: 0.625rem;
  line-height: 0.875rem;
  letter-spacing: -1px;
  word-break: break-all;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active {
  width: 200px;
  height: 98px;
  border: 1px solid #FFBB0D;
  padding: 16px 12px;
  opacity: 1;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap {
  gap: 0 8px;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap .img {
  width: 36px;
  height: 58px;
  line-height: 66px;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap > .txt {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap > .txt div:first-child {
  font-size: 1rem;
  line-height: 1.375rem;
  max-height: 22px;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap > .txt div:last-child {
  max-height: 20px;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap .add_card img {
  width: 20px;
  height: 20px;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap .add_card .txt {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #4D4E4F;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap .add_card .txt div:first-child {
  font-size: 1rem;
  line-height: 1.375rem;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap .add_card .txt div:first-child:after {
  width: 6px;
  height: 12px;
}
.barcode_top .card_list_swiper .swiper-slide.swiper-slide-active .card_wrap .add_card .txt div:last-child {
  font-size: 0.75rem;
  line-height: 1rem;
}

/* [공통] 바코드 캡쳐방지 애니메이션 처리 */
.barcode_area {
  position: relative;
}
.barcode_area::before {
  content: "";
  display: none;
  width: 30px;
  height: 2px;
  position: absolute;
  top: -1px;
  border-radius: 2px;
  background: #FFBB0D;
}
.barcode_area.active::before {
  display: block;
  animation: barcode_active 3s infinite;
}

@keyframes barcode_active {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 30px);
  }
  100% {
    left: 0;
  }
}
.barcode_bottom {
  padding: 20px 20px;
}
.barcode_bottom .plus_benefit {
  padding-top: 20px;
}
.barcode_bottom .plus_benefit .tit {
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
  padding-right: 4px;
}
.barcode_bottom .plus_benefit .ico.ico_info {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.barcode_bottom .plus_benefit .ico.ico_help {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.barcode_bottom .plus_benefit .benefit_list {
  display: grid;
  width: 100%;
  padding-top: 16px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox {
  cursor: auto;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox label {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border: 1px solid #EEE;
  border-radius: 6px;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox label:before {
  top: 8px;
  left: auto;
  right: 8px;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox label img {
  display: block;
  width: 44px;
  height: 44px;
  filter: grayscale(1);
  opacity: 0.5;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox label p {
  padding-top: 11px;
  color: #4D4E4F;
  opacity: 0.5;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox label p em {
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #9A9A9A;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox label + .btn_cont {
  display: none;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox input[type=checkbox]:checked + label {
  border: 1px solid #FFBB0D;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox input[type=checkbox]:checked + label:after {
  top: 14px;
  left: auto;
  right: 13px;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox input[type=checkbox]:checked + label img {
  filter: grayscale(0);
  opacity: 1;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox input[type=checkbox]:checked + label p {
  opacity: 1;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox input[type=checkbox]:checked + label + .btn_cont {
  display: none;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox input[type=checkbox]:disabled + label p {
  opacity: 0;
}
.barcode_bottom .plus_benefit .benefit_list .form_checkbox input[type=checkbox]:disabled + label + .btn_cont {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 10;
}
.barcode_bottom .plus_benefit .depth3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.barcode_bottom .info_coupon.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.barcode_bottom .info_coupon.grid div {
  width: 100%;
}
.barcode_bottom .info_coupon .coupon_group1 > ul > li + li {
  margin-top: 8px;
}
.barcode_bottom .info_coupon .coupon_group1 .link_coupon {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #EEE;
  border-radius: 6px;
  background: #FFF;
}
.barcode_bottom .info_coupon .coupon_group1 .link_coupon .tit {
  justify-content: space-between;
  align-items: center;
}
.barcode_bottom .info_coupon .coupon_group1 .link_coupon .tit .ico {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.barcode_bottom .info_coupon .coupon_group1 .link_coupon .tit em {
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.42857;
  font-weight: 800;
  color: #4D4E4F;
}
.barcode_bottom .info_coupon .coupon_group1 .link_coupon .num {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.barcode_bottom .info_coupon .coupon_group1 .link_coupon .num em {
  margin-top: 2px;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
}
.barcode_bottom .info_coupon .coupon_group1 .link_coupon .num i.ico {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  background: url(/assets/images/renew.common/ico_arr_right.png) no-repeat center;
  background-size: 24px;
}
.barcode_bottom .info_coupon .coupon_group2 {
  margin-top: 8px;
  padding: 18px 0;
  border: 1px solid #EEE;
  border-radius: 6px;
  background: #FFF;
}
.barcode_bottom .info_coupon .coupon_group2 > ul {
  display: flex;
  width: 100%;
}
.barcode_bottom .info_coupon .coupon_group2 > ul > li {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 2px 10px;
}
.barcode_bottom .info_coupon .coupon_group2 > ul > li + li {
  border-left: 1px solid #EEE;
}
.barcode_bottom .info_coupon .coupon_group2 .link_coupon {
  width: 100%;
  text-align: center;
}
.barcode_bottom .info_coupon .coupon_group2 .link_coupon .tit {
  display: block;
  color: #4D4E4F;
}
.barcode_bottom .info_coupon .coupon_group2 .link_coupon .num {
  display: block;
  margin-top: 2px;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
}
.barcode_bottom .info_coupon .coupon_group2 .link_coupon .num.fc_gray {
  color: #B2B2B2 !important;
}
.barcode_bottom .info_partner {
  margin-top: 16px;
}
.barcode_bottom .info_partner > ul > li + li {
  margin-top: 8px;
}
.barcode_bottom .info_partner .item_partner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
  background: #FAFAFA;
}
.barcode_bottom .info_partner .item_partner .ico_partner {
  display: block;
  width: 100px;
  height: 20px;
  background: url(/assets/images/renew.common/ico_barcode_partner.png) no-repeat;
  background-size: 100px auto;
}
.barcode_bottom .info_partner .item_partner .ico_partner.ico_line {
  width: 46px;
  background-position: 0 0;
}
.barcode_bottom .info_partner .item_partner .ico_partner.ico_daewoong {
  width: 92px;
  background-position: 0 -20px;
}
.barcode_bottom .info_partner .item_partner .ico_partner.ico_woowahan {
  width: 70px;
  background-position: 0 -40px;
}
.barcode_bottom .info_partner .item_partner .ico_partner.ico_hoban {
  width: 88px;
  background-position: 0 -60px;
}
.barcode_bottom .info_partner .item_partner > dd {
  height: 24px;
  color: #757575;
}
.barcode_bottom .info_partner .item_partner > dd .btn_cont {
  margin-top: 1px;
}
.barcode_bottom .info_partner .item_partner > dd .auth_link {
  display: flex;
  align-items: center;
  position: relative;
}
.barcode_bottom .info_partner .item_partner > dd .auth_link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 4px;
  background: url(/assets/images/renew.common/ico_arr_right.png) no-repeat center;
  background-size: 24px;
}
.barcode_bottom .info_partner .item_partner > dd .auth_finish {
  margin-right: 8px;
  line-height: 22px;
}
.barcode_bottom .info_partner .item_partner.partner_kt {
  padding: 12px;
  padding-right: 16px;
}
.barcode_bottom .info_partner .item_partner.partner_kt .tit {
  display: flex;
  align-items: center;
}
.barcode_bottom .info_partner .item_partner.partner_kt .tit em {
  margin-left: 8px;
}
.barcode_bottom .info_partner .item_partner.partner_kt .ico_partner.ico_kt {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(/assets/images/renew.common/ico_barcode_kt.png) no-repeat center;
  background-size: contain;
}
.barcode_bottom .info_partner .item_partner.partner_kt.connect .ico_partner {
  position: relative;
}
.barcode_bottom .info_partner .item_partner.partner_kt.connect .ico_partner::after {
  content: "계정등록완료";
  display: block;
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 16px;
  height: 14px;
  overflow: hidden;
  background: url(/assets/images/renew.contents/ico_sns_link.png) no-repeat left top;
  background-size: 100% auto;
  text-indent: -99px;
  color: rgba(0, 0, 0, 0);
}
.barcode_bottom .info_partner .item_partner.partner_koreanair {
  padding: 12px;
  padding-right: 16px;
}
.barcode_bottom .info_partner .item_partner.partner_koreanair .tit {
  display: flex;
  align-items: center;
}
.barcode_bottom .info_partner .item_partner.partner_koreanair .tit em {
  margin-left: 8px;
}
.barcode_bottom .info_partner .item_partner.partner_koreanair .ico_partner.ico_koreanair {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(/assets/images/renew.common/ico_barcode_koreanair.png) no-repeat center;
  background-size: contain;
}
.barcode_bottom .benefit_use_list ul {
  border-bottom: 1px solid #EEE;
  padding-bottom: 20px;
}
.barcode_bottom .benefit_use_list ul li {
  width: 100%;
  margin-bottom: 12px;
}
.barcode_bottom .benefit_use_list ul li:last-child {
  margin-bottom: 0;
}
.barcode_bottom .benefit_use_list ul li p.tit {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #232425;
}
.barcode_bottom .benefit_use_list ul li div.txt {
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.barcode_bottom .benefit_use_list ul li div.txt p {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  color: #4D4E4F;
}
.barcode_bottom .benefit_use_list ul li div.txt p.on > span {
  font-weight: 800;
  color: #F98600;
}
.barcode_bottom .benefit_use_list ul li .toggle_checkbox {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.barcode_bottom .benefit_use_list ul li .toggle_checkbox input[type=checkbox] + label + .info .on {
  display: none;
}
.barcode_bottom .benefit_use_list ul li .toggle_checkbox input[type=checkbox]:checked + label + .info .on {
  display: inline-block;
}

.card_setting_wrap {
  border-top: 1px solid #eee;
  background: #fff;
  padding: 20px 0;
}
.card_setting_wrap .card_setting_none {
  width: 100%;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card_setting_wrap .card_setting_none p {
  font-size: 0.875rem;
  line-height: 20px;
  font-weight: 700;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
}
.card_setting_wrap .card_setting_add .card_add {
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #B2B2B2;
  border-radius: 12px;
  padding: 30px 0;
  margin: 0 auto;
}
.card_setting_wrap .card_setting_add .card_add em {
  font-size: 0.875rem;
  line-height: 20px;
  font-weight: 700;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
}
.card_setting_wrap .card_setting_add .card_add em:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 4px;
  background: url(/assets/images/renew.common/ico_plus_circle.png) no-repeat center;
  background-size: cover;
}
.card_setting_wrap .card_setting {
  width: 100%;
}
.card_setting_wrap .card_setting .card_list {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 20px;
}
.card_setting_wrap .card_setting .card_list li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0 14px;
  margin-bottom: 12px;
}
.card_setting_wrap .card_setting .card_list li:last-child {
  margin-bottom: 0;
}
.card_setting_wrap .card_setting .card_list li .btn_drag:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/renew.common/ico_drag_card.png) 0 0 no-repeat;
  background-size: 100%;
}
.card_setting_wrap .card_setting .card_list li .card_box {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #757575;
  border-radius: 12px;
  padding: 20px 16px;
  overflow: hidden;
  gap: 0 16px;
}
.card_setting_wrap .card_setting .card_list li .card_box .btn_del:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/renew.common/ico_delete_round.png) 0 0 no-repeat;
  background-size: 100%;
}
.card_setting_wrap .card_setting .card_list li .card_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 12px;
  position: relative;
  padding-right: 18px;
}
.card_setting_wrap .card_setting .card_list li .card_wrap .img {
  width: 36px;
  height: 58px;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 66px;
  text-align: center;
}
.card_setting_wrap .card_setting .card_list li .card_wrap .txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  color: #626364;
}
.card_setting_wrap .card_setting .card_list li .card_wrap .txt div.tit {
  display: flex;
  justify-content: flex-start;
  flex-shrink: 0;
  gap: 0 4px;
}
.card_setting_wrap .card_setting .card_list li .card_wrap .txt div.tit span {
  width: auto;
  max-width: calc(100% - 25px);
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 800;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  max-height: 44px;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.card_setting_wrap .card_setting .card_list li .card_wrap .txt div.tit .ico_modify {
  margin: 1px 0;
}
.card_setting_wrap .card_setting .card_list li .card_wrap .txt div.num {
  padding: 8px 0 4px;
}
.card_setting_wrap .card_setting .card_list li .card_wrap .txt div:last-child {
  max-height: 16px;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.card_setting_wrap .card_setting .card_list li .card_wrap .txt .modify {
  display: none;
}
.card_setting_wrap .card_setting .card_list li .card_wrap .txt .modify input[type=text] {
  width: 100%;
  height: 36px;
}
.card_setting_wrap .card_setting .card_list li .card_wrap:after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 40px);
  border-left: 1px dashed #B2B2B2;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.pop_mybarcode.modal_popup.modal_bottomsheet .popup_body {
  max-height: calc(100vh - 150px);
}

/* 통합바코드 페이지 타입 (앱호출 화면) */
#wrap.mybarcode_page header .header_wrap {
  justify-content: center;
}
#wrap.mybarcode_page header .header_wrap .title_area .tit {
  margin-left: 0;
}
#wrap.mybarcode_page header .header_wrap .btn_area {
  display: none;
}
#wrap.mybarcode_page .tempfooter {
  padding-bottom: 100px !important;
}

.btn_close_barcode,
.btn_close_poppage {
  display: block;
  position: fixed;
  left: 50%;
  bottom: 38px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #757575;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  z-index: 100;
}
.btn_close_barcode i.ico,
.btn_close_poppage i.ico {
  display: block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  background-image: url(/assets/images/renew.common/ico_pop_close_barcode.png);
  background-size: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn_close_barcode:active,
.btn_close_poppage:active {
  background-color: #696969;
  transform: translateX(-50%) translateY(1px);
}

/* 전체메뉴 */
#all_menu_wrap {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FAFAFA;
  z-index: 99;
}
#all_menu_wrap.allmenu_page {
  right: 0;
}

#all_menu_wrap .head_util {
  position: absolute;
  width: 100%;
  padding: 8px 20px;
  padding-left: 8px;
  background: #FFD84E;
  z-index: 2;
}
#all_menu_wrap .head_util .logo {
  display: block;
  position: absolute;
  top: 16px;
  left: 20px;
  width: 82px;
  height: 16px;
  background: url(/assets/images/renew.common/ico_allmenu_logo.png) no-repeat 0 0;
  background-size: auto 16px;
}
#all_menu_wrap .head_util .b_left {
  display: flex;
  float: right;
}
#all_menu_wrap .head_util .b_left > a {
  display: block;
  width: 32px;
  height: 32px;
  overflow: hidden;
  background-size: 100% auto;
}
#all_menu_wrap .head_util .b_left > a + a {
  margin-left: 8px;
}
#all_menu_wrap .head_util .btn_menu_close {
  position: absolute;
  top: 8px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: url(/assets/images/renew.common/ico_popup_close.png) 50% 50% no-repeat;
  background-size: 32px auto;
}
#all_menu_wrap > .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding-top: 56px;
  padding-bottom: 90px;
  box-sizing: border-box;
  background: #fff;
}
#all_menu_wrap > .swiper-container .swiper-slide {
  height: auto !important;
  background: #f4f4f4;
}
#all_menu_wrap > .swiper-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50vh;
  background: #FAFAFA;
}
#all_menu_wrap.login > .swiper-container {
  background: #fff;
}
.allmenu_member_info .amenu_member {
  display: flex;
  align-items: center;
}
.allmenu_member_info .member_login {
  padding: 0 20px 0 20px;
  background: #FFD84E;
  justify-content: flex-start;
}
.allmenu_member_info .member_login .text_area div {
  margin-top: 2px;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 24px;
}
.allmenu_member_info .member_login .text_area .name {
  position: relative;
  padding-right: 28px;
  margin-top: 2px;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 24px;
}
.allmenu_member_info .member_login .text_area .name::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url(/assets/images/renew.common/ico_arr_down_header.png) 50% no-repeat;
  background-size: 24px auto;
  transform: translateY(-50%) rotate(-90deg);
}
.allmenu_member_info .member_login .wrap_profile_area {
  margin-right: 16px;
  padding: 8px 0 13px;
  background: transparent;
}
.allmenu_member_info .member_login .wrap_profile_area .profile_area {
  width: 67px;
  height: 79px;
}
.allmenu_member_info .member_login .wrap_profile_area .profile_area::before {
  width: 67px;
  height: 22px;
  margin-left: 0;
  transform: translateX(-50%);
}
.allmenu_member_info .member_login .wrap_profile_area .profile_area .profile_frame {
  width: 66px;
  height: 66px;
  margin-left: -33px;
  border-radius: 26px;
}
.allmenu_member_info .member_login .wrap_profile_area .profile_area .img {
  width: 66px;
  height: 66px;
  margin-left: -33px;
  border-radius: 26px;
}
.allmenu_member_info .member_login .wrap_profile_area .profile_area .img img {
  width: 66px;
  height: 66px;
  border-radius: 26px;
}
.allmenu_member_info .member_logout {
  align-items: center;
  padding: 20px;
  background: #F5F5F5;
  justify-content: space-between;
}
.allmenu_member_info .member_logout .text_area {
  font-size: 0.75rem;
  line-height: 16px;
  color: #4D4E4F;
}
.allmenu_member_info .member_logout .btn_area {
  flex: 0 0 130px;
  text-align: right;
}

.allmenu_block {
  border-bottom: 8px solid #F5F5F5;
}
.allmenu_block .amenu_tit:first-child {
  padding-top: 20px;
}
.allmenu_block .amenu_tit {
  padding-top: 16px;
  padding-left: 20px;
  background: #fff;
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.42857;
  font-weight: 800;
  font-family: -apple-system, Roboto, "Noto Sans KR", "NotoSansKR", "malgun gothic", Arial, sans-serif;
  color: #9A9A9A;
  line-height: 20px;
}
.allmenu_block .amenu_tit_wrap {
  position: relative;
  padding-bottom: 14px;
  background: #FFF;
}
.allmenu_block .amenu_tit_wrap .btn_fold {
  position: absolute;
  top: 10px;
  right: 17px;
  width: 30px;
  height: 30px;
}
.allmenu_block .amenu_tit_wrap .btn_fold i.ico {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  background: url(/assets/images/renew.look.feel/ico_arrow_link.png) no-repeat center;
  background-size: 24px auto;
  transform: rotate(90deg);
}
.allmenu_block .amenu_tit_wrap .btn_fold.opened i.ico {
  transform: rotate(-90deg);
}
.allmenu_block .allmenu_list > ul > li + li {
  border-top: 1px solid #EEE;
}
.allmenu_block .allmenu_list > ul.col2 {
  background: #FFF;
}
.allmenu_block .allmenu_list > ul.col2::after {
  content: "";
  display: block;
  clear: both;
}
.allmenu_block .allmenu_list > ul.col2 > li {
  position: relative;
  float: left;
  width: 50%;
  border-top: 1px solid #EEE;
}
.allmenu_block .allmenu_list > ul.col2 > li:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 200%;
  height: 1px;
  background-color: #EEE;
}
.allmenu_block .allmenu_list > ul.col2 > li:nth-of-type(1), .allmenu_block .allmenu_list > ul.col2 > li:nth-of-type(2) {
  border-top: none;
}
.allmenu_block .allmenu_list > ul.col2 > li:nth-of-type(1)::after, .allmenu_block .allmenu_list > ul.col2 > li:nth-of-type(2)::after {
  background-color: transparent;
}
.allmenu_block .allmenu_list .menu {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: #FFF url(/assets/images/renew.look.feel/ico_arrow_link.png) no-repeat calc(100% - 20px) center;
  background-size: 24px auto;
}
.allmenu_block .allmenu_list .menu em {
  color: #232425;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 800;
  font-weight: 700;
  line-height: 24px;
}
.allmenu_block .allmenu_list .menu.link {
  background: #FFF url(/assets/images/renew.look.feel/ico_link.png) no-repeat calc(100% - 20px) center;
  background-size: 24px auto;
}
.allmenu_block .allmenu_list .menu .ico {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: url(/assets/images/renew.common/ico_allmenu_service_small.png) no-repeat 0 0;
  background-size: 24px auto;
}
.allmenu_block .allmenu_list .menu .ico.ico_service05 {
  background-position: 0 0;
}
.allmenu_block .allmenu_list .menu .ico.ico_service06 {
  background-position: 0 -24px;
}
.allmenu_block .allmenu_list .menu .ico.ico_service07 {
  background-position: 0 -48px;
}
.allmenu_block .allmenu_list .menu.arr_none {
  background-image: none;
}

.allmenu_list_service {
  padding: 10px 20px 24px;
  background: #FFF;
}
.allmenu_list_service > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  grid-gap: 8px 8px;
}
.allmenu_list_service .menu_service {
  display: block;
  width: 100%;
  height: 80px;
  padding-top: 10px;
  border: 1px solid #DEDEDE;
  border-radius: 12px;
}
.allmenu_list_service .menu_service .ico {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 auto;
  margin-bottom: 4px;
  background: url(/assets/images/renew.common/ico_allmenu_service.png) no-repeat 0 0;
  background-size: 36px auto;
  /*&.ico_service_thanksgiving_wht {
  	background-image: url(/assets/images/renew.look.feel/ico_service_thanksgiving_wht.png);
  	background-size: cover;
  }*/
}
.allmenu_list_service .menu_service .ico.ico_service01 {
  background: no-repeat center/contain url(/assets/images/renew.common/icon-alcohol.png);
}
.allmenu_list_service .menu_service .ico.ico_service02 {
  background-position: 0 -40px;
}
.allmenu_list_service .menu_service .ico.ico_service03 {
  background-position: 0 -80px;
}
.allmenu_list_service .menu_service .ico.ico_service04 {
  background-position: 0 -120px;
}
.allmenu_list_service .menu_service .ico.ico_service05 {
  background-position: 0 -160px;
}
.allmenu_list_service .menu_service .ico.ico_service06 {
  background-position: 0 -200px;
}
.allmenu_list_service .menu_service .ico.ico_service07 {
  background-position: 0 -240px;
}
.allmenu_list_service .menu_service .ico.ico_service08 {
  background-image: url(/assets/images/renew.common/icon-mainservice-event.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service09 {
  background-image: url(/assets/images/renew.common/icon-mainservice-stamp.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service10 {
  background-image: url(/assets/images/renew.common/icon-mainservice-subcoupon.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service11 {
  background-image: url(/assets/images/renew.common/icon-mainservice-keep.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service12 {
  background-image: url(/assets/images/renew.common/icon-mainservice-search.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service13 {
  background-image: url(/assets/images/renew.common/icon-mainservice-coupon.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service14 {
  background-image: url(/assets/images/renew.common/icon-mainservice-mobileticket.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service15 {
  background-image: url(/assets/images/renew.common/icon-mainservice-layby.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_preorder_pickup {
  background-image: url(/assets/images/renew.look.feel/ico_service_preorder.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_today_pickup {
  background-image: url(/assets/images/renew.look.feel/ico_service_today_pickup.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_quick_delivery {
  background-image: url(/assets/images/renew.look.feel/ico_service_quick_delivery.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_event_product {
  background-image: url(/assets/images/renew.look.feel/ico_service_event_product.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_alcohol_pickup {
  background-image: url(/assets/images/renew.look.feel/ico_service_alcohol_pickup.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_event {
  background-image: url(/assets/images/renew.look.feel/ico_service_event.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_stamp {
  background-image: url(/assets/images/renew.look.feel/ico_service_stamp.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_subscribe_coupon {
  background-image: url(/assets/images/renew.look.feel/ico_service_subscribe_coupon.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_keep {
  background-image: url(/assets/images/renew.look.feel/ico_service_keep.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_month_product {
  background-image: url(/assets/images/renew.look.feel/ico_service_month_product.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_coupon_store {
  background-image: url(/assets/images/renew.look.feel/ico_service_coupon_store.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_mobile_gift {
  background-image: url(/assets/images/renew.look.feel/ico_service_mobile_gift.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_delivery_reservation {
  background-image: url(/assets/images/renew.look.feel/ico_service_delivery_reservation.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_find_store {
  background-image: url(/assets/images/renew.look.feel/ico_service_find_store.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_thanksgiving {
  background-image: url(/assets/images/renew.look.feel/ico_service_thanksgiving.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_preorder_pickup_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_preorder_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_today_pickup_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_today_pickup_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_quick_delivery_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_quick_delivery_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_event_product_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_event_product_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_alcohol_pickup_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_alcohol_pickup_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_event_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_event_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_stamp_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_stamp_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_subscribe_coupon_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_subscribe_coupon_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_keep_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_keep_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_month_product_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_month_product_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_coupon_store_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_coupon_store_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_mobile_gift_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_mobile_gift_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_delivery_reservation_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_delivery_reservation_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service .ico.ico_service_find_store_wht {
  background-image: url(/assets/images/renew.look.feel/ico_service_find_store_wht.png);
  background-size: cover;
}
.allmenu_list_service .menu_service em {
  display: block;
  text-align: center;
  font-family: "NanumSquareRound", -apple-system, Roboto, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 16px;
}
.allmenu_list_service .menu_service em.service12 {
  font-size: 0.625rem;
  line-height: 13px;
}

@media (max-width: 359px) {
  .allmenu_list_service .menu_service em {
    font-size: 0.625rem;
  }
}
.wrap_loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.wrap_loading .block_loading > span {
  display: none;
  width: 80px;
  height: 80px;
  background: url(/assets/images/renew.common/img_loading_24.png) no-repeat;
  background-size: 80px auto;
}
.wrap_loading .block_loading > span:nth-child(1) {
  background-position: 0 0;
}
.wrap_loading .block_loading > span:nth-child(2) {
  background-position: 0 -80px;
}
.wrap_loading .block_loading > span:nth-child(3) {
  background-position: 0 -160px;
}
.wrap_loading .block_loading > span:nth-child(4) {
  background-position: 0 -240px;
}
.wrap_loading .block_loading > span.active {
  display: block;
}
