@charset "UTF-8";
/* Firefox */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
}
/* Chrome */
@media (forced-colors: active) {
  :root {
    color-scheme: light;
  }
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard  Black"), url(../fonts/pretendard/Pretendard-Black.woff2) format("woff2"), url(../fonts/pretendard/woff/Pretendard-Black.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard  ExtraBold"), url(../fonts/pretendard/Pretendard-ExtraBold.woff2) format("woff2"), url(../fonts/pretendard/woff/Pretendard-ExtraBold.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard  Bold"), url(../fonts/pretendard/Pretendard-Bold.woff2) format("woff2"), url(../fonts/pretendard/woff/Pretendard-Bold.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard  SemiBold"), url(../fonts/pretendard/Pretendard-SemiBold.woff2) format("woff2"), url(../fonts/pretendard/woff/Pretendard-SemiBold.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard  Medium"), url(../fonts/pretendard/Pretendard-Medium.woff2) format("woff2"), url(../fonts/pretendard/woff/Pretendard-Medium.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard  Regular"), url(../fonts/pretendard/Pretendard-Regular.woff2) format("woff2"), url(../fonts/pretendard/woff/Pretendard-Regular.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard  Light"), url(../fonts/pretendard/Pretendard-Light.woff2) format("woff2"), url(../fonts/pretendard/woff/Pretendard-Light.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard  ExtraLight"), url(../fonts/pretendard/Pretendard-ExtraLight.woff2) format("woff2"), url(../fonts/pretendard/woff/Pretendard-ExtraLight.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard  Thin"), url(../fonts/pretendard/Pretendard-Thin.woff2) format("woff2"), url(../fonts/pretendard/woff/Pretendard-Thin.woff) format("woff");
}
:root {
  --heart: #f43965;
  --ease: linear(
    0,
    0.045 1.4%,
    0.185 3.1%,
    1.16 10.6%,
    1.307,
    1.37 14.7%,
    1.372,
    1.367 16%,
    1.33 17.5%,
    0.958 25.3%,
    0.891,
    0.863 29.8% 31.2%,
    0.877 32.7%,
    1.015 40.4%,
    1.04,
    1.051 44.8%,
    1.046 47.9%,
    0.995 55.6%,
    0.981 59.8%,
    0.983 63.1%,
    1.007 74.7%,
    0.998 89.2%,
    1
  );
}

.button-reset {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #8095a0;
  text-decoration: underline;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

svg use {
  fill: transparent;
  stroke: #8095a0;
  stroke-width: 1.2;
  transition: all 0.33s ease;
}

svg use:last-child {
  fill: var(--heart);
  stroke: var(--heart);
  opacity: 0;
  transform: scale(0.33);
  transform-origin: center;
}

.active svg use {
  stroke: transparent;
}

.active svg use:last-child {
  opacity: 1;
  transform: none;
  transition: all 1.2s var(--ease);
}

svg {
  width: 30px;
  height: 30px;
  overflow: visible !important;
}

.Icon_Like {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-08 {
  gap: 8px;
}

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, AppleSDGothicNeo, Noto Sans Korean, Malgun Gothic, 맑은 고딕, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
}

.loader-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #21a12e;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* common */
a {
  cursor: pointer;
}

.btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
}
.btn-close img {
  width: 24px;
  height: 24px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #21a12e;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 15px 0;
  flex: 1;
  width: 100%;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.btn-primary:active, .btn-primary:hover, .btn-primary:focus {
  background-color: #21a12e;
  color: white;
  border: none;
}
.btn-primary.gray {
  background-color: #e4e8e9;
  color: #383f45;
}
.btn-primary.small {
  flex: 0.8;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  font-size: 0.8125rem;
  background-color: #8095a0;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-secondary.green {
  background-color: #21a12e;
}
.btn-secondary.medium-size {
  min-width: 80px;
}
.btn-secondary.black {
  background-color: #222;
  color: white;
}
.btn-secondary.gray {
  width: 100%;
  font-size: 12px;
  padding: 5px 0;
  line-height: normal;
  flex: 1;
  background-color: #e4e8e9;
  color: #383f45;
  font-weight: 500;
}
.btn-secondary.selected {
  width: 100%;
  font-size: 12px;
  padding: 8px 0;
  line-height: normal;
  flex: 1;
  background-color: #e4e8e9;
  color: #383f45;
  border: 1px solid #21a12e;
  font-weight: 500;
  margin-top: 8px;
}
.btn-secondary.selected .icon-check {
  margin-right: 4px;
}
.btn-secondary.cart {
  width: 100%;
  font-size: 12px;
  padding: 8px 0;
  line-height: normal;
  flex: 1;
  background-color: black;
  font-weight: 500;
  margin-top: 8px;
}
.btn-secondary.line {
  color: #6e777c;
  border: 1px solid #6e777c;
  background-color: white;
}
.btn-secondary.cart-gray {
  width: 100%;
  font-size: 12px;
  padding: 8px 0;
  line-height: normal;
  flex: 1;
  background-color: #e4e8e9;
  color: #8095a0;
  font-weight: 500;
  margin-top: 8px;
}

.btn-round {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  line-height: 20px;
  padding: 0 12px;
  color: #383f45;
  background-color: #e4e8e9;
  border-radius: 50vh;
  border: none;
  cursor: pointer;
}

.thick-line {
  width: 100%;
  height: 8px;
  background-color: #f0f2f3;
}

.btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #099b20;
  border: 1px solid #21a12e;
  border-radius: 4px;
  background-color: white;
  font-size: 0.875rem;
  padding: 14px 0;
  cursor: pointer;
}
.btn-line.full {
  width: 100%;
}

.farmers-select {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 40px 6px 12px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #d5e2e4;
  /* font-weight: bold; */
  font-size: 0.8125rem;
  color: #383f45;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../../contents/images/icon-arrow-bottom.svg);
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: 95% 50%;
  cursor: pointer;
}
.selectbox {
  position: relative;
  width: auto;
  border: 1px solid #c2cfd4;
  border-radius: 50vh;
  padding: 5px;
}
.selectbox label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8125rem;
  font-weight: 400;
  color: #383f45;
  padding-left: 5px;
  margin: 0;
}
.selectbox select {
  height: 34px;
  line-height: 34px;
  font-family: inherit;
  font-size: 0.8125rem;
  padding: 0 17px;
  border: 0;
  opacity: 0;
  appearance: none;
  outline: none;
}
.selectbox::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: url(../../contents/images/dropdown-carat.svg) no-repeat;
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

/* product layout */
#listHolder .product-container {
  padding-top: 0;
}

.product-container {
  padding: 0 16px;
}
.product-container.lastItem {
  padding-top: 0;
}

.product-item {
  padding: 20px 15px;
}
.product-item.no-review {
  padding: 0;
  margin-top: 16px;
}
.product-item .product-item-subheading {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-bottom: 15px;
  gap: 0 8px;
}
.product-item .product-item-flex {
  display: flex;
  gap: 0 16px;
}
.product-item .product-item-flex .product-item-image {
  overflow: hidden;
  border-radius: 4px;
  flex: 0 60px;
  width: 60px;
  height: 60px;
}
.product-item .product-item-flex .media-object {
  width: 100%;
}

.product-item-info {
  flex: 1;
}
.product-item-info .status {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-item-info .status .mo_order_num {
  font-size: 12px;
  font-weight: 400;
  color: #6e777c;
}
.product-item-info .subject {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #222;
}
.product-item-info .option {
  font-size: 0.6875rem;
  line-height: 1rem;
  color: #8095a0;
  margin-top: 4px;
}
.product-item-info .price {
  font-size: 12px;
  line-height: 1.125rem;
  color: #222;
  margin-top: 4px;
}
.product-item-info .price p {
  font-size: 12px;
  line-height: 1.125rem;
  color: #222;
}
.product-item-info .price .add-cart-btn {
  background-color: white;
  padding: 1px 7px 0;
  margin-top: 3px;
  font-size: 11px;
  color: #383f45;
  border: 1px solid #6e777c;
  border-radius: 4px;
  margin-left: auto;
}
.product-item-info .button-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 4px;
  margin-top: 16px;
}
.product-item-info .button-group .panel-footer {
  padding: 0;
}

/* product layout */
/* counter */
.item_eq {
  display: flex;
  align-items: center;
  border: 1px solid #d5e2e4;
  border-radius: 4px;
  /* margin-left: 8px; */
}

.item_eq a.counter-btn {
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border-radius: 8px;
  background-color: white;
  color: black;
  font-weight: 800;
  cursor: pointer;
  font-size: 18px;
  margin-top: 0 !important;
}

.item_eq .form-control {
  margin: 0;
  border: none;
  width: 30px;
  height: 30px;
  padding: 0;
  text-align: center;
  font-weight: 600;
  background-color: white;
}

.counter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5e2e4;
  border-radius: 4px;
}
.counter-container button {
  width: 24px;
  height: 30px;
  border: none;
  background: none;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 0;
  color: #222;
  padding-bottom: 2px;
}
.counter-container input {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  width: 30px;
  height: 30px;
  border: none;
  background: white;
  color: #222;
}

.moall-wrapper,
.moall-search-wrapper,
.gnb.text-center,
.navbar,
.modal,
.footer-menu,
.purchase-wrapper,
.common-wrapper,
.scroll-prod-wrapper,
.popup-wrapper-detail,
.container,
.prod-tab-wrapper,
.contents-wrapper,
.board-search-view {
  /*width: 720px;*/
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  word-break: keep-all;
  overflow-x: hidden;
}

/* @media (min-width: 768px) {
  .moall-wrapper,
  .moall-search-wrapper,
  .gnb.text-center,
  .navbar,
  .modal,
  .footer-menu,
  .purchase-wrapper,
  .common-wrapper,
  .scroll-prod-wrapper,
  .popup-wrapper-detail,
  .container,
  .prod-tab-wrapper,
  .contents-wrapper,
  .board-search-view {
    width: 720px;
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
    background-color: red;
  }
} */
.access {
  height: 100svh;
}

.main-topbanner-wrapper {
  max-width: 480px;
  width: 100%;
}

.prod-title.farmers-prod-title {
  font-size: 1em;
  /*color: #333333;*/
  color: #383f45;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 400;
}

.category-wrapper .list-group-item {
  width: unset;
}

.goods-items-container .section-title-wrapper .moretext {
  top: unset;
}

.footer-info-wrapper .panel-body div li {
  text-align: left;
}

.footer-wrapper .menu-wrapper {
  display: flex;
  align-items: center;
  gap: 0 16px;
  line-height: 20px;
  height: unset;
  padding: 16px 15px 0;
}

.footer-wrapper .menu-wrapper .menu {
  font-size: 0.875rem;
  font-weight: 600;
  color: #383f45;
}

.footer-wrapper .company {
  padding-bottom: 30px;
  background-color: #eff3f6;
}

.footer-wrapper .company .info ul.list-group {
  color: #5e676c;
}

.footer-wrapper .notify-wrapper {
  display: flex;
  align-items: center;
  background-color: #eff3f6;
  padding: 12px 15px;
  height: 45px;
}
.footer-wrapper .notify-wrapper .speaker-icon {
  margin-right: 16px;
}
.footer-wrapper .notify-wrapper .notifytitle {
  font-size: 0.875rem;
  width: 352px;
  padding-right: 8px;
}
@media (max-width: 640px) {
  .footer-wrapper .notify-wrapper .notifytitle {
    width: 295px;
  }
}
.footer-wrapper .notify-wrapper .fa-angle-right {
  font-size: 16px;
}

.footer-info-wrapper .panel .panel-body h5 {
  font-size: 0.8125rem;
  padding-bottom: 4px;
}

.footer-info-wrapper .panel-body div li p {
  color: #222;
}

.flex-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flex-row.bottom-btns {
  margin-top: 20px;
}

.round-btn {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 30px;
  color: white;
  background-color: #21a12e;
  padding: 0 16px;
  border-radius: 50vh;
}

.my-20 {
  margin: 20px 0;
}

.footer-temp {
  background-color: #eff3f6;
  padding: 15px;
}
.footer-temp h5 {
  font-size: 0.8125rem;
}
.footer-temp h5 b {
  font-weight: 600;
}
.footer-temp p {
  font-size: 0.8125rem;
}

.btn-coupon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #21a12e;
  border-radius: 4px;
  min-height: 40px;
  font-size: 0.875rem;
  color: #099b20;
  line-height: 0;
}

.benefit-cont,
.delivery-cont {
  margin-top: 20px;
}

.benefit-cont h6,
.delivery-cont h6 {
  font-size: 0.875rem !important;
  line-height: 20px;
  font-weight: 600;
  color: #383f45;
}

.benefit-cont p,
.delivery-cont p {
  font-size: 0.75rem !important;
  color: #6e777c;
  line-height: 1.3rem !important;
}

.tabFixed {
  width: 100% !important;
  max-width: 480px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* .prod-tab-wrapper .nav-tabs.nav-justified li a .count {
  position: static;
  height: unset;
  color: black;
  padding: 0;
  font-size: unset;
}

.prod-tab-wrapper .nav-tabs.nav-justified li a.reviewTab > .count {
  background-color: transparent;
}

.prod-tab-wrapper .nav-tabs.nav-justified li a.qnaTab > .count {
  background-color: transparent;
} */
.score {
  color: #21a12e;
}

.review-detail-list-wrapper .panel .panel-footer .btn-wrapper a {
  color: #383f45;
  background-color: #e4e8e9;
}

.review-detail-list-wrapper .panel .panel-footer .media-left {
  color: #21a12e;
  font-weight: bold;
}

.wrap_info .info-wrapper .panel-heading h3 {
  margin: 32px 0 8px;
}

.prod-info-wrapper.wrap_info .detail-heading .title {
  font-size: 1.125rem;
  word-break: keep-all;
  line-height: 1.7em;
}

.discount {
  font-size: 1.5625rem !important;
  margin-left: 0 !important;
  margin-right: 15px;
}

.review_slide .prod.type1 > .panel-body .prod-title {
  font-size: 0.875rem;
  line-height: 1.3em;
  font-weight: 400;
}

.container.good-review .Goods_wrapper.review_slide .writeinfo p,
.container.good-review .reviewreportbtn {
  font-size: 0.813rem;
}

.wrap_info .info-wrapper .price-wrapper .dc-price {
  font-size: 1rem;
}

#sidemenu .quickmenu-container {
  padding: 0;
  border-top: 1px solid #dbede2;
  border-bottom: 1px solid #dbede2;
}
#sidemenu .quickmenu-container .quickmenu-title {
  font-size: 0.8125rem;
  color: #383f45;
}

/*#sidemenu .sidemenu-close-wrapper {
  position: sticky;
  top: 0;
}*/
.login-box {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.signup-wrapper {
  max-width: 480px;
  width: 100%;
  height: 100svh;
  margin: 0 auto;
  background-color: white;
}

.signup-wrapper .container {
  height: 100svh;
}

.signup-nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  background-color: white;
  z-index: 1;
}

/*.Icon_Close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}*/
.phone-wrapper {
  display: flex;
  gap: 5px;
}

.numcheckbtn {
  padding: 0 10px;
  font-size: 0.75rem;
}

.Login_page {
  height: 100svh;
}

.inner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100svh - 180px);
}

.signup-btn-container {
  margin-top: 10px;
}

.signup-submenu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  margin-top: 50px;
  color: #e4e8e9;
}
.signup-submenu-container .signup-submenu-link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #383f45;
  line-height: 0;
}

.btn_type_sub {
  border-radius: 4px;
}

.my-wrapper.index > .reward-wrapper .my-info-detail {
  padding-top: 4px;
}

.point_num a,
.coupon_num a {
  color: #099b20;
}

.my-wrapper.index .myinfo:last-child {
  border: 1px solid #d5e2e4;
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 10px 0;
}

.my-wrapper.index .myinfo:last-child > div {
  align-items: center;
}

.my-wrapper.index .myinfo:last-child > div:first-child {
  border-right: 1px solid #d5e2e4;
}

.my-wrapper.index .myinfo i {
  font-size: inherit;
}

.my-info-wrapper.my-event {
  margin-top: 0;
}

.contents-wrapper.listcontents .prod_list_wrap {
  margin-top: 0;
}

/* .contents-wrapper.listcontents {
  margin-top: 0 !important;
}
.contents-wrapper#newboard,
.contents-wrapper#newMyboard {
  margin-top: 0 !important;
} */
/* 마이 페이지 탭 UI */
.tab-ui {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d5e2e4;
  padding: 0 15px;
}
.tab-ui.no-line li {
  padding: 14px 0 12px;
}
.tab-ui.no-line li.active {
  border-color: transparent;
  font-weight: 600;
}
.tab-ui li {
  flex: 1;
  display: flex;
  justify-content: center;
  font-size: 0.938rem;
  font-weight: 500;
  color: #383f45;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.tab-ui li.active {
  border-bottom: 2px solid #21a12e;
  color: #099b20;
}
.tab-ui li a {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

/* .my-wrapper .prod-order-wrapper#orderlist .nav-tabs {
  border-bottom: 1px solid #D5E2E4;
}
.my-wrapper .prod-order-wrapper#orderlist .nav-tabs li {
  border-top: none;
  border-bottom: 2px solid transparent;
}
.my-wrapper .prod-order-wrapper#orderlist .nav-tabs li.active {
  color: $greenText;
  border-bottom: 2px solid $greenText;
}

.my-wrapper .prod-order-wrapper#orderlist .nav-tabs li > a {
  border: none;
  background-color: white;
  color: inherit;
  font-size: 0.938rem;
  font-weight: 500;
}
.my-wrapper .prod-order-wrapper#orderlist .nav-tabs li.active > a {
  border: none;
  background-color: white;
  color: inherit;
} */
.prod-info-wrapper.wrap_info {
  padding-top: 0;
}

.mobile_my_index {
  padding-top: 60px !important;
}

.mypage-myorder {
  padding-top: 60px !important;
}

.wrap_my_delivery {
  padding-top: 60px !important;
}

@media (min-width: 768px) {
  .btn_type_cart {
    font-size: 0.9375rem !important;
    font-weight: normal !important;
    border-radius: 4px;
  }
  .btn_type_purchase {
    font-size: 0.9375rem !important;
    font-weight: normal !important;
    border-radius: 4px;
  }
  .pc-size {
    max-width: 480px;
    width: 100%;
  }
  .header-wrapper {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  .guestinfo_form .panel-heading,
  .common-wrapper.access.join.idpw_search .panel-heading,
  .common-wrapper.idsearch_list .panel-heading,
  .common-wrapper.access.join.new_join_wrap .panel-heading,
  .common-wrapper.pwsearch_reset .panel-heading {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  .user-info-wrapper {
    margin-top: 0;
  }
  .my-wrapper.index > .reward-wrapper .my-info-detail {
    padding-top: 8px;
  }
  .panel-body.order {
    margin-top: 0;
  }
  .review-wrapper {
    margin-top: 60px;
  }
  #qnatype {
    margin-top: 0;
  }
}
.Lastitem {
  margin-top: 60px;
}

/* 타입특가 새 스타일 */
.add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
}
.add-to-cart img {
  margin-right: 2px;
  width: 30px;
  height: 30px;
}

.flag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 2px;
}
.flag-container .benefit.benefitbox.default-benefit {
  margin-top: 5px;
}

.flag {
  cursor: default;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 400;
  color: white;
  background-color: #889eaa;
  padding: 4px 10px 3px;
  border-radius: 50vh;
}
.flag.red {
  background-color: #ef1a1a;
}
.flag.green {
  background-color: #21a12e;
  font-size: 0.8125rem;
  font-weight: 500;
}
@media (max-width: 640px) {
  .flag {
    letter-spacing: -0.4px;
  }
}

.product-type1 {
  position: relative;
}
.product-type1 figure {
  display: flex;
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.6;
  overflow: hidden;
  border-radius: 8px;
}
.product-type1 figure .flag {
  position: absolute;
  top: 8px;
  left: 8px;
}
.product-type1 .product-image {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product-type1 .add-to-cart {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;
}
.product-type1 .product-info {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.product-type1 .product-info .product-name {
  font-size: 1rem;
  line-height: 1.4em;
}
.product-type1 .product-info .product-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3px;
}
.product-type1 .product-info .product-price .dc {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ef1a1a;
}
.product-type1 .product-info .product-price .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
}
.product-type1 .product-info .product-price .price-from {
  font-size: 0.875rem;
  font-weight: 400;
  color: #8095a0;
}

.product-type2 {
  display: flex;
  align-items: flex-start;
  gap: 0 24px;
  position: relative;
}
.product-type2 figure {
  flex: 0 120px;
  display: flex;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
}
.product-type2 .product-image {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product-type2 .add-to-cart {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;
}
.product-type2 .details {
  flex: 1;
}
.product-type2 .product-info {
  margin-top: 8px;
}
.product-type2 .product-name {
  font-size: 0.875rem;
}
.product-type2 .product-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5px;
  gap: 0 8px;
}
.product-type2 .product-price .dc {
  font-size: 1rem;
  font-weight: 700;
  color: #ef1a1a;
}
.product-type2 .product-price .break {
  width: 100%;
}
.product-type2 .product-price .price {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
}
.product-type2 .product-price .price-from {
  font-size: 0.875rem;
  font-weight: 400;
  color: #8095a0;
}
.product-type2:not(:last-child) {
  margin-bottom: 16px;
}

.list-spacer {
  height: 32px;
}

.spacer {
  height: 20px;
}

/* 품절시 이미지 */
.goodssellimg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  color: white;
}
.goodssellimg .type1-title {
  font-size: 1.125rem;
  font-weight: bold;
}
.goodssellimg .type1-subtitle {
  font-size: 0.875rem;
}
.goodssellimg .type3-title {
  font-size: 1rem;
  font-weight: bold;
}
.goodssellimg .type3-subtitle {
  font-size: 0.75rem;
}

.section-title-wrapper {
  margin-bottom: 16px;
}
.section-title-wrapper.sidemenu {
  margin-bottom: 0;
}
.section-title-wrapper.title_category {
  margin-bottom: 0;
}

.product-detail-link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.col2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 16px;
}
.col2-grid.recommend {
  gap: 24px 8px;
}

.col3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 16px;
}

.product-type3 {
  position: relative;
}
.product-type3 figure {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.product-type3 figure.tall {
  aspect-ratio: 1/1.3;
}
.product-type3 figure .flag {
  position: absolute;
  top: 8px;
  left: 8px;
}
.product-type3 figure .timesale-gif {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
}
.product-type3 figure .add-to-cart {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;
}
.product-type3 figure .product-image {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product-type3 .product-info {
  margin-top: 8px;
}
.product-type3 .product-info .left-over {
  display: flex;
  align-items: center;
  gap: 0 2px;
  font-size: 10px;
}
.product-type3 .product-info .left-over span {
  color: #21a12e;
  font-weight: 700;
}
.product-type3 .product-info .extra-info {
  font-size: 10px;
  color: #889eaa;
  margin: 2px 0 3px 0;
}
.product-type3 .product-info .accumulated {
  font-size: 10px;
  color: #7d7c7c;
  margin-top: 4px;
}
.product-type3 .product-info .accumulated span {
  color: #ef1a1a;
}
.product-type3 .product-info .reviews {
  display: flex;
  align-items: center;
  gap: 0 2px;
  font-size: 11px;
  color: #7d7c7c;
}
.product-type3 .product-info .reviews span {
  font-weight: 700;
  color: #222;
  margin-left: 2px;
}
.product-type3 .product-info .product-name {
  font-size: 0.875rem;
  height: 40px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.product-type3 .product-info .product-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5px;
  gap: 0 2px;
}
.product-type3 .product-info .product-price .dc {
  font-size: 15px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #ef1a1a;
}
.product-type3 .product-info .product-price .break {
  width: 100%;
}
.product-type3 .product-info .product-price .break-mobile {
  display: none;
  width: 100%;
}
.product-type3 .product-info .product-price .price {
  font-size: 15px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #222;
}
.product-type3 .product-info .product-price .price-from {
  font-size: 0.75rem;
  font-weight: 400;
  color: #8095a0;
}

.common-moreview-btn {
  padding-top: 20px;
  padding-bottom: 0;
}

/* 카테고리 버튼 swiper */
.category-section-title {
  font-size: 1.230769em;
  font-weight: bold;
  color: #222222;
  padding-left: 15px;
  margin-bottom: 16px;
}

.category-nav {
  width: 100%;
  margin-bottom: 20px;
}

/* why? */
.category-nav .width-variant {
  flex-shrink: 1;
}

.category-nav .swiper-slide {
  width: fit-content;
}

.category-nav .category-btn {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 32px;
  padding: 0 12px;
  border-radius: 50vh;
  color: #099b20;
  border: 1px solid #21a12e;
  white-space: nowrap;
  background-color: white;
}

.category-nav .category-btn.active {
  background-color: #21a12e;
  color: white;
}

.category-view-wrapper-text .affix-top {
  margin: 0;
}

/* .wrapper-category {
  padding: 0 15px;
} */
.affix {
  max-width: 417px !important;
}

/* 마이 포인트 */
.my-info-wrapper .discount-info {
  border-top: 1px solid #f0f2f3;
}

.my-info-wrapper .mytotal_num {
  background-color: #f7f7f7;
  border-radius: 4px;
  padding: 12px;
}

.my-info-wrapper .mytotal_num ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
}

.my-info-wrapper .mytotal_num ul li {
  display: flex;
  gap: 0 8px;
  color: #383f45;
  font-size: 1.125rem;
  font-weight: 400;
  gap: 0 8px;
}

.my-info-wrapper .mytotal_num .amount {
  color: #099b20;
  font-weight: 600;
}

.my-info-wrapper .discount-info .point_group {
  gap: 0 16px;
}

.my-info-wrapper .discount-info .point_group .date {
  color: #8095a0;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 2px;
}

.my-info-wrapper .discount-info .point_group .point-desc {
  line-height: 1.3em;
}

.my-info-wrapper .discount-info .point_group .non-discount {
  color: #099b20 !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  margin-right: 0 !important;
}

.my-info-wrapper .discount-info .point_group .discount {
  color: #2073d4 !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  margin-right: 0 !important;
}

.my-info-wrapper .discount-info li {
  border-bottom: 1px solid #f0f2f3;
  padding: 10px 15px;
}

.my-info-wrapper .discount-info li h6 {
  font-size: 0.875rem;
  color: #222;
  font-weight: 500;
}

/* 마이 쿠폰 */
.coupon-reg-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
  margin-top: 20px;
}

.coupon-reg-container .coupon-reg-title {
  color: #383f45;
  font-size: 0.875rem;
  font-weight: 400;
}

.coupon-reg-container .coupon-reg-form-container {
  display: flex;
  align-items: center;
  gap: 0 8px;
  width: 100%;
}

.coupon-reg-container .coupon-reg-form-container .form-control {
  background-color: white;
  border: 1px solid #c2cfd4;
  border-radius: 4px;
  text-align: center;
  font-size: 0.875rem;
}

.coupon-reg-container .coupon-reg-form-container .btn {
  padding: 0 16px;
  background-color: #383f45;
  color: white;
  font-size: 0.875rem;
  font-weight: normal;
  border-radius: 4px;
}

.coupon-list .date {
  color: #8095a0 !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  margin-bottom: 2px;
}

.coupon-list .coupon-name {
  line-height: 1.3em;
  font-size: 0.875rem !important;
}

.coupon-list .coupon-name b {
  font-size: 0.875rem !important;
}

.coupon-list .device-usage {
  color: #8095a0 !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
}

/* 주문목록/배송조회 */
.my-wrapper #orderlist .filter-wrapper {
  border-bottom: 1px solid #d5e2e4;
  margin: 0;
  padding: 20px 15px;
}

.my-wrapper .prod-order > .panel-heading {
  border-bottom: 1px solid #d5e2e4;
  padding: 8px 15px;
}

.my-wrapper #orderlist .tab-content {
  margin: 0;
}

.orderhead_panel .date {
  font-size: 0.875rem;
  font-weight: 500;
  color: #222;
}

.my-wrapper .prod-order-wrapper#orderlist .panel-body {
  padding: 20px 15px;
}

.orderfooterhr {
  border-bottom: none;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 4px;
  padding: 0 15px 20px 15px;
  border-top: none;
}

.info-wrapper.order-info {
  padding: 20px 15px;
}
.info-wrapper.recipient-info {
  padding: 20px 15px;
}
.info-wrapper.recipient-info .recipient-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-wrapper.payment-info {
  padding: 20px 15px;
}

.my-wrapper.wrap_maypage .orderdetail-totatable th,
.my-wrapper.wrap_maypage .orderdetail-priceline th {
  font-size: 0.8125rem;
  color: #6e777c;
}

.info-wrapper .sub-title {
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.order-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  margin-top: 13px;
}
.order-info-list.price .list-value {
  text-align: right;
}
.order-info-list.price .total {
  font-size: 0.9375rem;
  color: #222;
}
.order-info-list.price .list-value.total {
  font-weight: 600;
}
.order-info-list li {
  display: flex;
  align-items: flex-start;
}
.order-info-list li .list-label {
  flex: 0 90px;
  color: #6e777c;
  font-size: 0.813rem;
}
.order-info-list li .list-value {
  flex: 1;
  color: #6e777c;
  font-size: 0.813rem;
}

/* .wrap_maypage {
  border-top: 1px solid #D5E2E4;
} */
/* 마이페이지 */
.my-wrapper.new-padding {
  padding-left: 0;
  padding-right: 0;
}

.my-wrapper .user-info-wrapper {
  padding: 0 15px;
}

.my-wrapper .user-info-link {
  display: flex;
  align-items: center;
}
.my-wrapper .user-info-link .class-icon {
  margin-right: 4px;
}

.my-wrapper .user-info-link a {
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.my-wrapper .user-info-link .my-name {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
}

.my-wrapper .event-info {
  background-color: #f7f7f7;
  border-radius: 4px;
  padding: 12px;
  margin: 12px 0 0;
}

.my-wrapper .event-info p {
  font-size: 0.8125rem;
  color: #383f45;
}

.my-wrapper .event-info p span {
  color: #099b20;
}

.user-info-wrapper .user-info-summary-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d5e2e4;
  border-radius: 4px;
  padding: 16px 0;
  margin-top: 20px;
}

.user-info-wrapper .user-info-summary-box .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.user-info-wrapper .user-info-summary-box .col:not(:last-child) {
  border-right: 1px solid #d5e2e4;
}

.user-info-wrapper .user-info-summary-box .col .col-label {
  font-size: 0.813rem;
  font-weight: 400;
  color: #222;
}

.user-info-wrapper .user-info-summary-box .col .col-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #099b20;
}

.user-info-wrapper .user-info-summary-box .col .col-value a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #099b20;
}

.my-wrapper .my-page-menu-wrapper {
  margin-top: 20px;
}

.my-wrapper .my-page-menu-wrapper .my-page-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #f0f2f3;
}

.my-wrapper .my-page-menu-wrapper .my-page-menu-row i {
  color: #c2cfd4;
}

.my-wrapper .my-page-menu-wrapper .my-page-menu-row .text {
  font-size: 0.938rem;
  font-weight: 400;
}

.my-wrapper .my-page-menu-wrapper .my-page-menu-row .mycount .desc {
  color: #8095a0;
}

.my-wrapper .my-page-menu-wrapper .my-page-menu-row .mycount .count,
.my-wrapper .my-page-menu-wrapper .my-page-menu-row .mycount .unit {
  font-weight: 500;
}

.my-wrapper .my-page-menu-wrapper .my-page-menu-row .mycount .unit {
  padding-right: 4px;
}

/* 배송지 리스트 아이템 */
.delivery .panel-footer {
  padding: 20px 15px;
}

.delivery-list {
  border-bottom: 1px solid #f0f2f3;
  padding: 16px 0;
}
.delivery-list li {
  padding: 0 15px;
}

.delivery_title,
.delivery_cont p {
  font-size: 0.875rem;
}

.delivery-list .delivery_title .user-name,
.delivery-list .delivery_title .user-htel {
  font-weight: 500;
}

.delivery-list .delivery_basic {
  font-size: 0.875rem;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  color: #6e777c;
  margin-left: 10px;
  position: relative;
}
.delivery-list .delivery_basic::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  width: 1px;
  height: 16px;
  background-color: #6e777c;
  opacity: 0.5;
}

.delivery-list .delivery_title .divline {
  padding: 0 4px;
  color: #c2cfd4;
}

.delivery-list .delivery_cont {
  margin-top: 8px;
}

.delivery-list .delivery_footer {
  display: flex;
  justify-content: flex-end;
  gap: 0 4px;
  margin-top: 20px;
}

.navbar .sub-menu-wrapper .title {
  text-align: center;
}

/* 문의하기 */
.qna-list {
  font-size: 0.813rem;
  border-bottom: 1px solid #f0f2f3;
  padding: 20px 0;
}

.qna-list .qna-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.qna-list .qna-list-header .left,
.qna-list .qna-list-header .right {
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.qna-list .qna-list-header .qna-delete-icon {
  width: 16px;
  height: auto;
}

.qna-list .qna-list-header .qna-date {
  color: #8095a0;
}

.qna-list .qna-list-header .go-link-item {
  color: #222;
}

.qna-list .qna-list-header .right .comment {
  font-size: 11px;
  line-height: 20px;
  padding: 0 8px;
  background-color: #6e777c;
  color: white;
  border-radius: 50vh;
}

.qna-list .qna-list-header .right .comment.uncall {
  background-color: red;
}

.qna-list .qna-list-header .right .comment.call {
  background-color: #383f45;
}

.qna-list .qna-body {
  padding: 15px 15px 0 15px;
}

.qna-list .qna-answer {
  background-color: #f7f7f7;
  padding: 15px;
  margin-top: 15px;
  margin-bottom: -20px;
}

.qna-list .inquiry-photo {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  padding: 0 15px;
}

.qna-list .inquiry-photo .inquiry-photo-item {
  width: 72px;
  aspect-ratio: 1/1;
}

.qna-list .inquiry-photo .inquiry-photo-item .inquiry-photo__img {
  width: 100%;
}

.review-regist-text {
  font-size: 0.688rem;
}

.my-wrapper.return {
  padding-top: 60px;
}

/* 후기작성 */
.review-list-container {
  font-size: 0.813rem;
}
.review-list-container .review-list {
  padding: 15px;
  /* border: 1px solid gray; */
  border-bottom: 1px solid #f0f2f3;
}
.review-list-container .review-list-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-list-container .review-list-header-inner .left,
.review-list-container .review-list-header-inner .right {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.review-list-container .review-list-header-inner .left .date {
  color: #8095a0;
}
.review-list-container .review-list-header-inner .right .review-icon {
  width: 20px;
  height: 20px;
}
.review-list-container .review-body {
  margin-top: 16px;
}
.review-list-container .review-body .review-body-para {
  font-size: 0.813rem;
}
.review-list-container .review-body .text-more {
  background-color: transparent;
  border: none;
}
.review-list-container .review-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  margin-top: 16px;
}
.review-list-container .review-image-grid .review-image-item {
  flex: 0 72px;
}
.review-list-container .review-image-grid .review-image-item .review-image {
  width: 100%;
}
.review-list-container .help-yn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #383f45;
  gap: 0 8px;
  margin-top: 16px;
}
.review-list-container .help-yn .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.review-list-container .review-num-help {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 8px;
  color: #383f45;
}
.review-list-container .reply-wrapper {
  background-color: #f7f7f7;
  border-top: 1px solid #f0f2f3;
  border-bottom: 1px solid #f0f2f3;
}
.review-list-container .reply-wrapper .media {
  padding: 15px;
}

.board-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.board-list-header .board-item-stats {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.board-list-header .board-item-stats span {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  color: #8095a0;
  line-height: 0;
}

.board-list-header .board-item-stats .board-stats-icon {
  width: 16px;
  margin-right: 3px;
}

.board-list-header .date {
  color: #8095a0;
  font-size: 0.813rem;
}

.board-list-header .left {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.board-list-header .left .board-item-link {
  font-size: 0.8125rem;
  color: #222;
}

.board-list-header .right {
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.board-list-header .right .board-icon {
  width: 20px;
  height: 20px;
}

.board-list-item .board-list-content {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
}

.board-list-item .board-list-goto-reply {
  margin-top: 8px;
}

.mypage-wrapper .panel-body .panel-list li {
  border-bottom: 1px solid #f0f2f3;
  border-top: none;
}

.board-title {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 400;
}

.board-list-item .board-list-content .board-list-content-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 10px;
}

.board-list-item .board-list-content .board-list-content-inner .board-title {
  flex: 1;
  margin-top: 0;
}

.board-list-content .bookmark-btn {
  background: none;
  padding: 0;
  border: none;
}

.scrap-filter {
  padding: 0 15px;
}

.form-group .postnum_search {
  gap: 0 8px;
}
.form-group .postnum_search .btn-secondary {
  line-height: 40px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.form-group .form-group-label-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #383f45;
  text-align: left;
  margin-bottom: 0;
}
.form-group .inner-flex {
  display: flex;
  gap: 0 12px;
}
.form-group .inner-flex .image-desc {
  font-size: 0.75rem;
  color: #6e777c;
  flex: 1;
}
.form-group .review-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
  padding: 16px 0 10px;
}
.form-group .review-image-grid div.image {
  position: relative;
  flex: 0 72px;
  height: 72px;
}
.form-group .review-image-grid div.image img {
  object-fit: cover;
  width: 72px;
  height: 72px;
  border-radius: 4px;
}
.form-group .user-phone {
  display: flex;
  align-items: unset;
  gap: 0 8px;
}
.form-group .user-phone input {
  flex: 1;
}
.form-group .col2-input,
.form-group .user-address {
  display: flex;
  gap: 0 8px;
}
.form-group .col2-input input,
.form-group .user-address input {
  flex: 1;
}

.form-control {
  border-radius: 4px;
  background-color: white;
  border: 1px solid #d5e2e4;
  font-size: 0.875rem;
}
.form-control::placeholder {
  color: #bdc3c7;
}
.form-control.bg {
  background-color: #F5F5F5;
  border-color: #F5F5F5;
}
.form-control.bg::placeholder {
  color: #BDC3C7;
}

.sub-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  background: #f7f7f7;
  padding: 15px;
  border-radius: 4px;
  margin-top: 8px;
}
.sub-checkbox.marketing-choice {
  margin-top: 16px;
}

.checkbox {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox] + label {
  padding: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
  display: flex;
  align-items: center;
}
.checkbox input[type=checkbox] + label::before {
  content: "";
  background-image: url(../../contents/images/icon_radio_off.svg);
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  padding: 0 28px 0 0;
}
.checkbox input[type=checkbox]:checked + label::before {
  background-image: url(../../contents/images/icon_radio_on.svg);
}
.checkbox input[type=checkbox]:disabled + label {
  cursor: default;
  pointer-events: none;
}
.checkbox input[type=checkbox]:disabled + label::before {
  background-image: url(../../contents/images/icon_radio_disabled.svg);
}

.radio {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
}
.radio input[type=radio] {
  display: none;
}
.radio input[type=radio] + label {
  flex: 1;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.radio input[type=radio] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-53%);
  left: 0;
  background-image: url(../../contents/images/icon_radio_off.svg);
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  margin: 0 4px 0 0;
}
.radio input[type=radio]:checked + label::before {
  background-image: url(../../contents/images/icon_radio_on.svg);
}

.benefit_group .benefit_group_body {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.benefit_group .class_option {
  border: 1px solid #d5e2e4;
  border-radius: 8px;
  padding: 16px;
}
.benefit_group .class_option.current-class {
  border-color: #21a12e;
  border-width: 2px;
}
.benefit_group .class_option .title {
  font-size: 1rem;
  font-weight: 500;
  color: #099b20;
}
.benefit_group .class_option .class_option--benefit {
  padding: 0;
  margin: 0;
  background-color: white;
}
.benefit_group .class_option .class_option--benefit .benefit_point {
  margin-top: 16px;
}
.benefit_group .class_option .class_option--benefit .benefit_point .benefit_point--subtitle {
  margin-top: 16px;
}
.benefit_group .class_option .class_option--benefit .benefit_point p {
  font-size: 0.75rem;
  font-weight: 500;
  color: #222;
}
.benefit_group .class_option .class_option--benefit .benefit_point p .accent {
  color: #ff740f;
}
.benefit_group .user-level {
  font-size: 0.875rem;
  font-weight: 500;
}
.benefit_group .subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6e777c;
}
.benefit_group .benefit-stats {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6e777c;
}
.benefit_group .benefit-stats .amount {
  color: #ff740f;
}
.benefit_group .progress {
  height: 10px;
  margin: 8px 0 10px;
  border-radius: 50vh;
}

.myclass_footer {
  padding: 20px 0 0 0;
}
.myclass_footer p {
  font-size: 0.6875rem;
  line-height: 1.4em;
}

.table .member .form-group {
  margin-top: 4px;
}

.customer-wrapper .panel.notice .panel-footer {
  padding: 0 15px;
  margin-top: 0;
}

.notice-detail-header {
  padding: 15px;
  border-top: 1px solid #f0f2f3;
  border-bottom: 1px solid #f0f2f3;
}
.notice-detail-header .date {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #8095a0;
}
.notice-detail-header .title {
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
  margin-top: 4px;
}

.table.notice tr {
  display: block;
  padding: 15px;
}
.table.notice tr .notice-date {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #8095a0;
}
.table.notice tr .notice-title {
  font-size: 0.875rem;
  font-weight: 400;
  color: #383f45;
  margin-top: 4px;
}

.my-info-wrapper.my-coupon-wrapper .panel-heading, .my-info-wrapper.my-point-wrapper .panel-heading {
  padding: 0 15px;
}
.my-info-wrapper .filter-wrapper {
  padding-left: 0;
  padding-bottom: 16px;
}
.my-info-wrapper.my-coupon-wrapper .panel-footer {
  flex-direction: column;
  margin-top: 20px;
}
.my-info-wrapper.my-coupon-wrapper .panel-footer .btn-line {
  margin-top: 8px;
}

.purchase-option .result .media {
  padding: 10px 0;
}
.purchase-option .selectbox-wrapper select {
  padding-top: 9px;
  border-radius: 50vh;
  border-color: #21a12e;
  color: #0d6916;
}
.purchase-option .selectbox-wrapper select option {
  color: black;
}
.purchase-option .option-value {
  padding-bottom: 12px;
}
.purchase-option .option-title {
  font-size: 0.8125rem;
  color: #222;
  line-height: 1;
  padding-top: 4px;
}
.purchase-option .option-price {
  display: flex;
  align-items: center;
}
.purchase-option .option-price .price {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
  padding-top: 3px;
}
.purchase-option .option-price .price::after {
  content: "원";
  font-size: inherit;
  margin-left: 2px;
}
.purchase-option .option-price .dfee {
  font-size: 13px;
  color: #6e777c;
  padding-left: 13px;
  padding-top: 2px;
}
.purchase-option .option-price .counter-container {
  margin-left: auto;
}
.purchase-option .goods-price {
  background-color: white;
  border-bottom: none;
  font-size: 0.8125rem;
}
.purchase-option .total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.purchase-option .total-price .text {
  font-size: 0.8125rem;
}
.purchase-option .total-price .total {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4em;
}
.purchase-option .total-price .total::after {
  content: "원";
  font-size: inherit;
  margin-left: 2px;
}

.review-detail-list-wrapper .main-review-photo {
  padding: 0 15px;
}

.more-container {
  padding: 15px !important;
}

.detail_qna {
  margin-bottom: 32px;
}
.detail_qna .panel-body {
  padding: 0;
}
.detail_qna .media-list .qna-item {
  padding: 15px 0 0;
  border-bottom: 1px solid #d5e2e4;
  margin-top: 0;
}
.detail_qna .media-list .qna-item .qna-header {
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 0 8px;
}
.detail_qna .media-list .qna-item .qna_user_info {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-size: 0.8125rem;
}
.detail_qna .media-list .qna-item .qna_user_info .date {
  color: #8095a0;
}
.detail_qna .media-list .qna-item .qna_content {
  background-color: #f7f7f7;
  padding: 15px;
}
.detail_qna .media-list .qna-item .comment {
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 0.6875rem;
  color: #383f45;
  background-color: #e4e8e9;
}
.detail_qna .media-list .qna-item .uncall {
  background-color: #333333;
  color: white;
}
.detail_qna .media-list .qna-item .secret_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 15px;
}
.detail_qna .media-list .qna-item .secret_text .left {
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.detail_qna .media-list .qna-item .secret_text .left .lock-icon {
  width: 12px;
}
.detail_qna .media-list .qna-item .admin_comment {
  border-top: 1px dotted #d5e2e4;
  background-color: #f7f7f7;
  padding: 15px;
}
.detail_qna .media-list .qna-item .qna-item-content .media-heading {
  padding: 0 15px;
  margin-bottom: 0;
}

.contents-wrapper.search .search-wrapper {
  margin-bottom: 16px;
}
.contents-wrapper.search .search-wrapper h5 {
  margin-bottom: 8px;
}
.contents-wrapper.search .search-wrapper .text_search {
  display: flex;
  align-items: center;
  position: relative;
}
.contents-wrapper.search .search-wrapper .text_search .Icon_Search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
}
.contents-wrapper.search .search-wrapper .text_search .form-control {
  flex: 1;
  padding-left: 50px;
  background-color: #f7f7f7;
  border: none;
}
.contents-wrapper.search .panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}
.contents-wrapper.search .panel-heading .title {
  font-size: 14px;
  font-weight: bold;
  color: #222;
}
.contents-wrapper.search .panel-heading .Icon_Search {
  font-size: 0.875rem;
}
.contents-wrapper.search .panel-heading .search_delete {
  font-size: 11px;
  color: #383f45;
}
.contents-wrapper.search .recently {
  margin-bottom: 40px;
}
.contents-wrapper.search .list-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contents-wrapper.search .list-group .keyword {
  display: flex;
  align-items: center;
  gap: 0 8px;
  padding: 0 8px;
  border: 1px solid #d5e2e4;
  border-radius: 50vh;
  line-height: 30px;
  font-size: 11px;
  cursor: pointer;
}
.contents-wrapper.search .list-group .keyword .icon-close {
  width: 12px;
  height: 12px;
}
.contents-wrapper.search .product-container {
  padding: 15px 0;
}

.payment-wrapper.common-wrapper.oder .set-title {
  font-size: 0.875rem;
}
.payment-wrapper.common-wrapper.oder .available-points {
  font-size: 0.875rem;
}
.payment-wrapper.common-wrapper.oder .available-points b {
  color: #099b20;
  font-weight: 600;
}
.payment-wrapper.common-wrapper.oder .halbuModal {
  font-size: 0.75rem;
  color: #383f45;
}
.payment-wrapper.common-wrapper.oder .delivery-option {
  margin-bottom: 0;
}
.payment-wrapper.common-wrapper.oder .ip_phone {
  margin-bottom: 0;
}
.payment-wrapper.common-wrapper.oder .receiver-phone {
  margin-bottom: 20px;
}
.payment-wrapper.common-wrapper.oder .checks label {
  font-size: 0.875rem;
}
.payment-wrapper.common-wrapper.oder .payment-banner {
  margin-top: 15px;
}
.payment-wrapper.common-wrapper.oder .order-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-wrapper.common-wrapper.oder .panel-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
.payment-wrapper.common-wrapper.oder .couponuse {
  margin-bottom: 0;
}
.payment-wrapper.common-wrapper.oder .order-priceline {
  margin-bottom: 8px;
}
.payment-wrapper.common-wrapper.oder .order-priceline th {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #383f45;
}
.payment-wrapper.common-wrapper.oder .order-priceline .order-price {
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
}
.payment-wrapper.common-wrapper.oder .order-totalline {
  margin-top: 8px;
}
.payment-wrapper.common-wrapper.oder .order-totalline th {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #222;
}
.payment-wrapper.common-wrapper.oder .order-totalline .total-price {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

#newboard.user-board {
  margin-top: 60px;
  border-top: 1px solid #d5e2e4;
}
#newboard .icon-list {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-size: 0.8125rem;
  color: #8095a0;
}
#newboard .icon-list span {
  display: flex;
  align-items: center;
  gap: 0 4px;
  line-height: 0;
}
#newboard .icon-list .like {
  cursor: pointer;
}
#newboard .icon-list .scrap {
  cursor: pointer;
}
#newboard .icon-list.right {
  gap: 0 16px;
}
#newboard .filter-wrapper .filter-label {
  font-size: 0.875rem;
  color: #383f45;
}
#newboard .filter-wrapper .filter-label b {
  color: #099b20;
  font-weight: 600;
}
#newboard #imgTypeLine1 .image-type-list-item {
  margin-bottom: 40px;
}
#newboard #imgTypeLine1 .board-image-container {
  margin-bottom: 16px;
}
#newboard #imgTypeLine1 .date {
  font-size: 0.875rem;
  color: #383f45;
}
#newboard #imgTypeLine1 .board-title {
  margin-top: 4px;
  font-weight: 500;
  color: #222;
}
#newboard .top-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 400;
}
#newboard .top-section .info {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
#newboard .top-section .date {
  color: #8095a0;
}
#newboard .top-section .author {
  color: #8095a0;
  font-weight: 500;
}
#newboard .top-section .top-section-action {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
#newboard .top-section .top-section-action a {
  cursor: pointer;
}
#newboard .board-title-container {
  display: flex;
  align-items: center;
  gap: 0 4px;
  margin-top: 8px;
}
#newboard .board-title-container .icon-label {
  font-size: 10px;
  padding: 3px 8px 2px;
}
#newboard .board-title-container .board-category {
  font-size: 0.8125rem;
}
#newboard .board-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
#newboard .panel-footer.board-reply {
  display: block;
  padding-left: 0;
  padding-right: 0;
}
#newboard .panel-footer.board-reply .filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 15px;
}
#newboard .panel-footer.board-reply .reply-btn-container {
  padding: 20px 15px 0;
}
#newboard .panel-footer.board-reply .board-reply-count {
  font-size: 0.875rem;
  color: #6e777c;
}
#newboard .panel-footer.board-reply .board-reply-count b {
  color: #222;
}
#newboard .reply-wrapper .reply-name {
  font-size: 0.75rem;
  color: #8095a0;
}
#newboard .reply-wrapper .reply-name .user-name {
  color: #383f45;
  margin-right: 8px;
}
#newboard .reply-wrapper .reply-content {
  font-size: 0.8125rem;
  color: #383f45;
  margin: 8px 0 10px;
}
#newboard .reply-wrapper .reply-subcontent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#newboard .reply-wrapper .reply-subcontent .reply-report-link {
  color: #8095a0;
  font-size: 0.75rem;
  cursor: pointer;
}

.reply-modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  gap: 0 4px;
  margin: 20px auto 0 auto;
}

.reply-count-label {
  color: #6e777c;
}
.reply-count-label b {
  color: #ff740f;
}

.reply-textarea {
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
}

.image-notice {
  font-size: 0.75rem;
  flex: 1;
  margin-left: 12px;
}

#writeModal #boardImgList.image-group {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  overflow: unset;
}
#writeModal #boardImgList.image-group .image-container {
  position: relative;
  width: 72px;
  aspect-ratio: 1/1;
  border: 1px solid gray;
}
#writeModal #boardImgList.image-group .image-container .fileimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#writeModal #boardImgList.image-group .image-container a {
  position: absolute;
  top: -12px;
  right: -5px;
  cursor: pointer;
}

.my-wrapper.return .panel-body .title {
  border-bottom: none;
  font-size: 0.875rem;
  color: #222;
  margin-bottom: 10px;
}
.my-wrapper.return .label {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 400;
  color: #6e777c;
  padding: 0;
}
.my-wrapper.return .form-group .phone-container {
  display: flex;
  gap: 0 8px;
}
.my-wrapper.return .form-group .phone-container input {
  flex: 1;
}
.my-wrapper.return .form-group .post-search {
  display: flex;
  gap: 0 8px;
}
.my-wrapper.return .form-group .post-search input {
  flex: 1;
}
.my-wrapper.return .form-group {
  margin-bottom: 20px;
}
.my-wrapper.return .form-group.last {
  margin-bottom: 0;
}
.my-wrapper.return .form-group .return-reason {
  margin-top: 8px;
}
.my-wrapper.return .panel-body {
  padding: 15px;
}

.my-info .label {
  text-align: left;
  font-size: 0.875rem;
  color: #383f45;
  margin-bottom: 8px;
}
.my-info .myinfo_text p {
  font-size: 0.8125rem;
  color: #6e777c;
}
.my-info .myinfo_text p b {
  color: #222;
}

.my-info-modify .label {
  text-align: left;
  font-size: 0.875rem;
  color: #383f45;
  margin-bottom: 8px;
}
.my-info-modify .info_num {
  align-items: unset;
  gap: 0 8px;
}
.my-info-modify .info_num input {
  flex: 1;
}
.my-info-modify .marketing-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
  background-color: white;
  border: 1px solid #d5e2e4;
  border-radius: 4px;
  padding: 16px 0;
  margin-top: 8px;
}

.joined-event-item .event-date {
  font-size: 0.8125rem;
  color: #8095a0;
}
.joined-event-item .event-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #222;
  margin-top: 4px;
}
.joined-event-item .event-type {
  margin-top: 4px;
}
.joined-event-item .event-type p {
  font-size: 0.8125rem;
  color: #222;
}

.basket-wrapper .basket-list .media .item_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.basket-wrapper .basket-list .media .item_title .icon-delete {
  width: 17px;
  height: 17px;
}

.guestinfo_form .panel-heading {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 15px;
}
.guestinfo_form .panel-heading h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9375rem;
}
.guestinfo_form .panel-body {
  padding: 0;
}
.guestinfo_form .panel-body .form-group {
  margin-top: 0;
}
.guestinfo_form .copyright {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #6e777c;
  margin-top: 24px;
}
.guestinfo_form .guesttext {
  font-size: 0.6875rem;
  color: #6e777c;
  margin-bottom: 40px;
}

.join-wrapper {
  height: calc(100vh - 60px);
}
.join-wrapper .panel-heading {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #d5e2e4;
  padding: 0 15px;
  background-color: white;
}
.join-wrapper .panel-heading h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9375rem;
}
.join-wrapper .member {
  padding-top: 80px;
}
.join-wrapper .member.hasTab {
  padding-top: 65px;
}
.join-wrapper .tab_content {
  padding: 20px 15px 0;
}
.join-wrapper .idpwsearch {
  margin-bottom: 40px;
}
.join-wrapper .idpwsearch p {
  font-size: 0.6875rem;
  color: #6e777c;
}

.login-type__icon {
  margin: 40px 0;
}

.login-guest a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #383f45;
}

.idpwwrap .form-group {
  margin-bottom: 8px;
}

.dormant-join-agree .panel-heading {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 480px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: white;
}
.dormant-join-agree .panel-heading h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9375rem;
}
.dormant-join-agree .panel-body {
  padding-top: 80px;
}

.view-agree {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6e777c;
  text-decoration: underline;
}

.panel-body-header {
  margin-bottom: 20px;
}

.basket-wrapper .basket-list .media-body .delivery_free {
  margin-top: 10px;
}
.basket-wrapper .basket-list .media-body .item_option {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6e777c;
}
.basket-wrapper .basket-list .media-body .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.basket-wrapper .basket-list .media-body .price .getmoney {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.BigWrap {
  padding: 0;
}
.BigWrap .container {
  padding: 0 !important;
}

.gnb-wrapper {
  padding: 0 15px;
  border-bottom: 1px solid #d5e2e4;
}
.gnb-wrapper .gnb.swiper-wrapper {
  align-items: center;
}
.gnb-wrapper .gnb.gnb_list .swiper-slide {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  color: #383f45;
  height: 40px;
}
.gnb-wrapper .gnb.gnb_list .swiper-slide.active {
  color: #099b20;
  border-bottom: 2px solid #21a12e;
}
.gnb-wrapper .gnb.gnb_list a {
  display: flex;
  align-items: center;
  gap: 0 2px;
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  padding: 0 4px;
}

.filter_box {
  height: unset;
  padding: 0 16px;
  margin: 16px 0;
}
.filter_box .total-count {
  width: 100%;
}
.filter_box .total-count p {
  font-size: 0.875rem;
  color: #383f45;
}
.filter_box .total-count p span {
  font-weight: 600;
  color: #099b20;
}

.categoryList .side-category .sidetext {
  font-size: 0.9375rem;
  font-weight: 400;
}
.categoryList .side-category .addview .addview-carat {
  width: 10px !important;
  height: 10px !important;
}
.categoryList .panel-collapse li .title {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #383f45;
}

.product_info {
  margin-top: 10px;
}
.product_info .benefit-list .benefit-list-item {
  padding: 10px 0;
}
.product_info .benefit-list .benefit-list-item:not(:last-child) {
  border-bottom: 1px solid #d5e2e4;
}
.product_info .benefit-list .benefit-list-item.active .benefit-subinfo {
  display: block;
}
.product_info .benefit-list .benefit-list-item .inner {
  display: flex;
  align-items: flex-start;
  padding: 5px 0;
}
.product_info .benefit-list .benefit-list-item .inner button {
  margin-left: auto;
  background-color: transparent;
  border: none;
  padding: 0;
}
.product_info .benefit-list .benefit-list-item .inner button .icon-caret-down {
  width: 15px;
  height: 15px;
  transform: rotate(0);
  transition: 0.3s transform;
}
.product_info .benefit-list .benefit-list-item .btn-line {
  font-size: 0.75rem;
  margin-top: 5px;
  margin-bottom: 5px;
}
.product_info .benefit-list .benefit-list-item .btn-line span {
  font-weight: 700;
}
.product_info .benefit-list .benefit-list-item .benefit-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #383f45;
  width: 100px;
}
.product_info .benefit-list .benefit-list-item .benefit-content {
  font-size: 0.75rem;
  color: #6e777c;
  line-height: 1rem;
  flex: 1;
}
.product_info .benefit-list .benefit-list-item .benefit-content span {
  color: #383f45;
  font-weight: 700;
}
.product_info .benefit-list .benefit-list-item .benefit-content .event-link {
  display: inline-block;
  text-decoration: underline;
  margin-top: 4px;
  color: #383f45;
}
.product_info .benefit-list .benefit-list-item .benefit-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_info .benefit-list .benefit-list-item .benefit-expand-btn.active .icon-caret-down {
  transform: rotate(180deg);
}
.product_info .benefit-list .benefit-list-item .benefit-subinfo {
  display: none;
  font-size: 0.75rem;
  color: #6e777c;
  padding-left: 100px;
  padding-top: 5px;
}
.product_info .benefit-list .benefit-list-item .benefit-subinfo li {
  line-height: 1.7em;
}
.product_info .benefit-list .benefit-list-item .benefit-subinfo.active {
  display: block;
}
.product_info .benefit-list .benefit-list-item .benefit-additional {
  font-size: 0.75rem;
  color: #099b20;
  padding-left: 100px;
  padding-top: 5px;
}
.product_info .benefit-list .benefit-list-item .benefit-additional span {
  font-weight: 700;
}

.dotted-line {
  border: none;
  margin: 0 16px;
  border-bottom: 1px dotted #8095a0;
  background-color: #eff3f6;
}

.footer-shop-info-title {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-size: 0.8125rem;
  margin-top: 20px;
  margin-bottom: 8px;
}
.footer-shop-info-title .carat {
  width: 10px;
  height: 10px;
  transform: rotate(0);
  transition: 0.3s transform;
}
.footer-shop-info-title .carat.active {
  transform: rotate(180deg);
}

.footer-shop-info-container {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s grid-template-rows;
}
.footer-shop-info-container.active {
  grid-template-rows: 1fr;
}
.footer-shop-info-container .list-group {
  overflow: hidden;
  margin-bottom: 0;
}
.footer-shop-info-container .list-group .list-group-item {
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 0.75rem;
}

.copyright {
  margin-top: 8px;
}

.modal-login .login-guest {
  margin: 20px 0 0 0;
}
.modal-login .login-guest a {
  font-size: 0.8125rem;
}

.top_active {
  border-bottom: 1px solid #21a12e;
  color: #099b20;
}

.contents-wrapper.category {
  padding-top: 62px;
}
.contents-wrapper.inner-gnb-wrapper {
  margin-top: 0 !important;
  padding-top: 0;
}

.purchase-wrapper .panel-footer {
  padding: 8px 16px 16px 16px;
}

.faq-tabs {
  padding: 0 15px;
}

.panel-title.faq .gubun {
  font-size: 0.875rem;
  margin-right: 4px;
}
.panel-title.faq .title {
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
}

.panel-body.faq .gubun {
  font-size: 0.875rem;
  color: #21a12e;
  margin-right: 4px;
}
.panel-body.faq-answer {
  display: flex;
}
.panel-body.faq-answer .answer {
  font-size: 0.875rem;
  margin-top: -10px;
}

.more-container {
  padding: 15px;
}

.price-counter {
  display: flex;
  align-items: center;
  padding: 2px 0;
}
.price-counter .price {
  font-size: 1rem;
  font-weight: 700;
  line-height: 0;
}
.price-counter .dfee {
  font-size: 13px;
  color: #6e777c;
  padding-left: 13px;
  padding-top: 2px;
}
.price-counter .counter-container {
  margin-left: auto;
}

.payment-wrapper .order-info .media-body.item_order_info .order_title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #222;
  margin: 0;
  padding-bottom: 8px;
}

.payment-wrapper .media-right .count {
  font-size: 0.75rem;
  color: #383f45;
}
.payment-wrapper .media-right .delivery {
  font-size: 0.75rem;
  color: #383f45;
}
.payment-wrapper .media-right .option {
  font-size: 0.75rem;
  color: #383f45 !important;
}

.event-page-wrapper.couponbookpage {
  margin-top: 71px;
}

.coupon__list .coupon__item {
  border: 1px solid #d5e2e4;
  border-radius: 8px;
}
.coupon__list .coupon__item:not(:last-child) {
  margin-bottom: 8px;
}
.coupon__list .coupon__item.coponDeactive .coupon-downloaded-text {
  display: block;
}
.coupon__list .coupon__item.coponDeactive .coupon-download-btn {
  display: none;
}
.coupon__list .coupon__item .coupon__content {
  display: flex;
  align-items: center;
  padding: 16px;
}
.coupon__list .coupon__item .coupon-area {
  flex: 1;
}
.coupon__list .coupon__item .coupon-discount {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
}
.coupon__list .coupon__item .coupon-text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #383f45;
  margin-top: 8px;
}
.coupon__list .coupon__item .coupon-date {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #383f45;
}
.coupon__list .coupon__item .coupon-set {
  font-size: 0.75rem;
  font-weight: 400;
  color: #8095a0;
  margin-top: 8px;
}
.coupon__list .coupon__item .coupon-downloaded-text {
  display: none;
  font-size: 0.875rem;
  color: #6e777c;
  padding-right: 7px;
}

.coupon-down-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  max-width: 480px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.3s opacity;
}
.coupon-down-modal.show {
  opacity: 1;
  visibility: visible;
}
.coupon-down-modal.show .coupon-down-modal-content {
  bottom: 0;
}
.coupon-down-modal .coupon-down-modal-content {
  position: absolute;
  bottom: -581px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  max-width: 480px;
  width: 100%;
  z-index: 1000;
  padding: 24px 16px 16px 16px;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  transition: 0.3s bottom;
}
.coupon-down-modal .coupon-down-modal-content .coupon-down-modal-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #222;
  text-align: center;
}
.coupon-down-modal .coupon-down-modal-content .page-subtitle {
  margin-top: 8px;
  margin-bottom: 16px;
}
.coupon-down-modal .coupon-down-modal-content .detailcoupon {
  height: 410px;
  overflow-y: auto;
}
.coupon-down-modal .coupon-down-modal-content .modal-body {
  padding-top: 61px;
}
.coupon-down-modal .coupon-down-modal-content .modal-footer {
  display: flex;
  gap: 0 8px;
  margin-top: 16px;
  padding: 0;
}
.coupon-down-modal .coupon-down-modal-content .modal-footer::before {
  content: none;
}
.coupon-down-modal .coupon-down-modal-content .modal-footer::after {
  content: none;
}

.page-subtitle {
  font-size: 0.8125rem;
  color: #222;
  margin: 15px 0;
  text-align: center;
}

.sidemenu-container .login-out-wrapper {
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.sidemenu-container .login-out-wrapper .user-name {
  font-size: 0.8125rem;
  color: #222;
  margin-right: 12px;
}
.sidemenu-container .login-out-wrapper .login-link {
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 5px 8px;
  color: #099b20;
  border: 1px solid #21a12e;
  border-radius: 4px;
}

.img-collection .modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: black;
}
.img-collection .modal-content .modal-header {
  background-color: transparent;
  border-bottom: none;
  width: fit-content;
  right: 2px;
  padding: 0;
}
.img-collection .modal-content .modal-header .close {
  padding: 8px 8px 0 0;
}

.card-agree-wrapper .checkbox:first-child {
  margin-bottom: 8px;
}

.creditcard-input,
.payment-wrapper .order-payment-info .panel-body.get,
.payment-wrapper.common-wrapper.oder .order-section {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.creditcard-input::before,
.payment-wrapper .order-payment-info .panel-body.get::before,
.payment-wrapper.common-wrapper.oder .order-section::before {
  content: unset;
}
.creditcard-input::after,
.payment-wrapper .order-payment-info .panel-body.get::after,
.payment-wrapper.common-wrapper.oder .order-section::after {
  content: unset;
}

.order-pricewrap table {
  margin-top: 20px;
}

.basket-totalline th {
  font-size: 0.875rem;
  font-weight: 400;
}
.basket-totalline td {
  font-size: 1.125rem;
  font-weight: 700;
}

.basket-priceline th {
  font-size: 0.8125rem;
  font-weight: 400;
}
.basket-priceline td {
  font-size: 0.875rem;
}

.basket-pricetotal th {
  font-size: 0.875rem;
  font-weight: 400;
}

.wrap_maypage {
  margin-top: 60px;
}

.go-list {
  display: flex;
  justify-content: center;
}

#newMyboard .panel-heading {
  border-bottom: 1px solid #f0f2f3;
}
#newMyboard .panel-heading .filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#newMyboard .panel-heading .filter-wrapper span {
  font-size: 0.875rem;
  color: #6e777c;
}
#newMyboard .panel-heading .filter-wrapper span b {
  font-weight: 400;
  color: #222;
}
#newMyboard .panel-footer .pagination-wrapper {
  flex: 1;
}
#newMyboard .panel-footer .pagination-wrapper .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
#newMyboard .panel-footer .pagination-wrapper .pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
#newMyboard .panel-footer .pagination-wrapper .pagination li a {
  font-size: 0.8125rem;
  font-weight: 400;
}

.notice-table .panel-footer {
  margin-top: 20px !important;
}

.godossellcustom {
  position: absolute;
  top: 0;
  left: 0;
}
.godossellcustom img {
  width: 50px;
  float: left;
}

.creditcard-input {
  padding: 0 15px 20px 15px !important;
}
.creditcard-input .month,
.creditcard-input .year {
  width: 23%;
}
.creditcard-input .creditcard-pin,
.creditcard-input .creditcard-id {
  width: 48%;
}

.payment-wrapper.common-wrapper.oder .order-payment-info .payinfo .bankbook .panel-body {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.payment-wrapper.common-wrapper.oder .order-payment-info .payinfo .bankbook .panel-body::before {
  content: unset;
}
.payment-wrapper.common-wrapper.oder .order-payment-info .payinfo .bankbook .panel-body::after {
  content: unset;
}

#Npaydetail .modal-body {
  margin-top: 60px;
  padding-top: 15px;
}

.review-detail-wrapper,
.my-wrapper.my-info {
  margin-top: 60px;
}

#userclass-modal {
  padding-left: 0 !important;
}

.my-wrapper #orderlist .tab-content:not(:last-child) {
  border-bottom: 1px solid #e8e8e8 !important;
}

.mypage-myorder .panel-body.order {
  padding-bottom: 10px;
}

.my-wrapper .go-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-info-wrapper .go-list {
  padding: 20px 15px;
}

.payment-wrapper .complete .message {
  background-color: #f7f7f7;
  border-top: 1px solid #d5e2e4;
  border-bottom: 1px solid #d5e2e4;
  padding: 20px 0;
}
.payment-wrapper .complete .message h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #099b20;
}
.payment-wrapper .complete .message p {
  font-size: 0.875rem;
  color: #383f45;
  margin-top: 8px;
}

.brd-recommen .price-box {
  margin-top: 7px;
}

.brd-recommen.brd-recommen-listR .dc-rate {
  margin-right: 4px;
  font-size: 1rem;
}

.brd-recommen.brd-recommen-listR .price {
  font-size: 1rem;
}

.brd-recommen-listR .prod-title {
  font-weight: 400;
}

.price-wrapper.default-pricewrap .org-price {
  font-size: 0.875rem;
  font-weight: 400;
  color: #8095a0;
  margin-top: 4px;
}

.brd-recommen .icon-basketwrap {
  position: absolute;
  bottom: 8px;
  right: 8px;
}

#orderend-goods-table .media:not(:last-child) {
  border-bottom: 1px solid #d5e2e4;
}
#orderend-goods-table .media .media-left {
  padding-left: 0;
}
#orderend-goods-table .media .media-body .subject {
  font-size: 0.875rem;
  font-weight: 500;
}
#orderend-goods-table .media .media-body .option {
  font-size: 0.75rem;
  color: #383f45;
  margin-top: 4px;
}
#orderend-goods-table .media .media-body .price {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 8px;
}
#orderend-goods-table .media .media-body .price .count {
  font-weight: 400;
  color: #8095a0;
  margin-left: 4px;
}

.payment-wrapper .orderEnd .panel-footer {
  gap: 0 8px;
  margin-top: 32px;
}

.recommend-panel-product-image-container {
  width: 120px;
}

.recommend-panel-product-info .flag {
  margin-bottom: 4px;
  width: fit-content;
}

.guest-login-form {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.guest-login-btn {
  margin-top: 40px;
}

.view-shipping-link {
  color: white;
  background-color: #222;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 0.8125rem;
}

.detail_normal .panel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px !important;
}

#writeModal .modal-header {
  background-color: white;
  color: #222;
}
#writeModal .modal-footer {
  position: relative;
  padding: 20px 15px;
  display: flex;
  gap: 0 8px;
  height: unset;
  line-height: unset;
  border-top: none;
}

#floatingActionShare .modal-body {
  padding-top: 60px;
}

.no-data {
  color: #6e777c;
  text-align: center;
  padding: 120px 0;
}
.no-data p {
  font-size: 0.8125rem;
}

.selectbox.item-filter {
  width: 100px !important;
}

.event-list {
  padding: 18px 0 0 0;
  background-color: transparent;
}

.small-footer {
  width: 40%;
  margin: 20px auto 0 auto;
}

.new-signup {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  padding: 0 15px;
}

.form-group .inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 6px;
}
.form-group .inner input {
  flex: 1;
}

.coponDeactive {
  background-color: #f7f7f7;
}

.event-pagination {
  justify-content: center;
}

.detail-event-link {
  text-decoration: underline;
}

.common-wrapper .form-group.phone-token.no-flex {
  display: block;
}

#sellAlarm-modal .modal-backdrop {
  background-color: transparent;
}

#confirm-mi-modal .modal-backdrop {
  background-color: transparent;
}

#success-confirm-mi-modal .modal-backdrop {
  background-color: transparent;
}

.my-wrapper.return .panel-body .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding-bottom: 20px;
}

.gnb-menu-item {
  position: relative;
}
.gnb-menu-item .gnb-menu-item-dot {
  width: 13px;
  margin-bottom: 3px;
}

.contents-wrapper.view.details {
  padding-top: 61px;
}

.panel-footer.orderEnd {
  justify-content: unset;
}
.panel-footer.orderEnd .btn-group {
  flex: 1;
  gap: 0 8px;
  padding-top: 0;
}

#footerMenu ul.list-group {
  display: flex;
  height: 66px;
}
#footerMenu ul.list-group li.list-group-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0;
  border: none;
  padding-top: 6px;
}
#footerMenu ul.list-group li.list-group-item label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: unset;
  width: 60px;
  font-size: 12px;
  font-weight: normal !important;
  text-align: center;
  margin-bottom: 0 !important;
  color: #424242;
  padding-top: 2px;
}

.coupon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 8px 2px 6px;
  border-radius: 50vh;
  font-size: 10px;
  font-weight: 400;
  color: #21a12e;
  border: 1px solid #21a12e;
  line-height: normal;
  background-color: white;
  appearance: none;
  outline: none;
}

.test-sidemenu {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -435px;
  max-width: 480px;
  width: 100%;
  height: 100vh;
  background-color: lightblue;
  z-index: 9999;
  transition: 0.3s left;
  overflow-y: auto;
  overflow-x: hidden;
}
.test-sidemenu.open {
  left: 0;
}

#sidemenu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s linear, opacity 0.3s linear;
}
#sidemenu.open {
  opacity: 1;
  visibility: visible;
}
#sidemenu.open .sidemenu-wrapper {
  left: 0;
}
#sidemenu .sidemenu-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -480px;
  max-width: 480px;
  width: 100%;
  transition: 0.3s left;
}

.product-type4 {
  display: flex;
  gap: 0 8px;
}
.product-type4 figure {
  flex: 0 123px;
  display: flex;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.16;
  overflow: hidden;
  border-radius: 8px;
}
.product-type4 .product-image {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product-type4 .add-to-cart {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;
}
.product-type4 .details {
  flex: 1;
}
.product-type4 .product-info .left-over {
  display: flex;
  align-items: center;
  gap: 0 2px;
  font-size: 10px;
}
.product-type4 .product-info .left-over span {
  color: #21a12e;
  font-weight: 700;
}
.product-type4 .product-info .extra-info {
  font-size: 10px;
  color: #889eaa;
  margin: 2px 0 3px 0;
}
.product-type4 .product-info .accumulated {
  font-size: 10px;
  color: #7d7c7c;
}
.product-type4 .product-info .accumulated span {
  color: #ef1a1a;
}
.product-type4 .product-info .reviews {
  display: flex;
  align-items: center;
  gap: 0 2px;
  font-size: 11px;
  color: #7d7c7c;
}
.product-type4 .product-info .reviews span {
  font-weight: 700;
  color: #222;
  margin-left: 2px;
}
.product-type4 .product-info .product-name {
  font-size: 0.8125rem;
  margin-top: 5px;
}
.product-type4 .product-info .product-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3px;
  gap: 0 2px;
}
.product-type4 .product-info .product-price .dc {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ef1a1a;
}
.product-type4 .product-info .product-price .break {
  width: 100%;
}
.product-type4 .product-info .product-price .price {
  font-size: 0.75rem;
  font-weight: 700;
  color: #222;
}
.product-type4 .product-info .product-price .price-from {
  font-size: 0.625rem;
  font-weight: 400;
  color: #8095a0;
}
.product-type4:not(:last-child) {
  margin-bottom: 16px;
}
.product-type4 .flag-container {
  margin-top: 4px;
}

#cartPurchase-wrapper,
#purchase-wrapper {
  bottom: -100%;
  transition: bottom 0.5s ease-in-out;
}
#cartPurchase-wrapper.animate,
#purchase-wrapper.animate {
  bottom: 0;
}

.purchase-wrapper {
  overflow-x: unset;
}
.purchase-wrapper.overflow {
  overflow-x: hidden;
}
.purchase-wrapper .btn-primary {
  position: relative;
}

#purchase-wrapper,
#cartPurchase-wrapper {
  background: none;
}
#purchase-wrapper .purchase-option,
#cartPurchase-wrapper .purchase-option {
  position: relative;
  max-height: 90svh;
  background: none;
}
#purchase-wrapper .purchase-option .panel,
#cartPurchase-wrapper .purchase-option .panel {
  background-color: white;
}
#purchase-wrapper .purchase-option .purchase-option-knob,
#cartPurchase-wrapper .purchase-option .purchase-option-knob {
  display: inline-flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -26px;
  background-color: #21a12e;
  color: white;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0 28px;
  font-size: 26px;
}
#purchase-wrapper .cart-options,
#cartPurchase-wrapper .cart-options {
  background-color: white;
}

.btn_type_sbasicborder {
  padding-bottom: 20px !important;
}

.goto-cart-link-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  border-bottom: 3px solid #f0f2f3;
}
.goto-cart-link-container .goto-cart-link {
  color: #21a12e;
  font-size: 13px;
  font-weight: 600;
}
.goto-cart-link-container .product-item {
  display: flex;
  align-items: center;
  gap: 0 16px;
  padding: 0;
}
.goto-cart-link-container .product-item .product-image-container {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 4px;
}
.goto-cart-link-container .product-item .product-image-container .product-image {
  object-fit: cover;
  width: 100%;
}

.selected-product-container {
  padding: 16px 16px 0;
}
.selected-product-container .product-item {
  display: flex;
  align-items: center;
  gap: 0 16px;
  padding: 0;
}
.selected-product-container .product-item .product-image-container {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 4px;
}
.selected-product-container .product-item .product-image-container .product-image {
  object-fit: cover;
  width: 100%;
}
.selected-product-container .product-item .product-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}

.sub-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 0;
}
.sub-footer .left,
.sub-footer .right {
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.class-icon.small {
  width: 30px;
}
.class-icon.large {
  width: 50px;
}

.sales-event-container {
  padding: 0 0 50px;
}
.sales-event-container .sales-event-flyer {
  width: 100%;
}

#couponProductLinkModal .modal-basic {
  overflow: hidden;
  transform: translate(-50%, -56%);
}
@media (max-width: 650px) {
  #couponProductLinkModal .modal-basic {
    transform: translate(-50%, -59%);
  }
}
#couponProductLinkModal .modal-basic .modal-basic-body {
  max-height: 30svh;
  height: calc(100% - 92px);
  overflow-y: auto;
}
@media (max-width: 650px) {
  #couponProductLinkModal .modal-basic .modal-basic-body {
    max-height: 57svh;
  }
}

.subsection-title {
  margin-bottom: 0;
}
.subsection-title .section-title.main-title {
  font-size: 20px;
  font-weight: bold;
}

.item-info-wrapper.detail {
  margin-bottom: 20px;
}

.my-wrapper.return .panel-body.reason .desc {
  margin-top: 10px;
  margin-left: 0;
  font-weight: normal;
}
.my-wrapper.return .panel-body.reason .desc p {
  font-size: 14px;
}
.my-wrapper.return .panel-body.reason .desc p:not(:last-child) {
  margin-bottom: 4px;
}

.my-wrapper.return .panel-body .image-upload {
  margin-bottom: 0;
}

.no-mt {
  margin-top: 0 !important;
}

.time-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: white;
  background-color: #21a12e;
  border-radius: 50vh;
  padding: 3px 14px 3px;
  margin-bottom: 10px;
}

.product-type5 figure {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.product-type5 figure.tall {
  aspect-ratio: 1/1.3;
}
.product-type5 figure .flag {
  position: absolute;
  top: 8px;
  left: 8px;
}
.product-type5 figure .timesale-gif {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
}
.product-type5 figure .add-to-cart {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;
}
.product-type5 figure .product-image {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product-type5 .details {
  display: flex;
  gap: 0 10px;
  margin-top: 15px;
}
.product-type5 .details .rank {
  color: #21a12e;
  font-size: 40px;
  font-weight: bold;
  line-height: 35px;
}
.product-type5 .details .product-name {
  font-size: 14px;
  font-weight: 400;
  color: #383f45;
}
.product-type5 .details .product-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  margin-top: 3px;
}
.product-type5 .details .product-price .dc {
  font-size: 14px;
  font-weight: 700;
  color: #ef1a1a;
}
.product-type5 .details .product-price .price {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.product-type5 .details .product-price .price-from {
  font-size: 12px;
  font-weight: 400;
  color: #8095a0;
}
.product-type5 .details .product-price .break {
  width: 100%;
}

.product-type6 figure {
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.product-type6 figure.tall {
  aspect-ratio: 1/1.3;
}
.product-type6 figure .flag {
  position: absolute;
  top: 8px;
  left: 8px;
}
.product-type6 figure .timesale-gif {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 30px;
  height: 30px;
}
.product-type6 figure .add-to-cart {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 1;
}
.product-type6 figure .product-image {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.product-type6 figure .sale-percentage-container {
  position: absolute;
  top: -12px;
  left: -7px;
  width: 42px;
  height: 42px;
  background-color: #df171c;
  border: 2px solid white;
  color: white;
  border-radius: 50vh;
}
.product-type6 figure .sale-percentage-container .sale-percentage {
  position: absolute;
  bottom: 3px;
  right: 6px;
  font-size: 18px;
  letter-spacing: -2.5px;
  font-weight: bold;
  color: #fef266;
}
.product-type6 figure .sale-percentage-container .sale-percentage .percentage-sign {
  font-size: 8px;
  font-weight: 500;
  color: white;
}

#productRank .swiper-slide {
  width: 177px;
}

.contents-wrapper.search .recently {
  margin-bottom: 32px;
}

.contents-wrapper.search .search-wrapper h5 {
  font-size: 15px;
}

.contents-wrapper.search .search-wrapper .text_search .Icon_Search {
  left: 15px;
}
.contents-wrapper.search .search-wrapper .text_search .Icon_Search .search-icon-new {
  width: 20px;
  height: 20px;
}

.contents-wrapper.search .search_panel {
  margin-bottom: 32px;
}

.rcmsortablebox {
  gap: 8px;
}

.recommend-search {
  font-size: 12px;
  color: #297330;
  background-color: rgba(188, 241, 208, 0.23);
  padding: 4px 15px;
  border-radius: 50vh;
}

.contents-wrapper.search .popular-search {
  margin-bottom: 32px;
}
.contents-wrapper.search .popular-search .popular-search-grid {
  column-count: 2;
}

.prod-info-wrapper .info-wrapper .panel-heading {
  padding-top: 15px;
}

.portlet-title {
  font-size: 14px;
  color: #222;
  margin: 0 0 20px 15px;
}

.portlet-tabs-container {
  display: flex;
  align-items: center;
  margin: 0 15px;
  border-bottom: 1px solid #d5e2e4;
  margin-bottom: 15px;
}
.portlet-tabs-container .portlet-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: #8095a0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  line-height: 40px;
  cursor: pointer;
}
.portlet-tabs-container .portlet-tab.active {
  color: #222;
  border-bottom: 2px solid black;
}
.portlet-tabs-container .portlet-tab.new .inner::after {
  display: block;
}
.portlet-tabs-container .portlet-tab .inner {
  position: relative;
}
.portlet-tabs-container .portlet-tab .inner::after {
  content: "";
  display: none;
  position: absolute;
  top: 12px;
  right: -10px;
  background: url("/contents/images/ic_new.svg") no-repeat;
  background-size: 8px 8px;
  width: 8px;
  height: 8px;
}

.portlet-tab-content {
  display: none;
}
.portlet-tab-content.active {
  display: block;
}

.more-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  border-radius: 50vh;
  border: 1px solid #c2cfd4;
  color: #383f45;
  font-size: 14px;
  line-height: 1em;
  padding: 11px 0;
  margin: 15px 15px 0;
}
.more-btn-link img {
  padding-bottom: 1px;
}

.modal {
  z-index: 999999;
}
.modal .modal-dialog {
  width: 100%;
  margin: 0;
}
.modal .modal-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 15px;
  top: 0 !important;
  border-bottom: 1px solid #e8e8e8;
  max-width: 480px;
  width: 100%;
  margin: 0;
  z-index: 1;
  background-color: white;
  color: black;
  height: 60px;
}
.modal .modal-header .Icon_Close {
  position: absolute;
  right: 14px;
}
.modal .modal-header .product-badge {
  color: #21a12e;
  border: 1px solid #21a12e;
  border-radius: 4px;
  font-size: 12px;
  padding: 4px 10px;
  margin-right: 8px;
}
@media (max-width: 600px) {
  .modal .modal-header .product-badge {
    font-size: 11px;
  }
}
.modal .modal-title {
  font-size: 1.125rem;
  font-weight: 600;
  display: -webkit-box;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: center;
}
.modal .modal-title.product-title {
  font-size: 12px;
  padding-top: 2px;
  padding-right: 40px;
}
.modal .modal-body {
  background: #fff;
  font-size: 0.875rem;
  width: 100%;
  height: 100svh;
  padding: 0;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}
.modal .modal-body .panel.panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}
.modal .modal-body .panel.panel-body.no-padding {
  padding: 0;
}
.modal .modal-body .panel.panel-body .panel-content {
  padding: 15px;
}
.modal .modal-footer {
  flex: 0;
  display: flex;
  padding: 15px 15px 20px;
  gap: 0 8px;
}
.modal .modal-footer::before {
  content: unset;
}
.modal .modal-footer::after {
  content: unset;
}
.modal .modal-footer .modal-footer-btn {
  background-color: #e4e8e9;
  border: none;
  flex: 1;
  border-radius: 4px;
  padding: 14px 0;
  font-size: 0.9375rem;
  font-weight: 500;
}
.modal .modal-footer .modal-footer-btn.primary {
  background-color: #21a12e;
  color: white;
}

.recommendContent p {
  width: 100%;
}
.recommendContent img {
  width: 100%;
}

.modal-header.confirm {
  height: unset;
}

.modal-title.confirm {
  color: white;
}

.modal-header.align-left {
  justify-content: flex-start;
}

.recommend-detail-modal {
  display: block;
  position: fixed;
  transition: 0.3s right, 0.3s top;
  top: 100%;
}
.recommend-detail-modal.active {
  top: 0;
}
.recommend-detail-modal .modal-header {
  position: absolute;
}
.recommend-detail-modal .modal-header .modal-title.product-title {
  font-size: 14px;
  padding-bottom: 3px;
  text-align: left;
}
@media (max-width: 600px) {
  .recommend-detail-modal {
    top: unset;
    right: -200%;
  }
  .recommend-detail-modal.active {
    right: 0;
  }
  .recommend-detail-modal.close-down {
    top: 100%;
  }
}
.recommend-detail-modal .modal-body {
  position: relative;
  height: 100dvh;
}
.recommend-detail-modal .modal-body .panel-body {
  padding-bottom: 74px;
}
.recommend-detail-modal .modal-body .modal-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: white;
}

.product-notice-banner-container {
  position: sticky;
  top: 0;
  z-index: 1;
}

.product-notice-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFE8A3;
  color: #222222;
  font-size: 14px;
  font-weight: bold;
  padding: 16px 0;
}
.product-notice-banner span {
  color: #EF1A1A;
}

.product-info-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  backdrop-filter: blur(2px);
  font-size: 14px;
  padding: 8px 0;
}
.product-info-banner b {
  font-weight: bold;
}

#deliveryModal .modal-backdrop {
  background-color: white;
  height: unset !important;
}
#deliveryModal .delivery-list {
  border-bottom: none;
}
#deliveryModal .delivery-modal {
  padding-top: 0;
}
#deliveryModal .delivery-modal ul {
  padding: 16px 0;
}
#deliveryModal .delivery-modal ul:not(:last-child) {
  border-bottom: 1px solid #f0f2f3;
}
#deliveryModal .modal-header {
  z-index: 10;
  background-color: white;
  color: #222;
}
#deliveryModal .delivery-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}
#deliveryModal .panel-tab {
  padding-top: 60px;
  height: 100vh;
  overflow-y: auto;
}

#addDeliveryModal .delivery_write {
  margin-bottom: 16px;
}
#addDeliveryModal .address {
  margin-top: 10px;
}
#addDeliveryModal .modal-footer {
  border-top: none;
}

#reviewWriteModal .review-evaluate .review-evaluate-title {
  font-size: 0.875rem;
}
#reviewWriteModal .review-evaluate .review-point-text {
  font-size: 0.75rem;
  margin-top: 4px;
}
#reviewWriteModal .review-evaluate .review-point-text .review-point-color {
  color: #099b20;
}
#reviewWriteModal .review-evaluate .stars-container {
  margin-top: 20px;
  margin-bottom: 40px;
}
#reviewWriteModal .form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  margin-bottom: 8px;
}

.reply.modal .modal-content {
  overflow: hidden;
  padding: 20px 16px 40px;
}
.reply.modal .modal-content .modal-body {
  padding: 0;
}
.reply.modal .modal-content .modal-footer {
  padding-bottom: 0;
}

.coupon-use .modal-dialog {
  transform: unset !important;
  height: unset;
}
.coupon-use .modal-dialog .modal-header {
  background-color: white;
  color: black;
  z-index: 2;
  border-bottom: none;
}
.coupon-use .modal-dialog .orderCouponModalBody .coupon_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.coupon-use .modal-dialog .orderCouponModalBody .coupon_list .coupon-item p {
  margin-bottom: 10px;
}
.coupon-use .modal-dialog .modal-footer {
  border-top: none;
}

.modal.center-modal.modal-login .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 95%;
}
.modal.center-modal.modal-login .modal-dialog .modal-content {
  min-height: unset;
}
.modal.center-modal.modal-login .modal-header {
  position: relative;
  height: 30px;
  padding: 0;
}
.modal.center-modal.modal-login .modal-header .modal-title {
  font-size: 14px;
  margin-left: 0;
  padding-right: 0;
}
.modal.center-modal.modal-login .modal-header .Icon_Close {
  right: 0;
}

.modal-header.confirm {
  position: relative;
  display: block;
}
.modal-header.confirm .modal-title {
  text-align: left !important;
}

#deliveryModal .modal-header,
#qnaModal .modal-header {
  border-bottom: none;
}

#postModal .modal-body {
  padding: 60px 0 0;
}
#postModal .modal-body .panel-body {
  padding: 0;
}

.modal-footer.variant {
  line-height: unset !important;
}
.modal-footer.variant .btn-primary {
  height: 48px;
}

.modal-basic-container {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  width: 100%;
  z-index: 999;
}
.modal-basic-container.open {
  display: block;
}
.modal-basic-container .modal-basic-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-basic-container .modal-basic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 8px;
  max-width: 328px;
  width: 100%;
  padding: 16px;
}
.modal-basic-container .modal-basic .modal-basic-header {
  margin-top: 26px;
}
.modal-basic-container .modal-basic .modal-basic-title {
  text-align: center;
}
.modal-basic-container .modal-basic .modal-basic-title h2 {
  font-size: 20px;
  font-weight: 600;
}
.modal-basic-container .modal-basic .modal-basic-title h3 {
  font-size: 15px;
  font-weight: 600;
}
.modal-basic-container .modal-basic .modal-basic-subtitle {
  text-align: center;
  margin-top: 4px;
}
.modal-basic-container .modal-basic .modal-basic-subtitle p {
  font-size: 13px;
  font-weight: 400;
}
.modal-basic-container .modal-basic .modal-basic-body {
  margin-top: 26px;
}
.modal-basic-container .modal-basic .modal-basic-body p {
  font-size: 14px;
  text-align: center;
}
.modal-basic-container .modal-basic .modal-basic-body .product-type2 {
  gap: 0 14px;
  padding-right: 5px;
}
.modal-basic-container .modal-basic .modal-basic-body .product-type2 figure {
  flex: 0 60px;
  border-radius: 4px;
}
.modal-basic-container .modal-basic .modal-basic-body .product-type2 .details {
  display: flex;
  align-items: center;
}
.modal-basic-container .modal-basic .modal-basic-body .product-type2 .details .product-info {
  margin-top: 0;
  flex: 1;
}
.modal-basic-container .modal-basic .modal-basic-body .product-type2 .details .product-info .product-name {
  font-size: 11px;
}
.modal-basic-container .modal-basic .modal-basic-body .product-type2 .details .product-info .product-price {
  margin-top: 0;
}
.modal-basic-container .modal-basic .modal-basic-body .product-type2 .details .product-info .product-price .price-from {
  font-size: 10px;
}
.modal-basic-container .modal-basic .modal-basic-body .product-type2 .details .product-info .product-price .dc {
  font-size: 13px;
}
.modal-basic-container .modal-basic .modal-basic-body .product-type2 .details .product-info .product-price .price {
  font-size: 13px;
}
.modal-basic-container .modal-basic .modal-basic-footer {
  display: flex;
  align-items: center;
  gap: 0 6px;
  margin-top: 26px;
}

#orderSmsModal .common-wrapper table tr:first-child {
  margin-bottom: 10px;
}

.buy_number {
  margin: 0 -15px 37px -15px;
}
.buy_number .icon {
  width: 12px;
  height: 13px;
}
.buy_number p {
  line-height: 12px;
}

.modal .modal-header.confirm {
  border-bottom: none;
}
.modal .modal-header.confirm .modal-title {
  font-size: 14px !important;
}

.modal .modal-footer.confirm {
  border-top: none;
}

.view-delivery-status-modal .status-wrapper {
  padding: 0 15px;
}
.view-delivery-status-modal .status-wrapper ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.view-delivery-status-modal .status-wrapper ul li {
  flex: 1;
  text-align: center;
}
.view-delivery-status-modal .status-wrapper ul .dy_on {
  width: 50px;
}
.view-delivery-status-modal .status-wrapper ul .desc {
  font-size: 14px;
}
@media (max-width: 500px) {
  .view-delivery-status-modal .status-wrapper ul .desc {
    font-size: 12px;
  }
}
.view-delivery-status-modal .delivery-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 15px;
}
.view-delivery-status-modal .table {
  border-top: 1px solid #ddd;
}
.view-delivery-status-modal .table td {
  padding: 10px 15px 0 15px;
}
.view-delivery-status-modal .table td.status {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  padding-top: 0;
}

#orderCanceReqModal .modal-footer {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
  border-top: none;
}
#orderCanceReqModal .subject {
  font-weight: 500;
}
#orderCanceReqModal .price {
  font-weight: 500;
}

#loginModal {
  z-index: 100001;
}

.purchase-wrapper-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  max-width: 480px;
  margin: 0 auto;
  z-index: 9999;
}
.purchase-wrapper-bg.active {
  display: block;
}

.cart-modal-style {
  display: flex;
  flex-direction: column;
  background-color: white !important;
  border-top: 2px solid #21a12e;
  box-shadow: 0px 0px 18px 3px rgba(1, 1, 1, 0.2);
}
.cart-modal-style .selected-product-container {
  flex: 0;
  background-color: white;
}
.cart-modal-style .panel-body.option {
  flex: 0;
  background-color: white;
}
.cart-modal-style .cart-option-holder {
  flex: 1 auto;
  overflow-y: auto;
  background-color: white;
}
.cart-modal-style .cart-purchase-footer {
  flex: 0;
  background-color: white;
  border-top: 1px solid #21a12e;
}
.cart-modal-style .cart-purchase-footer .panel-footer {
  padding: 16px;
}
.cart-modal-style .cart-purchase-footer .detail-footer {
  padding: 16px 16px 36px 16px;
}
.cart-modal-style .detail-purchasewrapper-inner {
  flex: 1 auto;
  overflow-y: scroll;
  transition: all 0.3s;
  transform-origin: bottom center;
}
.cart-modal-style .detail-purchasewrapper-inner::-webkit-scrollbar {
  display: none;
}
.cart-modal-style .detail-purchasewrapper-inner .product-container {
  padding: 0;
}
.cart-modal-style .cart-divider {
  width: 100%;
  height: 3px;
  background-color: #f0f2f3;
}

.complete-cart-container {
  display: flex;
  flex-direction: column;
  border-top: 2px solid #21a12e;
}
.complete-cart-container .goto-cart-link-container {
  flex: 0;
  background-color: white;
}
.complete-cart-container .complete-cart-inner {
  flex: 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 20px;
  background-color: white;
}

.cart-recommend-panel {
  padding: 0 16px;
}
.cart-recommend-panel .product-info {
  margin-bottom: 6px;
}
.cart-recommend-panel .product-info .product-name {
  font-size: 12px;
  height: 32px;
}
.cart-recommend-panel .product-info .product-price .dc {
  font-size: 12px;
  letter-spacing: -0.7px;
}
.cart-recommend-panel .product-info .product-price .price {
  font-size: 12px;
  letter-spacing: -0.7px;
}
.cart-recommend-panel.detail-page {
  margin: 20px 0;
}

.cart-recommend-container {
  margin-top: 20px;
}

.cart-recommend-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}
.cart-recommend-title .product-group-icon {
  width: 24px;
  height: 24px;
}

.detail-cart-division-line {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

.product-type3-recommend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px 8px;
}

.cart-options {
  position: fixed;
  bottom: 0;
  max-width: 480px;
  width: 100%;
  background-color: white;
  padding: 15px;
  z-index: 99999;
}

.detail-add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}
.detail-add-to-cart-btn .btn-purchase {
  flex: 1;
}

.swiper-controller:hover {
  cursor: pointer;
}
.swiper-controller.slidetype4.round-style {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50vh;
  height: unset;
  top: 10px;
  right: 10px;
  font-size: 12px !important;
  font-weight: bold;
  padding: 4px 8px 4px 7px;
}
.swiper-controller.slidetype4.round-style .view-all {
  text-decoration: underline;
}
.swiper-controller.slidetype4.round-style .swiper-pagination {
  bottom: 0 !important;
  height: unset;
  width: 34px;
  padding-left: 0;
  padding-right: 4px;
  font-variant-numeric: tabular-nums;
}
.swiper-controller.slidetype4.round-style .swiper-pagination .arrowimgbox {
  background-color: transparent;
}
.swiper-controller.slidetype4.round-style .swiper-pagination .swiper-pagination-current {
  font-size: 12px !important;
  font-weight: bold;
}
.swiper-controller.slidetype4.round-style .swiper-pagination .swiper-pagination-total {
  font-size: 12px !important;
}

.free-shipping-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.purchase-option .option {
  padding-bottom: 0;
}

.detail-purchase-options .option .form-group:not(:last-child) {
  margin-bottom: 15px !important;
}

.detail-purchasewrapper .option .form-group:not(:last-child) {
  margin-bottom: 15px !important;
}

.option_write {
  margin-bottom: 15px;
}

.payment-wrapper .order-payment-info .panel-body.order_item .order-info .media.last-media {
  border-bottom: 0;
}

.payment-wrapper .media p.option {
  font-size: 12px;
}

.col4-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

:root {
  --transitionLength: 0.3s;
  --transitionTiming: ease;
}

.accordion-animation-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transitionLength) var(--transitionTiming);
}

.accordion-item.active .accordion-animation-wrapper {
  grid-template-rows: 1fr;
}
.accordion-item.active .accordion-trigger {
  font-weight: bold;
}
.accordion-item.active .keyword-carat {
  transform: rotate(180deg);
}

/* Margins inside the container will throw animation height calculations off, better use paddings */
.accordion-item {
  margin-bottom: -1px;
  overflow: hidden;
}

.accordion-trigger-input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px 0;
  transition: box-shadow var(--transitionLength) var(--transitionTiming);
  z-index: 1;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  color: #222;
  border-top: 1px solid #D5E2E4;
}
.accordion-trigger .keyword-carat {
  transition: transform var(--transitionLength) var(--transitionTiming);
}

.accordion-content {
  max-width: 450px;
  width: 100%;
  border-bottom: 1px solid #D5E2E4;
  overflow: hidden;
}

.pickup-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #383f45;
  font-size: 14px;
  font-weight: bold;
  background-color: #f7f7f7;
  border: 1px solid #d5e2e4;
  border-radius: 4px;
  padding: 16px 0;
}
.pickup-notice span {
  color: #03991a;
}

.single-page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 0;
}
.single-page-header h1 {
  font-size: 15px;
  font-weight: 600;
}

.page-container {
  padding: 0 15px;
  margin-top: 40px;
}

.join-complete-header p {
  color: #383f45;
  font-size: 15px;
  line-height: 24px;
}
.join-complete-header h1 {
  color: #383f45;
  font-size: 24px;
  font-weight: bold;
}
.join-complete-header h1 .name {
  color: #099b20;
}

.join-complete-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #eaf6ec;
  border-radius: 4px;
  padding: 24px 0;
  margin-top: 24px;
}
.join-complete-banner h1 {
  color: #383f45;
  font-size: 24px;
  font-weight: bold;
}
.join-complete-banner h1 span {
  color: #099b20;
}

.join-complete-links {
  margin-top: 40px;
}
.join-complete-links h1 {
  color: #383f45;
  font-size: 19px;
  font-weight: bold;
}
.join-complete-links .division-line {
  width: 100%;
  height: 1px;
  background-color: #d5e2e4;
  margin-top: 8px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.link-list .list-title {
  color: #383f45;
  font-size: 16px;
  font-weight: bold;
}
.link-list .list-desc {
  color: #383f45;
  font-size: 13px;
  margin-top: 6px;
}
.link-list .list-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #099b20;
  font-size: 13px;
  font-weight: bold;
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #21a12e;
  margin-top: 8px;
}

.join-banner-container {
  margin-top: 40px;
}
.join-banner-container .temp-banner-img {
  width: 100%;
}

.join-complete-footer {
  position: fixed;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  width: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
.join-complete-footer .btn-primary {
  font-size: 15px;
  padding: 16px 0;
}

.pickup-address p {
  font-size: 14px;
}
.pickup-address .button-reset {
  margin-top: 10px;
}

.pickup-notice-label {
  color: #6e777c;
  font-size: 0.813rem;
  margin: 8px 0;
}

.pickup-notice-container {
  background-color: #f7f7f7;
  border: 1px solid #d5e2e4;
  border-radius: 4px;
  padding: 16px;
}

.keyword-type1-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-badge-list {
  width: 60px;
  margin-right: 2px;
}

.product-badge-detail {
  width: 88px;
  margin-right: 5px;
}

.soldout-badge {
  display: none;
  margin-bottom: 8px;
}

.baskset-soldout-item .media-body .soldout-badge {
  display: block;
}
.baskset-soldout-item .media-body .item_option {
  color: #8095a0 !important;
}
.baskset-soldout-item .media-body .delivery_free {
  color: #8095a0 !important;
}
.baskset-soldout-item .media-body .row_goods_fee {
  color: #8095a0 !important;
}
.baskset-soldout-item .media-body .getmoney {
  color: #8095a0 !important;
}
.baskset-soldout-item .media-body .counter-container {
  display: none;
}
.baskset-soldout-item .media-body span {
  color: #8095a0 !important;
}
.baskset-soldout-item .item_title label {
  color: #8095a0 !important;
}

#replyModal .modal-content {
  padding-bottom: 20px;
}
#replyModal .modal-body {
  height: unset;
}
#replyModal .reply-textarea {
  height: 80%;
}
#replyModal .reply-modal-footer {
  margin-top: 0;
}

.title-image-container {
  background-color: #ffdfdf;
  width: 100%;
  margin-bottom: 24px;
}

.bottom-sheet-container {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 999999;
  width: 100%;
  height: 100dvh;
  max-width: 480px;
}
.bottom-sheet-container .bottom-sheet-bg {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}
.bottom-sheet-container .bottom-sheet-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  max-height: 90dvh;
  background-color: white;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: bottom 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bottom-sheet-container .bottom-sheet-content .recommend-header {
  flex: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.bottom-sheet-container .bottom-sheet-content .recommend-title {
  font-size: 20px;
  font-weight: bold;
}
.bottom-sheet-container .bottom-sheet-content .recommend-fullpage-content {
  flex: 1 auto;
  overflow-y: auto;
  padding-bottom: 16px;
}
.bottom-sheet-container .bottom-sheet-content .recommend-footer {
  flex: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e0e0e0;
}
.bottom-sheet-container .bottom-sheet-content .recommend-footer .total-price {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 12px 0;
  color: #383f45;
}
.bottom-sheet-container .bottom-sheet-content .recommend-footer .total-price .total {
  font-weight: bold;
  color: #099b20;
}
.bottom-sheet-container .bottom-sheet-content .recommend-footer .order-btn {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  padding: 16px 0;
  border: none;
  background-color: #21a12e;
  color: white;
}
.bottom-sheet-container.active {
  visibility: visible;
  opacity: 1;
}
.bottom-sheet-container.active .bottom-sheet-content {
  bottom: 0;
}

.requirement-info-container {
  margin-bottom: 12px;
}
.requirement-info-container table {
  margin-bottom: 0;
}
.requirement-info-container .goshi-list-bottom {
  display: none;
  border-top: none !important;
}
.requirement-info-container .goshi-list-bottom.active {
  display: table;
}

.btn-detail-more {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  color: #21a12e;
}
.btn-detail-more.active .icon-tabler-circle-chevron-down {
  transform: rotate(180deg);
}
.btn-detail-more .icon-tabler-circle-chevron-down {
  width: 20px;
  height: 20px;
}

.portlet-title-2 {
  padding: 16px 0;
}

.portlet-title-img {
  width: 100%;
}