@charset "UTF-8";
/* 인풋 */
html {
  scroll-behavior: smooth;
}
html,
body {
  position: relative;
}
#wrapper,
#container {
  width: 100%;
  position: relative;
}

#container {
  padding: 60px 0 120px;
  max-width: 1920px; width: 100%; margin: 0 auto;
}

.h_hide #container{padding-top: 30px}
#container.view{}
#container.shop.view{}
.h_hide #container.shop.view{padding-top: 0px}

#container.index,
#container.viewer {
  padding: 0 !important;
}

#container section{}

.p-color {
  color: #cc921d;
}

#container .main_visual video{width: 100%; height: auto;}

.main_visual .swiper-slide {
  text-align: center;
}

.main_visual .swiper-slide .txt_box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main_visual .swiper-slide .txt_box dl {
  margin-bottom: 4rem;
}

.main_visual .swiper-slide .txt_box dl dt {
  font-size: 2.875rem;
}

.main_visual .swiper-slide .txt_box dl dt span {
  display: block;
}

.main_visual .swiper-slide .txt_box dl dt .tit1 {
  font-weight: 500;
  margin-bottom: 1.125rem;
}

.main_visual .swiper-slide .txt_box dl dt .tit2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.main_visual .swiper-slide .txt_box dl dd {
  font-size: 1.125rem;
}

.main_visual .swiper-slide .txt_box .btn_more {
  font-size: 20px;
  padding-right: 95px;
  background: url(../img/visual_arrow1.svg) right 8px no-repeat;
}

.main_visual .swiper-slide .txt_box .btn_more:hover {
  animation: moveRight 0.5s infinite alternate both;
}

.main_visual .swiper-slide.swiper-slide-active .txt_box {
  animation: fadeLeft 0.5s 0.3s both;
}

.main_visual .content_box {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);text-align: right;
  z-index: 10;
}

.main_visual .control button {
  width: 32px;
  height: 32px;
  background: url(../img/arrow_ic.svg) no-repeat center/ 10px 20px;
  filter: drop-shadow(0 0 1.5px #fff);
}

.main_visual .control button.prev {
  transform: rotate(180deg);
}

.main_visual .control button.play {
  background-image: url(../img/play_ic.svg);
}

.main_visual .control button.stop {
  background-image: url(../img/pause_ic.svg);
}
.main_visual.type_1 .main_visual_page,
.main_visual.type_1 .content_box{display: none}
.main_visual.type_7 .main_visual_page {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.main_visual.type_7 .main_visual_page::after {
}

.main_visual.type_7 .main_visual_page span {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  background: none;
  z-index: 10;
  opacity: 1;
  margin: 0;
  position: relative; border-bottom: 2px solid var(--color-default); transition: all .3s; border-radius: 0; padding: 0 7px
}

.main_visual.type_7 .main_visual_page span:last-child {
  margin-right: 0;
}

.main_visual.type_7 .main_visual_page span.swiper-pagination-bullet-active {
  border-bottom-color: #fff; color: #fff;
}

.main_visual.type_7 .main_visual_page span.swiper-pagination-bullet-active::after {
}

.main_visual.type_2 .main_visual_page{background: rgba(var(--color-200),1); font-size: 0}
.main_visual.type_2 .main_visual_page .swiper-pagination-progressbar-fill{background: rgb(var(--color-primary)); height: 10px; transform-origin: top left; display: block; width: 100%}

.main_visual.type_3 .main_visual_page{position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 1; background: rgba(var(--color-100),.5); padding: 0 10px; border-radius: 10px}
.main_visual.type_3 .content_box{position: static; transform: none}
.main_visual.type_3 .prev,
.main_visual.type_3 .next{position: absolute; top: 50%; transform: translateY(-50%); z-index: 1;  background-size: 18px auto}
.main_visual.type_3 .prev{left:10px}
.main_visual.type_3 .next{right:10px}
.main_visual.type_3 .stop,
.main_visual.type_3 .play{display: none}

.main_visual.type_4 .main_visual_page{position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 1}
.main_visual.type_4 .swiper-pagination-bullet{width: 28px; height: 28px; border-radius: 50%; border: 1px solid transparent; background: transparent;display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s}
.main_visual.type_4 .swiper-pagination-bullet::after{content:""; display: block; width: 4px; height: 4px; background: rgb(var(--color-700)); border-radius: 50%; }
.main_visual.type_4 .swiper-pagination-bullet-active{border-color: rgb(var(--color-700));}
.main_visual.type_4 .content_box{display: none}

.main_visual.type_5 .main_visual_page{display: flex;}
.main_visual.type_5 .swiper-pagination-bullet{flex: 1; width: 100%; border-radius: 0; margin: 0; height: auto; padding: 5px 10px; background: rgb(var(--color-500)); color: var(--card-body); cursor: pointer; transition: all .3s; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; opacity: 1; font-size: 14px}
.main_visual.type_5 .swiper-pagination-bullet-active,
.main_visual.type_5 .swiper-pagination-bullet:hover{background: rgb(var(--color-900))}

@keyframes moveRight {
  from {
    padding-right: 95px;
  }
  to {
    padding-right: 85px;
  }
}

@keyframes fadeLeft {
  from {
    transform: translate(-80px, -50%);
    opacity: 0;
  }
  to {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

.main_h2 {
  position: relative;
  font-size: 36px;
  margin-bottom: 35px;
  text-align: center;
  
}
.main_h2+span,
.main_h2>span{font-size: 18px; display: block; font-weight: normal; text-align: center}

.main_title_box{margin-bottom: 35px;}
.main_title_box .main_h2{margin-bottom: 0}
.main_title_box .sub_tit{font-size: 18px; display: block; font-weight: normal; text-align: center; }


.main_h2 .btn_link {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 5px;
}
.main_h2 .btn_link::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  background: #000;
  position: absolute;
  left: 0;
  top: 8px;
}
.main_h2 .btn_link::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 100%;
  background: #000;
  position: absolute;
  left: 8px;
  top: 0;
}

/* 베스트 상품 슬라이드 */
.best_prod_wrapper {}
.best_prod_wrapper button.btn {
  width: 22px;
  height: 41px;
  background: url(../img/arrow_41_black.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  opacity: 0.2;
}
.best_prod_wrapper button.btn.best_slide_prev {
  left: -46px;
}
.best_prod_wrapper button.btn.best_slide_next {
  right: -46px;
  transform: translateY(-100%) rotate(180deg);
}

/* 맞춤형 피부 솔루션 */
.solution_wrapper {
  
}
.solution_wrapper .content_box {
}
.solution_wrapper .left_tab {
  margin-bottom: 20px;
}
.solution_wrapper .left_tab dl {
  margin-bottom: 25px;
}
.solution_wrapper .left_tab dt {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.solution_wrapper .left_tab dd {
  font-size: 18px;
}
.solution_wrapper .tab {
  display: flex; gap: 8px; justify-content: center;
}
.solution_wrapper .tab button {
  min-width: 100px;
  height: 46px; line-height: 46px;  padding: 0 20px;
  border-radius: 23px;display: block;
  background-color: #c8c8c8;
  color: #666;
  font-size: 16px;
  font-weight: 300; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.solution_wrapper .tab button.on {
  background-color: var(--bg-primary);
  color: #fff;
}

.solution_slide {
  width: 100%;
}
.solution_slide .com_prod_list { 
  display: grid; grid-template-columns: repeat(3,1fr); 
}
.solution_slide .com_prod_list li {max-width: 100%; width: 100%; overflow: hidden;}

.solution_slide .com_prod_list li:nth-child(n+4){display: none;}
.solution_slide .com_prod_list li .img_box {
  overflow: hidden; border-radius: 5px;
}

/* 배너 영역  */
.banner_list{display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 12px; aspect-ratio : inherit !important;}
.banner_list li{border-radius: 8px; overflow: hidden; background: var(--bg-e2e2e2); transition: all .3s; position: relative; box-shadow: 2px 2px 6px rgba(0,0,0,0.15) }
.banner_list li:hover{background: var(--bg-a9a9a9)}
.banner_list li a{display: block;}
.banner_list li .img_box img{transition: all .5s; }
.banner_list li:hover img{transform: scale(1.05);}
.banner_list li .desc{padding: 10px 20px; transition: all .3s; display: flex; align-items: center; font-weight: bold; flex:1; overflow: hidden;color: var(--color-default); flex-wrap: wrap}
.banner_list li .desc>*{font-size: 16px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;}
.banner_list li .desc .real_price{width: 100%; display: block; }
.banner_list li .ic_like{position: absolute; bottom: 10px; right: 20px;}

.banner_list.shadow_none{}
.banner_list.shadow_none li{background: transparent; box-shadow: none; }

.banner_list.img.t_static li .desc{position: static}
.banner_list.img.t_position  li:hover img{transform: none;}
.banner_list.img.t_position li .desc{position: absolute; bottom: 0; left: 0; width: 100%; z-index: 1; background: rgba(var(--color-e2e2e2),.5);}
.banner_list.img.t_position li:hover .desc{padding: 20px}

.banner_list.img.wide4 li .img_box{aspect-ratio: 4/3; }
.banner_list.img.wide16 li .img_box{aspect-ratio: 16/9; }
.banner_list.img.wide_auto li .img_box{aspect-ratio: auto; }

.banner_list.img.cover li .img_box img{object-fit: cover}

.banner_list.gallery{gap: 4px}
.banner_list.gallery li{box-shadow: none; border-radius: 0; }
.banner_list.gallery .desc{display: none}

.banner_list.gallery.cover li .img_box img{object-fit: cover;}
.banner_list.gallery li:hover .img_box img{transform: none}

.banner_list.text:not(#view_best_product, #view_best_tag) li a{display: flex; height: 80px}
.banner_list.text li .img_box{height: 100%; aspect-ratio: 1/1}
.banner_list.text li .img_box img{object-fit: cover}
.banner_list.text li .desc{flex: 1; padding: 0 20px; align-self: center}
.banner_list.text li .desc .real_price{margin-top: 0;}

.banner_list.text.big{padding: 0}
.banner_list.text.small li a{padding: 10px}
.banner_list.text.small li .img_box{border-radius: 8px; }

.banner_list.text.noimg li .img_box{display: none; height: 60px}

.banner_list.text.radius li{border-radius: 40px}
.banner_list.text.radius li .img_box{display: none; height: 60px}

.banner_list.text.rounded li{border-radius: 40px; }
.banner_list.text.rounded li .img_box{border-radius: 50%; }


.banner_list .youtube_icon{width: 28px; height: 28px; position: absolute; top: 8px; right: 8px; background: #f00; border-radius: 50%; display: flex; align-items: center; justify-content: center}
.banner_list.text .youtube_icon{top: 50%; transform: translateY(50%)}
.banner_list.text .img_box{position: relative}
.banner_list.text li.youtube{flex-wrap: nowrap}
.banner_list.text li.youtube .desc{padding-right: 0}
.banner_list.text .youtube_icon{position: static; margin-left: auto}
.banner_list .youtube_icon img{width: 12px; height: auto}


.banner_list.t_left li .desc{justify-content: flex-start}
.banner_list.t_center li .desc{justify-content: center; text-align: center}
.banner_list.t_right li .desc{justify-content: flex-end; text-align: right}

.banner_list.col-1{grid-template-columns: repeat(1, 1fr)}
.banner_list.col-2{grid-template-columns: repeat(2, 1fr)}
.banner_list.col-3{grid-template-columns: repeat(3, 1fr)}
.banner_list.col-4{grid-template-columns: repeat(4, 1fr)}
.banner_list.col-5{grid-template-columns: repeat(5, 1fr)}
.banner_list.col-6{grid-template-columns: repeat(6, 1fr)}


#view_best_product.banner_list.text li a,
#view_best_tag.banner_list.text li a{}

/*
.main_banner_hr{width:100%; height:100px;}
.main_brand_partner{}
.main_brand_partner .banner_list{display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 10px; }
.main_brand_partner .banner_list li{border-radius: 20px; overflow: hidden; box-shadow: 0 0 10px var(--box-shadow-color-15)}
.main_brand_partner .banner_list li .img_box{overflow: hidden; max-height: 210px; height: 50vw; aspect-ratio: inherit}
.main_brand_partner .banner_list li .img_box img{transition: all .5s; width: 100%; height: 100%; object-fit: cover;}
.main_brand_partner .banner_list li:hover img{transform: scale(1.05);}
.main_brand_partner .banner_list li .desc{background: #ececec; padding: 10px 20px; transition: all .3s; color: var(--color-default);}
.main_brand_partner .banner_list li:hover .desc{background: #565656; color: #fff}
.main_brand_partner .banner_list li .desc .tit{font-size: 16px;}

.main_brand_text{}
.main_brand_text .banner_list{display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.main_brand_text .banner_list li{border-radius: 10px; overflow: hidden; border: 1px solid var(--box-shadow-color-15); background: #f7f7f7; }
.main_brand_text .banner_list li:hover{background: #565656;}
.main_brand_text .banner_list li a{display: flex; height: 80px; gap: 20px}
.main_brand_text .banner_list li .img_box{height: 100%; aspect-ratio :1/1; flex-shrink: 0}
.main_brand_text .banner_list li .desc{height: 100%; transition: all .3s; color: var(--color-default); display: flex; align-items: center; flex:1 }
.main_brand_text .banner_list li .desc .tit{font-size: 16px;}

.main_brand_movie{}
.main_brand_movie .banner_list{display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 10px; }
.main_brand_movie .banner_list li{overflow: hidden;}
*/



/* 메인 sns */
.ic_my {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/profile_ic.svg) no-repeat;
  background-size: contain;
  text-indent: -9999px;
  position: relative;
  background-image: url("../img/ic_login.png");
}
.ic_my.login {
  background-image: url(../img/login_ic.svg);
  background-image: url("../img/ic_user.png");
}
.ic_my::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 35px;
  bottom: -32px;
  left: 0;
}

.ic_search {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/search_ic_black.svg) no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

.ic_cart {
  display: block; width: 24px; height: 24px;
  position: relative;
}
.ic_cart #h_cart_cnt {
  display: flex;; align-items: center;; justify-content: center;
  font-size: 13px; color: var(--color-default);
  position: absolute;
  top:-7px; right: -7px; width: 100%;
  height: 100%;
  border-radius: 50%; line-height: 24px; width: 80%; height: 80%; background: rgb(var(--color-fff)); box-shadow: 0 0 3px rgba(var(--color-950),.2); border: 1px solid rgb(var(--color-100))}
.ic_cart #h_cart_cnt[data-count="0"]{opacity: 0}
.ic_cart .cart{ background: url("../img/ic_cart.png") no-repeat center / contain;animation-delay: 3s; display: block; width: 24px; height: 24px}

.ic_cartt:hover span{animation-play-state:paused;}
@keyframes ic_cart {
}

.ic_prod_cart {
  display: inline-block;
  width: 22px;
  height: 29px;
  background: url(../img/prod_cart_ic.svg) no-repeat;
  background-size: contain;
  position: relative;
}

.ic_prod_cart span {
  font-size: 12px;
  position: absolute;
  left: calc(50% - 1px);
  transform: translateX(-50%);
  top: 10px;
}

.ic_prod_cart.check {
  background-image: url(../img/cart_ic_check.svg);
}

.ic_like {
  display: inline-block;
  width: 25px;
  height: 23px;
  background: url(../img/unlike_ic.svg) no-repeat;
  background-size: contain;
  position: relative;
}

.ic_like span {
  font-size: 12px;
  position: absolute;
  left: calc(50% - 1px);
  transform: translateX(-50%);
  top: 10px;
}

.ic_like.on {
  background-image: url(../img/like_ic.svg);
}

/* 서브페이지 */
.h2_tit {
  padding-top: 1em;
  position: relative;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.65em;
}

/* 로그인 페이지 login */
.login_box {
  width: 100%;
  max-width: 480px;
  margin: 0px auto;
  min-height: 400px;
}

.login_box .h2_tit {
  margin-bottom: 3rem;
}

.login_box .login_btn_box{
  margin-top: 30px;}
.login_box .login_btn_box button{margin-bottom: 5px;}

.login_box .login_btn_box button span{margin: 0 auto;}
.login_box .btn_login {width: 100%; }

.login_box .btn_login.kakao_login_btn{background: #fee500; color: #000; display: flex; align-items: center; line-height: 1;}
.login_box .btn_login.kakao_login_btn::before{content: ""; display: block; width: 16px; aspect-ratio: 1/1; background: url(../img/ic_kakao.png) no-repeat center / contain; margin-right: 5px;}
.login_box .btn_login.naver_login_btn{background: #03c75a; color: #fff; display: flex; align-items: center; line-height: 1;}
.login_box .btn_login.naver_login_btn::before{content: ""; display: block; width: 16px; aspect-ratio: 1/1; background: url(../img/ic_naver.svg) no-repeat center /contain; margin-right: 5px;}

.login_box .bot_box {
  color: rgb(var(--color-700));
  font-weight: 300;
  margin-top: 10px;
}

.login_box .bot_box .find a:first-child {
  margin-right: 22px;
  position: relative;
}

.login_box .bot_box .find a:first-child::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 13px;
  top: 5px;
  right: -13px;
  background-color: rgb(var(--color-700));;
}

.login_box .hr {
  margin: 30px 0 20px 0;
}

.login_box .join {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border: 1px solid var(--input-border-color);
  font-size: 1rem;
}

.login_box .join_link {color: var(--color-default); line-height: 1.5; position: relative; display: flex; align-items: center;
}

.login_box .join_link .ic{display: block; width: 12px; height: 12px;}
.login_box .join_link .ic::after{content: ""; display: block; width: 100%; height: 100%; background: url(../img/arrow_ic.svg) no-repeat center right / auto 12px; position: absolute; top: 0%; right: 0;}

.login_box .com_tab_type1 {
  margin-bottom: 40px;
}

.login_box .bot_link {
  margin-top: 20px;
}

.login_box .join_finish {
  text-align: center;
  line-height: 1.5;
}

.login_box .join_finish dt {
  font-size: 1.625rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.login_box .join_finish dd {
  margin-bottom: 3.5em;
}

.login_box .find_finish {
  text-align: center;
  margin-bottom: 1.7em;
  line-height: 1.5;
  font-size: 1.375rem;
}

.login_box .find_finish span {
  font-size: 2rem;
  font-weight: 700;
}

.login_box .btn_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
}

.login_box .btn_box a,
.login_box .btn_box button {
  flex: 1;
}

.login_box .finish_txt {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.9em;
}
.login_box #idSave:checked + label::before{background-color: var(--bg-primary);}

/* 회원가입 join */
.join_box {
  width: 100%;
  max-width: 632px;
  margin: 0 auto;
  padding-bottom: 4.375rem;
}

.join_box .welcom {
  margin-bottom: 30px;
}

.join_box .welcom dt {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.join_box .auth_box {
  margin-bottom: 3rem; border-bottom: 1px solid var(--bg-f6f6f6);
}

.join_box .join_birthday {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.join_box .join_birthday .input_read {
  width: calc(65% - 10px);
  margin-right: 10px;
}

.join_box .join_birthday .radio_box {
  width: 35%;
}

.join_box .join_birthday .radio_box label {
  flex: 1;
}

.join_box .essential {
  text-align: right;
  font-weight: 400;
  margin-bottom: 20px;
}

.join_box .btn_join {
  width: 100%;
  max-width: 372px;
}

.arrow_link {
  padding-right: 12px;
  position: relative;
  text-decoration: underline;
}

.arrow_link .ic {
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  position: absolute;
  right: 0;
  top: calc(50% + 1px);
  border: 1px solid #333;
  transform: rotate(45deg) translateX(-50%);
  border-width: 1px 1px 0 0;
}

.agree_check_box {
  border: 1px solid var(--input-border-color);
  padding: 1.125rem 0.938rem;
  margin-top: 0.938rem;
  margin-bottom: 2.5rem;
}

.agree_check_box > div {
  font-size: 12px;
  margin-bottom: 1.25rem;
}

.agree_check_box > div:last-child {
  margin-bottom: 0;
}

.agree_check_box > div.has_view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.agree_check_box .promotion {
  padding-left: 28px;
}

.agree_check_box .promotion label {
  margin-right: 1.625rem;
}

.agree_check_box .checkbox + label::before {
  top: -2px;
}

/* 검색 search */
.search_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.search_box .input_box {
  height: 48px;
  border: none;
  border-bottom: 2px solid var(--color-default);
  line-height: 48px;
  width: 100%;
  padding-right: 85px;
}

.search_box .input_box .search_input {
  font-size: 1rem;
  width: 100%;
  border: none;
  height: 100%;
  outline: none;
  background: none;
  padding-left: 0.875rem;
  color: var(--color-default);
}

.search_box .input_box .search_input::placeholder {
}

.search_box .input_box.type2 {
  border-bottom: 1px solid #bebdbd;
}

.search_box .input_box.type2.on {
  border-color: var(--color-default);
}

.search_box .btn_close_g {
  position: absolute;
  right: 55px;
  top: 50%;
  transform: translateY(-50%);
}

.search_box .ic_search_b {
  position: absolute;
  right: 10px;
  bottom: 12px;
}

.search_box.sub {
  margin: 1.875rem auto;
}

.search_box.sub .input_box {
  margin-bottom: 0;
}

.search_wrapper {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed; top: 0; left:0;  
  background: var(--bg-fff);
  overflow: auto;
  padding-bottom: 20px;
  z-index: -1;
  opacity: 0;
  transition: 0.2s;
}

.search_wrapper .pop_btn_close {
  width: 1.875rem;
  height: 1.875rem;
  position: absolute;
  right: 2rem;
  top: 2.5rem;
}

.search_wrapper .content_box {
  padding-top: 170px;
}

.search_wrapper.on {
  opacity: 1;
  z-index: 1000;
}

.search_wrapper .search_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  width: 100%;
}

.search_wrapper .search_list dl {
  flex: 1;
  padding: 0 15px;
}

.search_wrapper .search_list dl dt {
  font-size: 1rem;
  margin-bottom: 1.375rem;
  font-weight: 500;
}

.search_wrapper .search_list dl .nodata {
}

.search_wrapper .search_list dl dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 22px;
}

.search_wrapper .search_list dl dd .num {
  margin-right: 2.063rem;
  display: inline-block;
  text-align: center;
  width: 20px;
  font-size: 1rem;
}

.search_wrapper .search_list dl dd:last-child {
  margin-bottom: 0;
}

.search_wrapper .search_list .last_keyword dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.search_wrapper .search_list .last_keyword dt button {
  text-decoration: underline;
  font-size: 0.875rem;
}

.search_wrapper .search_list .last_keyword dd {
  justify-content: space-between;
}

.search_wrapper .search_list .last_keyword dd .btn_del {
  width: 12px;
  height: 12px;
  background: url(../img/close_ic.svg) no-repeat center/contain;
}

/* shop 샵 쇼핑 */
.shop_list .shop_list_util{display: flex; align-items: center; justify-content: flex-end; gap: 15px}
.shop_list select{margin-left: auto; display: block}
.list_wrapper {
  width: 100%;
}

.list_wrapper .top_info {
  font-size: 1rem; padding: 10px 0;
  border-bottom: 1px solid rgb(var(--color-150));;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.list_wrapper .top_info .count {
  color: #cc921d;
  font-weight: 500;
}

.list_wrapper .top_info .custom_select_box {
  width: 160px;
}

.list_wrapper .page_box {
  margin-top: 4.688rem;
}

.list_wrapper .no_data {
  padding-top: 3.75rem;
}

.list_wrapper .no_data dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.list_wrapper .no_data dl dt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  font-size: 1rem;
  color: rgb(var(--color-500));;
  font-weight: 500;
  margin-bottom: 12px;
}

.list_wrapper .no_data dl dt span {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid rgb(var(--color-500));;
  margin-bottom: 15px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-weight: 300;
  font-size: 38px;
  color: rgb(var(--color-500));;
}

.list_wrapper .no_data dl dd {
  color: rgb(var(--color-500));
  text-align: center;
  margin-bottom: 7px;
}

.com_prod_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px 10px; 
}
.com_prod_list.col-3{grid-template-columns: repeat(3, 1fr);}
.com_prod_list.col-4{grid-template-columns: repeat(4, 1fr);}
.com_prod_list li{display: block; width: 100%; max-width: 100%; overflow: hidden;}

.com_prod_list .prod_empty{}
.com_prod_box{}

.com_prod_box .ic_cart {
  width: 21.5px;
  height: 28.3px;
}

.com_prod_box .img_box {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  position: relative; border-radius: 5px;
}


/* 커밍순 공통 */
.img_box .coming_txt {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  flex-direction: column;
}
.img_box .coming_txt .tit {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  margin-bottom: 10px;
}
.img_box .coming_txt .tit::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -5px;
}
.img_box .coming_txt .tit::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -5px;
}
.img_box .coming_txt .tit span {
  letter-spacing: -1.5px;
}
.img_box .coming_txt .txt {
  font-size: 12px;
}

.com_prod_box .img_box .ic_like {
  display: none;
}

.com_prod_box .img_box img {
  opacity: 1;
  transition: 0.2s;
  width: 100%; height: 100%; object-fit: contain;
}

.com_prod_box .img_box.has_over img:nth-child(2) {
  position: absolute;
  opacity: 0;
}

.com_prod_box .prod_info {
  margin-top: 1.0rem;
	font-size : 16px;
}
.banner_list .com_prod_box .prod_info{margin-top: 0; padding: 10px 20px}

.com_prod_box .prod_info dl {
  margin-bottom: 0.938rem;
}

.com_prod_box .prod_info dl dt { margin-bottom: 10px;}

.com_prod_box .prod_info dl dt a{display: block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; font-size: 1.125rem; font-weight: 500;}

  .com_prod_box .prod_info dl dd {
  color: #999; font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; word-break: break-all;
  /*white-space: nowrap;*/
  text-overflow: ellipsis;
  overflow: hidden;
}

.com_prod_box .prod_info .bot_box {
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
}

.com_prod_box .prod_info .bot_box .price_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.com_prod_box .prod_info .bot_box .og_price {
  margin-right: 8px;
}

.com_prod_box .prod_info .bot_box .og_price .num {
  text-decoration: line-through;
  color: #999;
  margin-right: 0.2rem;
}

.com_prod_box .prod_info .bot_box .og_price .per {
  color: #ff4b4b;
  font-weight: 500;
  display: none;
}

.com_prod_box .prod_info .bot_box .real_price {
  font-size: 1rem;
  font-weight: 700;
  margin-right: 10px; line-height: 1;
  
}

.com_prod_box .prod_info .bot_box .right .ic_like {
  position: relative;
}
  .pt80 {
  padding-top: 80px;
}


.detail_wrapper.market_type2 .title_box{
	border-bottom: 1px solid var(--bg-e2e2e2);
	margin-bottom:20px;
}
.detail_wrapper.market_type2 h2.title {
  /* .detail_wrapper .top_info_box h2.title과 디자인 동일 */
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 700;
}
.detail_wrapper.market_type2 .sub_title{
  /* .detail_wrapper .top_info_box .sub_title과 디자인 동일 */
  color: #999;
  font-size: 1.125rem;
  margin-bottom: 15px;
}
.detail_wrapper.market_type2 .review_share_like{border-bottom: 0; padding-bottom: 0; width: auto; ;}
.detail_wrapper.market_type2 .top_slide_wrapper{ align-self: flex-start}
.detail_wrapper.market_type2 .top_slide_wrapper.wide4{aspect-ratio: 4/3;}
.detail_wrapper.market_type2 .top_slide_wrapper.wide16{aspect-ratio: 16/9;}

.detail_wrapper.market_type2 .top_slide_wrapper img{width: 100%; height: 100%; object-fit: contain; }
.detail_wrapper.market_type2 .top_info_box{flex: 1;}
.detail_wrapper.market_type2 .top_info_box .title,
.detail_wrapper.market_type2 .top_info_box .sub_title{display: none}
.detail_wrapper.market_type2 .top_info_box .cost{height: 100%; display: flex; flex-direction: column; flex: 1;}
.detail_wrapper.market_type2 .detail_price_info{padding-top: 0; }
.detail_wrapper.market_type2 .detail_info{flex: 1; }
.detail_wrapper.market_type2 .detail_info_dl{font-size: 1.125rem; height: 48px; margin-bottom: 5px; align-items: center;}


.detail_wrapper .detail_top_info {
  display: flex;
}
.top_slide_wrapper {
  width: 50%;
  margin-right: 50px;
  position: relative;
}
.top_slide_wrapper .tmp_soldout {
  position: absolute;
  bottom: 0px;
  left: 00px;
  background: #333;
  color: #fff;
  opacity: 0.5;
  width: 100%;
  font-size: 18px;
  padding: 10px 0;
  text-align: center;
}
.detail_wrapper .detail_top_slide {
  border: 1px solid rgb(var(--color-300));
}


/* 상세페이지 커밍순 */
.top_slide_wrapper .coming_txt .tit span {
  letter-spacing: -1.5px;
}
.top_slide_wrapper .coming_txt .txt {
  font-size: 12px;
}
.top_slide_wrapper .coming_txt .tit {
  font-size: 42px;
}
.top_slide_wrapper .coming_txt .txt {
  font-size: 17px;
}

.detail_wrapper .detail_top_slide .swiper-wrapper li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.detail_wrapper .detail_slide_page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.detail_wrapper .detail_slide_page .swiper-pagination-bullet {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #bebdbd;
  margin: 0 4px;
}

.detail_wrapper
  .detail_slide_page
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #a88421;
}

.detail_wrapper .detail_swipe_page {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.detail_wrapper .detail_swipe_page button {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-right: 10px;
  border: 1px solid #e6e6e6;
}

.detail_wrapper .detail_swipe_page button:last-child {
  margin-right: 0;
}

.detail_wrapper .detail_swipe_page button.on {
  border-color: #a88421;
}

.detail_wrapper .top_info_box {
  width: 610px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.detail_wrapper .top_info_box h2.title {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 700;
}

.detail_wrapper .top_info_box .sub_title {
  color: #999;
  font-size: 1.125rem;
  margin-bottom: 15px;
  
}

.review_share_like {
  padding-bottom: 17px;
  width: 100%;
  border-bottom: 1px solid var( --bg-e2e2e2);
}

.review_share_like .right {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.review_share_like .right .share_list_pop {
  position: absolute;
  left: -20px;
  transform: translateX(-100%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}

.review_share_like .right .share_list_pop button {
  margin-right: 10px;
  opacity: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.2s;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.review_share_like .right .share_list_pop button:last-child {
  margin-right: 0;
}

.review_share_like .right .share_list_pop.on button.ic_link {
  animation: shareIc 0.2s both;
  background-image: url(../img/ic_share.svg);
}

.review_share_like .right .share_list_pop.on button.kas {
  animation: shareIc 0.2s 0.1s both;
  background-image: url(../img/ic_story.svg);
}

.review_share_like .right .share_list_pop.on button.ic_kakao {
  animation: shareIc 0.2s 0.2s both;
  background-image: url(../img/ic_kakao.svg);
}

.review_share_like .ic_share {
  width: 18px;
  height: 18px;
  margin-right: 1.25rem;
  background: url(../img/share_ic.svg);
}

@keyframes shareIc {
  to {
    opacity: 1;
  }
}

.review_star_value {
  width: 80px;
  height: 24px;
  background: url(../img/star_value_off.svg) no-repeat left center;
  position: relative;
  display: inline-block;
  background-size: 100% auto;
  flex-shrink: 0;
}

.review_star_value .value_on {
  height: 24px;
  display: inline-block;
  background: url(../img/star_value_on.svg) no-repeat left center;
  z-index: 1;
  background-size: 80px auto;
}

.review_star_value .value_on.star_1 {
  width: 20%;
}

.review_star_value .value_on.star_2 {
  width: 40%;
}

.review_star_value .value_on.star_3 {
  width: 60%;
}

.review_star_value .value_on.star_4 {
  width: 80%;
}

.review_star_value .value_on.star_5 {
  width: 100%;
}

.detail_price_info {
  width: 100%;
  padding-top: 10px;
}

.detail_info_dl {
  height: 48px;
  width: 100%;
  font-size: 1.125rem;
  padding: 0 10px;
  margin-bottom: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.detail_info_dl .custom_select_box {
  width: 100%;
  max-width: 380px;
}

.fix .detail_info_dl .custom_select_box {
  max-width: 100%;
}

.detail_info_dl:last-child {
  margin-bottom: 0;
}

.detail_info_dl dt {
  width: 120px;
  flex-shrink: 0;
  margin-right: 10px;
  color: #999;
}

.detail_info_dl dd {
  
  color: var(--color-default);
  font-weight: 500;
  flex: 1;
  position: relative;
  z-index: 10;
}

.detail_info_dl .og_price {
  font-size: 0.875rem;
  color: #999;
  margin: 0 5px 0 10px;
  text-decoration: line-through;
  font-weight: 300;
}

.detail_info_dl .sale {
  font-size: 0.875rem;
  color: #ee0000;
}

.detail_info_dl .pv {
  color: #4e89ff;
  background: url(../img/ic_point.svg) no-repeat center left/ 20px 20px;
  text-indent: 25px;
  width: 100%;
  line-height: 48px !important;
  height: 48px;
}

.detail_info_dl.option {
  margin: 15px 0 20px;
}
.detail_info_dl.deliver_price dd span {
  font-size: 12px;
  color: #999;
}

.detail_info_dl.deliver_price{position: relative;}
.detail_info_dl.deliver_price .charge{position: absolute; top: 50%; right: 0;; transform: translateY(-50%);}

.detail_info_dl.option .custom_select_box .select_txt span {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.detail_info_dl .xlink_goods{display: flex; gap: 10px; align-items: flex-end}
.detail_info_dl .xlink_goods .icon{}
.detail_info_dl .xlink_goods .icon i{display: flex; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--tab-border-color); font-family: 'GmarketSans', 'Noto Sans KR', sans-serif; align-items: center; justify-content: center; font-style: normal; font-size: 12px; color: var(--tab-border-color)}
.detail_info_dl .xlink_goods:hover .icon .desc{display: block; }
.detail_info_dl .xlink_goods .icon .desc{position: absolute; bottom: 100%; left: 0; display: none; padding: 10px; border-radius: 8px; background: rgb(var(--color-50)); transform: translateY(-10px); font-size: 13px; word-break: break-all}
.detail_info_dl .xlink_goods .icon .desc::after{content: ""; display: block; width: 8px; height: 8px; background: rgb(var(--color-50)); position: absolute; top: 100%; left: 20px; transform: translateY(-4px) rotate(45deg)}

.detail_option_total_box {
  width: 100%;
}

.detail_option_info {
  width: 100%;
  border-top: 1px solid var( --bg-e2e2e2);
}

.detail_option_info#share_option {
  border-top: none;
}

.detail_option_info.single {
  border-top: 1px solid var( --bg-e2e2e2);
  margin-top: 15px;
}

.detail_option_list {
  width: 100%;
  padding: 10px 0;
  overflow-y: auto;
  max-height: 155px;
  border-bottom: 1px solid var( --bg-e2e2e2);
}

.detail_option_list::-webkit-scrollbar {
  width: 6px;
}

.detail_option_list::-webkit-scrollbar-thumb {
  background-color: #bebdbd;
  border-radius: 20px;
}

.detail_option_list dl {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
}

.detail_option_list dl {
  padding: 20px 10px;
}

.detail_option_list dl.option {
  border-top: 1px solid var( --bg-e2e2e2);
}

/*  .detail_option_total_box .custom_select_box .list{border: 1px solid #333; border-top: none; width: calc(100% + 2px); transform: translateX(-1px);}
.detail_option_total_box .custom_select_box .list li{width: 100%; border: none;}
*/
.detail_option_list dl dt {
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 250px;
}

.detail_option_list dl dt .option_name {
  color: #999;
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 10px;
}

.detail_option_list dl .btn_del {
  order: -1;
}

.detail_option_list dl .btn_del button {
  width: 15px;
  height: 15px;
  background: url(../img/close_ic.svg) no-repeat center/contain;
}

.detail_option_list dl .count_price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.detail_option_list dl .price {
  font-size: 1.125rem;
  
  font-weight: 500;
  margin-left: 20px;
  width: 110px;
  text-align: right;
}

.detail_option_list .com_count_box .count {
  /*margin-right: 50px; */
}

.com_count_box .count {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  font-size: 1.25rem;
  
  font-weight: 500;
}

.com_count_box .count button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
}

.com_count_box .count input {
  width: 55px;
  text-align: center;
  border: none;
  margin: 0;
  outline: none;
}
.com_count_box .btn_minus,
.com_count_box .btn_plus {
  background-color: transparent;
  border: 1px solid var(--bg-e2e2e2);
  color: var(--color-default)
}

.com_count_box .btn_minus:hover,
.com_count_box .btn_plus:hover{background-color: var(--bg-primary); border-color: var(--bg-primary); color: var(--color-default)}

.com_count_box .btn_minus::after{content:"-"; color: var(--color-default);}
.com_count_box .btn_plus::after{content:"+"; color: var(--color-default);}


.detail_option_total_box .btn_open {
  display: none;
  width: 127px;
  height: 48px;
  background-color: var(--color-default);
  color: #fff;
  font-size: 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}

.detail_option_total_box .btn_open i {
  width: 8px;
  height: 15px;
  background: url(../img/arrow_ic_white.svg) no-repeat center/contain;
  margin-left: 16px;
  transform: rotate(-90deg);
}

.detail_option_total_box .close_box {
  display: none;
}
/*
.detail_option_total_box.fix {
  position: fixed;
  right: 50%;
  bottom: 0;
  width: 660px;
  padding: 20px 30px 30px 30px;
  transform: translate(500px, 100%);
  background-color: #fff;
  border: 1px solid #e6e6e6;
}

.detail_option_total_box.fix .detail_option_info.single {
  border-top: none;
  margin-top: 0;
}

.detail_option_total_box.fix .detail_option_info.single .detail_option_list {
  padding-top: 0;
}

.detail_option_total_box.fix .detail_option_info.single .detail_option_list dl {
  height: 40px;
}

.detail_option_total_box.fix.on {
  animation: toast 0.2s both;
}

.detail_option_total_box.fix.on .btn_open i {
  transform: rotate(90deg);
}

.detail_option_total_box.fix .btn_open {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.detail_option_total_box.fix .btn_open i {
  transform: rotate(-90deg);
}

.detail_option_total_box.fix .detail_info_dl {
  padding-left: 0;
  padding-right: 0;
}

.detail_option_total_box.fix .detail_info_dl dt {
  display: none;
}
*/

@keyframes toast {
  to {
    transform: translate(500px, 0%);
  }
}

.detail_total_info {
  
  margin-bottom: 60px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
}

.detail_total_info dt {
  font-size: 1.625rem;
  font-weight: 500;
}

.detail_total_info dd {
  font-size: 1.625rem;
  color: #f45e5c;
  font-weight: 700;
}

.detail_total_info dd .won {
  font-size: 1.375rem;
  color: var(--color-default);
  font-weight: 500;
}

.detail_btn_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-top: 20px;
}

.detail_btn_box button {
  flex: 1;
  font-size: 1.125rem;
}

.detail_btn_box button:first-child {
  margin-right: 10px;
}

.top_info_box.single {
  height: 580px;
}

.top_info_box.single .detail_btn_box {
  position: absolute;
  bottom: 0;
  left: 0;
}

.detail_tab {
  margin-bottom: 40px;
  width: 100%;
  margin-top: 60px;
}

.detail_tab ul {
}


.detail_tab ul li {
  cursor: pointer;
}


.detail_tab ul.full li{

}

.detail_tab ul li.on {
}

.detail_tab_prod_info .detail_con_box {
  overflow: hidden;
  position: absolute;
  z-index: -1;
  opacity: 0;
  height: 0;
}

.detail_tab_prod_info .detail_con_box.on {
  position: relative;
  z-index: 1;
opacity: 1;
  overflow: inherit;
  height: auto;
}

.detail_tab_prod_info .detail_con_box .detail_info_items:not(:last-child){margin-bottom: 60px;}
.detail_tab_prod_info .detail_con_box .detail_info_items h6{font-size: 18px; font-weight: bold;
  margin-bottom: 25px;}
.detail_tab_prod_info .detail_con_box .detail_info_items ul li{display: flex; border-bottom: 1px solid var(--tab-border-color)}
.detail_tab_prod_info .detail_con_box .detail_info_items ul li>*{padding: 30px 0; }
.detail_tab_prod_info .detail_con_box .detail_info_items ul li .tit{width: 150px; flex-shrink: 0; }

.detail_tab_prod_info .detail_con_box .download_box{text-align: center}
.detail_tab_prod_info .detail_con_box .download_box li{margin-bottom: 90px;}
.detail_tab_prod_info .detail_con_box .download_box li:last-child{margin-bottom: 0}
.detail_tab_prod_info .detail_con_box .download_box.none_btn li{margin-bottom: 0;}

.detail_tab_prod_info .detail_con_box .video-container {position: relative; width: 100%; overflow: hidden}
.detail_tab_prod_info .detail_con_box #videoPlayer {width: 100%; height: 100%; opacity: 0; pointer-events: none}
.detail_tab_prod_info .detail_con_box #videoPlayer.on{opacity: 1; pointer-events: auto}
.detail_tab_prod_info .detail_con_box #videoPlayer_btn {position: absolute; width: 100%; height: 100%; }
.detail_tab_prod_info .detail_con_box #videoPlayer_btn .btn_img{position: relative; width: 64px; height: 64px;   margin:0 auto; }
.detail_tab_prod_info .detail_con_box #thumbnail {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: auto}
.detail_tab_prod_info .detail_con_box #play-button {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: url('/_icon/btn_play.png') no-repeat center center; background-size: contain; cursor: pointer; }

.detail_tab_prod_info .detail_con_box .file{display: flex; gap: 10px; margin-bottom: 10px; justify-content: center; width: 100%; background: rgb(Var(--color-50)); padding: 15px 10px}
.detail_tab_prod_info .detail_con_box .file_name strong{font-size: 16px; line-height: 48px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.detail_tab_prod_info .detail_con_box .download_box .btn_basic{flex-shrink: 0; margin: 0 auto 10px;}
.detail_tab_prod_info .detail_con_box .download_box .file .btn_basic{flex-shrink: 0; margin: 0; }

.detail_wrapper .detail_top_slide li{aspect-ratio: 0;}
/* 상세페이지 이미지 영역 */
.detail_img_wrap {
  width: 100%;
  max-width: 1000px;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  position: relative;
}
.detail_img_slide {
  width: 100%;
}
.detail_img_slide .control {
  position: absolute;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.detail_img_slide:hover .control {
  opacity: 1;
}
.detail_img_slide .control button {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.6);
  z-index: 10;
  transform: rotate(45deg);
}
.detail_img_slide .control button.detail_img_slide_prev {
  left: 77px;
  border-width: 0 0 4px 4px;
}
.detail_img_slide .control button.detail_img_slide_next {
  right: 77px;
  border-width: 4px 4px 0 0;
}

.detail_img_wrap .gif_box {
  position: relative;
}
.detail_img_wrap .gif_box .gif {
  position: absolute;
  width: 47.5%;
  padding-bottom: 64%;
  height: 0;
  left: 8.5%;
  top: 29.44%;
  background-repeat: no-repeat;
  background-size: contain;
}

.detail_con_box.qna {
  padding-top: 60px;
}

.detail_con_box.info {
  padding-top: 60px;
}

.detail_con_box.info h4.title {
  font-size: 22px;
}


.detail_tbl {
  margin-bottom: 120px;
}

.detail_tbl .has_option {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  white-space: nowrap;
}

.detail_tbl .has_option .tit {
  margin-right: 10px;
}

.detail_tbl .has_option .custom_select_box {
  width: 250px;
}

.detail_tbl_option_info {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.detail_tbl_option_info.on {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.cart_top_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.cart_top_box .step {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.cart_top_box .step li {
  position: relative; display: flex; align-items: center;
  font-size: 1rem;
  color: var(--bg-e2e2e2);
  margin-right: 20px;
}

.cart_top_box .step li:last-child {
  margin-right: 0;
}

.cart_top_box .step li .ic{display: block; width: 8px; height: 12px;
  margin-left: 20px; transform: translateY(2px)}
.cart_top_box .step li .ic::after {
  content:""; display: block;
  width: 100%;
  height: 100%;
  background: url(../img/arrow_ic_black.svg) no-repeat center/contain;
  opacity: 0.5;
}

.cart_top_box .step li.on {
  font-weight: 700;
  color: var(--color-default);
}

.cart_top_box .step li.on .ic::after {
  opacity: 1;
}

.cart_top_box .step li:last-child::after {
  display: none;
}

.cart_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}

.cart_wrapper .cart_left {
  flex: 1;
  margin-right: 20px; 
}

.top_check_box {
  font-size: 1rem;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 40px;
}

.top_check_box label::before {
  top: 2px;
}

.top_check_box .btn_del {
  text-decoration: underline;
  font-size: 1rem;
}

.cart_list .cart_empty {background: rgb(var(--color-fff));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 460px;
  border-top: 2px solid var(--bg-333);
}

.cart_list .cart_empty i {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../img/ic_exclamation_none.svg) no-repeat center/contain;
  margin-bottom: 10px;
}

.cart_list .cart_empty p {
  font-size: 16px;
  margin-bottom: 30px;
}

.cart_list .cart_empty a {
  width: 210px;
}

.cart_list .header {
  border-top: 1px solid var(--tab-border-color);
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 62px;
  border-bottom: 1px solid var(--tab-border-color);
}

.cart_list .header.no_top_bd {
  border-top: none;
}

.cart_list .box {
  text-align: center;
  width: 13%;
  flex-shrink: 0;
}

.cart_list .box.box_0 {
  width: 62px;
}

.cart_list .box_1 {
  flex: 1;
}
/*
.cart_list .box_0 {
  width: 72px; }

.cart_list .box_1 {flex: 1;}

.cart_list .box_2 {
  width: 130px; }

.cart_list .box_3 {
  width: 132px; }

.cart_list .box_4 {
  width: 140px; }

.cart_list .box_5 {
  width: 136px; }

  */

.cart_prod_list {
  width: 100%;
}

.cart_prod_list.my_qna {
  border-top: 2px solid var(--bg-333);
  margin-bottom: 30px;
}

.cart_prod_list > li {
  border-bottom: 1px solid var(--bg-e2e2e2);
  width: 100%;
  min-height: 162px;
  padding: 15px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.cart_prod_list > li .box.img .img_box {
  width: 132px;
  height: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 16px;
}

.cart_prod_list > li .box.img .img_box img {
  max-height: 100%;
  width: auto;
}

.cart_prod_list > li .box_0 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.cart_prod_list > li .prod {
  display: flex; gap: 10px;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.cart_prod_list > li .prod .img_box {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-shrink: 0; position: relative;
}
.cart_prod_list > li .prod .img_box.soldout::after{content:"";display: block; position: absolute;
  top: 0; left: 0; background: rgb(0,0,0,.5); width: 100%; height: 100%}

.cart_prod_list > li .prod .img_box img {
  max-height: 100%;
  width: auto;
}

.cart_prod_list > li .prod .prod_info {
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
}

.cart_prod_list.my_qna > li .prod .prod_info {
  padding: 0;
}

.cart_prod_list > li .prod .prod_info dt {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px; display: flex; gap: 15px
}

.cart_prod_list > li .prod .prod_info dt .delete{display: block; width: 28px; height: 28px; background: none; border: none; padding: 0}
.cart_prod_list > li .prod .prod_info dt .delete .ic::after{content: ""; display: block; width: 100%; height: 100%; background: url(../img/close_ic_black.svg) no-repeat center / 12px auto; }

.cart_prod_list > li .prod .prod_info dd {
  color: #999;
  
}

.cart_prod_list > li .prod .prod_info .custom_select_box {
  margin-top: 15px;
  width: 100%;
}

.cart_prod_list > li .prod .prod_info .custom_select_box .select_txt span {
  width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart_wrapper .custom_select_box .list li {
  height: auto;
  line-height: 1.5;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

.cart_prod_list > li .price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  
  gap: 10px;
}

.cart_prod_list > li .price .og_price {
  color: #999;
  margin-bottom: 7px;
  font-size: 0.875rem;
  text-decoration: line-through;
}

.cart_prod_list > li .price .real_price {
  font-size: 16px;
  font-weight: 700;
}

.cart_prod_list > li .save,
.cart_prod_list > li .count,
.cart_prod_list > li .total {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.cart_prod_list > li .save {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  font-weight: 500;
  line-height: 1.7;
  font-size: 16px;
  
  color: #4e89ff;
  justify-content: center;
}

.cart_prod_list > li #Cart_point{color: #4e89ff; display: flex;  gap: 10px; align-items: center;}

.cart_prod_list > li #Cart_point::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ic_point.svg) no-repeat center / cover;
  margin-right: 5px;
  font-size: 0;
}


.cart_prod_list > li .total {
  font-size: 18px;
  font-weight: bold;
  
}

.cart_total_price {
  width: 270px;
  padding-top: 40px;
  position: sticky;
  position: -webkit-sticky;
  top: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.cart_total_price .list {
  border: 1px solid #bebdbd;
  padding: 1.25rem;
  margin-bottom: 10px;
  width: 100%;
}

.cart_total_price .list dl {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 42px;
  font-size: 1rem;
}

.cart_total_price .list dd {
  
}

.cart_total_price .list .line {
  width: 100%;
  height: 1px;
  background-color: var(--color-default);
  margin: 20px 0;
}

.delivery_cost_info {
  display: none;
  position: absolute;
  width: 300px;
  left: 0;
  top: 40px;
  overflow: auto;
  padding: 15px;
  background: rgb(var(--color-50));
  z-index: 1;
}
.delivery_cost_info.on {
  display: block;
}
.delivery_cost_info .tit {
  margin-bottom: 5px;
}
.delivery_cost_info .tit h4 {
  font-size: 15px;
}
.delivery_cost_info .tit h4 span {
  font-size: 12px;
  font-weight: 300;
  display: block;
  margin-top: 5px;
  color: #888;
}
.delivery_cost_info ul {
  display: flex;
  flex-wrap: wrap;
}
.delivery_cost_info ul li {
  font-size: 12px;
  margin-bottom: 2px;
  margin-right: 10px;
}
.delivery_cost_info ul li:last-child {
  margin-bottom: 0;
}

.cart_total_price .list .total dd {
  font-size: 1.25rem;
  font-weight: 700;
}

.cart_total_price .btn_box {
  width: 100%; margin-top: 10px;
}

.cart_total_price .btn_box button {
  width: 100%;
  margin-bottom: 5px;
  font-size: 1rem;
}

.cart_total_price .check_btn_box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}

.cart_total_price .check_btn_box .check {
  padding: 20px 12px;
  margin-bottom: 10px;
  width: 100%;
}

.cart_total_price .check_btn_box .btn_basic {
  width: 100%;
}

  .cart_wrapper.payment .pay_input_con {
  padding: 10px; padding-top: 30px;
  width: 100%;
  max-width: 712px;
}

.cart_wrapper.payment .order_summary_2 .pay_input_con {
  padding-top: 50px;
}
/* 
.cart_wrapper.payment .cart_list .box_1 {
  width: 556px; 
  width: 100%;
}
.cart_wrapper.payment .cart_list .box_2 {
  width: 139px; }

.cart_wrapper.payment .cart_list .box_3 {
  width: 139px; }

.cart_wrapper.payment .cart_list .box_4 {
  width: 139px; }

.cart_wrapper.payment .cart_list .box_5 {
  width: 194px; }
 */
.cart_wrapper.payment .cart_total_price {
  width: 320px;
  padding-top: 27px;
}

.cart_wrapper.payment .tbl_basic,
.cart_wrapper.payment .tbl_basic th,
.cart_wrapper.payment .tbl_basic td {
  border: none;
}
.cart_wrapper.payment .tbl_basic th {
  background: var(--card-body);
  width: 200px;
  padding: 0 20px;
}
.cart_wrapper.payment .tbl_basic td .pay_btn {
  max-width: 200px;
  margin-right: 10px;
  width: 100%;
}

.cart_wrapper .agree_box {
  width: 100%;
}
.cart_wrapper .agree_box .agree_list {
  margin-bottom: 8px;
}
.cart_wrapper .agree_box .agree_list:last-child {
  margin-bottom: 0;
}
.cart_wrapper .agree_box .agree_txt {
  border: 1px solid #bebdbd;
  padding: 10px;
  height: auto;
}

.cart_wrapper .agree_box .agree_txt .agree_all_box {
  margin-bottom: 15px;
}
.cart_wrapper .agree_box .agree_txt .agree_all_box label {
  font-size: 14px;
}

.cart_wrapper .agree_box .agree_txt h4 {
  font-size: 1.125rem;
  margin-bottom: 14px;
  font-weight: 500;
}

.cart_wrapper .agree_box .agree_txt .agree_list_box {
  border: 1px solid #999;
  padding: 10px;
}

.cart_wrapper .agree_box .agree_txt label {
  color: var(--color-default);
  line-height: 1.5;
  display: inline-block;
  font-size: 12px;
}

.cart_wrapper .agree_box .agree_txt label::before {
  width: 18px;
  height: 18px;
}

.cart_wrapper .agree_box .agree_txt .agree_list_box .agree_list a {
  text-decoration: underline;
  font-size: 12px;
}

.cart_wrapper .agree_box .agree_txt .agree_list_box .agree_list a .ic::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  background: url(../img/arrow_ic_black.svg) no-repeat center / contain;
  margin-left: 5px;
}

.cart_wrapper .agree_box button {
  width: 100%;
  margin-top: 10px;
  font-size: 1rem;
}

.cart_wrapper #coin_info_box{margin-top: 10px; margin-right: 0; }

.cart_wrapper.payment .pay_input_con input {
  font-size: 1rem;
}

.cart_wrapper.payment .cart_prod_list > li:last-child {
  border-bottom: none;
}

.cart_wrapper.payment .button_box .tit {
  display: block;
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 8px;
}

.cart_wrapper.payment .button_box .deliver_select {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 35px; gap: 5px;
}

.cart_wrapper.payment .button_box .deliver_select button {
  width: 158px;
  font-size: 1rem;
}

.cart_wrapper.payment .button_box .deliver_select button.no_bd {
  border: none;
  text-decoration: underline;
}

.cart_wrapper.payment .pay_type {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
}

.cart_wrapper.payment .pay_type .pay_btn {
  font-size: 1rem;
}

.cart_wrapper.payment .pay_type .pay_btn:last-child {
  margin-right: 0;
}

.cart_wrapper.payment .pay_type .pay_btn.on {
  color: #fff;
  background: #333;
}

.cart_wrapper.payment .pay_type.basic+div {
  margin-top: 30px;
}


.cart_wrapper.payment .pay_input_con .input_box:last-child {
  margin-bottom: 0;
}

.input_add_box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}

.input_add_box .input_box {
  flex: 1;
  margin-right: 5px;
}

.input_add_box .add_btn {
  width: 172px;
  font-size: 1rem;
}

.input_add_box .add_btn.small {
  width: 120px;
  font-size: 0.875rem;
}

.input_add_box .custom_select_box {
  width: 172px;
  border-width: 0 0 1px 0;
}

.input_add_box .custom_select_box.on {
  box-shadow: none;
}

.input_add_box .custom_select_box.on .list li:first-child {
  border-top: 1px solid #333;
}

.input_add_box .add_btn_box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.input_add_box .add_btn_box button {
  width: 172px;
  font-size: 1rem;
}

.input_add_box .info {
  color: #999;
  font-size: 12px;
  margin-top: 13px;
  white-space: nowrap;
}

.cart_prod_list > li .prod {
}

#coupon_pop {
  max-width: 532px;
  width: 90%;
  min-height: 500px;
}

#coupon_pop h2.tit {
  text-align: left;
}

#coupon_pop .no_link_tab li {
  font-size: 0.875rem;
}

#coupon_pop .btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 20px;
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
}

#coupon_pop .btn_box button {
  width: 180px;
}

#coupon_pop .input_add_box .input_box {
  margin-bottom: 20px;
}

.coupon_tab_box {
  margin-top: 1.25rem;
}

.coupon_tab_box .con {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
  max-height: 165px;
  overflow-y: auto;
}

.coupon_tab_box .con::-webkit-scrollbar {
  width: 6px;
}

.coupon_tab_box .con::-webkit-scrollbar-thumb {
  background-color: #bebdbd;
  border-radius: 20px;
}

.coupon_tab_box .con .no_coupon {
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #999;
}

.coupon_tab_box .useable_list .check_radio_box {
  margin-bottom: 10px;
}

.coupon_tab_box .useable_list .check_radio_box:last-child {
  margin-bottom: 0;
}

.coupon_tab_box .download_list .check_radio dl {
  border-color: var(--color-default);
  color: var(--color-default);
}

.coupon_tab_box .download_list .check_radio dt {
  padding-left: 0;
}

.coupon_tab_box .download_list .check_radio dt::before {
  display: none;
}

.coupon_tab_box .download_list .check_radio .download {
  font-weight: 700;
  padding-right: 30px;
  background: url(../img/down_ic.svg) no-repeat right center/20px 16px;
}

.com_bg_pop .pop_box.deliver_pop {
  max-width: 650px;
  width: 100%;
}

.com_bg_pop .pop_box.deliver_pop #AddWriteFrom{
  padding-top: 20px;
}

.com_bg_pop .pop_box.deliver_pop .check_radio_box dl {
  justify-content: space-between;
}

.deliver_pop .con {
  overflow-y: auto;
}

.deliver_pop .check_radio_box {
  margin-bottom: 10px;
}

.deliver_pop .check_radio_box:last-child {
  margin-bottom: 0;
}

.deliver_pop .check_radio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.deliver_pop .check_radio_box input[type="radio"] + label dt::before{display: none}

.deliver_pop dl {
  width: 100%;
}

.deliver_pop dl .adress_dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-right: 10px;
}

.deliver_pop dl .adress_dl span {
  font-weight: 300;
}

.deliver_pop dl .adress_dl .name {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.deliver_pop dl .adress_dl .name .basic {
  padding: 0 15px;
  background-color: var(--bg-primary);
  color: #fff;
  border-radius: 15px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  font-weight: 300;
  margin-left: 10px;
  display: flex;
}

.deliver_pop dl .adress_dl .adress {
  margin-bottom: 5px;
}

.deliver_pop .right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.deliver_pop .right button {
  width: 70px;
  margin-bottom: 5px;
  height: 32px;
}

.deliver_pop .btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 20px;
  width: 100%;
}

.deliver_pop .btn_box button {
  max-width: 180px;
}

.deliver_pop .btn_box button:first-child {
}

.payment_finish_box {
  border: 1px solid var(--tab-border-color);
  border-radius: 5px;
  width: 100%;
  max-width: 532px;
  padding: 50px;
  margin: 97px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.payment_finish_box dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.payment_finish_box dl dt {
  font-weight: 700;
  font-size: 1rem;
  padding-top: 55px;
  position: relative;
}

.payment_finish_box dl dt::before{content: ""; display: block; width: 40px;height: 40px; border-radius: 50%; background: rgb(var(--color-primary)); position: absolute;
  left: 50%;
  top: 0; transform: translateX(-50%); z-index: 1;
}
.payment_finish_box dl dt::after {
  content: "";
  z-index: 2;
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 0;
  background: url(../img/ic_checkbox.svg) no-repeat center/ 18px auto;
  transform: translateX(-50%); filter: var(--filter-invert);
}

@keyframes payment_finish {

}

.payment_finish_box dl .order_num {
  margin-top: 10px;
}

.payment_finish_box dl .order_num span {
  font-weight: 800;
  color: rgb(var(--color-primary));
}

.payment_finish_box dl .order_info {
  margin: 15px 0 20px 0;
}

.payment_finish_box dl .order_info li {
  text-align: center;
  line-height: 1.4;
}

.payment_finish_box dl .order_info li span {
  font-weight: 800;
  
}

.payment_finish_box .btn_box {
  margin-top: 20px;
  border-top: 1px solid var(--tab-border-color);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%; gap: 5px
}

.payment_finish_box .btn_box.no_bd {
  border-top: none;
}

.payment_finish_box .btn_box a { width: 100%;
}

.cart_popup {
  max-width: 412px;
  width: 90%;
}

.cart_popup .prod_name {
  padding-top: 25px;
}

.cart_popup .prod_name dt {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cart_popup .prod_name dd {
  
  color: #999;
  font-size: 1.125rem;
}

.cart_popup .cart_option_select {
  z-index: 10;
}

.cart_popup .option_list {
  max-height: 190px;
  overflow-y: auto;
  padding-bottom: 15px;
}

.cart_popup .detail_option_list {
  max-height: inherit;
  overflow: inherit;
  padding: 25px 0 10px 0;
}

.cart_popup .detail_option_list dl {
  height: 40px;
}

.cart_popup .detail_option_list dl dt {
  font-size: 1rem;
  margin-bottom: 10px;
}

.cart_popup .detail_option_list dl dt .option_name {
  margin-top: 7px;
  font-size: 12px;
}

.cart_popup .detail_option_list dl.option {
  margin-top: 20px;
  height: auto;
  padding-left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.cart_popup .detail_option_list dl .count_price {
  justify-content: space-between;
  width: 100%;
}

.cart_popup .detail_option_list dl .price {
  font-size: 16px;
}

.cart_popup .detail_option_list dl .btn_del {
  left: inherit;
  right: 0;
  top: 0px;
  transform: translateY(0);
}

.cart_popup .detail_option_list dl .btn_del button {
  width: 12px;
  height: 12px;
}

.cart_popup .com_count_box .count button {
  width: 22px;
  height: 22px;
}

.cart_popup .com_count_box .btn_minus::after {
  left: 7px;
  top: 10px;
}

.cart_popup .com_count_box .btn_plus::before {
  left: 8px;
  top: 10px;
}

.cart_popup .com_count_box .btn_plus::after {
  left: 10px;
  top: 8px;
}

.cart_popup .com_count_box .count input {
  font-size: 17px;
}

.cart_popup .detail_total_info dt {
  font-size: 1.125rem;
}

.cart_popup .detail_total_info dd {
  font-size: 1.125rem;
}

.cart_popup .detail_btn_box button {
  font-size: 16px;
}

.review_wrapper .con_box {
  background-color: #f9f9f9;
  width: 100%;
  padding: 30px;
}

.review_wrapper .best_top_3 h3 {
  font-size: 32px;
  margin-bottom: 25px;
  line-height: 1.4;
  text-align: center;
  
}

.review_wrapper .best_top_3 p.info {
  text-align: right;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
  line-height: 1.4;
}

.review_wrapper .best_top_3 .list_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  padding-bottom: 10px;
}

.review_wrapper .best_top_3 .list_box li {
  padding: 30px;
  cursor: pointer;
  position: relative;
  flex: 1;
  background-color: #fff;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.04);
  margin-right: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  height: 390px;
}

.review_wrapper .best_top_3 .list_box li:last-child {
  margin-right: 0;
}

.review_wrapper .best_top_3 .list_box li .rank {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--color-default);
  color: #fff;
  
  font-size: 22px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.review_wrapper .best_top_3 .list_box li .rank::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 13px;
  position: relative;
  background: url(../img/crown_ic.svg) no-repeat center/contain;
  margin-bottom: 5px;
}

.review_wrapper .best_top_3 .list_box li .img_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
  position: relative;
  height: 180px;
  width: 180px;
  margin-bottom: 40px;
}

.review_wrapper .best_top_3 .list_box li .img_box img {
  height: 100%;
  max-width: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.review_wrapper .best_top_3 .list_box li .img_box .count {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  right: 0;
  bottom: 0;
  line-height: 40px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  text-align: center;
}

.review_wrapper .best_top_3 .list_box li .txt_box {
  font-size: 16px;
  width: 100%;
}

.review_wrapper .best_top_3 .list_box li .txt_box .top_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.review_wrapper .best_top_3 .list_box li .txt_box .top_info .left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.review_wrapper .best_top_3 .list_box li .txt_box .top_info .left .name {
  margin-right: 10px;
}

.review_wrapper .best_top_3 .list_box li .txt_box .top_info .left .date {
  color: #999;
  
}

.review_wrapper .best_top_3 .list_box li .txt_box dl {
  margin-top: 12px;
}

.review_wrapper .best_top_3 .list_box li .txt_box dl dt {
  font-weight: 700;
  margin-bottom: 12px;
}

.review_wrapper .best_top_3 .list_box li .txt_box dl dd {
  color: #5e5e5e;
  line-height: 1.4;
  display: -webkit-box;
  max-height: 68px;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.review_wrapper .search_box {
  margin-top: 50px;
  max-width: 100%;
  position: relative;
  align-items: flex-end;
  margin-bottom: -37px;
}

.review_wrapper .search_box .input_box {
  width: 393px;
  border-width: 0 0 1px 0;
  display: inline-block;
}

.review_wrapper .search_box button {
  font-size: 16px;
  z-index: 10;
}

.review_wrapper .com_tab_type2 {
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.review_wrapper .com_tab_type2 li {
  width: 126px;
  flex: none;
  margin-bottom: -1px;
  font-size: 16px;
}

.review_wrapper .com_tab_type2 li.on {
  font-weight: 500;
}

.review_list_box .page_box {
  margin-top: 75px;
}

.review_list_box .com_board_btn_box a,
.review_list_box .com_board_btn_box button {
  width: 139px;
}

.review_list_box .com_board_btn_box a {
  margin-right: 10px;
}

.review_list_box .review_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.review_list_box .review_top .custom_select_box {
  width: 160px;
  border-bottom: 1px solid #333;
  height: 52px;
}

.review_list_box .review_top .com_tab_type2 li.on .num {
  color: #cc921d;
}

.review_list {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.review_list li {
  width: 100%;
  padding: 30px;
  border: 1px solid rgb(var(--color-200));
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.review_list li.empty{display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 15px; padding: 50px 0 30px; border: none}
.review_list .empty::before{content: ""; display: block; width: 50px; height: 50px; background: url(../img/ic_exclamation_none.svg) no-repeat center/contain; }

.review_list li .review_con {
  display: flex; gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}

.review_list li .btn_more {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  display: none;
}

.review_list li .btn_more button {
  display: inline-block;
  padding-right: 21px;
  font-size: 14px;
  position: relative;
}

.review_list li .btn_more button.on {
  display: none;
}

.review_list li .btn_more button.off {
  display: inline-block;
}

.review_list li .btn_more button.off .ic {
  top: 10px;
  transform: translateY(-50%) rotate(180deg);
}

.review_list li .btn_more button .ic {
  content: "";
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 9px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow_down_ic.svg) no-repeat center/contain;
}

.review_list li .btn_more.off .ic {
  transform: rotate(180deg) translateY(-50%);
}

.review_list li.off {
  overflow: hidden;
}

.review_list li.off .desc {
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.review_list li.off .btn_more .on {
  display: inline-block;
}

.review_list li.off .btn_box,
.review_list li.off .btn_more .off {
  display: none;
}

.review_list .prod_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.review_list .prod_box .img_box {
  width: 106px;
  height: 106px;
  margin-right: 20px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.review_list .prod_box .img_box img {
  max-height: 100%;
}

.review_list .prod_box .prod_info {
  width: 240px;
  padding-right: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.review_list .prod_box .prod_info dt {
  word-break: break-word;
  line-height: 1.3;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.review_list .prod_box .prod_info dd {
  color: #999;
  
}

.review_list .prod_box .prod_info .review_star_value {
  margin-top: 25px;
}

.review_list .desc_box {
  font-size: 16px;
  display: flex;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.review_list .desc_box .txt_box {
  flex: 1;
}
.review_list .desc_box .name_date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 10px;
}

.review_list .desc_box .desc {
  line-height: 1.4;
  margin-bottom: 10px;
}

.review_list .desc_box .date {
  color: #999;
  margin-left: 10px;
}

.review_list .thumbnail {
  width: 100px;
  height: 100px;
  overflow: auto;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.review_list .thumbnail img {
  max-height: 100%;
}

.review_list .thumbnail .count {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  right: 0;
  bottom: 0;
  line-height: 40px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  text-align: center;
}

.review_list .desc_box .video_ic {
  width: 100px;
  height: 48px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  display: none;
}

.review_list .desc_box .video_ic::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 34px;
  height: 30px;
}

.review_list .desc_box .img_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin: 25px 0;
}

.review_list .desc_box .img_list figure {
  width: 100px;
  height: 100px;
  margin-right: 5px;
}

.review_list .desc_box .img_list figure:last-child {
  margin-right: 0;
}

.review_list .desc_box .img_list figure img {
  max-height: 100%;
  cursor: pointer;
}
.review_list .desc_box .btn_box {
  display: flex;
  justify-content: flex-end;
}
.review_list .report {
  display: none;
}

.review_detail_box {
  z-index: 1000;
  background-color: #fff;
  width: 1045px;
  height: 670px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding-left: 645px;
}

.review_detail_box .img_box {
  background-color: var(--color-default);
  position: absolute;
  left: 0;
  top: 0;
  width: 645px;
  height: 100%;
}

.review_detail_box .img_box li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.review_detail_box .img_box img {
  max-height: 100%;
}

.review_detail_box .img_box .review_poo_slide_page {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.review_detail_box .img_box .btn_nav {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.4) url(../img/arrow_ic_white.svg) no-repeat
    center/10px 21px;
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.2s;
}

.review_detail_box .img_box .review_poo_slide_prev {
  transform: translateY(-50%) rotate(180deg);
  left: 0;
}

.review_detail_box .img_box .review_poo_slide_next {
  right: 0;
}

.review_detail_box .img_box:hover .btn_nav {
  opacity: 1;
}

.review_detail_box .tit_box {
  border-bottom: 1px solid var( --bg-e2e2e2);
  height: 58px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.review_detail_box .tit_box h3 {
  font-size: 18px;
  color: #5e5e5e;
  font-weight: 500;
}

.review_detail_box .btn_close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: url(../img/close_ic_black.svg) no-repeat center/contain;
}

.review_detail_box .prod_box {
  width: 100%;
  height: 100px;
  padding: 0 20px;
  border-bottom: 1px solid var( --bg-e2e2e2);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.review_detail_box .prod_box figure {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-right: 10px;
}

.review_detail_box .prod_box figure img {
  max-height: 80%;
}

.review_detail_box .prod_box dl dt {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
}

.review_detail_box .prod_box dl dd {
  
  color: #999;
}

.review_detail_box .desc_box {
  padding: 20px;
  overflow-y: auto;
  max-height: 420px;
  font-size: 16px;
  width: 100%;
}

.review_detail_box .desc_box .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 20px 0;
}

.review_detail_box .desc_box .name_date .date {
  
  color: #999;
}

.review_detail_box .desc_box p {
  line-height: 1.4;
  text-align: left;
}

.review_detail_box .btn_link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 16px;
  width: 180px;
}

.review_detail_box.photo {
  padding-left: 0;
  width: 645px;
}

.review_detail_box.photo .btn_close {
  right: 20px;
  background-image: url(../img/close_ic_white.svg);
  transform: translateY(0);
  top: 20px;
  z-index: 10;
}

.review_write_pop .custom_select_box .review_star_value {
  margin-right: 5px;
}

.review_write_pop .custom_select_box .value_on {
  position: absolute;
  top: 0;
  left: 0;
}

.review_write .cart_prod_list {
  border-top: 2px solid var(--bg-333);
}

.review_write .cart_prod_list > li {
  min-height: 0;
  padding: 5px 40px 5px 30px;
  justify-content: space-between;
}

.review_write .cart_prod_list > li .prod {
  padding: 0;
}

.review_write .cart_prod_list > li .prod .img_box {
  width: 80px;
  height: 80px;
}

.review_write .cart_prod_list > li .prod .option {
  font-size: 14px;
  color: #999;
  
  margin-top: 5px;
}

.review_write .page_box {
  margin-top: 25px;
}


/* shop / view - 리뷰 사진 크게 보기*/
#review_img_list .img_box{aspect-ratio: auto}
#review_img_list *[class*="swiper-button-"]{position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 100px; background: rgba(0,0,0,.15); z-index: 1; display: flex; align-items: center; justify-content: center; cursor: pointer}
#review_img_list *[class*="swiper-button-"]::after{content: ""; display: block; width: 30px; height: 50px; background: url(../img/arrow_down_ic.svg) no-repeat center / contain;}
#review_img_list .swiper-button-prev{left: 0}
#review_img_list .swiper-button-next{right: 0; }
#review_img_list .swiper-button-prev::after{transform: rotate(90deg)}
#review_img_list .swiper-button-next::after{transform: rotate(-90deg)}


.snb .depth_1_menu{font-size: 18px; margin:8px 10px; position: relative; cursor: pointer}
.snb .depth_1_menu .ic{display: block; width: 20px; height: 20px; background: url(../img/arrow_ic.svg) no-repeat center / 8px auto; position: absolute; top: 50%; right: 0px; transform: translateY(-50%) rotate(90deg); }
.snb .depth_1_menu.on .ic{transform: translateY(-50%) rotate(-90deg);}
.snb>li{margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--tab-border-color)}
.snb .depth_2{display: none}

.snb .depth_1_menu.on+.depth_2{display: block}
.snb .depth_2.on{display: block;}
.snb .depth_2 li{text-indent: 15px;}
.snb .depth_2 li a{display: block; padding: 8px 0; font-size: 16px}
.snb .depth_2 li.on a,
.snb .depth_2 li a:hover{font-weight: bold; }

.my_info_box {
	/*border-bottom: 2px solid var(--color-default);*/
	background:var(--bg-f9f9f9);
	border-radius:5px;
	padding:10px 25px;
  margin-bottom: 20px;
}

.title span.m_tit {
  display: none;
}

.my_info_box .myinfo {display: flex; justify-content: space-between; align-items: center;}

.my_info_box .myinfo .info_top {
}

.my_info_box .myinfo .btn_regular {
  padding: 0 11px;
  color: #fff;
  background-color: var(--color-default);
  border-radius: 5px;
  height: 32px;
  line-height: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.my_info_box .myinfo .btn_regular .q {
  display: inline-block;
  width: 18px;
  height: 18px;
  color: #999;
  border: 1px solid #bebdbd;
  padding: 2px 0 0 5px;
  font-size: 12px;
  border-radius: 50%;
  margin-left: 6px;
  font-weight: 300;
}

.my_info_box .myinfo .btn_regular .q:hover + .q_pop {
  opacity: 1;
}

.my_info_box .myinfo .btn_regular.office {
  font-size: 12px;
  padding-right: 37px;
}

.my_info_box .myinfo .btn_regular.office::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 12px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow_ic_white.svg) no-repeat center/contain;
}

.my_info_box .myinfo .my { }

.my_info_box .myinfo .name{font-size: 30px; font-weight: 700; display: flex; align-items: flex-end; gap: 10px; }
.my_info_box .myinfo .name .members{display: flex; gap: 10px; align-items: flex-end}
.my_info_box .myinfo .name .members .ic{display: block; width: 28px; height: 28px; background: url("../img/ic_crown.png") no-repeat center/ contain; margin-bottom: 2px;}
.my_info_box .myinfo .name a{ display: none; }

.my_info_box .myinfo .member{font-size: 14px; color: var(--bg-a9a9a9); display: flex; align-items: center; gap: 4px}

.my_info_box .myinfo .info_box {
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center; gap: 80px;
}

.my_info_box .myinfo .info_box dl {}
.my_info_box .myinfo .info_box dl dt {margin-bottom: 10px;}
.my_info_box .myinfo .info_box dl dd {}

.my_info_box .myinfo .info_box dl:nth-child(2) {}
.my_info_box .myinfo .info_box dl dd .pv {
  color: #4e89ff;
  font-size: 28px;
}

.my_info_box .myinfo .info_box dl .type1 .count {
  font-size: 28px;
  font-weight: 500;
  
  margin-right: 5px;
}

.my_info_box .myinfo .info_box dl .q_pop {
  position: absolute;
  transition: 0.2s;
  background-color: #fff;
  z-index: 10;
  color: var(--color-default);
  width: auto;
  height: auto;
  opacity: 0;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  flex: none;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.my_info_box .myinfo .info_box dl .q_pop dt {
  font-weight: 700;
  margin-bottom: 5px;
  white-space: nowrap;
}

.my_info_box .myinfo .info_box dl .q_pop dd {
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  display: block;
}

.my_info_box .myinfo .info_box dl .q_pop dd span {
  color: #a88421;
  font-weight: 700;
}

.my_info_box .myinfo .info_box dl .q_pop::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  left: 167px;
  top: -6px;
  transform: rotate(45deg);
  z-index: 0;
}

.my_info_box .myinfo .info_box dl .q_pop::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 9px;
  background-color: #fff;
  left: 165px;
  top: 0px;
  z-index: 1;
}

.my_info_box .myinfo .info_box dl .asos {
  font-size: 18px;
  font-weight: 700;
}


.mypage_wrapper .my_deliver {
  flex: 1;
  height: 218px;
  border: 1px solid var(--bg-e2e2e2);
}

.mypage_wrapper .my_deliver .tit_box {
  height: 48px;
  padding: 0 20px;
  background-color: var;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px solid var(--bg-e2e2e2);
}

.mypage_wrapper .my_deliver .tit_box dt {
  font-size: 18px;
  font-weight: 700;
}

.mypage_wrapper .my_deliver .tit_box dd {
  font-size: 12px;
  position: relative;
  top: 3px;
}

.mypage_wrapper .my_deliver .deliver_step {
  padding: 0 30px;
  width: 100%;
  height: 121px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.mypage_wrapper .my_deliver .deliver_step li {
  flex: 1;
  position: relative;
  margin-right: 17px;
}

.mypage_wrapper .my_deliver .deliver_step li:last-child {
  margin-right: 0;
}

.mypage_wrapper .my_deliver .deliver_step li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mypage_wrapper .my_deliver .deliver_step li .count {
  font-size: 38px;
  font-weight: 500;
  
  margin-bottom: 10px;
}

.mypage_wrapper .my_deliver .deliver_step li::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 9px;
  height: 14px;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow_ic.svg) no-repeat center/contain;
  opacity: 0.3;
}

.mypage_wrapper .my_deliver .deliver_step li:last-child::after {
  display: none;
}

.mypage_wrapper .my_deliver .deliver_cancel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 48px;
  width: 100%;
  border-top: 1px solid var( --bg-e2e2e2);
}

.mypage_wrapper .my_deliver .deliver_cancel a {
  flex: 1;
  height: 100%;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 0 20px;
  border-right: 1px solid #e6e6e6;
}

.mypage_wrapper .my_deliver .deliver_cancel a:last-child {
  border-right: none;
}

.last_order_warpper{
  margin-bottom: 30px;
}


.title_line {
  display: flex;
  justify-content: space-between;
}

.title_line h2 {
  font-size: 18px;
}

.title_line .more {
  color: #999;
  text-decoration: underline;
}

.title_line1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 48px;
  padding: 0 20px 0 10px;
}

.title_line1 h2 {
  font-size: 18px;
}

.title_line1 .more {
  color: #999;
  text-decoration: underline;
}

.last_view_list {
  width: 100%;
}

.last_view_list .no_data {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 190px;
  font-size: 16px;
  color: #999;
}

.last_view_list .last_view_slide {
}
.last_view_list .last_view_slide ul{}
.last_view_list .last_view_slide li .slide_box {width: 175px; margin-right: 10px}
.last_view_list .last_view_slide li:last-child .slide_box{
  margin-right: 0;}
.last_view_list .last_view_slide li .img_box {
  background-color: rgb(var(--color-50));
  border-radius: 4px; display: block;
  margin-bottom: 10px;
}

.last_view_list .last_view_slide li .img_box img {
}


.last_view_list .last_view_slide li .prod_name {
  line-height: 20px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.last_view_list .last_view_slide li .prod_info{display: block;
}

.last_view_list .last_view_slide li .real_price {
  font-size: 15px;
}

.last_view_list .last_view_slide li .btn_box {display: flex;
  margin-top: 10px;
}
.last_view_list .last_view_slide li .btn_box .btn_basic {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.state_date_search_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.state_date_search_box .custom_select_box {
  border-color: var(--tab-border-color);
  font-size: 16px;
  width: 180px;
  flex-shrink: 0;
}

.state_date_search_box .right{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  position: relative;
}

.state_date_search_box .date_select_link {
  display: flex; border: 1px solid var(--tab-border-color); border-width: 0 0 1px 1px;
}

.state_date_search_box .date_select_link a {
  display: inline-block;
  width: 100px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border: 1px solid var(--tab-border-color); border-width: 1px 1px 0 0;
  font-size: 16px; background: var(--bg-f6f6f6);
}

.state_date_search_box .date_select_link.on a{background: var(--bg-f6f6f6)}
.state_date_search_box .date_select_link.on a:not(:last-child){border-right-width: 0; }

.state_date_search_box .date_select_link a span {
  position: relative;
  top: 1px;
}

.state_date_search_box .date_select_link.on a.on {
  z-index: 1; background: var(--bg-fff);
}

.state_date_search_box .date_select_link a:last-child.on {
  border-bottom-color: #fff;
}

.state_date_search_box .date_select_link a.m_date_select {
}

.state_date_search_box .btn_basic {
  width: 120px;
  font-size: 16px;
  margin-left: 10px;
}

.state_date_search_box .date {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(-1px);
  background: var(--bg-fff);
  padding: 20px 0;
  width: 100%;
  border: 1px solid var(--tab-border-color); border-top-width: 0;
}

.state_date_search_box .date.on {
  display: flex;
}

.state_date_search_box .date span {
  margin: 0 15px;
  width: 8px;
  height: 1px;
  background-color: var(--color-default);
  display: inline-block;
}

.deliver_view_top_info {
  background-color: rgb(var(--color-f6f6f6));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  min-height: 48px;
  padding: 12px 20px;
  margin-bottom: 40px;
}

.deliver_view_top_info .left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.deliver_view_top_info dl {
  margin-right: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  font-size: 16px;
}

.deliver_view_top_info dl dt {
  margin-right: 20px;
}

.deliver_view_top_info dl dd {

  font-weight: 700;
}

.deliver_view_top_info .btn_basic {
  border-radius: 5px;
  height: 32px;
  font-size: 12px;
  padding: 0 10px;
  font-weight: 300;
}

.order_view_article .order_total_price {
  width: 100%;
  color: #555;
  text-align: right;
}
.order_view_article .order_total_price > div {
  height: 45px;
  line-height: 45px;
  display: flex;
  padding-right: 15px;
  height: auto;
}
.order_view_article .order_total_price .top_box {
  justify-content: flex-end;
  border-bottom: 1px dashed #ddd;
}
.order_view_article .order_total_price .top_box dl {
  display: flex;
  font-size: 15px;
}
.order_view_article .order_total_price .top_box dl:first-child {
  margin-right: 15px;
}
.order_view_article .order_total_price .top_box dt {
  margin-right: 5px;
}
.order_view_article .order_total_price .top_box dd {
  font-weight: bold;
  color: var(--color-default);
}

.order_view_article .order_total_price .bot_box {
  font-size: 15px;
  justify-content: space-between;
  padding: 18px 0 17px;
  display: inline-block;
  background-color: rgb(var(--color-f9f9f9));
}
.order_view_article .order_total_price .bot_box .total {
  color: rgb(var(--color-850));
  font-weight: bold;
  flex-shrink: 0;
}
.order_view_article .order_total_price .bot_box .price {
  font-size: 15px; display: flex;
}
.order_view_article .order_total_price .bot_box .price>*{flex:1; position: relative}
.order_view_article .order_total_price .bot_box .price .price_wrap {
  min-width: 143px;
  position: relative;
  text-align: center;
}
.order_view_article .order_total_price .bot_box .price .price_wrap > span {
  display: block;
  line-height: 20px;
}
.order_view_article .order_total_price .bot_box .price .price_wrap .price_tit {
  margin-bottom: 5px;
  font-weight: 500; color: rgb(var(--color-700))}

.order_view_article .order_total_price .bot_box .price .price_wrap span{}

.order_view_article .order_total_price .bot_box .price .price_wrap strong{color: var(--color-default)}
.order_view_article .order_total_price .bot_box .price .price_wrap > span:nth-child(2) {text-align: center;}

.order_view_article .order_total_price .bot_box .price .price_wrap .result {
  font-size: 17px;
  color: #f30d0f;
  font-weight: bold;
}

.order_view_article .order_total_price .bot_box .price .math {
  width: 30px;
}
.order_view_article .order_total_price .bot_box .price .math span {
  display: block;
  height: 30px;
  background-color: rgb(var(--color-fff));
  position: absolute; left:0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.order_view_article .order_total_price .bot_box .price .math span::before,
.order_view_article .order_total_price .bot_box .price .math span::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: rgb(var(--color-300));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.order_view_article .order_total_price .bot_box .price .math span.plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.order_view_article
  .order_total_price
  .bot_box
  .price
  .math
  span.equal::before {
  top: calc(50% + 2.5px);
}
.order_view_article .order_total_price .bot_box .price .math span.equal::after {
  top: calc(50% - 2.5px);
}

.order_view_half {
  display: flex;
}
.order_view_half .order_view_article {
  flex: 1;
}
.order_view_half .order_view_article:first-child {
  margin-right: 20px;
}
.order_view_half .order_view_article .com_board_txbtn_box {
  margin-top: 0;
}
.order_view_half .order_view_article .order_view_top_box {
  height: 30px;
}
.order_view_article {
  margin-bottom: 40px;
}

.order_view_article .com_board_btn_box {
  margin-top: 20px;
}

.order_view_article .com_board_btn_box button {
  width: 139px;
}

.order_view_article .com_board_btn_box.right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}

.order_view_article .com_board_btn_box.right .left {
  position: absolute;
  left: 0;
  top: 0;
}

.order_view_article .com_board_btn_box.right .print {
  margin-right: 5px;
}

.order_view_article .com_board_txbtn_box {
  margin-top: 20px;
}

.order_view_article .com_board_txbtn_box.right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}

.com_bg_pop .pop_box.deliver_pop .order_view_article .con_box {
  padding: 20px;
  position: relative;
}


.order_cancel .order_view_article .con_box{}
.order_view_article .con_box{padding: 30px 0 30px}
.order_view_article .con_box .custom_select_box.type3 {
  margin-bottom: 20px;
  width: 100%;
}

.order_view_article .con_box.reason_textarea {
  padding: 0;
  margin-bottom: 40px;
  max-width: 790px;
  width: 100%;
}
.order_view_article .con_box.reason_textarea h3 {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-default);
}
.order_view_article .con_box.reason_textarea textarea {
  resize: none;
}
.order_view_article .con_box.reason_textarea textarea:focus {
  outline: none;
}

.order_view_article .con_box  select[name="cancel_memo"]+label{width: 100%}
.order_view_article .con_box .bank_subwrap {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 20px;
}
.order_view_article .con_box .bank_subwrap.cancel{
  margin-bottom: 40px;}
.order_view_article .con_box .bank_subwrap > div {
  position: relative;
}
.order_view_article .con_box .bank_subwrap > div:last-child {
  margin-right: 0;
}
.order_view_article .con_box .bank_subwrap > div label,
.order_view_article .con_box .bank_subwrap > div input {
  font-size: 16px;
  white-space: nowrap;
}
.order_view_article .con_box .bank_subwrap > div input:focus + label,
.order_view_article .con_box .bank_subwrap > div input.on + label {
  font-size: 14px;
}

.order_view_article .con_box .bank_subwrap .none {
  display: none;
}
.order_view_article .con_box .bank_subwrap .banklist #bankcomp {
  height: 48px;
  border: none;
  border-bottom: 1px solid var(--tab-border-color);
  appearance: none;
  position: relative;
  cursor: pointer;
  font-size: 16px;
}

.order_view_article
  .con_box
  .bank_subwrap
  .banklist
  #bankcomp::-webkit-scrollbar {
  display: none;
}
/*
.order_view_article .con_box .bank_subwrap .banklist::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 9px;
  right: 1rem;
  top: 19px;
  background: url(../img/arrow_down_ic.svg) no-repeat center/contain;
  transition: 0.2s;
}
*/

.order_view_article .con_box .bank_subwrap .banklist #bankcomp:focus {
  outline: none;
}
.order_view_article .con_box .bank_subwrap .banklist::after #bankcomp:focus {
  transform: rotate(180deg);
}

.order_view_article .con_box .bank_subwrap .banknumb {flex:1}
.order_view_article .con_box .bank_subwrap .bank_btn {
  width: auto;
}
.order_view_article .con_box .bank_subwrap .bank_btn button {
  width: 172px;
}

.cancel_info_txt::before {
  content: "";
  display: block;
  max-width: 986px;
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  margin-bottom: 10px;
}
.cancel_info_txt > li {
  font-size: 12px;
  line-height: 1.42;
}
.cancel_info_txt > li:first-child,
.cancel_info_txt ul:first-child {
  margin-bottom: 10px;
}
.cancel_info_txt ul li {
  display: flex;
  margin-bottom: 5px;
}
.cancel_info_txt ul li strong {
  display: block;
  max-width: 135px;
  width: 100%;
}
.cancel_info_txt ul li strong em {
  font-style: normal;
  color: #999;
}
.cancel_info_txt ul li span {
  display: block;
  width: 100%;
}
.cancel_info_txt ul li div {
  width: 100%;
}

.order_view_article .order_info_dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 10px;
  font-size: 16px;
  height: 48px;
}

.order_view_article .order_info_dl dt {
  flex: 150px 0 0;
}

.order_view_article .order_info_dl .point_dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.order_view_article .order_info_dl .point_dd .point {
  color: #ff0000;
  margin-right: 38px;
}

.order_view_article .order_info_dl .point_dd .pv {
  color: #0090ea;
  padding-left: 30px;
  height: 22px;
  background: url(../img/ic_point.svg) no-repeat left center;
  line-height: 22px;
}

.order_view_article .read_only_input {
  padding-top: 50px;
  max-width: 790px;
}

.order_view_article .radio_box {
  padding: 0 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.order_view_article .radio_box label {
  margin-right: 35px;
  font-size: 16px;
}

.order_view_article .check_basic_address {
  margin: 10px 10px 20px;
}

.order_view_top_box {
  padding-bottom: 10px;
  border-bottom: 2px solid rgb(var(--color-700));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.order_view_top_box h3.title {
  font-size: 18px;
  margin: 0;
}

.order_view_top_box .btn {
  font-size: 16px;
  text-decoration: underline;
}

.order_prod_list .header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  font-size: 14px;
  height: 62px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
}

.order_prod_list .header .prod {
  flex: 1;
}

.order_prod_list .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.order_prod_list .price {
  width: 128px;
  flex-shrink: 0;
}

.order_prod_list .count {
  width: 80px;
  flex-shrink: 0;
}

.order_prod_list .total {
  width: 188px;
  flex-shrink: 0;
}

.order_prod_list .progress {
  flex: 160px 0 0;
  flex-shrink: 0;
}

.order_prod_list .progress .btn_box {
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.order_prod_list .progress button {
  margin-bottom: 5px;
  flex-shrink: 0;
  padding: 0;
  width: 70px;
}
.order_prod_list .progress button:last-child {
  margin-bottom: 0;
}

.order_prod_list .body_row {
  border-bottom: 1px solid #e1e1e1;
  padding: 17px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.order_prod_list .body_row .img {
  width: 134px;
  height: 134px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.order_prod_list .body_row img {
  max-width: 90%;
  max-height: 90%;
}

.order_prod_list .body_row .prod_info {
  flex: 1;
}

.order_prod_list .body_row .prod {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.4;
  margin-left: 15px;
}

.order_prod_list .body_row .prod .tit {
  font-size: 18px;
  font-weight: 500;
}

.order_prod_list .body_row .prod .info {

  color: #999;
  margin-top: 5px;
}

.order_prod_list .body_row .prod .option {

  color: #999;
  margin-top: 5px;
}

.order_prod_list .body_row .prod .cart_in { margin-top: 10px;
  border-radius: 3px;
  border: 1px solid rgb(var(--color-700));
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  cursor: pointer;
}
.order_prod_list .body_row .prod .cart_in i.ic_cart {
  width: 12px;
  height: 16px;
  margin-right: 8px;
}

.order_prod_list .body_row .prod .cart_in i.ic_cart::after{content: ""; display: block; width: 100%; height: 100%; background: url("../img/cart_ic.svg") no-repeat center / contain; }
.order_prod_list .body_row .prod .cart_in span {
  font-size: 12px;
}
.order_prod_list .body_row .prod .cart_in span::after {
  content: " 담기";
}

.order_prod_list .body_row .price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;

}

.order_prod_list .body_row .og_price {
  color: #999;
  font-weight: 300;
  margin-bottom: 7px;
  text-decoration: line-through;
}

.order_prod_list .body_row .real_price {
  font-weight: 700;
  font-size: 16px;
}

.order_prod_list .body_row .count {
  font-size: 16px;

  font-weight: 700;
}

.order_prod_list .body_row .total {

  font-size: 16px;
  font-weight: 700;
  display: block;
  text-align: center;
}

.order_prod_list .body_row .total span {
  color: #4e89ff;
  background: url(../img/ic_point.svg) no-repeat center left / 18px 18px;
  text-indent: 25px;
  display: block;
  width: fit-content;
  margin: 5px auto 0;
}
.order_prod_list .body_row .progress {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.order_prod_list .body_row .state {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.refund_prod_list .header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  font-size: 14px;
  height: 62px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
}

.refund_prod_list .header .prod {
  flex: 1;
}

.refund_prod_list .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.refund_prod_list .check {
  width: 72px;
  flex-shrink: 0;
}

.refund_prod_list .prod {
  flex: 1;
}

.refund_prod_list .price {
  width: 180px;
  flex-shrink: 0;
}

.refund_prod_list .count_box {
  width: 160px;
  flex-shrink: 0;
}

.refund_prod_list .total {
  width: 198px;
  flex-shrink: 0;
}

.refund_prod_list .count {
  width: 160px;
  flex-shrink: 0;
}

.refund_prod_list .body_row {
  border-bottom: 1px solid rgb(var(--color-200));
  padding: 17px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.refund_prod_list .body_row .count {
  font-size: 16px;

  font-weight: 700;
}

.refund_prod_list .body_row .delete {
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  position: relative;
  text-indent: -9999px; background: none;
}


.refund_prod_list .body_row .delete::after {
  content: "";
  display: block;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: url("../img/close_ic.svg") no-repeat center/ 10px auto; width: 100%; height: 100%;
}

.refund_prod_list .body_row .img {
  margin-left: 20px;
  width: 128px;
  height: 128px;
  margin-right: 30px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.refund_prod_list .body_row img {
  max-width: 90%;
  max-height: 90%;
}

.refund_prod_list .body_row .prod_info {
  flex: 1;
}

.refund_prod_list .body_row .prod {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.4;
}

.refund_prod_list .body_row .prod .tit {
  font-size: 18px;
  font-weight: 500;
}

.refund_prod_list .body_row .prod .info {

  color: #999;
  margin-top: 5px;
}

.refund_prod_list .body_row .prod .option {

  color: #999;
  margin-top: 5px;
}

.refund_prod_list .body_row .price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;

}

.refund_prod_list .body_row .og_price {
  color: #999;
  font-weight: 300;
  margin-bottom: 7px;
  text-decoration: line-through;
}

.refund_prod_list .body_row .real_price {
  font-weight: 700;
  font-size: 16px;
}

.refund_prod_list .body_row .count_box {
  font-size: 16px;

  font-weight: 700;
}

.refund_prod_list .body_row .total {

  font-size: 16px;
  font-weight: 700;
}

.mypage_review_able {
  margin-top: 20px;
  border-top: 1px solid var( --bg-e2e2e2);
}

.mypage_review_able .header {
  padding-left: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  font-size: 14px;
  height: 62px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
}

.mypage_review_able .header .prod {
  flex: 1;
}

.mypage_review_able .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.mypage_review_able .date {
  width: 305px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
}

.mypage_review_able .write {
  width: 255px;
  flex-shrink: 0;
}

.mypage_review_able .write button {
  width: 140px;
}

.mypage_review_able .body_row {
  border-bottom: 1px solid #e1e1e1;
  padding: 15px 0 15px 75px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.mypage_review_able .body_row .img {
  margin-left: 20px;
  width: 128px;
  height: 128px;
  margin-right: 30px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.mypage_review_able .body_row img {
  max-width: 70%;
  max-height: 70%;
}

.mypage_review_able .body_row .prod_info {
  flex: 1;
}

.mypage_review_able .body_row .prod {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.4;
}

.mypage_review_able .body_row .prod .tit {
  font-size: 18px;
  font-weight: 500;
}

.mypage_review_able .body_row .prod .info {

  color: #999;
  margin-top: 5px;
}

.right_con.deliver .order_list_box {
  margin-top: 22px;
}

.right_con.user_info .login_box {
  margin-top: 130px;
}

.right_con.user_info .login_box .h2_tit {
  margin-bottom: 55px;
}

.right_con.user_info .read_only_input {
  margin-bottom: 30px;
}

.right_con.user_info .input_box {
  margin-bottom: 0;
}

.right_con.user_info .input_box:last-of-type {
  margin-bottom: 20px;
}

/* 마이페이지 - 적립금/캐시내역 */
.mypage_wrapper h2.title{position: relative}
.saving_search_wrap{position: absolute; top: 50%; right: 0; transform: translateY(-50%); z-index: 1; }
.saving_search_wrap .filter_btn{width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%}
.saving_search_wrap .filter_btn.on{background: var(--bg-f6f6f6); }
.saving_search_wrap .filter_btn span{display: block; width: 20px; height: 20px; background: url("../img/ic_filter.png") no-repeat center / contain; }
.saving_search_wrap .search_form{position: absolute; top: calc(100% + 10px); right : 0; background: var(--bg-fff); border: 1px solid var(--tab-border-color); padding: 20px; width: auto; z-index: 1; display: none}
.saving_search_wrap .state_date_search_box{flex-direction: column; gap: 10px}
.saving_search_wrap .state_date_search_box .custom_select_box{width: 100%}
.saving_search_wrap .state_date_search_box .date_select_link{width: 100%}
.saving_search_wrap .state_date_search_box .date_select_link a{flex:1; width: auto; }
.saving_search_wrap .state_date_search_box .date{border: none; width: 100%; padding: 0}
.saving_search_wrap .state_date_search_box .date.on{position: static}

.jumin_agree_txt {
  padding: 15px;
  border: 1px solid #ddd;
  height: 150px;
  overflow: auto;
  font-size: 13px;
  line-height: 1.4;
}
.jumin_agree_txt h4 {
  margin-bottom: 10px;
  font-size: 14px;
}
.jumin_agree_txt p {
  margin-bottom: 10px;
}
.jumin_agree_txt li {
  margin-bottom: 5px;
}

.user_info_box {
}

.user_info_box .join_box {
  padding-bottom: 0;
}

.user_info_box .btn_box{gap: 5px;}
.user_info_box .btn_box button {
  width: 170px; 
}
.user_info_box .all_out_btn{display: block; margin-top: 40px; text-align: right;}
.user_info_box .all_out_btn:hover{text-decoration: underline;}

/* 주문내역 리스트 - 공통 */
.contents_order.order_list_box{margin-top: 10px;}
.contents_order.order_list_box .order_list{display: grid; grid-template-columns: repeat(2,1fr);column-gap: 10px; align-items: flex-start}
.order_list_box .order_list .list_items{border: 1px solid var(--bg-e2e2e2); border-radius: 10px; overflow: hidden; margin-bottom: 10px; display: flex; flex-direction: column; }
.order_list_box .order_list .list_items:last-child{margin-bottom: 0; }
.order_list_box .order_list .list_items .list_header{display: flex; align-items: center; justify-content: space-between; background: var(--bg-f9f9f9); padding: 15px}
.order_list_box .order_list .list_items .date{font-size: 14px; color: rgba(var(--color-600),1)}
.order_list_box .order_list .list_items .order_number{ font-size: 16px; }
.order_list_box .order_list .list_items .view_more{display: flex; align-items: center; gap: 5px}
.order_list_box .order_list .list_items .view_more .ic{display: block; width: 10px; height: 10px; background: url("../img/arrow_41_black.svg") no-repeat center left / contain; transform: rotate(180deg)}

.order_list_box .order_list .list_items .list_container{padding: 15px}
.order_list_box .order_list .list_items .goods_list{flex: 1; }
.order_list_box .order_list .list_items .goods_list li{border-bottom: 1px solid var(--bg-e2e2e2); padding-bottom: 15px; margin-bottom: 15px; }
.order_list_box .order_list .list_items .goods_list li:last-child{margin-bottom: 0; border-bottom: none; padding-bottom: 0}
.order_list_box .order_list .list_items .goods_list li a{display: flex; gap: 10px; flex-wrap: wrap}
.order_list_box .order_list .list_items .goods_list li .step{font-weight: bold; font-size: 16px;
  margin-bottom: 10px;}
.order_list_box .order_list .list_items .goods_list li .img_box{width: 100px; }

.order_list_box .order_list .list_items .goods_list .detail_list{display: flex; flex-direction: column; font-size: 15px; line-height: 1.6; align-items: flex-start}
.order_list_box.donation .order_list .list_items .goods_list .detail_list .price{font-size: 16px; font-weight: bold;
  margin-bottom: 5px;}
.order_list_box .order_list .list_items .goods_list .detail_list .not{display: inline-block; padding: 0px 7px; border-radius: 8px; line-height: 16px; background: rgb(var(--color-warning)); font-size: 12px; color: #fff}

.order_list_box .order_list .list_items .goods_list .detail_list .step{display: block; background: rgb(var(--color-50)); padding: 0 10px; font-weight: bold; line-height: 20px; border-radius: 10px; font-size: 12px; }


.order_list_box .order_list .list_items .list_footer{padding: 15px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--bg-e2e2e2); }
.order_list_box .order_list .list_items .total_price{text-align: right; font-size: 18px; }
.order_list_box .order_list .list_items .total_price span{text-align: right; font-size: 14px; }


.common_cart_list {}
.common_cart_list .grid {display: grid;
}

.common_cart_list .grid_box {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.common_cart_list .grid_box.img_box {
  width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.common_cart_list .grid_box.img_box img {
  max-height: 80%;
}

.common_cart_list .grid_box .btn {
  text-decoration: underline;
}

.common_cart_list .header {
  height: 62px;
  font-size: 14px;
  border-bottom: 1px solid #f1f1f1;
  font-weight: 500;
}

.common_cart_list.order_list_box .grid {
  grid-template-columns: 1fr 1.5fr 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #f1f1f1;
}
.common_cart_list.order_list_box.finish .grid,
.common_cart_list.order_list_box.claim .grid {
  grid-template-columns: 1fr 1.5fr 2fr 1fr 1fr 1fr;
}

.common_cart_list.order_list_box.claim .grid .grid_box:nth-child(8) {
  display: none;
}

.common_cart_list.order_list_box .body_row .grid_box {
  height: 52px;
}

.common_cart_list.order_list_box .body_row .grid_box button {
  border: none;
  text-decoration: underline;
}

.common_cart_list.order_list_box .body_row .order_number {
  text-decoration: underline;
  color: var(--bg-primary);
  
}

.common_cart_list.order_list_box .body_row .img_box {
  display: none;
}
.cart_list.like .box.admin {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.cart_list.like .box.admin button {
  width: 100%;
}

.adress_edit_wrapper {display: grid;
}

.adress_edit_wrapper .check_radio_box {
  margin-bottom: 10px;
}

.adress_edit_wrapper .check_radio_input dl {
  font-size: 16px;
}

.adress_edit_wrapper .check_radio_input dl dt {
  padding-left: 90px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.adress_edit_wrapper .check_radio_input dl dt::before {
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
}

.adress_edit_wrapper .check_radio_input dl dt .adress_call {
  flex: 1;
  line-height: 1.5;
}

.adress_edit_wrapper .check_radio_input dl dt .call {
  
}

.adress_edit_wrapper .check_radio_input dl dt .name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  width: 160px;
}

.adress_edit_wrapper .check_radio_input dl .basic_addr {
  padding: 0 15px; display: inline-block;
  background-color: rgb(var(--color-primary));
  color: var(--color-primary-text);
  border-radius: 12px;
  line-height: 24px;
  font-size: 12px;
}

.adress_edit_wrapper .check_radio_input dl .right {
  width: 110px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column; gap: 5px
}

.adress_edit_wrapper .check_radio_input dl .right button:first-child {
  margin-bottom: 5px;
}

.adress_edit_wrapper .com_board_btn_box {
}
.adress_edit_wrapper .adress_desc{flex:1}
.add_addr_wrapper{padding-top: 20px}

.coupon_wrapper form {
  margin-bottom: 30px;
}
.coupon_wrapper .coupon_regist_box {
  background-color: #fbfbfb;
  margin-bottom: 10px;
  padding: 0 40px;
  height: 88px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.coupon_wrapper .coupon_regist_box .check {
  font-size: 16px;
  margin-right: 30px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.coupon_wrapper .coupon_regist_box .check label:first-of-type {
  margin-right: 34px;
}

.coupon_wrapper .coupon_regist_box .search {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.coupon_wrapper .coupon_regist_box .search .bd_input {
  flex: 1;
}

.coupon_wrapper .coupon_regist_box .search .btn_basic {
  margin-left: 5px;
  width: 154px;
  flex-shrink: 0;
}

.coupon_wrapper .coupon_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 15px;
}

.coupon_wrapper .coupon_list dl {
  flex: 1;
  border-radius: 4px;
  border: 1px solid #c4ae7f;
  margin-right: 12px;
}

.coupon_wrapper .coupon_list dl dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 42px;
  padding: 0 15px;
  color: #fff;
  background-color: #c4ae7f;
  height: 42px;
}

.coupon_wrapper .coupon_list dl dt .tit {
  font-size: 16px;
}

.coupon_wrapper .coupon_list dl dt .date {
  font-size: 14px;
  
}

.coupon_wrapper .coupon_list dl dd {
  padding: 15px 25px 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.coupon_wrapper .coupon_list dl dd .sale {
  margin-bottom: 10px;
}

.coupon_wrapper .coupon_list dl dd .num {
  font-size: 26px;
  
  font-weight: 700;
}

.coupon_wrapper .coupon_list dl dd .won {
  font-size: 20px;
  font-weight: 500;
}

.coupon_wrapper .coupon_list dl dd .tit {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.coupon_wrapper .coupon_list dl dd .info {
  color: #999;
  font-size: 14px;
}

.coupon_wrapper .coupon_list dl:nth-child(2n + 2) {
  margin-right: 0;
}

.coupon_wrapper .coupon_list dl.disable {
  border-color: #999;
}

.coupon_wrapper .coupon_list dl.disable dt {
  background-color: #bebdbd;
}

.btn_basic.ic_view button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.btn_basic.ic_view i {
  width: 20px;
  height: 17px;
  background: url(../img/ic_btn_view.svg) no-repeat center/contain;
  margin-right: 8px;
}


.point_wrapper .my_point {}
.point_wrapper .my_point a{}
.point_wrapper .my_point a.on{}
.point_wrapper .my_point dl {
  height: 100%; position: relative;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}

.point_wrapper .my_point dl dt,
.point_wrapper .my_point dl dd {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.point_wrapper .my_point dl dt {
  font-size: 16px;
  font-weight: 700;
}

.point_wrapper .my_point dl .num {
  font-size: 26px;
  font-weight: 700;
}

.point_wrapper .my_point dl .red {
  color: #f45e5c;
}

.point_wrapper .my_point dl .won {
  font-size: 22px;
  font-weight: 500;
}


/* 마이페이지 - /* 멤버십 결제, 멤버십 회차, 캐시, 적립금, 접속로그*/ */
.list_type {margin-top: 20px;}
.list_type .grid {display: flex}
.list_type .grid .list_items{padding: 15px 20px; flex-basis: 150px}
.list_type .grid .list_items.desc{justify-content: flex-start; flex:1}
.list_type .grid .list_items.point{text-align: center; font-weight: bold}
.list_type .lsit_list .grid .list_items.point.red{color:red}
.list_type .lsit_list .grid .list_items.point.blue{color:blue}

.list_type .header{font-weight: bold; border-bottom: 1px solid var(--tab-border-color)}


.list_type.members_log .list_items.orderid{flex-basis: 200px}
.list_type.members_log .list_items.subject{flex:1; gap : 5px}
.list_type.members_log .list_items.subject .not{display: inline-block; padding: 0px 7px; border-radius: 8px; line-height: 16px; background: rgb(var(--color-warning)); font-size: 12px; color: #fff}
.list_type.members_log .list_items.payment_type{display: flex; align-items: center; gap: 10px; position: relative}

.list_type .list_items .view{display: inline-block}
.list_type .list_items .view span{display: block; padding: 0px 7px; border-radius: 10px; line-height: 20px; background: rgb(var(--color-100)); font-size: 12px; cursor: pointer}
.list_type .list_items .view .bank_num{display: none; position: absolute; top: 100%; left: 0; background: rgb(var(--color-fff)); padding: 10px 20px; border: 1px solid var(--tab-border-color); z-index: 1; transform: translateY(-10px)}
.list_type .list_items .view.on .bank_num,
.list_type .list_items .view:hover .bank_num{display: block}

.list_type.point_list .list_items .view .bank_num{transform: translateY(5px)}
.list_type.point_list .list_items.use.step_0{color: rgb(var(--color-danger)); font-weight: bold}


.list_type .list_row.empty{display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 15px; padding: 50px 0 30px}
.list_type .list_row.empty::before{content: ""; display: block; width: 50px; height: 50px; background: url(../img/ic_exclamation_none.svg) no-repeat center/contain; }members_log

.list_type.members_list .grid .list_items.no{flex-basis: 75px}

#members_contents_layer .img_list{margin-bottom: 15px; display: flex; flex-wrap: wrap; gap: 10px}
#members_contents_layer .img_box{width: 150px; height: 150px; cursor: pointer}
#members_contents_layer .img_box.on{transform: scale(1.5); transform-origin: top left}


.cs_center_search {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-fff);
  margin-bottom: 60px;
  border: 1px solid rgb(var(--color-100));
}

.cs_center_search .tit_box{background: rgb(var(--color-50)); padding: 30px 40px; width: 500px; flex-shrink: 0}
.cs_center_search h3 {font-size: 22px;}

.cs_center_search .search_box {display: flex;; align-items: center; max-width: none; padding: 30px;
  padding-top: 20px;}

.cs_center_search .search_box .input_box {
  margin-bottom: 10px;
}

.cs_center_search .bot {
  width: 100%;
  margin-top: 40px;
}

.cs_center_search .bot a {
  display: block; width: fit-content; background: rgb(var(--color-fff));
  border: 1px solid rgb(var(--color-250));
  height: 32px;
  line-height: 32px;
  padding: 0 15px;
  margin-top: 5px;
}

.cs_center_main_board{display: grid; grid-template-columns: repeat(2,1fr); gap: 30px}
.cs_center_main_board .title_line h2{font-size: 24px; margin-bottom: 20px; }
/*
.cs_center_main_board {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}

.cs_center_main_board > div {
  width: calc(50% - 10px);
}

.cs_center_main_board .faq_box {
  margin-right: 20px;
}

.cs_center_main_board .faq_box .board_faq {
  border-top: none;
}

.cs_center_main_board .faq_box .board_faq > li {
  font-size: 14px;
}

.cs_center_main_board .faq_box .board_faq > li .ic {
  width: 55px;
  flex-shrink: 0;
  font-size: 16px;
}

.cs_center_main_board .faq_box .board_faq > li .cate {
  width: 94px;
  flex-shrink: 0;
}

.cs_center_main_board .faq_box .board_faq > li .q_box {
}

.cs_center_main_board .faq_box .board_faq > li .a_box {
  padding-right: 20px;
}

.cs_center_main_board .faq_box .board_faq > li.on .a_box {
  border-bottom: none;
}

.board_faq > li .desc{}

.cs_center_main_board .board_basic {
  border-top: none;
}

.cs_center_main_board .board_basic .list {
  border-bottom: none;
  justify-content: space-between;
  padding: 0 15px;
}

.cs_center_main_board .board_basic .subject {
  padding: 0;
}

.cs_center_main_board .board_basic .date {
  width: auto;
  flex: auto 0 0;
  padding: 0;
}
*/

.board_top_search {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.board_top_search.j_end {
  justify-content: flex-end;
}

.board_top_search .custom_select_box {
  width: 240px;
}

.board_top_search .search_box {
  margin: 0;
}

.board_top_search .search_box .input_box {
  margin-bottom: 0;
}

.board_basic {
  border-top: 2px solid var(--bg-333);
}

.board_basic .header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 52px;
  border-bottom: 1px solid var(--tab-border-color);
}

.board_basic .header .date {
  color: var(--color-default);
}

.board_basic .box {
  font-size: 16px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.board_basic .num {
  flex: 120px 0 0;
}

.board_basic .subject {
  flex: 1;
}

.board_basic .date {
  flex: 210px 0 0;
  color: #999;
  
}

.board_basic .list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 52px;
  border-bottom: 1px solid var(--tab-border-color);
}
.board_basic .list.notice {
  background: #f9f9f9;
}

.board_basic .list .subject {
  justify-content: flex-start;
  overflow: hidden;
}

.board_basic .list .subject a {
  display: block; width: 100%; line-height: 52px; 
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.board_basic .list .subject a:hover{text-decoration: underline;}

.board_view {
  border: 1px solid var(--bg-333); border-width: 2px 0 1px;
}
.board_view .sun-editor-editable{padding: 0;}
.board_view .sun-editor-editable>*{margin: 0 !important;}

.board_view dt {
  min-height: 72px;
  border-bottom: 1px solid var(--bg-333);
  padding-left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.board_view dt .subject {
  font-weight: 500; padding: 10px 0;
  font-size: 22px;
}

.board_view dt .date {
  font-size: 16px;
  color: rgb(var(--color-700));
  width: 210px;
  text-align: center; flex-shrink: 0;
  
}


.board_view dt .date .cate{background: #999; padding: 3px 10px; color: #fff; border-radius: 3px; margin-right: 10px; font-size: 12px;}

.board_view dt .date .cate.step01{background: #d39f4b;}

.board_view dd.con_box {
  padding: 30px 20px;
  font-size: 16px;
  line-height: 1.5;
}

.m_bottom_fix_menu {
  display: none;
}

.board_faq {
  border-top: 2px solid var(--bg-333);
}

.board_faq > li {
  font-size: 16px;
  width: 100%;
  line-height: 1.5;
}

.board_faq > li .img_list {
  display: flex;
  padding-right: 20px;
}
.board_faq > li .img_list li {
  flex: 1;
  max-width: 20%;
  margin-right: 5px;
}
.board_faq > li .img_list li:last-child {
  margin-right: 0;
}

.board_faq > li .q_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 1px solid var( --bg-e2e2e2);
}

.board_faq > li .ic {
  width: 80px;
  font-weight: 700;
  text-align: center;
}

.board_faq > li .ic.q {
  color: rgb(var(--color-primary)); filter: none;
}

.board_faq > li .ic.q.wait {
  color: #999;
}
.board_faq > li .ic.a{filter: none}

.board_faq > li .cate {
  width: 110px;
  text-align: center;
  font-weight: 500;
  flex-shrink: 0;
  margin-right: 35px; white-space: nowrap;; overflow: hidden; text-overflow: ellipsis;
}

.board_faq > li .desc {flex: 1; display: flex; align-items: center}

.board_faq > li .q_box .desc .subject .brand{color: rgb(var(--color-800)); float: right; margin-left: 10px; font-size: 13px}
.board_faq > li .a_box .desc .subject {
   font-family: inherit;
}
.board_faq > li .a_box .desc .subject table {
  width: 100% !important;
}

.board_faq > li .a_box .desc .subject .site_admin>*{color: inherit !important;; line-height: inherit !important; font-size: inherit !important; font-family: inherit !important; margin: 0 !important;; padding: 0 !important; background: none !important;}

.board_faq > li .arrow {
  width: 52px;
  height: 52px;
  position: relative; background: url(../img/arrow_down_ic.svg) no-repeat center/ 15px auto;
}


.board_faq > li .a_box { display: none; padding: 20px 0;
  overflow: hidden;
  transition: 0.2s;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;border-bottom: 1px solid var(--tab-border-color);

}

.board_faq > li.on .a_box {
  display: flex;
}

.board_faq > li .a_box .ic.a {
  align-self: flex-start;
}

.board_faq > li .a_box .arrow {
  display: none;
}


.board_faq.my .id {
  width: 230px;
}

.board_faq.my .date {
  width: 140px;
  color: #999;
}

.board_faq.my .id_date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.board_faq.my .a_box {
  flex-direction: column;
  align-items: flex-start;
}

.board_faq.my .a_box .a_box_q {position: relative; padding: 10px 0; }
.board_faq.my .a_box .a_box_a{position: relative; padding: 10px 0; background: rgba(var(--color-50))}


.board_faq.my .a_box .a_box_q .ic,
.board_faq.my .a_box .a_box_a .ic{
  position: absolute;; top: 10px; left: 0px;}

.board_faq.my .a_box .a_box_q .desc{display: block;;
text-indent: 80px}
.board_faq.my .a_box .a_box_a .desc {padding-left: 80px;
  /*flex-direction: column;*/
  /*align-items: flex-start;*/
}

.board_faq > li .img_list {
  display: flex;
  padding-right: 20px;
}
.board_faq > li .img_list li { cursor: pointer;
  flex: 1;
  max-width: 20%;
  margin-right: 5px;
}
.board_faq > li .img_list li:last-child {
  margin-right: 0;
}
.board_faq > li .img_list li.on {
  flex-shrink: 0;
  max-width: 50%;
  flex: 5;
}
.board_faq > li .img_list li img{display: block}
.board_faq.my .a_box .a_box_q .desc .subject,
.board_faq.my .a_box .a_box_a .desc .subject {
  margin-bottom: 10px;
}

.board_faq.my .a_box .a_box_a {width:100%;
}

.board_faq.my .btn_box {
  padding: 10px 15px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}

.board_faq.my .btn_box button:last-child {
  margin-left: 5px;
}

.notice_wrapper h2.sub_title {
}
.notice_wrapper .com_board_btn_box {
  margin-top: 30px;
}

.com_no_data {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 240px;
}

.com_no_data .ic {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../img/ic_exclamation_none.svg) no-repeat center/contain;
}

.com_no_data p {
  color: #999;
  margin-top: 10px;
  text-align: center;
}
.com_no_data.has_btn .btn_basic {
  margin-top: 2rem;
  width: 210px;
}

.com_board_btn_box.right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}

.com_board_btn_box .btn_basic {
  width: 175px;
}

.user_out_pop .pop_box {
  width: 412px;
}

/* 서브 2차메뉴 */
.depth2_list_box {
  display: none;
}

/* 회원탈퇴 */
.info_out {
}
.info_out .depth3_tab_style {
  display: none;
}

.withdrawal_box{width: 100%; max-width: 500px; margin: 0 auto}
.withdrawal_box .info_tit{margin-bottom: 10px;}
.withdrawal_box .info_tit h6{font-size: 18px; font-weight: bold;}
.withdrawal_box .info_tit p{font-size: 16px}
.withdrawal_box .chk_list{border: 1px solid var(--tab-border-color); padding: 20px; margin-bottom: 30px;}
.withdrawal_box .chk_list li{margin-bottom: 15px;}
.withdrawal_box .chk_list li:last-child{margin-bottom: 0px;}
.withdrawal_box .chk_list li label{font-weight: bold; font-size: 16px}
.withdrawal_box .chk_list li .sub_txt{padding-left: 25px; margin-top: 5px;}

.withdrawal_box .info_chk_box h5{font-size: 18px; font-weight: bold; margin-bottom: 30px;}
.withdrawal_box .btn_box{display: flex; gap: 10px}
.withdrawal_box .btn_box>*{flex:1}

#join_site_list .red{color: #ff4700}
#join_site_list .top_box{margin-bottom: 30px; border: 1px solid var(--tab-border-color); }
#join_site_list .top_box .tit{font-size: 16px; border-bottom: 1px solid var(--tab-border-color); background: rgb(var(--color-fff)); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center}
#join_site_list .top_box .desc{padding: 10px 20px; background: rgba(var(--color-50),.5); }
#join_site_list .top_box .desc span{display: block}
#join_site_list .top_box .btn_box{
  margin-top: 0;}
#join_site_list .top_box .btn_box .btn_basic{background: rgb(var(--color-fff))}

#join_site_list .site_list_box{display: none}
#join_site_list .site_list_box .tit{font-size: 16px; margin-bottom: 10px;}
#join_site_list .site_list{}
#join_site_list .site_list li{display: flex; align-items: center; gap: 20px; padding: 10px}
#join_site_list .site_list li:last-child{margin-bottom: 0;}
#join_site_list .site_list li:hover{outline: 1px solid rgb(var(--color-primary))}
#join_site_list .site_list li .name_box{margin-right: auto}
#join_site_list .site_list li .name_box strong{display: block; }
#join_site_list .site_list li .url_box{padding-left: 25px;}
#join_site_list .site_list li .select_btn{}

  /*
  .info_out .dot1 {font-size: 18px; font-weight: bold}
  .info_out .dot1 br {
    display: none;
  }
  .info_out .withdrawal_box .info_box {
    display: flex;
    justify-content: space-between; gap: 10px;
  }
  .info_out .withdrawal_box .info_box dl {
    border: 1px solid var(--tab-border-color);
    text-align: center;
    width: 100%;
  }
  .info_out .withdrawal_box .info_box dl:last-child {
    margin-right: 0;
  }
  .info_out .withdrawal_box .info_box dl dt {
    font-size: 16px;
    line-height: 48px;
    border-bottom: 1px solid var( --bg-e2e2e2);
    width: 100%;
    font-weight: bold;
  }
  .info_out .withdrawal_box .info_box dl dd {
    font-size: 14px;
    line-height: 20px;
    width: 100%; padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .info_out .withdrawal_box .info_box dl dd .big {
    color: #f00;
  }

  .info_out .withdrawal_box .info_box dl dd .total_out_btn{text-decoration: underline; margin-left: auto;  margin-top: 30px}

  .info_out .withdrawal_box .id_pw_check {
    margin-bottom: 25px;
    display: block;
  }
  .info_out .withdrawal_box .id_pw_check.on {
    display: block;
  }
  .info_out .withdrawal_box .id_pw_check li {
    width: 345px;
    margin: 0 auto 30px;
  }
  .info_out .withdrawal_box .id_pw_check li span::after {
    display: none;
  }

  .info_out .withdrawal_box .btn_box {
    justify-content: center;
    margin-bottom: 30px;
  }
  .info_out .withdrawal_box .btn_box button {
    width: 170px;
    margin-right: 5px;
  }
  .info_out .withdrawal_box .btn_box button:last-child {
    margin-right: 0;
  }
  */

/* 브랜드 페이지 */
#container .brand .main_visual {
  height: calc(100vh - 80px);
  background: url(../img/brand_banner.jpg) no-repeat center / cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#container .brand .main_visual .down_arrow {
  content: "";
  display: block;
  width: 83px;
  height: 42px;
  background: url(../img/down_arrow_white.svg) no-repeat center / cover;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  text-indent: -9999px;
}
#container .brand .main_visual .title {
  text-align: center;
}
#container .brand .main_visual .title span.logo {
  font-size: 22px;
  line-height: 1.64;
  margin-bottom: 300px;
  text-transform: uppercase;
  letter-spacing: 8.8px;
  
}
#container .brand .main_visual .title strong {
  display: block;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
  
}
#container .brand .main_visual .title strong br {
  display: none;
}
#container .brand .main_visual .title span {
  display: block;
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 60px;
  color: #fff;
  font-weight: 300;
  -webkit-text-stroke: 0.01px #fff;
}
#container .brand .main_visual .desc p {
  display: flex;
  justify-content: center;
}
#container .brand .main_visual .desc p span {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  margin-right: 5px;
}
#container .brand .main_visual .desc p span:last-child {
  margin-right: 0;
}

#container .brand .brand_cont1 {
  margin-bottom: 240px;
  padding-top: 260px;
}
#container .brand .brand_cont1 ul {
  display: flex;
  justify-content: center;
  height: 378px;
  margin-bottom: 80px;
}
#container .brand .brand_cont1 ul:last-child {
  margin-bottom: 0;
}
#container .brand .brand_cont1 ul:nth-child(even) {
  flex-direction: row-reverse;
}
#container .brand .brand_cont1 ul li {
  max-width: 500px;
  width: 100%;
}
#container .brand .brand_cont1 ul li:last-child {
  margin-bottom: 0;
}
#container .brand .brand_cont1 ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#container .brand .brand_cont1 ul li.desc {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#container .brand .brand_cont1 ul:nth-child(odd) li.desc {
  padding-left: 40px;
}
#container .brand .brand_cont1 ul:nth-child(even) li.desc {
  padding-right: 40px;
}
#container .brand .brand_cont1 ul li.desc strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.27;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  
}
#container .brand .brand_cont1 ul li.desc span {
  display: block;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -1px;
  -webkit-text-stroke: 0.1px #444;
  color: #444;
}
#container .brand .brand_cont1 ul li.desc span br {
  display: none;
}
#container .brand .brand_cont1 ul li.desc .btn_basic {
  width: 146px;
  line-height: 42px;
  height: auto;
  font-size: 18px;
  letter-spacing: -0.36px;
  font-weight: 600;
}

#container .brand .brand_cont2 {
  height: 645px;
  background: url(../img/brand_cont2_bg.jpg) no-repeat center / cover;
  margin-bottom: 170px;
}
#container .brand .brand_cont2 .inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#container .brand .brand_cont2 .title {
  margin-bottom: 50px;
}
#container .brand .brand_cont2 .title br {
  display: none;
}
#container .brand .brand_cont2 .title strong {
  display: block;
  color: #fff;
  font-size: 38px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
  
}
#container .brand .brand_cont2 .title span {
  display: block;
  color: #fff;
  font-size: 32px;
  letter-spacing: -0.5px;
  font-weight: 300;
}
#container .brand .brand_cont2 .desc p {
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
}

#container .brand .brand_cont3 {
  width: 100%;
  height: 380px;
  position: relative;
  margin-bottom: 120px;
}
#container .brand .brand_cont3 ul {
  transition-timing-function: linear;
}
#container .brand .brand_cont3 ul li {
}
#container .brand .brand_cont3 ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#container .brand .brand_cont3 .next_btn,
#container .brand .brand_cont3 .prev_btn {
  display: none;
}

/* 프로덕트 페이지 */
.content_box.product_wrap .lnb_wrapper {
  width: 100%;
}
.content_box.product_wrap .lnb_wrapper h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  
}
.content_box.product_wrap .lnb_wrapper .lnb {
  flex-direction: row;
  justify-content: center;
  margin-bottom: 40px; gap: 15px;
}

.sub_visual {
  height: 300px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}
.sub_visual::after {
  content: "";
  display: block;
  max-width: 1300px;
  width: 100%;
  height: 131px;
  position: absolute;
  top: 70px;
  left: calc(50% + 20px);
  background: url(../img/product_subv_text.svg) no-repeat top left / auto 100%;
  transform: translateX(-50%);
}
.sub_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 
.sub_visual .inner{max-width: 1300px; width: 100%; margin: 0 auto; position: relative; z-index: 1;;}
.sub_visual .text{padding-top: 70px;}
.sub_visual .text .title span{color: #fff; font-size: 14px; margin-bottom: 15px; letter-spacing: 2.8px; }
.sub_visual .text .title strong{color: #fff; font-size: 42px; letter-spacing: -.84px; margin-bottom: 10px; }
.sub_visual .text .title strong br{display: none;}
.sub_visual .text p{color: #fff; font-size: 18px; letter-spacing: -.36px; line-height: 1.5; }

.sub_visual .text span,
.sub_visual .text strong{background: linear-gradient(to right, #d6baac, #D39F4B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-style: normal;}
 */

.content_box.product_wrap .lnb_wrapper.mobile {
  display: none;
}
.content_box.product_wrap .lnb_wrapper .lnb_box > span {
  display: none;
}
.content_box.product_wrap .lnb_wrapper .lnb li {
  overflow: hidden;
}
.content_box.product_wrap .lnb_wrapper .lnb li.on {}
.content_box.product_wrap .lnb_wrapper .lnb li:last-child {}
.content_box.product_wrap .lnb_wrapper .lnb li a {
  display: flex;
  white-space: nowrap;
  justify-content: center;
}
.content_box.product_wrap .lnb_wrapper .lnb li.on a {font-weight: bold;}

.content_box.product_wrap .com_prod_list .prod_info dl dt a {
  font-size: 16px;
  font-weight: 600;
}
.content_box.product_wrap .com_prod_list .prod_info dl dd {
  
}

.content_box.product_wrap .com_prod_list .com_prod_box .prod_info .bot_box .real_price {
  font-size: 18px;
}
.content_box .com_prod_list .com_prod_box .prod_info .bot_box .pv {
  color: #4e89ff;
  
}


.m_cal_popup {
  display: none;
}
.cal_pdf {
  text-align: right;
  margin: 20px 0;
}
.cal_pdf a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #333;
  padding-right: 40px;
  position: relative;
}
.cal_pdf a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/down_ic.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(400%, -50%);
}

/* sns */
.sns_wrap {
}
.sns_wrap .menu_tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  padding-top: 30px;
}
.sns_wrap .menu_tit dt {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  
}
.sns_wrap .menu_tit dd {
  font-size: 12px;
  color: #999;
}
.sns_wrap .insta_tit {
  
  font-size: 18px;
  margin-top: 60px;
  text-align: left;
  margin-bottom: 10px;
}
.sns_wrap .sns_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.sns_wrap .sns_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sns_wrap .sns_list li .bg {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  opacity: 0;
  transition: all 0.3s;
}
/*
.sns_wrap .sns_list li .bg:hover{opacity: 1;}
*/
.sns_wrap .sns_list li .tag {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.sns_wrap .btn_box {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}
.sns_wrap .btn_box .btn {
  width: 189px;
  height: 48px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d39f4b;
  border: 1px solid #d39f4b;
  border-radius: 5px;
  padding: 0 15px;
}
.sns_wrap .btn_box .btn i {
  width: 7px;
  height: 12px;
  background: url(../img/arrow_7_gold.svg) no-repeat center/contain;
}

/* 환불요청 페이지 */
.cancel_info_wrap > ul > li:first-child {
  margin-bottom: 10px;
}
.cancel_info_wrap > ul > li {
  line-height: 1.5;
  font-size: 12px;
}

.cancel_info_wrap li li {
  display: flex;
  margin-bottom: 5px;
}
.cancel_info_wrap li li:first-child {
  margin-bottom: 10px;
}

.cancel_info_wrap li li strong {
  width: 135px;
  font-size: 12px;
  flex-shrink: 0;
}
.cancel_info_wrap li li strong em {
  color: #999;
}

.cancel_info_wrap li li span {
  display: block;
  font-size: 12px;
}

/* 상세페이지 비회원 로그인,회원가입 버튼 */
.join_login_box {
  display: flex;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var( --bg-e2e2e2);
}
.join_login_box a {
  flex: 1;
}
.join_login_box a:first-child {
  margin-right: 10px;
}

/* 제품상세페이지 - 배송/보관 */
.deliver_info h3 {
  font-size: 22px;
}
.deliver_info table {
  margin-bottom: 120px;
}
.deliver_info th {
  width: 225px;
  font-weight: 500;
  background: #f9f9f9 !important;
}
.deliver_info .tbl_basic tbody td {
  border-left: none;
}


.star_value{text-align: center;}
.star_value .star{margin-right: 20px;}
.star_value .star:last-child{margin-right: 0;}
.star_value .star .img_box{width: 100px; aspect-ratio: 1/1; background: url(../img/ic_star.png) no-repeat center / cover; filter: grayscale(1); margin: 0 auto;}
.star_value .star.on .img_box{filter: none;}
.star_value .star p{display: flex; flex-direction: column; align-items: center;}
.star_value .star p span{font-size: 14px;}

/* 이벤트 페이지 */
/* 이벤트 페이지 - 공통사항 */
.left_menu .depth_2{display: grid; grid-template-columns: repeat(5,210px); margin-bottom: 60px; gap: 10px; flex-wrap: wrap; overflow: hidden; place-content: center;}
.event_title .left_menu .depth_2{grid-template-columns: repeat(2,210px);}
.left_menu .depth_2 li a{line-height: 46px; padding: 0 10px; font-size: 16px; border: 1px solid #999;  color: #999; transition: all .3s; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; display: block; text-align: center; }
.left_menu .depth_2 li:hover a,
.left_menu .depth_2 li.open a{background: var(--bg-primary); color: #fff; ; border-color: var(--bg-primary); font-weight: bold;}

.event_list{display: grid; gap: 50px 10px;}
.event_list.col-3{grid-template-columns: repeat(3,1fr)}
.event_list.col-4{grid-template-columns: repeat(4,1fr)}
.event_list .list_item{}
.event_list .list_item .img_box{width: 100%; aspect-ratio: 1/1;margin-bottom: 10px; position: relative; border-radius: 4px; overflow: hidden;}
.event_list .list_item .txt_box .subject{font-weight: bold; font-size: 17px; display: block; width: 100%; white-space: nowrap; overflow: hidden; margin-bottom: 5px; text-overflow: ellipsis;}
.event_list .list_item .txt_box .date{font-size: 13px; display: flex; }
.event_list .list_item .txt_box .date .cate{background: #999; padding: 0 10px; color: #fff; border-radius: 3px;  display: block; margin-right: 10px;}
.event_list .list_item .txt_box .date .cate.step01{background: var(--bg-primary); color: var(--color-primary-text)}

.event_list .end_event.list_item .img_box::before{content: ""; display: block; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); position: absolute; top: 0; left: 0; }
.event_list .end_event.list_item .img_box::after{content: "종료된 이벤트입니다.";  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-weight: bold; font-size: 16px}

.event_list_wrap .none_img{width: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; height: 100%}
.event_list_wrap .none_img img{width: 60% !important; height: auto !important; max-width: 120px;}

.event_review .board_basic .list{height: auto; padding: 15px 0;}
.event_review .board_basic .list .subject{flex-wrap: wrap;}
.event_review .board_basic .list .subject p{width: 100%; color: #999; font-size: 14px;;}
.event_review .board_basic .unit{flex: 120px 0 0}
.event_review .board_basic .name{flex: 100px 0 0;}

.event_view .btn_box{display: flex; justify-content: center; margin-top: 30px; gap: 5px;}
.event_view .btn_box .btn_basic{max-width: 175px; width: 100%;} 
.event_view .board_view dt .date{width: auto; padding-right: 20px;}
.event_view .bbs_reply_write{display: flex; gap: 5px; }
.event_view .bbs_reply_write textarea[name='review_comment']{min-height: 150px; padding: 15px; line-height: 1.5; flex: 1; font-size: 1rem;}
.event_view .bbs_reply_write .btn_basic{flex-shrink: 0; height: auto;}

.sub_banner_img{width: 100%; height: 100%; display: flex; align-items: center;justify-content: center;}
.sub_banner_img img{width: 60% !important;height: auto !important; max-width: 120px !important;}


.video-container{width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-efefef)}
.video-container #thumbnail{width: 100%; height: 100%; object-fit: contain;}


/* 펀드 fund */
#fund_list_wrapper .com_prod_box{position: relative}
#fund_list_wrapper .real_price{color: var(--bg-a9a9a9); font-size: 16px; font-weight: bold; }
#fund_list_wrapper .progress_box{margin-bottom: 10px;}
#fund_list_wrapper .progress_box>*{display: flex}
#fund_list_wrapper .progress_bar{flex: 1; border: 1px solid var(--bg-e2e2e2); height: 10px; border-radius: 5px}
#fund_list_wrapper .progress_bar i{display: block; background: var(--bg-primary); height: 10px; border-radius: 5px; animation: fund_list_progress 1.5s ease-in-out forwards}
#fund_list_wrapper .progress_box em{color: var(--bg-primary); font-weight: bold;}
@keyframes fund_list_progress {
  0%{width: 0}

}

#fund_list_wrapper .ic_like,
#fund_view_wrapper .ic_like{display: none}

#fund_view_wrapper .detail_top_slide .img_box{position: relative}


#fund_view_wrapper .top_box{display: flex; gap: 50px}
#fund_view_wrapper .top_box .img_box{aspect-ratio: 1/1; overflow: hidden; background: var(--bg-333); }
#fund_view_wrapper .top_box .img_box img{width: 100%; height: 100%; object-fit: contain}
#fund_view_wrapper .right_box{width: 610px; flex-shrink: 0}
#fund_view_wrapper .title_box{width: 100%; margin-bottom: 20px;}
#fund_view_wrapper .title_box .title{}
#fund_view_wrapper .title_box .sub_txt{}

#fund_view_wrapper .middle_box{width: 100%; margin-bottom: 30px;}
#fund_view_wrapper .grid_box{margin-bottom: 20px; width: 100%}
#fund_view_wrapper .grid_box ul{display: flex; gap: 5px; flex-wrap: wrap}
#fund_view_wrapper .grid_box .top{}
#fund_view_wrapper .grid_box ul li.max_date{width: 100%; flex: auto}
#fund_view_wrapper .grid_box ul li{display: flex; background: var(--bg-f6f6f6); border-radius: 8px; padding: 15px 10px; flex:1; flex-direction: column; align-items: center;  }
#fund_view_wrapper .grid_box ul li .num{font-weight: bold}
#fund_view_wrapper .grid_box ul li .num span{}

#fund_view_wrapper .progress_bar{border: 1px solid var(--bg-e2e2e2) ; border-radius: 10px; overflow: hidden;
  width: 100%;font-weight: bold; font-size: 12px; font-style: normal; position: relative;
  margin-bottom: 5px;
}
#fund_view_wrapper .progress_bar span{display: block; background: var(--bg-primary); height: 20px; color: var(--color-primary-text); text-align: right; padding-right: 10px; animation: fundProgressbar ease-in-out 1.5s forwards; overflow: hidden; position: relative; z-index: 1; border-radius: inherit}
#fund_view_wrapper .progress_bar i{color: var(--bg-primary); position: absolute; top: 0; left: 0; z-index: 0; font-style: inherit}
#fund_view_wrapper .progress_bar+h6{font-size: 14px; width: 100%; text-align: right; color: var(--bg-primary);}

#fund_view_wrapper .info_text_box{margin-bottom: 20px; width: 100%; border-top: 1px solid var( --bg-e2e2e2); padding-top: 15px}
#fund_view_wrapper .info_text_box .tit{font-size: 14px; }
#fund_view_wrapper .info_text_box .desc{}

#fund_view_wrapper .join_login_box{width: 100%; margin-top: 0;}


/* 마켓 view */
.detail_wrapper .contents_btn{display: flex; gap: 5px; justify-content: center;
  margin-top: 30px;}
.detail_wrapper .contents_btn .btn_basic{width: 100%;
  display: flex; gap: 10px; align-items: center; justify-content: center}
.detail_wrapper .contents_btn .btn_basic .ic{display: block; width: 12px; height: 12px; background: url("../img/arrow_ic.svg") no-repeat center / contain; }
.detail_wrapper .contents_btn .btn_basic.prev .ic{transform: rotate(180deg)}

/* market 캐시충전, 멤버십 */
.list_box{border: 1px solid var(--bg-e2e2e2); border-radius: 8px; }
.list_box .list{display: flex; padding: 0 20px; }
.list_box .list li{padding: 10px 0px; flex:1; display: flex; align-items: center; min-height: 48px; position: relative; overflow: hidden; }
.list_box .list li.name{flex: 2}
.list_box .list .price{}
.list_box .list .btn_box{}

.list_box .list_header{border-bottom: 1px solid var(--bg-e2e2e2); background: var(--bg-f9f9f9); border-radius: 8px 8px 0 0}

.list_box .list_header .btn_box{justify-content: center}

.list_box .list_items .list:last-child{border-radius: 0 0 8px 8px}
.list_box .list_items .list:hover{background: rgba(var(--color-200),.2)}
.list_box .list_items .list li{}
.list_box .list_items .list li.name{word-break: break-all; }
.list_box .list_items .bonus,
.list_box .list_items .total{gap: 10px}
.list_box .list_items .sub_txt{display: none}
.list_box .list_items .price{}
.list_box .list_items .bonus::before{content: "+";display: block; width: 24px; height: 24px; background: var(--bg-e2e2e2); display: flex; align-items: center; justify-content: center;  border-radius: 12px; font-weight: bold}
.list_box .list_items .total::before{content: "=";display: block; width: 24px; height: 24px; background: var(--bg-e2e2e2); display: flex; align-items: center; justify-content: center;  border-radius: 12px; font-weight: bold}
.list_box .list_items .btn_box{justify-content: center}
.list_box .list_items .btn_box .btn_basic{}

.list_box .list_items .empty{display: flex; align-items: center; justify-content: center; gap: 20px; flex-direction: column; padding: 30px 0}
.list_box .list_items .empty::before{content: ""; display: block; width: 50px; height: 50px; background: url(../img/ic_exclamation_none.svg) no-repeat center/contain; }

.list_box.card{border: none; border-radius: 0; position: relative}
.list_box.card .list_header{display: none}
.list_box.card .list_items{}
.list_box.card .list_items .list{border: 1px solid var(--tab-border-color);  border-radius: 8px; box-shadow: 1px 1px 3px rgb(var(--color-333),.1); padding: 20px 15px; overflow: hidden; display: grid; grid-template-columns: repeat(2,1fr); width: 300px}
.list_box.card .list_items .list:hover{border-color: rgb(var(--color-primary)); background: transparent}
.list_box.card .list_items .list *{transition: all .3s}
.list_box.card .list_items .list li{min-height: auto; display: block; flex: none; padding: 0; grid-column: 2 span}
.list_box.card .list_items .list .name{font-size: 24px; color: rgb(var(--color-primary)); flex:1; font-weight: bold; }
.list_box.card .list_items .list .date{color: rgb(var(--color-600)); margin-bottom: 30px; word-break: break-all}
.list_box.card .list_items .list:hover .date{color:inherit}
.list_box.card .list_items .list .price{font-size: 18px; grid-column: auto; align-self: flex-end}
.list_box.card .list_items .list .price .sub_txt{font-size: 13px; display: inline-block}

.list_box.card .list_items .list .btn_box{flex-shrink: 0;   margin-top: 15px;; grid-column: auto}
.list_box.card .list_items .list .btn_box .btn_basic{margin-left: auto}
.list_box.card .list_items .list .btn_box .btn_basic:hover{ background: rgb(var(--color-primary)) !important;;
  color: var(--color-primary-text) !important;}
.list_box.card .list_items .list.none .contents_empty{padding: 7px 0}

.add_coupon_box{display: flex;margin-bottom: 20px; justify-content: flex-end; }
.add_coupon_box .input{flex:1; max-width: 300px}
.add_coupon_box .btn_basic{flex-shrink: 0; }


.fund_add_box .info_box{}

/* 스토리 story */
#banner_main .img_box{}

/* 프린트 설정 */
@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .order_prod_list .body_row .img{display: none}
  #btnPrint{display: none}

}

/* market - group */
.group_wrapper .top_box .flex_box{gap: 20px; margin-bottom: 30px;}
.group_wrapper .top_box .img{width: 300px; flex-shrink: 0}
.group_wrapper .top_box .tit{font-size: 28px; font-weight: bold;margin-bottom: 15px;}
.group_wrapper .top_box .desc{font-size: 18px; margin-bottom: 30px;color: rgb(var(--color-700)); overflow: hidden}
.group_wrapper .top_box .desc .info{font-size: 13px; display: flex; align-items: center; gap: 5px; cursor: pointer; }
.group_wrapper .top_box .desc .info .ic{display: block; width: 12px; height: 12px}
.group_wrapper .top_box .desc .info .ic::after{content: ""; display: block; width: 100%; height: 100%; background: url(../img/arrow_ic.svg) no-repeat center / contain; transform: rotate(90deg)}
.group_wrapper .top_box .desc  .toggle_box{overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size: 14px}
.group_wrapper .top_box .desc  .toggle_box.on{display: block}
.group_wrapper .top_box .btn_basic{max-width: 150px}


.group_wrapper .list_box{border: none}
.group_wrapper .list_box .sort_box{margin-bottom: 10px; display: flex; align-items: flex-end; justify-content: space-between}
.group_wrapper .list_box ul{border: 1px solid rgb(var(--color-100)); border-width: 1px 0; }
.group_wrapper .list_box li a{display: block; padding: 10px 0; display: flex; gap: 10px; transition: all .3s}
.group_wrapper .list_box li:hover a{background-color: rgba(var(--color-50),.5)}
.group_wrapper .list_box li a .img_box{width: 100px; flex-shrink: 0}
.group_wrapper .list_box li a .desc{flex: 1; display: flex; justify-content: space-between; align-items: center;
  padding-right: 10px; overflow: hidden}
.group_wrapper .list_box li a .desc .info_box{display: flex; flex-direction: column; overflow: hidden;}
.group_wrapper .list_box li a .desc .tit{font-size: 16px; font-weight: bold; white-space: nowrap; text-overflow: ellipsis; overflow: hidden}
.group_wrapper .list_box li a .desc .tit .ic_like{display: none}
.group_wrapper .list_box li a .desc .price{margin-bottom: 15px;}
.group_wrapper .list_box li a .desc .date{font-size: 14px;}
.group_wrapper .list_box li .btn_box{display: flex; gap: 5px}
.group_wrapper .list_box li .btn_box .btn_basic{flex-direction: column; line-height: 1; min-width: 100px}
.group_wrapper .list_box li .btn_box .btn_basic .price{font-size: 13px; margin-bottom: 0;}
.group_wrapper .list_box li .btn_box .btn_basic.like{padding: 0 15px; min-width: auto}

/* community */
.comm_wrapper .list_type .list_items{margin-bottom: 30px; padding: 20px; border: 1px solid rgb(var(--color-100)); border-radius: 8px}
.comm_wrapper .list_type .list_items:last-child{}
.comm_wrapper .list_type .list_items .list_header{display: flex; align-items: center; gap: 15px;
  margin-bottom: 15px;}
.comm_wrapper .list_type .list_items .list_header .img_box{width: 60px; height: 60px; overflow: hidden; border-radius: 50%; display: block}
.comm_wrapper .list_type .list_items .list_header .title{margin-bottom: 0;}
.comm_wrapper .list_type .list_items .list_header .title h6{font-size: 18px}
.comm_wrapper .list_type .list_items .list_header .title .date{font-size: 13px; font-weight: normal; color: rgb(var(--color-600))}

.comm_wrapper .list_type .list_items .list_body{margin-bottom: 25px;}
.comm_wrapper .list_type .list_items .list_body .desc.on{display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; word-break: break-all; text-overflow: ellipsis; overflow: hidden;}
.comm_wrapper .list_type .list_items .list_body .desc+.view_more{display: none; text-decoration: underline; color: rgb(var(--color-400)); margin-top: 10px;}
.comm_wrapper .list_type .list_items .list_body .desc.on+.view_more{display: block}


.comm_wrapper .list_type .list_items .list_footer ul{display: flex; gap: 10px}
.comm_wrapper .icon_box{display: flex; align-items: center; justify-content: center; cursor: pointer}
.comm_wrapper .icon_box.on{}
.comm_wrapper .icon_box.comment{margin-left: auto}

.comm_wrapper .icon_box .icon{width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; position: relative}
.comm_wrapper .icon_box .icon::after{content: ""; display: block; width: 24px; height: 24px; border-radius: 50px}
.comm_wrapper .icon_box.on.good .icon::after{background-color: rgb(var(--color-blue))}
.comm_wrapper .icon_box.on.bad .icon::after{background-color: rgb(var(--color-warning))}

.comm_wrapper .icon_box .ic{content:""; display: block; width: 24px; height: 24px; background: url("../img/ic_good.png") no-repeat center/ 18px auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%)}
.comm_wrapper .icon_box.on .ic{filter: brightness(1) invert(1)}
.comm_wrapper .icon_box.good.on .ic,
.comm_wrapper .icon_box.bad.on .ic{background-size: 14px auto}
.comm_wrapper .icon_box.bad .ic{transform: translate(-50%, -50%) rotate(180deg)}
.comm_wrapper .icon_box.comment .ic{background-image: url("../img/ic_comment.png"); background-size: 18px auto;}

.comm_wrapper.view .btn_box{display: flex; gap: 10px; align-items: center; justify-content: center; margin-top: 30px}
.comm_wrapper.view .btn_box .btn_basic{max-width: 175px; width: 100%}

.comm_slide_wrapper{position: relative; max-width: 500px; margin:0; margin-top: 10px}
.comm_slide_wrapper .swiper-pagination{position: absolute; bottom: 20px; right: 20px; background: rgba(0,0,0,.5); height: 20px; border-radius: 10px; line-height: 20px; z-index: 1; color: #fff; padding: 0 10px}
.comm_slide_wrapper *[class*="swiper-button-"]{position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 75px; background: rgba(0,0,0,.25); z-index: 1; display: flex; align-items: center; justify-content: center; cursor: pointer}
.comm_slide_wrapper *[class*="swiper-button-"]::after{content: ""; display: block; width: 30px; height: 50px; background: url(../img/arrow_down_ic.svg) no-repeat center / contain; filter: brightness(0) invert(1)}
.comm_slide_wrapper .swiper-button-prev{left: 0}
.comm_slide_wrapper .swiper-button-next{right: 0; }
.comm_slide_wrapper .swiper-button-prev::after{transform: rotate(90deg)}
.comm_slide_wrapper .swiper-button-next::after{transform: rotate(-90deg)}
.comm_slide_wrapper  .swiper-button-disabled{display: none}




.comment_box .add_box{display: flex; gap: 5px; margin-top: 20px;}
.comment_box .write_box{width: 100%; flex: 1}
.comment_box .write_box.on{display: flex; flex-direction: column-reverse}
.comment_box .write_box span{background: rgb(var(--color-50)); display: block; padding: 7px 5px; font-size: 13px}
.comment_box textarea{display: block; width: 100%; height: 60px; border: 1px solid var(--tab-border-color); padding: 10px; resize: vertical; overscroll-behavior: contain;}
.comment_box textarea::-webkit-scrollbar{display: none}
.comment_box .btn_basic{width: 100px; flex-shrink: 0; height: auto}


.comment_list{}
.comment_list>li{padding: 10px 0 15px; border-bottom: 1px solid rgb(var(--color-150))}
.comment_list .uid{}

.comment_list .top_box{display: flex; }
.comment_list .top_box h6{font-size: 14px; display: flex; align-items: flex-end; cursor: pointer; }
.comment_list .top_box h6::before{content: "@"}
.comment_list .top_box h6:hover .ic{transform: translateY(-3px)}
.comment_list .top_box .ic{transition: all .3s}
.comment_list .top_box .ic:hover{transform: translateY(-3px)}
.comment_list .top_box .ic::after{content: ""; display: block; width: 16px; height: 16px; background: no-repeat center/ contain; margin-left: 10px;}
.comment_list .top_box h6 .ic::after{background-image: url("../img/ic_comment.png")}
.comment_list .top_box a{display: flex; align-items: flex-end; }
.comment_list .top_box .modify .ic::after{background-image: url("../img/ic_modify.png")}
.comment_list .top_box .delete .ic::after{background-image: url("../img/ic_delete.png")}
.comment_list .date{font-size: 12px; color: rgb(var(--color-500)); }

.comment_list .add_box{display: none}
.comment_list .add_box.on{display: flex}
.comment_list .desc{margin-top: 5px; word-break: break-all}
.comment_list .desc .qv{background: rgb(var(--color-50)); padding: 0 5px}


/* 멤버십 */
.membership_wrapper .content_box{}
.membership_wrapper section{margin-bottom: 60px; }
.membership_wrapper .tit{margin-bottom: 20px; font-size: 18px}

/* 멤버십 결제 상세 내역*/
.membership_order_list .order_tit{font-size: 18px; border-bottom: 1px solid var(--tab-border-color); padding-bottom: 25px; margin-bottom: 30px;}
.membership_order_list .order_tit .price{font-size: 24px; display: block; margin-top: 5px;}
.membership_order_list .order_detail_list li{display: flex; justify-content: space-between; margin-bottom: 20px;}
.membership_order_list .order_detail_list li:last-child{margin-bottom: 0;}
.membership_order_list .order_detail_list li .desc{text-align: right}
.membership_order_list .order_detail_list li .desc.payment_banknum{}
.membership_order_list .order_detail_list li.payment_type .desc{display: flex; align-items: center; gap: 8px; cursor: pointer}
.membership_order_list .order_detail_list li.payment_type .desc .ic{display: flex; width: 12px; height: 12px; position: relative; }
.membership_order_list .order_detail_list li.payment_type .desc .ic::after{content: ""; display: block; width: 100%; height: 100%; background: url("../img/arrow_25_black.svg") no-repeat center/ contain; transform: rotate(-90deg)}
.membership_order_list .order_detail_list li.toggle_box{background: rgb(var(--color-50)); padding: 10px; display: block; word-break: break-all}
.membership_order_list .order_detail_list li.toggle_box .btn_basic{margin-left: auto; margin-top: 8px}

/* 개인결제 */
.userpay_wrap .userpay_box{display: flex; gap: 20px}
.userpay_wrap section{flex:1; border: 1px solid var(--tab-border-color); padding: 48px}
.userpay_wrap .tit_box{margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid rgba(var(--color-900))}
.userpay_wrap .tit_box .tit{font-size: 28px; }

.userpay_wrap  .userpay_info_box .tit_box{display: flex; flex-wrap: wrap; align-items: end}
.userpay_wrap  .userpay_info_box .tit_box .price{margin-left: auto; font-size: 24px}
.userpay_wrap  .userpay_info_box .input_box:last-child{margin-bottom: 0}
.userpay_wrap .agree_box{}
.userpay_wrap .agree_box .agree_list_box{border: 1px solid var(--tab-border-color); padding: 20px}

.userpay_finish{border: 1px solid var(--tab-border-color); padding: 48px; max-width: 500px; margin: 0 auto; }
.userpay_finish h5{font-size: 24px; text-align: center; margin-bottom: 20px;}
.userpay_finish h5 span{color: rgb(var(--color-primary))}
.userpay_finish .info{padding: 20px 0; display: grid; gap: 10px}
.userpay_finish .info li{display: flex; justify-content: space-between}
.userpay_finish .info li .sub{color: rgb(var(--color-600))}

.userpay_finish .desc{padding: 10px 20px; background: rgb(var(--color-50))}
.userpay_finish .desc h6{font-size: 14px; display: flex; gap: 8px; align-items: center; margin-bottom: 10px}
.userpay_finish .desc h6::before{content: "!"; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; background: rgb(var(--color-100)); color: rgb(var(--color-500)); border-radius: 50%; }
.userpay_finish .btn_basic{margin-top: 30px;}

/* 마지막 줄 */