/*-----------------------------------------------------------------*/
/* CSS Table of Contents
/*-----------------------------------------------------------------*/
/*
1. Reset

2. Global
2-1. table
2-2. button
2-3. product

3. Layout
3-1. wrapper
3-2. header
3-3. content
3-4. footer

4. Page
4-1. 메인
4-2. 상점
4-3. 회원
4-4. 마이페이지
4-5. 추가페이지

5. ETC

/*-----------------------------------------------------------------*/
/* 1. Reset
/*-----------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  outline: 0;
  font-family: 'Pretendard', 'Outfit', 'Apple SD Gothic Neo', 'sans-serif';
  line-height: normal;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.6;
}
ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: top;
}
input[type='radio'],
input[type='checkbox'] {
  margin: 0;
  vertical-align: middle;
}
label.input_radio {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 22px;
  vertical-align: middle;
  cursor: pointer;
}
label.input_radio input[type='radio'] {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
}
label.input_radio input[type='radio'] + span {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  letter-spacing: -0.07px;
  cursor: default;
}
label.input_radio input[type='radio'] + span:before {
  flex: none;
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 100px;
  border: 1px solid #666666;
}
label.input_radio input[type='radio'] + span:after {
  flex: none;
  display: none;
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background-color: #000000;
  transform: translateY(-50%);
}
label.input_radio input[type='radio']:checked + span {
  font-weight: 500;
}
label.input_radio input[type='radio']:checked + span:before {
  border-color: #000000;
}
label.input_radio input[type='radio']:checked + span:after {
  display: block;
}
input[type='text'],
input[type='email'],
input[type='password'] {
  vertical-align: top;
}

/*-----------------------------------------------------------------*/
/* 2. Global
/*-----------------------------------------------------------------*/

.dn {
  display: none !important;
}
.hidden {
  visibility: hidden;
  overflow: hidden;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
}
.tac {
  text-align: center !important;
}
.tal {
  text-align: left !important;
}
.tar {
  text-align: right !important;
}
.empty {
  padding: 100px 0 !important;
  text-align: center;
  font-size: 16px;
}
.fl {
  float: left !important;
}
.fr {
  float: right !important;
}
.clear {
  clear: both;
}
.bc {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p_color {
  color: #d53838 !important;
}
.p_cursor {
  cursor: pointer;
}
.i_info {
  display: inline-block;
  position: relative;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/icon_info.png') no-repeat center;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

/* input 기본 스타일 */
.form_input {
  height: 40px;
  padding: 14px 16px;
  /* border: 1px solid #CCC; */
  background: #FFF;
  background: #fff;
  color: #666;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.form_input:focus {
  outline: none !important;
}
.form_input.block {
  width: 100% !important;
  border-radius: 4px;
  margin-top: 8px;
  border: 1px solid #ccc;
}
.form_input:-ms-input-placeholder {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}
.form_input::-webkit-input-placeholder {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}
.form_input::-moz-placeholder {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}
.form_input.readonly {
  background: #e0e0e0 !important;
}
.form_input.gray {
  background: #fafafa;
}
.form_input.gray:focus {
  background: #fff;
}
textarea.form_input {
  width: 100%;
  height: 102px;
  padding: 14px 16px;
  font-size: 16px;
  color: #666;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 4px;
  
}
input[name='file'] {
  display: flex;
  height: 34px;
  padding: 10px;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  border: 1px solid var(--gray_line, #e0e0e0);
  background: var(--Color, #fff);
}

/* 셀렉트 */

select {
  max-width: 100%;
  border-radius: 4px;
  max-height: 53px;
  padding: 12px 36px 12px 16px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: var(--neutral-800, #262626) !important;
  border: 1px solid #CCC;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23A1A1A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")no-repeat right 16px center / 16px 16px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
select.block {
  width: 100%;
}
select:focus {
  outline: none !important;
}

/* 서브 페이지 타이틀 */
/* h2.subtitle {padding:40px 0; font-style:italic; font-size:24px; font-weight:normal;} */

/* 페이지 내 타이틀 */
h3.title.first {
  padding-top: 0;
}
h3.title {
  padding: 0 0 24px 0;
  color: var(--neutral-800, #262626);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px; /* 130.769% */
}

h3.title.first.logout{
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; 
  text-align: center;
  padding-bottom: 48px;
}

/* 갯수 문단 */
.title_count {
  position: relative;
  top: -60px;
  height: 0;
  color: #999;
  font-size: 14px;
}
.title_count strong {
  color: #343434;
  font-size: 14px;
}

/* 상품리스트 수량,정렬선택 */
.total_sort {
  clear: both;
  height: 35px;
  margin: 16px 0 32px 0;
}
.total_sort .total {
  float: left;
  color: var(--neutral-500, #737373);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;  
}

.total_sort .total span{
  font-weight: 700;
  color: var(--neutral-800, #262626);
}
.total_sort .sort {
  float: right;
}
.total_sort .sort select {
  float: right;
  border: none;
  color: var(--neutral-500, #737373) !important;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

/* 페이징 */
.paging {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  gap: 6px;
}

.paging li strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  font-weight: 500;
  font-size: 14px;
  background-color:  var(--neutral-800, #262626);
  color: white;
  border: 1px solid #000;
  border-radius: 4px;
}
.paging li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  cursor: pointer;
  /* border-top: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5; */
}
.paging li a:has(.prev) {
  border: none;
}
.paging li a:has(.next) {
  border: none;
}

.paging li .btn_prev {
  width: 30px;
  height: 30px;
  background: url('/_skin/radiwell_kor_2/img/common/arr_page.png') no-repeat 50% 50%;
  transform: rotate(180deg);
}
.paging li .btn_next {
  width: 30px;
  height: 30px;
  background: url('/_skin/radiwell_kor_2/img/common/arr_page.png') no-repeat 50% 50%;
}
.paging li .btn_prev:disabled {
  opacity: 0.2;
}
#detail_multi_option > div > .custom-dropdown > div> div{
  width: 86px;
}
/* 박스 스타일 - 수량 */
.box_qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 98px;
  height: 28px;
  vertical-align: top;
  border-radius: 6px;
  border: 1px solid var(--neutral-200, #E5E5E5);
  background: #FFF;
}
.box_qty .form_input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px !important;
  height: 100%;
  padding: 0;
  color: var(--neutral-800, #262626);
  text-align: center;
  /* border-top: 1px solid var(--neutral-200, #E5E5E5); */
  border-right: 1px solid var(--neutral-100, #F5F5F5);
  /* border-bottom: 1px solid var(--neutral-200, #E5E5E5); */
  border-left: 1px solid var(--neutral-100, #F5F5F5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
}
.box_qty a {
  position: absolute;
  top: 0px;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#detail_multi_option > div > div.custom-dropdown > div> div{
  border: 0;
  background-color: transparent;
}

#detail_multi_option > div > div.custom-dropdown > div> div > input{
  border: 0px;
  background-color: transparent;
}

.custom-dropdown > div > div > div > a.ea_up {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 10.5V17.5M10.5 14H17.5' stroke='%23262626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 28px;
  height: 28px;
  border: 1px solid var(--neutral-200, #E5E5E5);
  border-radius: 50px;
}

.custom-dropdown > div > div > div > a.ea_down {
  left: 0px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 14H17.5' stroke='%23262626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 28px;
  height: 28px;
  border: 1px solid var(--neutral-200, #E5E5E5);
  border-radius: 50px;
}
.custom-dropdown > div > div > div > a.ea_down.disabled {
  pointer-events : none;
  opacity : 0.3;
}

.box_qty .minus {
  left: 0px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 14H17.5' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 28px;
  height: 28px;
}

.box_qty .plus {
  right: 0px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 10.5V17.5M10.5 14H17.5' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 28px;
  height: 28px;
}

.box_qty a.ea_up {
  right: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5V19M5 12H19' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}
.box_qty a.ea_down {
  left: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

/* 컬러칩 리스트 */
.color_option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0;
}
.color_option li {
  flex: none;
}
.color_option li button {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 100px;
}
.color_option li button.selected {
  border: 2px solid #000000;
}
.color_option li button img {
  width: 100%;
  height: 100%;
}
.text_option {
  font-size: 0;
}
.text_option:after {
  display: block;
  clear: both;
  content: '';
}
.text_option li {
  float: left;
  text-align: left;
}
.text_option li a {
  overflow: hidden;
  display: block;
  height: 20px;
  margin: 1px;
  padding: 0 6px;
  border: 1px solid #d8d8d8;
  line-height: 20px;
  text-align: center;
}
.text_option li a.selected {
  border: 1px solid #ff1111;
}
.text_option li a.soldout {
  background: #ff1111;
  color: #fff;
}

/* 하단 줄 */

/* 상품후기 평점 */
.gradebox {
  display: inline-block;
  position: relative;
  width: 191px;
  height: 32px;
  background: url('../../../_image/svg/ico_star_5_before.svg') no-repeat left top/auto 100%;
  font-size: 0;
}
.gradebox:after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: url('../../../_image/svg/ico_star_5.svg') no-repeat left top/auto 100%;
  content: '';
}
.gradebox.small {
  width: 96px;
  height: 16px;
  background: url('../../../_image/svg/ico_star_5_before.svg') no-repeat 0 0;
  background-size: 88px;
}
.gradebox.small:after {
  background: url('../../../_image/svg/ico_star_5.svg') no-repeat 0 0;
  background-size: 88px;
}
.gradebox.point1:after {
  width: 16%;
}
.gradebox.point2:after {
  width: 34%;
}
.gradebox.point3:after {
  width: 53%;
}
.gradebox.point4:after {
  width: 73%;
}
.gradebox.point5:after {
  width: 100%;
}
.gradebox.write label {
  display: inline-block !important;
  position: relative;
  z-index: 10;
  width: 30.8px;
  height: 100%;
  opacity: 0;
  font-size: 0;
  cursor: pointer;
}
.gradebox.write input {
  cursor: pointer;
}

/* 사은품 리스트 */
.list_gift > h3 {
  padding-bottom: 15px;
}
.list_gift > ul {
  border: 1px solid #e5e5e5;
  border-width: 1px 0;
  font-size: 0;
}
.list_gift > ul > li {
  display: inline-block;
  width: 25%;
  margin-bottom: -1px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: middle;
}
.list_gift > ul > li > .box {
  margin-left: 20px;
  border-right: 1px solid #e5e5e5;
}
.list_gift > ul > li:last-child > .box,
.list_gift > ul > li:nth-child(4n) > .box {
  border-right: 0;
}
.list_gift > ul > li > .box > .img {
  display: table-cell;
  position: relative;
  width: 100px;
  height: 100px;
  border: 1px solid #e5e5e5;
}
.list_gift > ul > li > .box > .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}
.list_gift > ul > li > .box > .name {
  display: table-cell;
  padding: 0 20px 0 10px;
  vertical-align: middle;
}

/* 쿠폰 다운로드 리스트 */
.list_cpn_down > .box {
  padding: 0 30px 30px 30px;
  border: 1px solid #dcdcdc;
}
.list_cpn_down > .box > ul {
  display: flex;
  flex-wrap: wrap;
}
.list_cpn_down > .box > ul > li {
  width: 25%;
  margin-top: 30px;
  padding: 0 20px;
  border-right: 1px solid #eee;
  text-align: center;
  vertical-align: top;
}
.list_cpn_down > .box > ul > li:last-child,
.list_cpn_down > .box > ul > li:nth-child(4n) {
  border-right: 0;
}
.list_cpn_down > .box > ul > li > .sale {
  display: inline-block;
  position: relative;
  min-width: 100px;
  height: 40px;
  padding: 0 10px 0 26px;
  border: 1px solid #999;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 38px;
}
.list_cpn_down > .box > ul > li > .sale:before {
  position: absolute;
  left: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border: 1px solid #999;
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
  background-color: #fff;
  transform: rotate(45deg);
  content: '';
}
.list_cpn_down > .box > ul > li > .sale:after {
  position: absolute;
  left: 16px;
  top: 0;
  width: 1px;
  height: 100%;
  border-right: 1px dashed #999;
  content: '';
}
.list_cpn_down > .box > ul > li > .name {
  margin: 10px 0;
  font-weight: bold;
}
.list_cpn_down > .box > ul > li > .box_btn * {
  min-width: 100px;
}
.list_cpn_down > .box > ul > li > .fin {
  display: inline-block;
  min-width: 100px;
  padding: 4px 8px;
  border: 1px solid #c3c3c3;
  outline: none;
  background: #fff;
  color: #666 !important;
  line-height: 1.4;
  white-space: nowrap;
}

.list_cpn_down > .box > ul > li > .not {
  display: inline-block;
  min-width: 100px;
  padding: 4px 8px;
  outline: none;
  background: #fff;
  color: #666 !important;
  line-height: 1.4;
  white-space: nowrap;
}

/* 타이머 */
.box_timer {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  background: #ededed;
  border-radius: 50px;
  font-size: 0;
}
.box_timer > .title {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  height: 37px;
  padding: 0 14px 0 10px;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  border-radius: 100px;
  background-color: #000000;
}
.box_timer > .title:before {
  flex: none;
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background: url('/_skin/radiwell_kor_2/img/shop/icon_time.png') no-repeat;
  background-size: 100% 100%;
  content: '';
}
.box_timer > ._timesale_timer {
  display: inline-flex;
  align-items: center;
  height: 37px;
  padding: 0 14px 0 10px;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  border-radius: 100px;
  background-color: #ededed;
}
.box_timer > ._timesale_timer * {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.box_timer > ._timesale_timer ._timer_split_0 {
  margin-right: 8px;
}
.box_timer > ._timesale_timer ._timer_split_1,
.box_timer > ._timesale_timer ._timer_split_2 {
  margin: 0 4px;
}
.box_timer.big > ._timesale_timer * {
  font-size: 16px;
  line-height: 29px;
}

/* 이메일 자동 완성 */
.auto_complete_dialog {
  display: none;
  position: absolute;
  z-index: 10;
  width: 100%;
  margin-top: -1px;
  padding: 10px 0;
  border: 1px solid #535353;
  background-color: #fff;
  word-break: break-all;
}
.auto_complete_dialog li {
  padding: 5px 20px;
  font-size: 14px;
  cursor: pointer;
}
.auto_complete_dialog li:hover,
.auto_complete_dialog li.selected {
  background-color: #f0f2f6;
}
#join_input .auto_complete_dialog {
  width: 512px;
}

/* 체크박스, 라디오 */
.check_chg input[type='checkbox'] {
  display: none;
}
.check_chg input[type='checkbox'] + label {
  display: inline-block;
  background: url('../../../_image/svg/icon_confirm_off.svg') no-repeat;
  background-size: 24px;
  font-size: 14px;
  vertical-align: top;
  cursor: pointer;
}
.check_chg input[type='checkbox']:checked + label {
  background-image: url('../../../_image/svg/icon_confirm_on.svg');
  background-size: 24px;
}
.check_chg.black input[type='checkbox']:checked + label {
  background-image:  url('../../../_image/svg/icon_confirm_on.svg');
  background-size: 24px;
}
.radio_chg input[type='radio'] {
  display: none;
}
.radio_chg input[type='radio'] + label {
  display: inline-block;
  min-height: 22px;
  padding-left: 30px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/bullet_radio.png') no-repeat left center;
  background-size: 22px;
  vertical-align: top;
  cursor: pointer;
  align-items: center;
  display: grid;
}
.radio_chg input[type='radio']:checked + label {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/bullet_radio_checked.png') ;
  background-size: 22px;
}


.checkbox_icon {
  width: 24px !important;
  height: 24px !important;
  display: block;
}
/* 체크박스 디자인 */
.checkbox_label{
  display: flex;
}

.checkbox_label input {
  display: none;
}


.checkbox_icon::before{
  content:'';
  display: block;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  background-repeat: no-repeat; 
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' fill='%23CCCCCC'/%3E%3Cpath d='M6.34766 12.4348L10.6955 15.9131L17.652 8.08698' stroke='white' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
}

/* checked */
.checkbox_label input:checked + .checkbox_icon::before{
  content:'';
  display: block;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  background-repeat: no-repeat; 
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' fill='black'/%3E%3Cpath d='M6.34766 12.4348L10.6955 15.9131L17.652 8.08698' stroke='white' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}


/*-----------------------------------------------------------------*/
/* 2-1. table
/*-----------------------------------------------------------------*/

/* 테이블 스타일 - 가로 */
.tbl_col {
  table-layout: fixed;
  clear: both;
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.tbl_col caption {
  padding-bottom: 16px;
  font-weight: bold;
  text-align: left;
  font-size: 16px;
}

.tbl_col > thead > tr {
  padding: 15px 0;
  border-top: 2px solid var(--black, #000);
  background: var(--neutral-50, #FAFAFA);
  border-bottom: 1px solid var(--neutral-200, #E5E5E5);
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}

.tbl_col > tbody > tr {
  padding: 15px 0;
  border-bottom: 0.5px solid var(--neutral-200, #E5E5E5);
}

.tbl_col > thead > tr > th {
  padding: 15px 0;
  text-align: center;
  vertical-align: middle;
  color: var(--neutral-800, #262626);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}
.tbl_col > tbody > tr > td {
  padding: 24px 0 24px 0;
  vertical-align: top;
  text-align: center;
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.tbl_col > tbody > tr > td * {

  font-size: 16px;
  font-weight: 400;
  line-height: 150%; 
}
.tbl_col > tbody > tr > td > strong {
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%; 
}
.tbl_col > tbody > tr > td img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.tbl_col > tbody > tr > td.num {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.07px;
  color: #8d8d8d;
}
.tbl_col > tbody > tr > td.tal {
  text-align: left;
  padding-left: 16px;
  padding-right: 10px;
  align-items: center;
  gap: 16px;
}
.tbl_col > tbody > tr > td.img img {
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  overflow: hidden;
}
.tbl_col > tbody > tr > td.order_number a {
  font-weight: bold;
  text-decoration: underline;
}
.tbl_col > tbody > tr > td .set_label {
  display: inline-block;
  padding: 0 10px;
  border: 1px solid #d53838;
  border-radius: 17px;
  color: #d53838;
  text-align: center;
  vertical-align: middle;
}

/* 테이블 스타일 - 가로 - 장바구니, 재입고 알림 신청 내역 */
/* .tbl_col.prd > tbody > tr > td {padding:0;} */
.tbl_col.prd > tbody > tr > td.delete_wish {
  font-size: 0;
}
.tbl_col.prd > tbody > tr > td.delete_wish span {
  display: inline-block;
  position: relative;
  vertical-align: top;
}
.tbl_col.prd > tbody > tr > td.delete_wish span:after {
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: 15px;
  background: #e0e0e0;
  content: '';
}
.tbl_col.prd > tbody > tr > td.delete_wish span:first-child:after {
  display: none;
}
.tbl_col.prd > tbody > tr > td.delete_wish span a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: no-repeat center;
  color: transparent;
  font-size: 0;
}
.tbl_col.prd > tbody > tr > td.delete_wish span.delete a {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_delete.png');
}
.tbl_col.prd > tbody > tr > td.delete_wish span.wish a {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_wish.png');
}
.tbl_col.prd > tbody > tr > td.delete_wish span.wish a.wish_on {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_wish_on.png');
}
.tbl_col.prd > tbody > tr > td .btn_edit {
  display: inline-block;
  vertical-align: top;
}
.tbl_col.prd > tbody > tr > td .btn_edit a {
  font-size: 11px;
  text-decoration: underline;
  line-height: 35px;
}
.tbl_col.prd > tbody > tr > td .btn_delivery {
  margin: 4px 0;
}
.tbl_col.prd > tbody > tr > td img {
  vertical-align: middle;
}
.tbl_col.prd > tbody > tr > td .today {
  padding-top: 10px;
}
.tbl_col.prd > tbody > tr > td .today > span {
  display: block;
  color: #666;
}
.tbl_col.prd > tbody > tr > td span.stat1 {
  color: #111;
}
.tbl_col.prd > tbody > tr > td span.stat2 {
  color: #2591bc;
}
.tbl_col.prd > tbody > tr > td span.stat3 {
  color: #c05b5b;
}
.tbl_col.prd > tbody > tr > td span.stat4 {
  color: #999;
}

/* 테이블 스타일 - 가로 - 장바구니, 세트상품 */
.tbl_col.prd > tbody > tr.set {
  background-color: #fdfdfd;
}
.tbl_col.prd > tbody > tr.set td {
  padding-top: 10px;
  padding-bottom: 10px;
}
.tbl_col.prd > tbody > tr.set td.prdimg {
  padding-left: 20px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_set.png') no-repeat left 5px center;
}

/* 테이블 스타일 - 가로 - qna, review */
.tbl_col.board {
  border-bottom: 1px solid #e5e5e5;
}
/* .tbl_col.board > thead {
  display: none;
} */
.tbl_col.board > tbody > tr:first-child td {
  border-top: 0;
}
.tbl_col.board > tbody > tr > td {
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
  /* border-top: 1px solid #e5e5e5 !important; */
  border-bottom: 0;
}
.tbl_col.board > tbody > tr > td * {
  color: #444;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.tbl_col.board > tbody > tr > td.notice_cnt {
  padding: 0;
  border: 0;
}
.tbl_col.board > tbody > tr > td.notice_cnt .notice_cnt_frame {
  display: none;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  background: #fafafa;
  text-align: left;
  word-break: break-all;
  word-wrap: break-word;
}
.tbl_col.board > tbody > tr > td.subject img {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.tbl_col.board > tbody > tr > td.subject .reply_before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 22px;
  margin-left: 22px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.06px;
  color: #8d8d8d;
  border: 1px solid #c6c6c6;
  border-radius: 100px;
}
.tbl_col.board > tbody > tr > td.subject .reply_done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 22px;
  margin-left: 22px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.06px;
  color: #ffffff;
  border: 1px solid #666666;
  border-radius: 100px;
  background-color: #666666;
}
.tbl_col.board > tbody > tr > td.subject .prd {
  padding-bottom: 10px;
}
.tbl_col.board > tbody > tr > td.subject .title,
.tbl_col.board > tbody > tr > td.subject .title * {
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
.tbl_col.board > tbody > tr > td.subject .title a {
  cursor: pointer;
}
.tbl_col.board > tbody > tr > td.subject .content {
  padding-top: 10px;
}
.tbl_col.board > tbody > tr > td.subject .more {
  display: inline-block;
  padding-top: 10px;
  color: #666;
  font-weight: bold;
}
.tbl_col.board > tbody > tr > td.subject a {
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
}
.tbl_col.board > tbody > tr > td.subject .answer {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  min-width: 60px;
  height: 22px;
}
/* .tbl_col.board > tbody > tr > td.subject .answer.wait {
  border: 1px solid #e0e0e0;
} */
.tbl_col.board > tbody > tr > td.subject .answer.complete {
  background: #666;
  color: #fff;
}
.tbl_col.board > tbody > tr > td.num {
  color: #444;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.tbl_col.board > tbody > tr > td.name {
  color: #444;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 185.714% */
  text-align: center;
}
.tbl_col.board > tbody > tr > td.name img {
  width: auto;
  height: 20px;
}
.tbl_col.board > tbody > tr > td.date {
  color: #444;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}
.tbl_col.board > tbody > tr > td b {
  color: #333;
  font-weight: 700;
}
.tbl_col.board > tbody > tr > td .best {
  display: inline-block;
  padding: 0 3px;
  background: #f00;
  color: #fff !important;
}
.tbl_col.board .grade {
  padding-left: 5px;
  font-size: 16px;
  font-weight: bold;
}
.tbl_col .present_black {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 1px 6px !important;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  margin-bottom: 10px;
  height: 27px;
  line-height: 27px;
}

.tbl_col .present_black > label {
  font-weight: 600;
  color: #fff;
}

/* 테이블 스타일 - 세로 */
.tbl_row {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #e0e0e0;
}
.tbl_row caption {
  padding-bottom: 20px;
  font-weight: bold;
  text-align: left;
}
.tbl_row th {
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}
.tbl_row td {
  padding: 15px 10px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: middle;
  word-break: break-all;
  word-wrap: break-word;
  font-size: 14px;
}

/* 테이블 스타일 - 주문서, 주문상세조회 */
.tbl_order {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
}
.tbl_order caption {
  padding-bottom: 20px;
  font-weight: bold;
  text-align: left;
}
.tbl_order th {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-width: 0 1px 1px 0;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}
.tbl_order th label {
  font-size: 14px;
}
.tbl_order td {
  padding: 20px 0;
  text-align: left;
  vertical-align: middle;
}
.tbl_order td .form_input {
  width: 260px;
  border: 1px solid #e5e5e5;
}
.tbl_order td .msg {
  color: #999;
  font-size: 11px;
}
.tbl_order td .own_mileage,
.tbl_order td .own_deposit {
  color: rgb(var(--brand-color));
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 22px;
}
.tbl_order td.edit {
  line-height: 30px;
}
.tbl_order td.address p {
  margin-top: 10px;
}
.tbl_order td.address p:first-child {
  margin-top: 0;
}
.tbl_order td.address .zip .form_input {
  width: 158px;
}

/* 테이블 스타일 - 주문서, 주문상세조회, 장바구니 */
.tbl_order2 {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
}
.tbl_order2 caption {
  padding-bottom: 20px;
  font-weight: bold;
  text-align: left;
}
.tbl_order2 th {
  padding: 6px 0;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
}
.tbl_order2 td {
  padding: 6px 0;
  text-align: right;
  vertical-align: middle;
  font-size: 14px;
}
.tbl_order2 td span {
  font-size: 14px;
}
.tbl_order2.sale {
  margin: 5px 0;
  border: 1px solid #dcdcdc;
  border-width: 1px 0;
}
.tbl_order2 .total td {
  position: relative;
}
.tbl_order2 .total td .view_info {
  display: none;
  margin-top: 5px;
}
.tbl_order2 .total_price,
.tbl_order2 .total_price * {
  color: rgb(var(--brand-color));
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 28px;
}

.couponselectBox {
  border: 1px solid #CCC;
  display: flex;
  padding: 14px 16px;
  align-items: center;
  min-height: 52px;
  margin-bottom: 8px;
}

.couponselectBox:disabled {
  background-color: #EEE;
  color: #888;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 157.143% */
}


.cpu_info {
  padding: 8px 16px;
  align-items: center;
  color: #888;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}
/* 테이블 스타일 - 상품정보고시 */
.tbl_prdinfo {
  table-layout: fixed;
  width: 100%;
}
.tbl_prdinfo caption {
  padding-bottom: 20px;
  font-weight: bold;
  text-align: left;
}
.tbl_prdinfo th {
  padding: 12px;
  font-weight: normal;
  text-align: left;
  color: var(--neutral-800, #262626);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 157.143% */
  vertical-align: middle;
}
.tbl_prdinfo td {
  padding: 12px;
  text-align: left;
  color: #444;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  vertical-align: middle;
}

.tbl_prdinfo tr {
  border-bottom: 1px solid #E5E5E5;
}
.tbl_prdinfo tr:last-child {
  border-bottom: none;
}


/*-----------------------------------------------------------------*/
/* 2-2. button
/*-----------------------------------------------------------------*/

/* 버튼스타일 - 기본 */
.box_btn {
  display: inline-block;
  text-align: center;
  vertical-align: top;
}
.box_btn > * {
  display: inline-block;
  margin: 0;
  padding: 8px 16px;
  outline: none;
  background: var(--neutral-800, #262626);
  color: #fff !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  vertical-align: middle;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
  transition: all 0.2s ease;
}

/* 버튼스타일 - 크기 */
.box_btn.small > * {
  padding: 4px 8px;
}
.box_btn.large > * {
  padding: 14px 16px !important;
  font-size: 16px;
}
.box_btn.huge > * {
  padding: 16px 20px;
  font-size: 16px;
}

/* 버튼스타일 - 가로길이 */
.box_btn.block {
  display: block;
}
.box_btn.block > * {
  width: 100%;
}
.box_btn.w50 > * {
  width: 50px;
}
.box_btn.w70 > * {
  width: 70px;
}
.box_btn.w75 > * {
  width: 75px;
}
.box_btn.w100 > * {
  width: 100px;
}
.box_btn.w125 > * {
  width: 125px;
}
.box_btn.w150 > * {
  width: 150px;
}
.box_btn.w175 > * {
  width: 175px;
}
.box_btn.w180 > * {
  width: 180px;
}
.box_btn.w200 > * {
  width: 200px;
}
.box_btn.w225 > * {
  width: 225px;
}
.box_btn.w250 > * {
  width: 250px;
}
.box_btn.w275 > * {
  width: 275px;
}
.box_btn.w300 > * {
  width: 300px;
}
.box_btn.w325 > * {
  width: 325px;
}
.box_btn.w350 > * {
  width: 350px;
}

/* 버튼스타일 - 색상 */
.box_btn.white * {
  padding: 8px 10px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  background: #fff;
  font-weight: 500;
  color: var(--neutral-800, #262626) !important;

}

.box_btn.whiteblack * {
  border: 1px solid var(--neutral-800, #262626);
  background: #fff;
  color: var(--neutral-800, #262626) !important;
}

.box_btn.gray * {
  border-color: #f5f5f5;
  background: #f5f5f5;
  color: #666 !important;
}
.box_btn.gray:active *,
.box_btn.gray:focus * {
  background: #dadada;
}
.box_btn.gray2 * {
  border-color: #dcdcdc;
  background: #eee;
  color: #666 !important;
}
.box_btn.gray2:active *,
.box_btn.gray2:focus * {
  background: #dadada;
}
.box_btn.gray3 * {
  border-color: #e5e5e5;
  background: #e5e5e5;
  color: #888 !important;
}

/* 버튼스타일 - 텍스트 */
.box_btn.strong * {
  font-weight: bold;
}
.box_btn.radius * {
  border-radius: 6px;
}
.box_btn.mt {
  margin-top: 5px;
}
.box_btn.gray0 * {
  border-color: #e9e9e9;
  background: #e9e9e9;
  color: #b5b5b5 !important;
}

/*-----------------------------------------------------------------*/
/* 2-3. product
/*-----------------------------------------------------------------*/

/* 상품스타일 - 기본 */
.prd_basic {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; 
  row-gap: 60px;
}

.prd_basic > li {
  flex: 0 0 calc(25% - 20px);
  text-align: center;
  vertical-align: top;
}

.prd_basic.col2 > li { flex: 0 0 calc(50% - 20px); }
.prd_basic.col3 > li { flex: 0 0 calc(33.33% - 20px); }
.prd_basic.col4 > li { flex: 0 0 calc(25% - 20px); }
.prd_basic.col5 > li { flex: 0 0 calc(20% - 60px); }



.prd_basic .box .img .prdimg > a > img{
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}

.prd_basic .box .img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--neutral-200, #E5E5E5);
}
.prd_basic .box .img .prdimg {
  transition: all 0.3s ease;
}
.prd_basic .box .img:hover .prdimg {
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.prd_basic .box .img .soldout {
  display: none;
}
.prd_basic .box.out .img .prdimg {
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=30)';
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}
.prd_basic .box.out .img .soldout {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 5;
  width: 100%;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
} /* 품절시 soldout 출력 */
.prd_basic .box .info {
  text-align: center;
}
.prd_basic .box .quick {
  padding: 20px 0 0 2px;
  padding-left: 2px;
  font-size: 0;
}
.prd_basic .box .quick li {
  display: inline-block;
  text-align: center;
  vertical-align: top;
}
.prd_basic .box .quick li a {
  display: block;
  width: 32px;
  height: 32px;
  margin-left: -1px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  transition: all 0.3s ease;
}
.prd_basic .box .quick li a:hover {
  background-color: #f6f6f6;
}
.prd_basic .box .quick li.preview a {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_preview.png');
}
.prd_basic .box .quick li.cart a {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_cart.png');
}
.prd_basic .box .quick li.wish a {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_wish.png');
}
.prd_basic .box .quick li.wish a.wish_on {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_wish_on.png');
}
.prd_basic .box .name {
  padding-top: 20px;
}
.prd_basic .box .price {
  padding-top: 5px;
}
.prd_basic .box .price p {
  word-break: break-all;
  word-wrap: break-word;
}
.prd_basic .box .price .consumer {
  text-decoration: line-through;
}
.prd_basic .box .price .consumerY {
  display: none;
}
.prd_basic .box .price .sellY {
  text-decoration: line-through;
}
.prd_basic .box .price .sellY strong {
  font-weight: 400;
}
.prd_basic .box .price .discount {
  display: none;
}
.prd_basic .box .price .discountY {
  display: block;
}
.prd_basic .box .summary {
  padding-top: 20px;
  color: #888;
  font-size: 11px;
  word-break: break-all;
  word-wrap: break-word;
}
.prd_basic .box .count {
  padding-top: 20px;
  font-size: 0;
}
.prd_basic .box .count li {
  display: inline;
  position: relative;
  padding: 0 10px;
  color: #888;
  font-size: 11px;
}
.prd_basic .box .count li:after {
  position: absolute;
  left: 0;
  top: 3px;
  width: 1px;
  height: 10px;
  background: #d2d2d2;
  content: '';
}
.prd_basic .box .count li:first-child:after {
  display: none;
}
.prd_basic .box .icon {
  padding-top: 20px;
}
.prd_basic .box .icon img {
  margin: 0 2px;
  vertical-align: middle;
}
.prd_basic .box .today {
  display: inline-block;
  margin: 15px auto 0;
  padding: 3px;
  background-color: #ebebeb;
}
.prd_basic .box .today > span {
  padding-left: 5px;
  color: #666;
}

/* 상품스타일 - 기본 - 레이어 */
.prd_basic.mini {
  width: 100%;
  text-align: center;
}
.prd_basic.mini .box .img .prdimg {
  transition: none;
}
.prd_basic.mini .box .img:hover .prdimg {
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}
.prd_basic.mini .box .img .icon_best {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  line-height: 40px;
}
.prd_basic.mini .box .info {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 5;
  width: 100%;
  margin-left: -50%;
  background: transparent;
  text-align: center;
}
.prd_basic.mini .box:hover .info {
  display: block;
}
.prd_basic.mini .box:hover .img .prdimg {
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=30)';
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}
.prd_basic.mini .box .price .consumer,
.prd_basic.mini .box .summary,
.prd_basic.mini .box .count,
.prd_basic.mini .box .icon,
.prd_basic.mini .box .today {
  display: none;
}
/* 상품스타일 - 기본 - 레이어 - new 5% dc */
.prd_basic.mini.new .box .img,
.prd_basic.mini.new .box .info {
  width: 175px;
}
.prd_basic.mini.new .box .info {
  margin-left: -87.5px;
}
/* 상품스타일 - 기본 - 레이어 - 카테고리 추천 */
.prd_basic.mini.best .box .img,
.prd_basic.mini.best .box .info {
  width: 205px;
}
.prd_basic.mini.best .box .info {
  margin-left: -102.5px;
}

/* 상품스타일 - 기본 - 슬라이드 */
.prd_basic.slide {
  display: none;
}
.prd_basic.slide.slick-initialized {
  display: block;
}
.prd_basic.slide .slick-prev {
  position: absolute;
  left: -44px;
  top: 50%;
  width: 24px;
  height: 88px;
  margin-top: -44px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/slide_prev.png') no-repeat center;
}
.prd_basic.slide .slick-next {
  position: absolute;
  right: -44px;
  top: 50%;
  width: 24px;
  height: 88px;
  margin-top: -44px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/slide_next.png') no-repeat center;
}

/* 상품스타일 - 관심상품, 관련상품 */
.prd_related {
  table-layout: fixed;
  clear: both;
  width: 100%;
  border-collapse: collapse;
}
.prd_related > thead {
  display: none;
}
.prd_related > tbody > tr > td {
  border-bottom: 1px solid var(--neutral-200, #E5E5E5);
  vertical-align: middle;
  text-align: center;
  padding-bottom: 32px;
  padding-top: 32px;
}
.prd_related > tbody > tr > td strong {
  font-size: 14px;
}
.prd_related > tbody > tr > td.img img {
  width: 120px;
  height: auto;
}
.prd_related > tbody > tr > td.tal,
.prd_related > tbody > tr > td.opt {
  text-align: left;
}
.prd_related > tbody > tr > td.tal a {
  font-size: 18px;
}
.prd_related > tbody > tr > td.opt select {
  display: block;
  min-width: 130px;
  margin: 5px 0;
}
.prd_related > tbody > tr > td .soldout {
  display: none;
  color: #d53838;
}
.prd_related > tbody > tr > td .soldout.out {
  display: inline;
}
.prd_related > tbody > tr > td .summary {
  color: #888;
  font-size: 12px;
}

/*-----------------------------------------------------------------*/
/* 3. Layout
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/* 3-1. wrapper
/*-----------------------------------------------------------------*/

#wrapper {
  position: relative;
  text-align: left;
}
#container {
  overflow: hidden;
}
.wrap_inner {
  width: 1280px;
  margin: 0 auto;
  width: 22vw;
}

/*-----------------------------------------------------------------*/
/* 3-2. header
/*-----------------------------------------------------------------*/
.line_banner {
  text-align: center;
  background-color: #000000;
}
.line_banner .wrap_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.line_banner a {
  height: 46px;
  font-size: 14px;
  color: #ffffff;
  line-height: 46px;
}
.line_banner .btn_close {
  width: 16px;
  height: 16px;
  background: url('/_skin/radiwell_kor_2/img/common/ico_close.png') no-repeat 50% 50%;
}
#header {
  position: relative;
  height: 160px;
}
#header h1 {
  width: 1280px;
  margin: 0 auto;
  padding-top: 45px;
}
#header .gnb {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 10;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #d9d9d9;
}
#header .gnb:hover::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 0;
  left: 0;
  border-top: 1px solid #d9d9d9;
}
#header .gnb .wrap_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 60px;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
#header .gnb:hover .wrap_inner {
  height: auto;
  max-height: 300px;
}
#header .gnb .category {
  display: flex;
}
#header .gnb .category > li {
  padding-right: 60px;
}
#header .gnb .category > li > a {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 60px;
  color: #000000;
  font-weight: 700;
  font-family: 'Roboto';
  font-size: 18px;
  text-transform: uppercase;
}
#header .gnb .category > li:hover > a {
  color: #4f85ef;
}
#header .gnb .category > li:hover > a:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 58px;
  width: 100%;
  height: 2px;
  background: #4f85ef;
}
#header .gnb .category > li ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 0 28px;
}
#header .gnb .category > li ul a {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.08px;
  color: #666666;
}
#header .gnb .category > li ul li a:hover {
  font-weight: 700;
  color: #4f85ef;
}
#header .gnb .menu {
  display: flex;
  margin-left: auto;
}
#header .gnb .menu li {
  display: inline-flex;
  align-items: center;
  height: 60px;
  margin-left: 20px;
}
#header .gnb .menu li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}
#header .gnb .toggle_search {
  display: block;
  width: 24px;
  height: 24px;
  margin: 18px 0 0 34px;
  background: url('/_skin/radiwell_kor_2/img/button/hd_search.png') no-repeat center;
}
#header .gnb .toggle_search.active {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/hd_close.png');
}
#header .gnb .quick_cart {
  display: inline-flex;
  align-items: center;
  margin: 18px 0 0 15px;
  font-family: roboto;
  color: #666666;
  font-size: 16px;
  align-items: end;
}
#header .gnb .quick_cart:before {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  margin-right: 3px;
  background: url('/_skin/radiwell_kor_2/img/button/hd_cart.png') no-repeat center;
}
#header .gnb.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
}
#header .gnb.fixed:before {
  content: '';
  position: absolute;
  top: 60px;
  right: 0;
  left: 0;
  border-top: 1px solid #d9d9d9;
}
#header .search {
  display: none;
  position: relative;
}
#header .search form {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 40px 0;
  background: #efeeed;
  text-align: center;
}
#header .search form .box {
  position: relative;
  padding-right: 50px;
  text-align: left;
}
#header .search form .box .basic_search {
  border: 0;
  background: transparent;
  font-size: 14px;
}
#header .search form .box .btn {
  position: absolute;
  right: 0;
  top: 3px;
}
#header .search form .box:after {
  position: absolute;
  right: 45px;
  top: 4px;
  width: 1px;
  height: 25px;
  background: #c9c8c8;
  content: '';
}
.pop_search {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 19;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.pop_search .pop_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.pop_search .box_search {
  width: 700px;
  border-radius: 20px;
  background-color: #ffffff;
}
.pop_search .box_search .field_search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px 0 30px;
  border-bottom: 1px solid #396be6;
}
.pop_search .box_search .field_search input[type='text'] {
  flex: 1;
  font-size: 16px;
  letter-spacing: -0.08px;
  color: #8d8d8d;
  border: 0;
}
.pop_search .box_search .field_search .btn_search {
  flex: none;
  width: 24px;
  height: 24px;
  background: url('/_skin/radiwell_kor_2/img/button/hd_search.png') no-repeat 50% 50%;
}
.pop_search .group_keyword {
  padding: 30px;
}
.pop_search .group_keyword h2 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.08px;
  color: #3a3a3a;
}
.pop_search .group_keyword .list_hot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.pop_search .group_keyword .list_hot button {
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.07px;
  white-space: nowrap;
  color: #557ac1;
  border: 1px solid #557ac1;
  border-radius: 4px;
  background-color: #ffffff;
}
.pop_search .group_keyword .list_category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pop_search .group_keyword .list_category button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 170px;
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.07px;
  white-space: nowrap;
  color: #557ac1;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  background-color: #eaf0fb;
}
.pop_search .group_keyword .list_category button:before {
  flex: none;
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  margin-right: 6px;
  border-radius: 100px;
}
.pop_search .group_keyword .list_category button:after {
  flex: none;
  display: block;
  content: '';
  width: 5px;
  height: 10px;
  margin-left: auto;
  background: url('/_skin/radiwell_kor_2/img/button/arr_prd_category.png') no-repeat 50% 50%;
}
.pop_search .btn_close {
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin: 22px auto 0;
  padding: 0 10px 0 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.08px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
}
.pop_search .btn_close:after {
  flex: none;
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background: url('/_skin/radiwell_kor_2/img/button/icon_close_search.png') no-repeat 50% 50%;
}

/*-----------------------------------------------------------------*/
/* 3-3. content
/*-----------------------------------------------------------------*/

  #cnt .cntbody {
    min-width: 1344px;
    /* max-width: 1344px; */
    margin: 0 auto;
    min-height: 860px;
    width: 1344px;
  }


  @media all and (max-width: 1200px) {
    #cnt .cntbody {
      padding: 0;
      width: 100vw;
      min-height: 860px;
      margin: 0;
      min-width: auto; /* 1200 이하에서는 min-width 해제 */
    }
  }


/*-----------------------------------------------------------------*/
/* 3-4. footer
/*-----------------------------------------------------------------*/


#footer .quick {
  padding: 10px 0;
  background: #fbfbfb;
}
#footer .quick .wrap_inner {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
#footer .quick .wrap_inner .left {
  display: flex;
  gap: 100px;
}
#footer .quick .wrap_inner .left a {
  font-size: 16px;
  color: #000;
}

#footer .quick .wrap_inner .left a strong {
  font-weight: 600;
  color: #000;
}

#footer .quick * {
  color: #888;
}
#footer .quick h3 {
  padding-bottom: 25px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18.75px;
  letter-spacing: -0.03px;
  color: #8d8d8d;
}
#footer .quick .cs p {
  font-size: 14px;
  line-height: 20.27px;
  letter-spacing: -0.03px;
}
#footer .quick .cs > p > strong {
  display: block;
  padding-bottom: 8px;
  font-weight: 700;
  font-size: 28px;
  line-height: 32.81px;
  letter-spacing: -0.03px;
  color: #000000;
}
#footer .quick .return dt {
  margin-bottom: 21px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20.27px;
  letter-spacing: -0.03px;
  color: #3a3a3a;
}
#footer .quick .return dd {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.03px;
  color: #666;
  width: 213px;
}
#footer .quick .bank {
  width: 312px;
}
#footer .quick .bank li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 18.75px;
  letter-spacing: -0.03px;
  color: #666666;
}
#footer .quick .bank li > * {
  flex: none;
}
#footer .quick .bank li strong {
  width: 54px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20.27px;
  letter-spacing: -0.03px;
  color: #3a3a3a;
}
#footer .quick .bank li span {
  width: 90px;
  margin-left: auto;
  font-size: 14px;
  line-height: 20.27px;
  letter-spacing: -0.03px;
  color: #666666;
}
#footer .quick .about a {
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.03px;
  color: #3a3a3a;
}
#footer .quick .share {
  margin-left: auto;
}
#footer .quick .share > ul {
  display: flex;
  align-items: center;
}
#footer .quick .share > ul > li {
  margin-left: 10px;
}
#footer .quick .share > ul > li:first-child {
  padding-left: 0;
}
#footer .shopinfo {
  padding: 50px 0;
  text-align: center;
  background-color: #f1f1f1;
}
#footer .shopinfo .wrap_inner {
  display: flex;
  justify-content: space-between;
}
#footer .shopinfo .wrap_inner h3 {
  padding-bottom: 25px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18.75px;
  letter-spacing: -0.03px;
  color: #8d8d8d;
}
#footer .shopinfo .wrap_inner .cs {
  text-align: left;
}
#footer .shopinfo .wrap_inner .cs p {
  font-size: 14px;
  line-height: 20.27px;
  letter-spacing: -0.03px;
}
#footer .shopinfo .wrap_inner .cs > p > strong {
  display: block;
  padding-bottom: 8px;
  font-weight: 700;
  font-size: 28px;
  line-height: 32.81px;
  letter-spacing: -0.03px;
  color: #000000;
}
#footer .shopinfo .info {
  text-align: left;
}
#footer .shopinfo .info,
#footer .shopinfo .info * {
  font-size: 12px;
  font-style: normal;
  line-height: 17.38px;
  letter-spacing: -0.03px;
  color: #666666;
}
#footer .shopinfo .info span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}
#footer .shopinfo .info span:after {
  display: block;
  content: '';
  width: 1px;
  height: 10px;
  margin: 0 10px;
  background: #b8b8b8;
}
#footer .shopinfo .info span.last:after {
  display: none;
}
#footer .shopinfo .info strong span,
#footer .shopinfo .info strong span * {
  font-weight: 500;
}
#footer .shopinfo .info > *:last-child {
  display: block;
}
#footer .shopinfo .copyright {
  height: 30px;
  font-weight: 500;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: -0.03px;
  color: #666666;
  text-align: left;
}
#footer .shopinfo .copyright * {
  font-size: 12px;
  font-style: normal;
  line-height: 17.38px;
  letter-spacing: -0.03px;
}
#footer .shopinfo .copyright strong {
  color: #888;
}
#footer .shopinfo .copyright a strong,
#footer .shopinfo .copyright a:hover {
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.03px;
  color: #1cadff;
}
#footer .btn_scroll {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 20;
  width: 44px;
}
#footer .btn_scroll a {
  display: block;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  font-size: 0;
  text-align: center;
  cursor: pointer;
}
#footer .btn_scroll a:hover {
  background-color: #f5f5f5;
}
#footer .btn_scroll a.up {
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  background: url('/_skin/radiwell_kor_2/img/common/bullet_scrollup.png') #ffffff no-repeat 50% 50%;
}
#footer .btn_scroll a.down {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/bullet_scrolldown.png');
}

/*-----------------------------------------------------------------*/
/* 3-5. popup ( 하단 팝업, 안내 팝업 )
/*-----------------------------------------------------------------*/

.popup_bot .popup_con {
  border-radius: 24px;
}
.popup_bot .popup_con .img_box .swiper-container .swiper-slide .con .date {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 18px 0 20px;
}

.popup_bot .popup_con .img_box .swiper-container .swiper-pagination {
  width: 64px;
  right: 24px;
  bottom: 24px;
  height: 30px;
  left: auto !important; 
  padding: 4px;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  justify-content: center;
  border-radius: 500px;
  align-items: center;
  display: flex;
  gap: 4px;
}

.popup_bot .popup_con .img_box .swiper-container .swiper-pagination span {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.popup_bot .popup_con .img_box .swiper-container .pause-button {
  align-items: center;
  justify-content: center;
  display: flex;
  right: 96px;
  height: 32px;
  width: 32px;
  background: rgba(0, 0, 0, 0.15);
  bottom: 23px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 500px;
  left: auto !important; 
  z-index: 10;
  border: none;
  cursor: pointer;
  color: white;
  transition: opacity 0.3s ease;
  position: absolute;
}
/* .popup_bot .popup_con .swiper-pagination-current::after {
  color: rgba(255, 255, 255, 0.30);
  content: "|"; 
  right: 33px;
  font-size: 10px;
  position: absolute;

} */

.swiper-pagination-total {
  color: rgba(255, 255, 255, 0.50);
}

.popup_bot .popup_con .close_box {
  background: #f1f1f1;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/*-----------------------------------------------------------------*/
/* 4. Page
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/* 4-1. 메인
/*-----------------------------------------------------------------*/

#main {
  width: 100%;
}
@media all and (max-width: 1200px) {
  #main {
    width: 100vw;
  }
}

.visual_fade {
  overflow: hidden;
  position: relative;
  height: 640px;
}
.visual_fade .box {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1280px;
  height: 640px;
  transform: translateX(-50%);
}
.visual_fade .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 150px;
  width: auto;
  text-align: left;
  transform: translateX(-535px);
}
.visual_fade .slick-dots li {
  margin: 0 6px 0 0;
}
.visual_fade .slick-dots li button {
  width: 30px;
  height: 3px;
  border: 0;
  border-radius: 0;
  background-color: #ffffff;
  opacity: 0.3;
}
.visual_fade .slick-dots li.slick-active button {
  opacity: 1;
}
.visual_fade .slick_pause,
.visual_fade .slick_play {
  width: 18px;
  height: 16px;
}
.visual_fade .slick_pause {
  background: url('/_skin/radiwell_kor_2/img/button/pause.png') no-repeat 50% 50%;
}
.visual_fade .slick_pause.play {
  background: url('/_skin/radiwell_kor_2/img/button/play.png') no-repeat 50% 50%;
}
.visual_fade .slick-prev {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 24px;
  height: 88px;
  margin: -44px 0 0 -600px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/slide_prev.png') no-repeat center;
}
.visual_fade .slick-next {
  position: absolute;
  top: 50%;
  right: 50%;
  z-index: 5;
  width: 24px;
  height: 88px;
  margin: -44px -600px 0 0;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/slide_next.png') no-repeat center;
}
.visual_fade .slick-slide {
  position: relative;
}
.visual_fade .slick-slide > img {
  position: relative;
  z-index: 1;
}
.visual_fade .slick-slide .wrap_inner {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  color: #ffffff;
  transform: translateX(calc(-50% + 105px));
}
.visual_fade .slick-slide .wrap_inner a {
  display: block;
  width: 100%;
  height: 100%;
}
.visual_fade .slick-slide .meta {
  display: block;
  position: absolute;
  left: 0;
  top: 107px;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  border-radius: 4px;
}
.visual_fade .slick-slide .title {
  display: block;
  position: absolute;
  left: 0;
  top: 164px;
  font-weight: 500;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: -0.25px;
  color: #ffffff;
}
.visual_fade .slick-slide .title span {
  display: block;
  margin-top: 8px;
  font-size: 19px;
  letter-spacing: -0.095px;
  color: #ffffff;
}
.visual_fade .slick-active .animated {
  animation: fadeInRight 0.8s both;
  animation-delay: 0.5s;
}
@keyframes fadeInRight {
  0% {
    transform: translateX(-30%);
    opacity: 0;
  }
  50% {
    transform: translateX(calc(-50% + 105px));
    opacity: 1;
  }
}
.visual_fade .slick-slide .date {
  display: block;
  position: absolute;
  left: 0;
  top: 400px;
  font-weight: 500;
  font-size: 16px;
  font-family: roboto;
  color: #ffffff;
}
#main .concept {
  position: relative;
  height: 660px;
  background: url('/_skin/radiwell_kor_2/img/etc/main_concept.png') no-repeat 50% 0;
  display: flex;
  align-items: center;
  margin-top: 60px;
}

#main .concept .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(5px);
}

#main .concept .wrap_inner {
  width: 1280px;
  margin: auto;
  margin-top: 120px;
  display: flex;
  align-items: center;
}

#main .concept .wrap_inner > div {
  width: 50%;
}

#main .concept .wrap_inner > div.right {
  padding-left: 110px;
}

#main .concept .subtitle {
  display: block;
  margin-bottom: 42px;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.2px;
}
#main .concept .list > li {
  position: relative;
  width: 383px;
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: -0.1px;
  color: #3a3a3a;
  border-bottom: 1px solid #c9c9c9;
}
#main .concept .list > li span {
  display: inline-flex;
  align-items: center;
  margin-top: -0.3em;
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: -0.1px;
  color: #557ac1;
  vertical-align: middle;
  background: #d6e0fa;
}
#main .concept .list > li span:before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 34px;
  margin-left: -5px;
  border-radius: 10px 0 0 10px;
  background: #d6e0fa;
  transform: skewX(-10deg);
}
#main .concept .list > li span:after {
  display: inline-block;
  content: '';
  width: 5px;
  height: 34px;
  margin-right: -3px;
  border-radius: 0 10px 10px 0;
  background: #d6e0fa;
  transform: skewX(-10deg);
}
#main .concept .list > li .checkbox {
  position: absolute;
  left: -49px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: #ddddde;
  transform: translateY(-50%);
}
#main .concept .list > li .checkbox:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: url('/_skin/radiwell_kor_2/img/button/check.png') no-repeat 0 0;
}

#main .concept .list > li .img {
  position: absolute;
}
#main .concept .list > li:after {
  display: block;
  content: '';
  position: absolute;
}
#main .concept .list > li:first-child .img {
  width: 94px;
  height: 80px;
  top: -8px;
  right: -98px;
}
#main .concept .list > li:nth-child(2) .img {
  width: 98px;
  height: 47px;
  top: 18px;
  right: 50px;
}
#main .concept .list > li:last-child .img {
  width: 82px;
  height: 85px;
  top: 40px;
  right: -92px;
}
#main .concept .list > li:first-child {
  padding-bottom: 18px;
}
#main .concept .list > li:nth-child(2) {
  padding: 24px 0;
}
#main .concept .list > li:last-child {
  padding-top: 18px;
  border-bottom: 0;
}
#main .concept .list > li ul {
  margin-top: 8px;
}
#main .concept .list > li ul li {
  display: flex;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.08px;
  color: #3a3a3a;
}
#main .concept .list > li ul li:before {
  display: block;
  content: '';
  width: 4px;
  height: 4px;
  margin: 10px;
  border-radius: 100%;
  background-color: #3a3a3a;
}
#main .bestitem {
  padding: 100px 0 45px;
}
#main .bestitem .subtitle {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}
#main .bestitem .prd_main {
  display: flex;
  justify-content: space-between;
}
#main .bestitem .prd_main li {
  flex: none;
  width: 300px;
}
#main .bestitem .prd_main .box {
  width: 300px;
  text-align: center;
}
#main .bestitem .prd_main .img {
  position: relative;
}
#main .bestitem .prd_main .img > * {
  position: absolute;
  z-index: 2;
}
#main .bestitem .prd_main .prdimg {
  position: relative;
  z-index: 1;
}
#main .bestitem .prd_main .icons {
  display: inline-flex;
  align-items: center;
  left: 20px;
  top: 20px;
  z-index: 3;
}
#main .bestitem .prd_main .icons > * {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 28px;
  font-size: 12px;
  font-family: roboto;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid #000000;
}
#main .bestitem .prd_main .icons .icon_hit {
  color: #040404;
  background-color: #ffffff;
}
#main .bestitem .prd_main .icons .icon_new {
  color: #ffffff;
  background-color: #000000;
}
#main .bestitem .prd_main .img .wish {
  right: 20px;
  top: 20px;
}
#main .bestitem .prd_main .img .wish a {
  display: block;
  text-indent: -9999px;
  width: 40px;
  height: 40px;
  background: url('/_skin/radiwell_kor_2/img/button/icon_heart.png') no-repeat 50% 50%;
}
#main .bestitem .prd_main .img .wish .wish_on {
  background: url('/_skin/radiwell_kor_2/img/button/icon_heart_on.png') no-repeat 50% 50%;
}
#main .bestitem .prd_main .img .tag {
  display: none;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url('/_skin/radiwell_kor_2/img/common/img_soldout.png') rgba(255, 255, 255, 0.5) no-repeat 50% 50%;
}
#main .bestitem .prd_main .box.out .img .tag {
  display: block;
}
#main .bestitem .prd_main .img.comming .tag {
  background: url('/_skin/radiwell_kor_2/img/common/img_comming.png') rgba(255, 255, 255, 0.5) no-repeat 50% 50%;
}
#main .bestitem .prd_main .info {
  padding: 30px 0;
}
#main .bestitem .prd_main .info .name {
  height: 52px;
  overflow: hidden;
}
#main .bestitem .prd_main .info .name a {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.09px;
  text-align: center;
  color: #000000;
}
#main .bestitem .prd_main .info .summary {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.07px;
  color: #8d8d8d;
  height: 22px;
  overflow: hidden;
}
#main .bestitem .prd_main .info .etc3 + .today {
  display: none;
}
#main .bestitem .prd_main .price .discount {
  font-size: 14px;
  letter-spacing: -0.07px;
  color: #8d8d8d;
  height: 20px;
  overflow: hidden;
}
#main .bestitem .prd_main .price .discount strong {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  font-size: 16px;
  font-family: roboto;
  text-decoration: line-through;
  color: #8d8d8d;
}
#main .bestitem .prd_main .price .sell {
  margin-bottom: 20px;
}
#main .bestitem .prd_main .price .sell .sell_percent {
  font-family: roboto;
}
#main .bestitem .prd_main .price .sell .sell_percent strong {
  margin-right: 2px;
  font-weight: 700;
  font-size: 24px;
  font-family: roboto;
  color: #396be6;
}
#main .bestitem .prd_main .price .sell .sell_percent strong:after {
  display: inline-block;
  content: '';
  width: 21px;
  height: 21px;
  margin-left: 2px;
  vertical-align: middle;
  background: url('/_skin/radiwell_kor_2/img/common/icon_down.png') no-repeat 50% 50%;
}
#main .bestitem .prd_main .price .sell .sell_price {
  margin-left: 10px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.1px;
  color: #3a3a3a;
}
#main .bestitem .prd_main .price .sell .sell_price strong {
  margin-right: 2px;
  font-weight: 700;
  font-size: 24px;
  font-family: roboto;
  color: #000000;
}
#main .review {
  padding: 104px 0 98px;
  /*   background: #dee3ee; */
}
#main .review .wrap_inner {
  display: flex;
}
#main .review .wrap_inner .review_hgroup {
  width: 327px;
  padding-top: 50px;
}
#main .review .wrap_inner .review_hgroup .subtitle {
  font-weight: 500;
  font-size: 40px;
  line-height: 125%;
  letter-spacing: -0.2px;
  color: #000000;
}
#main .review .wrap_inner .review_hgroup .subtitle:before {
  display: block;
  content: '';
  width: 27px;
  height: 18px;
  margin-bottom: 8px;
  background: url('/_skin/radiwell_kor_2/img/common/bullet_title.png') no-repeat 0 0;
}
#main .review .wrap_inner .review_hgroup .sub_comment {
  margin-top: 21px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.8px;
  color: #000000;
}
#main .review .wrap_inner .review_hgroup .btn_more {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
}
#main .review .wrap_inner .review_hgroup .btn_more span {
  display: block;
  height: 23px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.08px;
  color: #000000;
  border-bottom: 1px solid #000000;
}
#main .review .wrap_inner .review_hgroup .btn_more:after {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  margin-left: 4px;
  background: url('/_skin/radiwell_kor_2/img/common/bullet_arrow_more.png') no-repeat 50% 50%;
}
#main .review .list {
  display: flex;
  gap: 24px;
}
#main .review .list li {
  flex: none;
  position: relative;
  width: 300px;
  height: 400px;
  padding: 28px 28px 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.25);
}
/* #main .review .list li:hover {
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.25);
} */
#main .review .list li .img {
  overflow: hidden;
  position: relative;
  background: #efefef;
  margin-bottom: 20px;
}
#main .review .list li .img a {
  display: block;
  width: 244px;
  height: 120px;
}
#main .review .list li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main .review .list li p {
  margin-top: 10px;
}
#main .review .list li p.prd a {
  display: inline-flex;
  align-items: center;
  max-width: 170px;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.06px;
  color: #8d8d8d;
}
#main .review .list li p.prd a span {
  flex: none;
  display: block;
  content: '';
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 100%;
  overflow: hidden;
}
#main .review .list li p.prd a span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main .review .list li p.contents a strong {
  display: -webkit-box;
  height: 52px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.09px;
  color: #966ecb;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#main .review .list li p.contents a span {
  display: -webkit-box;
  height: 60px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.06px;
  color: #8d8d8d;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#main .review .list li p.date {
  margin: 10px 0 11px;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.06px;
  color: #666666;
  text-decoration: underline;
}
#main .review .list li .btn_detail_view {
  display: none;
  position: absolute;
  right: 28px;
  bottom: 30px;
  width: 20px;
  height: 18px;
  background: url('/_skin/radiwell_kor_2/img/button/detail_view.png') no-repeat 50% 50%;
}
#main .review .list li:hover .btn_detail_view {
  display: block;
}
#main > .contents {
  padding: 100px 0 134px;
}
#main > .contents .wrap_inner {
  position: relative;
}
#main > .contents .subtitle {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}
#main > .contents .list {
  display: flex;
  gap: 24px;
}
#main > .contents .list li {
  width: 410px;
}
#main > .contents .list li .img {
  position: relative;
  width: 410px;
  height: 300px;
}
#main > .contents .list li .img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main > .contents .list li .img .tag {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 48px;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.07px;
  color: #ffffff;
  border-radius: 0 0 20px 0;
}
#main > .contents .list li .img .tag.래디웰.스토리 {
  background: rgba(57, 107, 230, 0.7);
}
#main > .contents .list li .img .tag.헬스.저널 {
  background: rgba(251, 158, 71, 0.7);
}
#main > .contents .list li .img .tag.전문가.건강.가이드 {
  background: rgba(50, 178, 156, 0.7);
}
#main > .contents .list li .img .tag.원료.백과사전 {
  background: rgba(169, 111, 244, 0.7);
}
#main > .contents .list li .info {
  margin-top: 20px;
}
#main > .contents .list li .info .title {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.1px;
  color: #000000;
}
#main > .contents .list li .info .sub {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.7px;
  color: #3a3a3a;
}
#main > .contents .list li .info li {
  display: flex;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.7px;
  color: #3a3a3a;
}
#main > .contents .list li .info li:before {
  display: block;
  content: '';
  width: 4px;
  height: 4px;
  margin: 10px 10px 0 8px;
  border-radius: 100px;
  background-color: #3a3a3a;
}
#main > .contents .btn_more {
  display: inline-flex;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 12px;
}
#main > .contents .btn_more span {
  display: block;
  height: 23px;
  font-weight: 700;
  font-size: 16px;
  font-family: roboto;
  line-height: 1;
  letter-spacing: -0.08px;
  color: #000000;
  border-bottom: 1px solid #000000;
}
#main > .contents .btn_more:after {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  margin-left: 4px;
  background: url('/_skin/radiwell_kor_2/img/common/bullet_arrow_more.png') no-repeat 50% 50%;
}
#main .brand {
  height: 650px;
  text-align: center;
  background: url(/_skin/radiwell_kor_2/img/etc/main_brand.png) no-repeat 50% 0;
}
#main .brand a {
  color: #000;
}
#main .brand .subtitle {
  padding: 222px 0 40px;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.2px;
  color: #000;
}
#main .brand p {
  margin-bottom: 48px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.08px;
  color: #000;
}
#main .brand .btn_more {
  display: inline-flex;
  align-items: center;
}
#main .brand .btn_more span {
  display: block;
  height: 23px;
  font-weight: 700;
  font-size: 16px;
  font-family: roboto;
  line-height: 1;
  letter-spacing: -0.08px;
  color: #000;
  border-bottom: 1px solid #000;
}
#main .brand .btn_more:after {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  margin-left: 4px;
  background: url('/_skin/radiwell_kor_2/img/common/bullet_arrow_more.png') no-repeat 50% 50%;
}
#main .sns_member .wrap_inner {
  display: flex;
}
#main .sns_member a {
  display: block;
  width: 640px;
  height: 250px;
}
#main .instagram {
  display: flex;
  align-items: center;
  background: url('/_skin/radiwell_kor_2/img/etc/prd_instagram.png') #657799 no-repeat 0 0;
}
#main .instagram .cont {
  width: 300px;
  padding: 68px 0 0 76px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  line-height: 22px;
  letter-spacing: -0.7px;
  color: #ffffff;
}
#main .instagram .cont .title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 20px;
  font-family: roboto;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  color: #ffffff;
}
#main .instagram .cont .more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
  font-family: roboto;
  line-height: 18px;
  color: #ffffff;
}
#main .membership {
  background: url('/_skin/radiwell_kor_2/img/etc/membership.png') no-repeat 0 0;
}
#main .membership .cont {
  width: 275px;
  padding: 74px 0 0 114px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  line-height: 22px;
  letter-spacing: -0.7px;
  color: #ffffff;
}
#main .membership .cont .title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 20px;
  font-family: roboto;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  color: #ffffff;
}
#main .membership .cont .more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
  font-family: roboto;
  line-height: 18px;
  color: #ffffff;
}
#wrapper .main_banner {
  position: fixed;
  left: 50%;
  top: 326px;
  z-index: 100;
  width: 340px;
  margin-left: -640px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
}
.main_banner li {
  height: 360px;
}
.main_banner .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 14px 0 20px;
  background: #efecec;
}
.main_banner .bottom .onlytoday {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.5px;
  color: #666666;
}
.main_banner .bottom .close {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.5px;
  color: #000000;
}
#wrapper .dimmed_banner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.main_banner .slick-prev,
.main_banner .slick-next {
  position: absolute;
  top: 181px;
  z-index: 100;
  width: 18px;
  height: 18px;
  background: url('/_skin/radiwell_kor_2/img/button/arrow_banner.png') no-repeat 50% 50%;
}
.main_banner .slick-prev {
  left: 15px;
  transform: rotate(180deg);
}
.main_banner .slick-next {
  right: 15px;
}
/*-----------------------------------------------------------------*/
/* 4-2. 상점
/*-----------------------------------------------------------------*/

/* 상품목록(/shop/big_section.php) */
#big_section .best_area {
  clear: both;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #e0e0e0;
}
#big_section .sub_category {
  text-align: center;
}
#big_section .sub_category li {
  display: inline;
  padding: 0 10px;
}
#big_section .sub_category li a {
  color: #888;
}
#big_section .sub_category li a:hover {
  color: #333;
}

/* 상품상세페이지(/shop/detail.php) */


#detail .big_title h3.name {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

#detail .big_title h3.name .prd_name {
  max-width: 860px;
}

#detail .big_title h3.name > img {
  margin: 0 2px;
  vertical-align: middle;
}

#detail .big_title .icons {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}
/* #detail .big_title .icons img {
  width: 77px;
} */
#detail .big_title .icons .icon_prd1 {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 6px;
  font-family: 'roboto';
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #ef645b;
}
#detail .big_title .icons .icon_prd2 {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 6px;
  font-family: 'roboto';
  font-size: 12px;
  color: #000000;
  text-transform: uppercase;
  border: 1px solid #000000;
  background-color: #ffffff;
}

#detail .wrap_prd {
  display: flex;
  /* justify-content: space-between; */
  gap: 72px;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 48px;
}
@media all and (max-width: 1200px) {
  #detail .wrap_prd {
    display: grid;
    width: 100vw;
    margin: 0;
  }
}
#detail .wrap_prd > .prdimg .img {
  display: table-cell;
  overflow: hidden;
  width: 634px;
  height: 634px;
  text-align: center;
  vertical-align: middle;
}
#detail .wrap_prd > .prdimg .img img {
  width: 680px;
  height: 680px;
  border-radius: 12px;
}


#detail .wrap_prd .info .prd_depth {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: -0.07px;
  color: #8d8d8d;
}
#detail .wrap_prd .info .prd_depth * {
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: -0.07px;
  color: #8d8d8d;
}

#detail .big_title .wish {
  flex: none;
  display: block;
  width: 32px;
  height: 32px;
  /* background-image: url('/_skin/radiwell_kor_2/img/button/wish.png'); */
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
}
/* #detail .big_title .wish.on {
  background-image: url('/_skin/radiwell_kor_2/img/button/wish_on.png');
} */

#detail .price .consumer,
#detail .price > .sell {
  overflow: hidden;
  color: #B4B4B4;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-decoration-line:line-through;
}
#detail .price .consumer strong,
#detail .price > .sell strong {
  text-decoration: line-through;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.08px;
  color: #666666;
  text-decoration: line-through;
}

#detail .price_box {
  margin-bottom: 12px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#detail .price div.left {
  display: flex;
  gap: 8px;
  align-items: center;
}

#detail .price_box .per {
  text-overflow: ellipsis;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.5px;
}
#detail .price div.price_box .sell,
#detail .price div.price_box .discount {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.5px;
  color: #3a3a3a;
}
#detail .price div.price_box .sell strong,
#detail .price div.price_box .discount strong {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; 
}

#detail .priceY .consumer + .sell {
  display: none;
}
#detail .priceY .consumer ~ div.price_box .sell {
  display: none;
}
#detail .price > .sell {
  display: none;
}
#detail .price .discount {
  display: none;
}
#detail .priceY .discount {
  display: inline;
}
#detail .priceY > .sell {
  display: inline-block;
  margin-bottom: 10px;
}
#detail .priceY div.price_box .sell {
  display: none;
}

#detail .price .coupon2 {
  display: flex;
  border-radius: 4px;
  margin-top: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgb(var(--brandback-color));
  color: var(--neutral-500, #737373);
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; 
  cursor: pointer;
}
#detail .price .coupon2 i {
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M2 12.6666H14V14H2V12.6666ZM8.66667 8.78131L12.714 4.73331L13.6567 5.67598L8 11.3333L2.34333 5.67665L3.286 4.73331L7.33333 8.78198V1.33331H8.66667V8.78131Z' fill='black'/%3E%3C/svg%3E") no-repeat center/20px;
}


#detail .price .coupon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px 4px 8px;
  color: white;
  border-radius: 4px;
  background: var(--neutral-800, #262626);
  cursor: pointer;
}
#detail .price .coupon:after {
  flex: none;
  display: block;
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6456_28333)'%3E%3Cpath d='M3.24219 12.9766L3.24219 13.3366C3.24219 14.3307 4.04808 15.1366 5.04219 15.1366H12.9622C13.9563 15.1366 14.7622 14.3307 14.7622 13.3366V12.9766' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.75 8.47621L9 12.2262M9 12.2262L5.25 8.47621M9 12.2262V3.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6456_28333'%3E%3Crect width='18' height='18' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") no-repeat center/18px;
}
#detail .price .coupon strong {
  display: block;
  color: white;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
}

#detail .pop_coupon {
  display: none;
  position: fixed;
  border-radius: 12px;
  left: 50%;
  top: 50%;
  z-index: 1001;
  width: 440px;
  transform: translate(-50%, -50%);
  padding: 16px 16px 24px 16px;
  background: #fff;
  /* border-radius: 20px; */
}
#detail .pop_coupon > div .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#detail .pop_coupon > div .coupon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  /* background: rgb(var(--brand-color)); */
  cursor: pointer;
}

#detail .pop_coupon > div .coupon.fin {
  color: #888;
}

#detail .pop_coupon > div strong {
  display: block;
  color: white;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
}

#detail .pop_coupon > div .coupon:after {
  flex: none;
  display: none;
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2 12.6666H14V14H2V12.6666ZM8.66667 8.78131L12.714 4.73331L13.6567 5.67598L8 11.3333L2.34333 5.67665L3.286 4.73331L7.33333 8.78198V1.33331H8.66667V8.78131Z' fill='white'/%3E%3C/svg%3E") no-repeat center/16px;
}
#detail .pop_coupon > div > h2 {
  /* margin: 0 20px; */
  color: #000;
  text-align: start;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 144.444% */
}
#detail .pop_coupon > div > .count {
  padding: 15px 0;
  border-radius: 8px;
  background: #eaf0fb;
  color: #396be6;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.5px;
  margin: 0 20px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 3px;
}
#detail .pop_coupon > div > .count strong {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}
#detail .pop_coupon > div > .list {
  display: block;
  overflow: auto;
  max-height: 420px;
  margin: 16px 0 10px 0;
  margin-top: 20px;
}
#detail .pop_coupon > div > .list > li {
  position: relative;
  margin-bottom: 20px;
  /* padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5; */
  text-align: left;
}
#detail .pop_coupon > div > .list > li > div.name {
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}
#detail .pop_coupon > div > .list > li .box {
  margin: 0;
  margin-top: 8px;
}
#detail .pop_coupon > div > .list > li .box > div.price {
  padding-right: 20px;
  color: #888;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

#detail .pop_coupon > div > .coupon_all_download_btn {
  position: relative;
  height: 100%;
}


#detail .pop_coupon > div > .list > li .box > div.price span {
  color: #557ac1;
  font-size: 14px;
}
#detail .pop_coupon > div > .list > li .box .coupon.fin {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #E5E5E5;
  cursor: pointer;
  color: #888;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
  
}

#detail .pop_coupon > div > .list > li .box .coupon.not {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: white;
  cursor: default;
  color: #888;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
}

#detail .pop_coupon > div > .list > li .box .coupon.not:after {
  flex: none;
  display: none;
  content: '';
  width: 16px;
  height: 16px;
  background: none;
}


#detail .pop_coupon > div > .list > li .box .coupon.fin:after {
  flex: none;
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8.82067L6.82308 12.6772L14.54 4' stroke='%23888888' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center/16px;
}

#detail .pop_coupon > div > .close {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 24px;
  height: 24px;
}

#detail .summary {
  margin: 16px 0 16px 0;
  word-break: break-all;
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
#detail .summary.gray {
  color: var(--neutral-500, #737373);
  margin-bottom: 16px;
}
.sbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
}
.info_delivery {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
  padding: 8px 0 16px 0;
}
.info_delivery dl {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.info_delivery dt {
  flex: none;
  width: 95px;
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}
.info_delivery dd {
  flex: 1;
}
.info_delivery .deadline {
  display: flex;
  color: var(--neutral-800, #262626);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  text-align: right;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.info_delivery .comment {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.06px;
  color: #8d8d8d;
  text-align: right;
}
#detail .wrap_prd .info .sbs {
  margin: 0;
}
.info_layer .info_delivery {
  gap: 16px;
  margin-bottom: 8px;
  border-top: none;
}
.info_layer .info_delivery .comment {
  margin-top: 0;
}
/* #detail .sbs {margin-top:15px; border:1px solid #e5e5e5; text-align:center;}
#detail .sbs > label {display:inline-block; margin:0 15px; line-height:40px; cursor:pointer;} */
#detail .today {
  margin: 15px auto 0;
  padding: 15px;
  border: 1px solid #e5e5e5;
}
#detail .today > span {
  color: #666;
}

.info_layer .list {
  width: 100%;
  margin-top: 0px;
}
#detail .wrap_prd .info .info_layer .list.set_table,
.info_layer .list.set_table {
  margin-top: 0;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > th,
.info_layer .list > tbody > tr > th {
  padding: 8px 0;
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  text-align: left;
  vertical-align: middle;
}

#detail .wrap_prd .info .info_layer .list > tbody > tr > th.vtop22 {
  line-height: 22px;
  vertical-align: top;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > th.vtop26 {
  line-height: 26px;
  vertical-align: top;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > th.vtop42 {
  padding-top: 20px;
  line-height: 42px;
  vertical-align: top;
}
.info_layer .list > tbody > tr > th.vtop42 {
  padding: 20px 0;
}
.info_layer .list > tbody > tr > .th_qty,
.info_layer .list > tbody > tr > .th_qty + td {
  display: inline-block;
}
.info_layer .list > tbody > tr > .th_qty {
  width: 97px;
}
.info_layer .color_option {
  margin-bottom: 20px;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > td,
.info_layer .list > tbody > tr > td {
  padding: 8px 0;
  color: #888;
  text-align: right;
  vertical-align: middle;
}
.info_layer .list > tbody > tr > td {
  padding: 0;
}
.info_layer .list > tbody > tr > td {
  display: block;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > td select,
.info_layer .list > tbody > tr > td select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > td textarea {
  margin-top: 10px;
  resize: none;
}
.info_layer .list > tbody > tr > td textarea {
  resize: none;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > td .box_info,
.info_layer .list > tbody > tr > td .box_info {
  display: inline-block;
  position: relative;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > td .box_info .info,
.info_layer .list > tbody > tr > td .box_info .info {
  display: none;
  position: absolute;
  left: 20px;
  top: -8px;
  z-index: 10;
  width: 150px;
  padding: 10px 15px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  background: #fff;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > td .box_info .info.delivery,
.info_layer .list > tbody > tr > td .box_info .info.delivery {
  width: 230px;
}
#detail .wrap_prd .info .info_layer .list > tbody > tr > td .box_info:hover .info,
.info_layer .list > tbody > tr > td .box_info:hover .info {
  display: block;
}
#detail .wrap_prd .info .info_layer .list .list_option,
.info_layer .list .list_option {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#detail .wrap_prd .info .info_layer .list .list_option li,
.info_layer .list .list_option li {
  display: flex;
  justify-content: space-between;
}
#detail .wrap_prd .info .info_layer .list .list_option li label.input_radio,
.info_layer .list .list_option li label.input_radio {
  flex: 1;
}
.info_layer .list .list_option li label.input_radio {
  height: auto;
}
#detail .wrap_prd .info .info_layer .list .list_option li label.input_radio input[type='radio'] + span,
.info_layer .list .list_option li label.input_radio input[type='radio'] + span {
  font-size: 16px;
}
#detail .wrap_prd .info .info_layer .list .list_option li .price,
.info_layer .list .list_option li .price {
  display: flex;
  flex-direction: column;
  text-align: right;
}
#detail .wrap_prd .info .info_layer .list .list_option li .price strong,
.info_layer .list .list_option li .price strong {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.08px;
  line-height: 22px;
  color: #000000;
}
#detail .wrap_prd .info .info_layer .list .list_option li .price strong em,
.info_layer .list .list_option li .price strong em {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.09px;
  font-style: normal;
}
#detail .wrap_prd .info .info_layer .list .list_option li .price .per_one,
.info_layer .list .list_option li .price .per_one {
  margin-top: 6px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.07px;
  color: #ce5858;
}
#detail .wrap_prd .info .info_layer .list .list_option li .price .per_one em,
.info_layer .list .list_option li .price .per_one em {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.07px;
  font-style: normal;
  color: #ce5858;
}
#detail .wrap_prd .info .info_layer .list_set,
.info_layer .list_set {
  margin-top: 20px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}
#detail .wrap_prd .info .info_layer .list_set > h3,
.info_layer .list_set > h3 {
  padding: 10px 0;
  border: 1px solid #e0e0e0;
  border-width: 1px 0;
}
#detail .wrap_prd .info .info_layer .list_set > .box,
.info_layer .list_set > .box {
  overflow: auto;
  max-height: 223px;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul,
.info_layer .list_set > .box > ul {
  margin-bottom: -1px;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li,
.info_layer .list_set > .box > ul > li {
  display: table;
  border-top: 1px solid #e0e0e0;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li:first-child,
.info_layer .list_set > .box > ul > li:first-child {
  border-top: 0;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div,
.info_layer .list_set > .box > ul > li > div {
  display: table-cell;
  padding: 10px 0;
  vertical-align: middle;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.img,
.info_layer .list_set > .box > ul > li > div.img {
  width: 17%;
  padding: 0;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.img img,
.info_layer .list_set > .box > ul > li > div.img img {
  width: 100%;
  height: auto;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.info,
.info_layer .list_set > .box > ul > li > div.info {
  width: 59%;
  padding: 10px 20px;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.info *,
.info_layer .list_set > .box > ul > li > div.info * {
  font-size: 13px;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.opt,
.info_layer .list_set > .box > ul > li > div.opt {
  width: 24%;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.opt input[type='text'],
.info_layer .list_set > .box > ul > li > div.opt input[type='text'],
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.opt select,
.info_layer .list_set > .box > ul > li > div.opt select {
  width: 100%;
  height: 35px;
  margin: 2px 0;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.btn,
.info_layer .list_set > .box > ul > li > div.btn {
  width: 29%;
  padding-right: 20px;
  font-size: 0;
  text-align: right;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.btn .box_btn,
.info_layer .list_set > .box > ul > li > div.btn .box_btn {
  margin: 0 2px;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.btn .box_btn *,
.info_layer .list_set > .box > ul > li > div.btn .box_btn * {
  height: 34px;
  padding: 8px 0;
}
#detail .wrap_prd .info .info_layer .list_set > .box > ul > li > div.btn .quick > a,
.info_layer .list_set > .box > ul > li > div.btn .quick > a {
  width: 34px;
  height: 34px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_set_quick.png') no-repeat center;
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
}
#detail .wrap_prd .info .info_layer .list_set.select > .box > ul > li > div.info,
.info_layer .list_set.select > .box > ul > li > div.info {
  width: 30%;
}
#detail .restock {
  padding-top: 20px;
}
#detail .restock > p {
  float: left;
  font-size: 11px;
}
#detail .restock > a {
  display: inline-block;
  float: right;
  margin-right: 5px;
  padding: 2px 5px;
  border: 1px solid #c3c3c3;
  font-size: 11px;
  cursor: pointer;
}
#detail .restock > a:hover {
  background-color: #f5f5f5;
}
#detail .restock:after {
  display: block;
  clear: both;
  content: '';
}
#detail .info_layer .multi_opt {
  padding: 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
#detail .multi_opt .selected_list {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}
#detail .multi_opt .selected_list li {
  /* margin-bottom: 10px; */
  margin-bottom: 16x;
  background: #FAFAFA;
  display: grid;
  padding: 16px;
  row-gap: 16px;
}
#detail .multi_opt .selected_list li .name {
  min-width: 157px;
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; 
}
#detail .multi_opt .selected_list li .option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
}
#detail .multi_opt .selected_list li .option .price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  letter-spacing: -0.07px;
}
#detail .multi_opt .selected_list li .option .price span {
  display: block;
  margin-right: 2px;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.08px;
}
#detail .multi_opt .selected_list li .del button {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  background: url('/_skin/radiwell_kor_2/img/common/icon_delete.png') no-repeat 50% 50%;
}

#detail .multi_opt .opt_total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
}
#detail .multi_opt .opt_total .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: -0.1px;
  color: #3a3a3a;
}
#detail .multi_opt .opt_total .price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#detail .multi_opt .opt_total .price strong {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #3a3a3a;
}
#detail .multi_opt .opt_total .price strong span {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.13px;
  color: #000000;
}
#detail .multi_opt .opt_total .price .tips {
  margin-top: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.07px;
  color: #666666;
}
#detail .multi_opt .opt_total .price .tips em {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.07px;
  font-style: normal;
  color: #ce5858;
}
#detail .wrap_prd .info .info_layer .multi_opt .opt_total .coupon {
  display: none;
  margin-right: 5px;
  padding: 2px 20px 2px 5px;
  border: 1px solid #c3c3c3;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/apply_coupon.png') no-repeat 90% center;
  font-size: 11px;
  cursor: pointer;
}
#detail .wrap_prd .info .info_layer .multi_opt .opt_total .coupon:hover {
  background-color: #f5f5f5;
}
#detail .wrap_prd .info .info_layer .btn {
  display: flex;
  gap: 5px;
  margin: 10px 0;
}

#detail .wrap_prd .info .info_layer .btn .btnSection {
  display: flex;
  gap: 5px;
  width: 100%;
}

#detail .wrap_prd .info .info_layer .btn .btnSection_regPrd {
  display: flex;
  gap: 5px;
  width: 100%;
}

#detail .wrap_prd .info .info_layer .btn button,
.info_layer .btn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  height: 56px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  border: 1px solid var(--neutral-800, #262626);
}

#detail .btn .btn_line {
  color: #000000;
}
#detail .btn .btn_black {
  color: #ffffff;
  background-color: #000000;
}
#detail .wrap_prd .info .info_layer .btn button.present {
  flex: none;
  width: 100px;
}
#detail .wrap_prd .info .info_layer .btn button.present:before {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background: url('/_skin/radiwell_kor_2/img/common/icon_present.png') no-repeat 0 0;
}
.info_layer .btn button.present:before {
  display: none;
}

.count_share .sns a > span {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
}

.count_share .sns a > span {
  background-size: 100% 100%;
  opacity: 0.2;
}

.count_share .sns a > span.kakao {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_kakao.png');
}
.count_share .sns a > span.kakaostory {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_kakaostory.png');
}
.count_share .sns a > span.facebook {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_facebook.png');
}
.count_share .sns a > span.twitter {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_twitter.png');
}


#detail .wrap_info:after {
  display: block;
  content: '';
  clear: both;
}
/* #detail .wrap_info .tab {
  display: flex;
  position: sticky;
  top: var(--brand-top);
  z-index: 10;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  justify-content: center; 
  background: white;
  border-bottom: 1px solid #EEE;
} */


#detail .wrap_info .tab li {
  cursor: pointer;
  flex: 1;
  display: inline;
  position: relative;
  /* max-width: 150px; */
  /* text-align: center; */
  justify-content: center;
  display: grid;
}
#detail .wrap_info .tab li a {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 10px;
  /* min-width: 200px; */
}
#detail .wrap_info .tab li a.active {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  letter-spacing: -0.5px;
}

#detail .wrap_info .tab li a.active:after {
  background-color: black;
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

#detail .wrap_info .tabcnt_detail.tabcnt_detail0 {
  padding-top: 0;
}
#detail .wrap_info .tabcnt_detail .title_tabcont {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000000;
}
#detail .wrap_info .tabcnt_detail .title_tabcont h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: -0.1px;
}
#detail .wrap_info .tabcnt_detail .table_row {
  width: 100%;
  border: 1px solid #e0e0e0;
}
#detail .wrap_info .tabcnt_detail .table_row th {
  padding: 40px 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.09px;
  text-align: left;
  border: 1px solid #e0e0e0;
  background-color: #f1f1f1;
}
#detail .wrap_info .tabcnt_detail .table_row td {
  padding: 40px 70px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.08px;
  text-align: left;
  border: 1px solid #e0e0e0;
}
#detail .wrap_info .btn_bottom {
  margin-top: 20px;
  text-align: right;
}
#detail .wrap_info .detail_info,
#detail .wrap_info .common_info {
  word-break: break-all;
}
#detail .wrap_info .detail_info {
  margin-bottom: 30px;
  text-align: center;
}
#detail .wrap_info .detail_info * {
  font-family: inherit;
  font-size: inherit;
  text-align: inherit;
  line-height: inherit;
}
#detail .wrap_info .detail_info img,
#detail .wrap_info .common_info img {
  max-width: 100%;
  height: auto;
  font-size: 0;
  line-height: 0;
}
#detail .wrap_info .title_related {
  padding: 12px 0;
  font-style: italic;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
}
/* #detail .wrap_info > * {
  flex: none;
} */
#detail .wrap_info .info_detail {
  width: 860px;
}

#detail .wrap_info .info_layer .inner::-webkit-scrollbar {
  width: 4px;
}
#detail .wrap_info .info_layer .inner::-webkit-scrollbar-thumb {
  background-color: #000000;
}
#detail .wrap_info .info_layer .inner::-webkit-scrollbar-track {
  background-color: #d9d9d9;
}
#detail .detail_qnarev .title_review {
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}
#detail .detail_qnarev .title_review .info {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.08px;
  color: #666666;
}
#detail .detail_qnarev .title_review .info strong {
  display: block;
  color: #3a3a3a;
}
#detail .detail_qnarev .title_review .info strong span {
  font-weight: 700;
  color: #396be6;
}
#detail .detail_qnarev .title_review h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: #000000;
}
.title_review_photo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 16px;
}
.title_review_photo h3,
.title_review_photo h3 * {
  color: var(--neutral-800, #262626);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
.title_review_photo .btn_more {
  display: flex;
  align-items: center;
  color: #888;
  text-align: right;
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}
.title_review_photo .btn_more:after {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 4px;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='19.6' fill='white' fill-opacity='0.7' stroke='%23EFEFEF' stroke-width='0.8'/%3E%3Cpath d='M18 15L23 20L18 25' stroke='%23A1A1A1' stroke-width='1.5'/%3E%3C/svg%3E%0A") no-repeat 50% 50%;
 
}
.title_review_all {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E5E5;
}
.title_review_all h3,
.title_review_all h3 * {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.09px;
  color: #3a3a3a;
}

#detail .detail_qnarev .title_qnarev.none {
  border-bottom: 0;
}
#detail .detail_qnarev .title_qnarev > h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: var(--neutral-800, #262626);
  margin-top: 60px;
}
#detail .detail_qnarev .title_qnarev > h3 > span {
  color: var(--neutral-800, #262626);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}
#detail .detail_qnarev .title_qnarev > .btn {
  display: flex;
}
#detail .detail_qnarev .title_qnarev > .btn > a {
  display: inline-flex;
  height: 34px;
  margin-left: 6px;
}
#detail .detail_qnarev .title_qnarev > .btn > a.write {
  display: inline-flex;
  align-items: center;
  border: 1px solid #000;
}

#detail .detail_qnarev .title_qnarev > .btn > a.list {
  display: inline-flex;
  align-items: center;
}

.title_review_all > .sort {
  display: flex;
  align-items: center;
}
.title_review_all > .sort > li {
  display: inline-block;
}
.title_review_all > .sort > li:after {
  display: inline-block;
  width: 1px;
  height: 11px;
  margin: 5px 12px 0 12px;
  background-color: #e5e5e5;
  vertical-align: top;
  content: '';
}
.title_review_all > .sort > li:last-child:after {
  display: none;
}
.title_review_all > .sort > li a {
  color: #888;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
}
.title_review_all > .sort > li a.selected {
  color: var(--neutral-800, #262626);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  cursor: pointer;
}
.list_review_photo {
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
  overflow: hidden;
}
#qnarev_list_all .list_review_photo > div {
  width: 150px;
  height: 150px;
}
.list_review_photo > div a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.list_review_photo > div a img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.sorting_review_photo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sorting_review_photo .select_sort {
  padding: 0;
  margin-right: auto;
  padding-right: 14px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.08px;
  color: #666666;
  border: 0;
  background: url('/_skin/radiwell_kor_2/img/common/arr_select_s.png') no-repeat 100% 50%;
}
.sorting_review_photo .check_sort {
  margin-right: 23px;
}
.sorting_review_photo .checkbox_sort {
  position: relative;
}
.sorting_review_photo .checkbox_sort input[type='checkbox'] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.sorting_review_photo .checkbox_sort input[type='checkbox'] + span {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.08px;
  color: #666666;
}
.sorting_review_photo .checkbox_sort input[type='checkbox'] + span:before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  margin-right: 1px;
  background: url('/_skin/radiwell_kor_2/img/common/check_circle.png') no-repeat 50% 50%;
}
.sorting_review_photo .checkbox_sort input[type='checkbox']:checked + span:before {
  background: url('/_skin/radiwell_kor_2/img/common/check_circle_checked.png') no-repeat 50% 50%;
}
.sorting_review_photo .search_sort {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 320px;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
}
.sorting_review_photo .search_sort input[type='text'] {
  flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.07px;
  border: 0;
}
.sorting_review_photo .search_sort button {
  width: 24px;
  height: 24px;
  background: url('/_skin/radiwell_kor_2/img/button/hd_search.png') no-repeat 50% 50%;
}
.sort_detail {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.sort_detail select {
  height: 36px;
  padding: 0 24px 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: url('/_skin/radiwell_kor_2/img/common/arr_select_s.png') no-repeat right 10px top 50%;
}
#detail .detail_qnarev > .summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 112px;
  padding: 35px 0 40px;
  border-radius: 8px;
  background-color: #eaf0fb;
  text-align: center;
}
#detail .detail_qnarev > .summary > div > h4 {
  font-size: 14px;
  font-weight: normal;
}
#detail .detail_qnarev > .summary > div.count > p {
  margin-top: 25px;
  padding-top: 40px;
  font-size: 20px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_review_count.png') no-repeat center top;
}
#detail .detail_qnarev > .summary > div.count > p strong {
  font-size: 30px;
}
#detail .detail_qnarev > .summary > div.grade {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#detail .detail_qnarev > .summary > div.grade .icon {
  display: inline-block;
  position: relative;
  width: 138px;
  height: 21px;
  margin-top: 35px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/grade.png') no-repeat left top/cover;
}
#detail .detail_qnarev > .summary > div.grade .icon > i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/grade_over.png') no-repeat left top/138px 21px;
}
#detail .detail_qnarev > .summary > div.grade .average {
  display: flex;
  align-items: center;
}
#detail .detail_qnarev > .summary > div.grade .average:before {
  display: block;
  content: '';
  width: 36px;
  height: 35px;
  margin-right: 10px;
  background: url('/_skin/radiwell_kor_2/img/shop/icon_star.png') no-repeat 50% 50%;
}
#detail .detail_qnarev > .summary > div.grade .average strong {
  display: block;
  font-weight: 700;
  font-size: 40px;
  font-family: 'roboto';
  letter-spacing: -0.2px;
}
#detail .detail_qnarev > .summary > div.grade .grade_per {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.07px;
  color: #000000;
}
#detail .detail_qnarev > .summary > div.grade .btn_write {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
  margin-top: 20px;
  padding: 0 16px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.07px;
  color: #ffffff;
  border-radius: 4px;
  background-color: #333333;
}
#detail .detail_qnarev > .summary > div.grade .btn_write:before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background: url('/_skin/radiwell_kor_2/img/shop/icon_write_white.png') no-repeat 50% 50%;
}
#detail .detail_qnarev > .summary > div.ratio .graph {
  margin-top: 10px;
}
#detail .detail_qnarev > .summary > div.ratio .graph > li {
  display: flex;
  align-items: center;
}
#detail .detail_qnarev > .summary > div.ratio .graph > li.great .count {
  color: #000000;
}
#detail .detail_qnarev > .summary > div.ratio .graph > li.great .title {
  color: #000000;
}
#detail .detail_qnarev > .summary > div.ratio .graph > li .title {
  flex: none;
  width: 88px;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.07px;
  color: #8d8d8d;
  text-align: left;
}
#detail .detail_qnarev > .summary > div.ratio .graph > li .bar {
  flex: none;
  width: 160px;
  height: 10px;
  margin-right: 20px;
  border-radius: 100px;
  background-color: #c5d0ec;
}
#detail .detail_qnarev > .summary > div.ratio .graph > li .bar > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background-color: #396be6;
}
#detail .detail_qnarev > .summary > div.ratio .graph > li .bar.max > i {
  background-color: #e35050;
}
#detail .detail_qnarev > .summary > div.ratio .graph > li .bar.min > i {
  background-color: #b8b7b7;
}
#detail .detail_qnarev > .summary > div.ratio .graph > li .count {
  min-width: 30px;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.07px;
  color: #8d8d8d;
}
.detail_qnarev .list > li {
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #F0F0F0;
  flex-wrap: wrap;
  row-gap: 16px;
}
.detail_qnarev .list > li:last-child {
  border-bottom: none;
}

.detail_qnarev .list > li > .info {
  vertical-align: middle;
  display: grid;
  gap: 16px;
}
#detail .detail_qnarev .list > li > .info .info_top {
  display: flex;
  justify-content: space-between;
}

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

.info_top .name {
  overflow: hidden;
  color: var(--neutral-400, #A3A3A3) !important;
  text-align: right;
  text-overflow: ellipsis;
  font-size: 13px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: -0.5px;
}

.info_top .name span {
  overflow: hidden;
  color: var(--neutral-400, #A1A1A1);
  text-align: right;
  text-overflow: ellipsis;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 150% */
  margin-right: 8px;
}

.detail_qnarev .list > li > .info .grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  margin-left: 10px;
  padding: 0 5px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.06px;
  border-radius: 2px;
  background-color: #f1f1f1;
}
.detail_qnarev .list > li > .info .name {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: -0.07px;
  color: #557ac1;
}
.detail_qnarev .list > li > .info .name .date {
  display: inline-flex;
  margin-left: 20px;
  font-weight: 500;
  color: #8d8d8d;
}
.detail_qnarev .list > li > .info .name img {
  width: auto;
  height: 16px;
  margin-top: 1px;
  vertical-align: top;
}
.detail_qnarev .list > li > .info .prd_name {
  padding-top: 10px;
}
.detail_qnarev .list > li > .info .prd_name a {
  color: #555;
  font-size: 14px;
}
.detail_qnarev .list > li > .info .product {
  display: inline-flex;
  align-items: center;
  height: 30px;
  margin-top: 10px;
  padding: 0 10px 0 0;
  font-size: 14px;
  letter-spacing: -0.03px;
  color: #666666;
  border-radius: 4px;
  border: 1px solid #dadada;
  background-color: #f5f5f5;
}
.detail_qnarev .list > li > .info .product .nail {
  flex: none;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  overflow: hidden;
}
.detail_qnarev .list > li > .info .product .nail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}
.detail_qnarev .list > li > .info .info_badge {
  margin-top: 10px;
}
.detail_qnarev .list > li > .info .info_badge .badge {
  display: inline-block;
  border-radius: 50px;
  padding: 1px 10px;
  font-size: 10px;
  margin-right: 5px;
}
.detail_qnarev .list > li > .info .info_badge .badge.best {
  background: #557ac1;
  color: #fff;
}
.detail_qnarev .list > li > .info .info_badge .badge.hot {
  background: #557ac1;
  color: #fff;
}
.detail_qnarev .list > li > .info .title {
  display: flex;
  align-items: flex-start;
  width: 680px;
}
.detail_qnarev .list > li > .info .title:hover {
  text-decoration: underline;
}
.detail_qnarev .list > li > .info .title a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.detail_qnarev .list > li > .info .title,
.detail_qnarev .list > li > .info .title * {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.09px;
}
.detail_qnarev .list > li > .info .title {
  padding-top: 10px;
}
.detail_qnarev .list > li > .info .title img {
  flex: none;
  margin: 6px 2px 0 0;
}
.detail_qnarev .list > li > .info .content {
  /* display: -webkit-box; */
  color: var(--neutral-900, #171717);
  /* text-overflow: ellipsis; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  white-space: break-spaces;
  /* overflow: hidden; */
  /* -webkit-line-clamp: 2; */
  /* -webkit-box-orient: vertical; */
  
}
.detail_qnarev .list > li > .info .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #999;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
/* .detail_qnarev .list > li > .info .more:after {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
   background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M4 6.90564L8 10.9056L12 6.90564' stroke='%23A1A1A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  
} */
#qnarev_list_all .detail_qnarev .list > li > .info_Y {
  width: 1120px;
}

#qnarev_list_all .detail_qnarev .list > li > .info_Y .show {
  width: 1322px;
}

#qnarev_list_all .detail_qnarev .list > li > .info_ {
  width: 1322px;
}
.detail_qnarev .list > li.show > .upfile .lg {
  display: block;
  font-size: 0;
}
.detail_qnarev .list > li.show > .upfile .sm {
  display: none;
}
.detail_qnarev .list > li.show {
  flex-direction: column;
  align-items: flex-start !important;
}
.detail_qnarev .list > li.show > .info .more:after {
  transform: rotate(180deg);
}
.detail_qnarev .list > li.show > .info .title a {
  text-overflow: initial;
  white-space: wrap;
}
.detail_qnarev .list > li.show > .info .content {
  display: block;
  text-overflow: initial;
  white-space: wrap;
}
.detail_qnarev .list > li.show > .upfile {
  display: flex;
  flex-direction: column;
  width: 680px;
  height: auto;
  margin: 0;
}
.detail_qnarev .list > li.show > .upfile img:first-child {
  margin-top: 0;
}
.detail_qnarev .list > li.show > .upfile img {
  max-width: 680px;
  width: auto;
  height: auto;
  margin-top: 8px;
}
.detail_qnarev .list > li.show > .upfile span {
  display: none;
}
.detail_qnarev .list > li.show > .upfile .more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 150% */
}
.detail_qnarev .list > li.show > .upfile .more:after {
  display: block;
  content: '';
  width: 12px;
  height: 8px;
  background: url('/_skin/radiwell_kor_2/img/shop/arr_fold.png') no-repeat 50% 50%;
  transform: rotate(180deg);
}
.detail_qnarev .list > li > .upfile .lg {
  display: none;
}
.detail_qnarev .list > li > .upfile .sm {
  display: block;
}
.detail_qnarev .list > li > .upfile .more {
  display: none;
}
.detail_qnarev .list > li > .upfile {
  flex: none;
  display: block;
  position: relative;
  width: 160px;
  height: 160px;
}
.detail_qnarev .list > li > .upfile > .sm {
  display: block;
  position: relative;
  overflow: hidden;
}
.detail_qnarev .list > li > .upfile img {
  display: block;
  position: relative;
  width: 160px;
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}



.detail_qnarev .list > li > .upfile .count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 9px;
  left: 10px;
  min-width: 30px;
  height: 20px;
  padding: 0 5px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.07px;
  color: #fff;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.3);
}
#qnarev_list_all .detail_qnarev .list > li > .upfile {
  width: 160px;
  height: 160px;
}
#qnarev_list_all .detail_qnarev .list > li.show > .upfile {
  width: 680px;
  height: auto;
  margin: 0;
}
#detail .best_review {
  display: flex;
  justify-content: space-around;
  margin-top: 32px;
  padding: 19px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin: 60px 40px 0 40px;
}
#detail .best_review .title {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.07px;
  color: #000000;
  text-align: center;
}
#detail .best_review .grade {
  width: 108px;
  padding-left: 10px;
}
#detail .best_review .grade .average {
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.2px;
  line-height: 47px;
  color: #000000;
  text-align: center;
}
#detail .best_review .grade .icon {
  display: block;
  position: relative;
  width: 108px;
  height: 20px;
  margin-top: 8px;
  background: url('/_skin/radiwell_kor_2/img/shop/grade_star.png') no-repeat 0 0;
  background-size: 100% 100%;
}
#detail .best_review .grade .icon > i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: url('/_skin/radiwell_kor_2/img/shop/grade_star_over.png') no-repeat 0 0;
  background-size: auto 100%;
}
#detail .best_review .list {
  position: relative;
  width: 460px;
  padding-right: 18px;
}
#detail .best_review .list button {
  width: 70px;
  height: 70px;
  overflow: hidden;
}
#detail .best_review .list button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#detail .best_review .list .slick-arrow {
  position: absolute;
  top: 20px;
  z-index: 3;
  width: 16px;
  height: 30px;
  background-color: #fff;
  text-align: center;
}
#detail .best_review .list .slick-arrow:after {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #a7a7a7;
  content: '';
}
#detail .best_review .list .slick-prev {
  left: -17px;
}
#detail .best_review .list .slick-prev:after {
  margin-left: 2px;
  border-width: 1px 0 0 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#detail .best_review .list .slick-next {
  right: 0;
}
#detail .best_review .list .slick-next:after {
  margin-left: 2px;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#detail .best_review .list .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 116px;
  height: 116px;
  border: 1px solid #e0e0e0;
  vertical-align: middle;
}
#detail .best_review .list .box > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}
#detail .list_photo {
  position: relative;
  width: 1100px;
  font-size: 0;
}
#detail .list_photo .slick-arrow {
  position: absolute;
  top: -50px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  text-align: center;
}
#detail .list_photo .slick-arrow:after {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #a7a7a7;
  content: '';
}
#detail .list_photo .slick-arrow:hover {
  background-color: #f6f6f6;
}
#detail .list_photo .slick-arrow:hover:after {
  border-color: #e35050;
}
#detail .list_photo .slick-prev {
  right: 29px;
}
#detail .list_photo .slick-prev:after {
  margin-left: 12px;
  border-width: 1px 0 0 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#detail .list_photo .slick-next {
  right: 0;
}
#detail .list_photo .slick-next:after {
  margin-left: 5px;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#detail .list_photo .slick-dots {
  margin-top: 20px;
}
#detail .list_photo .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 116px;
  height: 116px;
  border: 1px solid #e0e0e0;
  vertical-align: middle;
}
#detail .list_photo .box > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}
#detail .wrap_info .tabcnt_detail .table_row {
  width: 100%;
  border: 1px solid #e0e0e0;
}
#detail .wrap_info .tabcnt_detail .table_row th {
  padding: 30px 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.09px;
  text-align: left;
  border: 1px solid #e0e0e0;
  background-color: #f1f1f1;
}
#detail .wrap_info .tabcnt_detail .table_row td {
  padding: 30px 30px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.08px;
  text-align: left;
  border: 1px solid #e0e0e0;
  color: #666;
}

/* 상품상세페이지 - 개인결제 (/shop/detail_private.php) */
#detail.private .wrap_prd .info {
  padding-top: 100px;
  text-align: center;
}
#detail.private .price .sell,
#detail.private .price .sell * {
  font-size: 30px;
}
#detail.private .wrap_info {
  border-top: 0;
}

/* 퀵프리뷰 - 팝업(/shop/detail_popup.php) */
#detail_pop {
  position: relative;
  padding: 30px;
}
#detail_pop #detail {
  margin-top: 0;
}
#detail_pop .close {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  width: 21px;
  height: 21px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/hd_close.png') no-repeat center;
  text-indent: -9999px;
  cursor: pointer;
}

/* 상품이미지줌 - 팝업(/shop/zoom.php) */
#zoomimg {
  text-align: center;
}
#zoomimg h2 {
  padding: 10px 60px 10px 20px;
  background: #676767;
  color: #fff;
  font-size: 14px;
  text-align: left;
}
#zoomimg .img {
  margin: 40px auto 10px;
}
#zoomimg .img img {
  max-width: 500px;
  max-height: 500px;
}
#zoomimg .list {
  width: 500px;
  margin: 10px auto 0;
}
#zoomimg .list li {
  float: left;
  margin: 0 0 10px 10px;
}
#zoomimg .list li:nth-child(5n + 1) {
  margin-left: 0 !important;
}
#zoomimg .list li img {
  max-width: 92px;
  max-height: 92px;
}
#zoomimg .list:after {
  display: block;
  clear: both;
  content: '';
}
#zoomimg .box_btn {
  position: absolute;
  right: 10px;
  top: 7px;
}

/* 상품갯수 - 장바구니(/shop/cart.php), 주문서(/shop/order.php) */
.enterprise {
  padding-top: 30px;
}
.enterprise.headY {
  padding-top: 0;
}
.msg_delivery {
  position: relative;
  margin: 0px 0 16px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

/* 장바구니(/shop/cart.php) */
#cart:after {
  display: block;
  clear: both;
  content: '';
}
#cart .tab_sbs {
  display: flex;
  margin: 32px 0;
  margin-top: 0px;
  font-size: 0;
  text-align: center;
  width: 100%;
  gap: 16px;
}
#cart .tab_sbs > li {
  display: inline-block;
  font-size: 0;
  flex: 1;
}
#cart .tab_sbs > li > a {
  display: block;
  position: relative;
  padding: 16px;
  color: var(--neutral-400, #A1A1A1);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 8px;
  border: 1px solid var(--neutral-300, #D4D4D4);
}
#cart .tab_sbs > li > a > span {
  color: #999;
}
#cart .tab_sbs > li.active > a {
  z-index: 1;
  border: 1px solid var(--neutral-800, #262626);
  background: white;
  color: var(--neutral-800, #262626);
  font-size: 18px;
  line-height: normal;
}


/* 마이페이지 */
#mypage .tab_sbs {
  display: flex;
  margin: 32px 0;
  margin-top: 0px;
  font-size: 0;
  text-align: center;
  width: 100%;
}
#mypage .tab_sbs > li {
  display: inline-block;
  font-size: 0;
}
#mypage .tab_sbs > li > a {
  display: block;
  position: relative;
  padding: 16px;
  border-bottom: 1px solid #CCC;
  background: #FAFAFA;
  color: #888;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 250px;
  border-radius: 4px 4px 0px 0px;
}
#mypage .tab_sbs > li > a > span {
  color: #999;
}
#mypage .tab_sbs > li.active > a {
  z-index: 1;
  border-color: black;
  border: 1px solid #CCC;
  background: white;
  border-bottom: 0;
  color: var(--neutral-800, #262626);
  font-size: 16px;
  line-height: normal;
  border-radius: 4px 4px 0px 0px;
  width: 250px;
}


#cart .area_left {
  float: left;
  width: 64%;
}
#cart .area_left .msg dt {
  padding-bottom: 10px;
  font-weight: bold;
}
#cart .area_left .msg dd {
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

#cart > form > div > ul > li > div.box.flex.gap-4.mt-8 > div.img > a > img {
  border-radius: 8px;
}

#cart .area_right {
  float: right;
  position: sticky;
  top: 165px;
  
}
#cart .area_right .box {
  display: flex;
  border-radius: 8px;
  width: 396px;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #E5E5E5;
}
#cart .area_right .box.mim {
  border: 1px solid #c3c3c3;
  background: #fff;
}
#cart .area_right .box .box_btn {
  margin-top: 6px;
}
#cart .pay > div {
  padding-top: 10px;
}
/* 장바구니 옵션 변경 */
.cart_change_option {
  width: 688px;
}
.cart_change_option h3 {
  font-size: 20px;
  font-weight: normal;
}
.cart_change_option .opt {
  color: var(--neutral-800, #262626);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
}
.cart_change_option .opt span {
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  background: #eee;
  color: #666;
}
.cart_change_option table {
  width: 100%;
  table-layout: fixed;
}
.cart_change_option table > thead {
  display: none;
}
.cart_change_option table > tbody > tr > th {
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-align: left;
  line-height: 24px; /* 150% */
  margin-bottom: 12px;
}
.cart_change_option table > tbody > tr > td {
  vertical-align: middle;
}
.cart_change_option table > tbody > tr > td select {
  width: 100%;
}
.cart_change_option .total {
  position: relative;
  margin-top: 15px;
  padding: 15px 10px;
  border: 1px solid #e0e0e0;
  border-width: 1px 0;
}
.cart_change_option .total .price strong {
  font-size: 20px;
}
.cart_change_option .btns {
  padding-top: 42px;
  text-align: center;
  padding-bottom: 16px;
  width: 152px;
  margin: 0 auto;
}
/* 장바구니 입점몰 계산 박스 */
#cart .cart_sum {
  position: relative;
  padding: 30px 60px;
  border-bottom: 1px solid #dadada;
  background: #f8f8f8;
  text-align: right;
}
#cart .cart_sum:after {
  display: block;
  clear: both;
  content: '';
}
#cart .cart_sum .delivery_msg {
  position: absolute;
  left: 30px;
  top: 50%;
  z-index: 10;
  margin-top: -7px;
  text-align: left;
  font-weight: bold;
}
#cart .cart_sum table {
  width: 25%;
  float: right;
}
#cart .cart_sum table th {
  padding: 5px 0;
  color: #666;
  font-weight: normal;
  text-align: left;
}
#cart .cart_sum table td {
  padding: 5px 0;
  color: #666;
  text-align: right;
}
/* 장바구니 개별상품 쿠폰적용 */
/* #cart .cart_prc > .after {
  display: none;
} */
#cart .cart_prc.is_sale > .before {
  text-decoration: line-through;
}
#cart .cart_prc.is_sale > .after {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

/* 주문서(/shop/order.php) */
#order:after {
  display: block;
  clear: both;
  content: '';
}
#order .guest {
  padding-bottom: 40px;
}
#order .guest .agree_guest {
  padding-bottom: 20px;
}
#order .guest .box_frame {
  border: 1px solid #ebebeb;
}
#order .guest .box_frame iframe {
  width: 100%;
  height: 162px;
  border: 0;
}
#order .print_receipt {
  padding-bottom: 16px;
  text-align: right;
  line-height: 30px;
}
#order .ord_info {
  display: flex;
}

@media (max-width: 1024px) {
  #order .ord_info {
    display: grid;
  }
}
#order .ord_info > .area_right {
  padding-left: 30px;
}
#order .ord_info > .area_right .inner {
  float: right;
  position: sticky;
  position: -webkit-sticky;
  top: 30px;
}
#order .ord_info > .area_right .box {
  width: 390px;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  background: #FFF;
}
#order .ord_info > .area_right .box .line {
  margin-top: 25px;
  border-top: 1px solid #dfdfdf;
}
#order .coupon_list li {
  position: relative;
  margin-top: 10px;
  padding-left: 25px;
}
#order .coupon_list li:first-child {
  margin-top: 0;
}
#order .coupon_list li .check {
  position: absolute;
  left: 0;
  top: -2px;
}
#order .coupon_list li .name {
  font-weight: bold;
}
#order .coupon_list li .content {
  font-size: 11px;
}
#order .offcpn #off_cpn_div2,
#order .offcpn #off_cpn_img2 {
  display: none;
}
#order .offcpn #off_cpn_div2 p {
  margin-bottom: 5px;
}
#order .offcpn #off_cpn_div2 .offbtn {
  text-align: right;
}
#order .offcpn .box_btn.small a {
  min-width: 89px;
}
#order .title_delivery h3.title {
  display: inline-block;
}
#order .pay_sbs {
  margin-bottom: 20px;
}
#order .pay_sbs:after {
  display: block;
  clear: both;
  content: '';
}
#order .pay_sbs > div {
  float: left;
  width: 50%;
  margin-left: -1px;
}
#order .pay_sbs > div > input {
  display: none;
}
#order .pay_sbs > div > label {
  display: block;
  position: relative;
  padding: 10px 5px;
  border: 1px solid #dcdcdc;
  color: #888;
  text-align: center;
  cursor: pointer;
}
#order .pay_sbs > div > label:before {
  display: inline-block;
  width: 9px;
  height: 8px;
  margin-right: 5px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/bullet_check.png') no-repeat center;
  content: '';
}
#order .pay_sbs > div > input:checked + label {
  z-index: 5;
  border-color: #676767;
  background-color: #fff;
  color: #333;
}
#order .method > div {
  position: relative;
  padding: 25px 0 10px 25px;
}
#order .method > div > label {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
#order .method > div .msg_pay {
  padding: 0 !important;
  color: #999 !important;
}
#order .method > div .bank_name {
  display: none;
}
#order .method > div #cash_reg {
  padding: 5px 0 !important;
}
#order .method > div #cash_reg span {
  color: #999 !important;
}
#order .method > div select {
  width: 100%;
  margin-bottom: 5px;
}
#order .order_cancel_msg {
  color: #666;
}
#order .reconfirm {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #dfdfdf;
}
#order .reconfirm > label {
  display: block;
  position: relative;
  padding: 15px 15px 15px 40px;
  background-color: #e7e7e7;
  cursor: pointer;
}
#order .reconfirm > label > input {
  position: absolute;
  left: 15px;
  top: 15px;
}
#order #order1 .box_btn {
  margin-top: 10px;
}
#order #order2 {
  display: none !important;
  clear: both;
  margin-top: 30px;
  padding: 50px 0;
  border: 1px solid #dedede;
  text-align: center;
}
#order #order2 .paytype_gr1 {
  padding-bottom: 23px;
  font-size: 16px;
  font-weight: bold;
}
#order #order2 .paytype_gr1 strong,
#order #order2 .paytype_gr1 strong * {
  font-size: inherit;
}
#order #order2 .msg {
  padding-bottom: 23px;
  color: #888;
}

/* 주문완료(/shop/order_finish.php) */
#orderfin {
  width: 640px;
  margin: 0 auto;
  text-align: center;
}
@media all and (max-width: 1200px) {
  #orderfin {
    width: auto;
  }
}
#orderfin * {
  font-size: 16px;
}
#orderfin h3 {
  padding: 30px 0 20px;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}
#orderfin .box {
  margin-bottom: 30px;
  padding: 40px 80px;
  background: #fafafa;
}
#orderfin .info {
  padding-bottom: 32px;
}
#orderfin .info .bank {
  padding-bottom: 20px;
  color: #888;
  font-size: 14px;
}
#orderfin .info .email {
  color: #888;
  font-size: 14px;
}
#orderfin .box_gift .box_btn {
  margin-top: 20px;
}
#orderfin .btn {
  padding-top: 20px;
  text-align: center;
}
#orderfin .tal {
  padding-left: 20px;
}


.payment-section {
  display: flex;
  flex-wrap: wrap; /* 줄바꿈 허용 */
  gap: 8px; /* 항목 간 간격 */
  margin-top: 10px;
  cursor: pointer;
}
.payment-section > div > label{
  cursor: pointer;
}


.payment-section div {
  flex: 0 1 calc(22% - 1em); /* 4개씩 배치 */
  box-sizing: border-box;
  padding: 14px;
  border: 1px solid #E5E5E5;
  text-align: center;
  cursor: pointer;
  color: var(--neutral-800, #262626);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  cursor: pointer;
}


div .payment-section .restrict-taxfree.disabled {
  border: 1px solid #E5E5E5;
  background: #E5E5E5;
  color: #888;
  pointer-events: none; 
}

.restrict-taxfree.disabled label {
  pointer-events: none;
}


.payment-type-selector > span{
  padding: 8px 0;

} 

.payment-type-selector > span > label {
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}

.payment-type-selector > span:nth-child(3) {
  border-top: 1px solid  #E5E5E5;
  margin-top: 16px;
  padding: 16px 0;
}

.part_method div.selected {
  border-color: black;
}

.part_method input[type="radio"][name="pay_type"] {
  display: none;
}



/* 상품검색(/shop/search_result.php) */
#search_result .research {
  position: relative;
  padding-right: 60px;
  background: #fafafa;
}
#search_result .research:after {
  display: inline-block;
  position: absolute;
  right: 60px;
  top: 17px;
  width: 1px;
  height: 25px;
  background: #d5d5d5;
  content: '';
}
#search_result .research .form_input.search {
  height: 60px;
  border-color: #fafafa;
  background: transparent;
  font-size: 14px;
}
#search_result .research .btn {
  position: absolute;
  right: 0;
  top: 0;
  padding: 17px;
}
#search_result .check {
  display: inline-block;
  padding: 15px 0 5px;
}
#search_result .rank {
  position: relative;
  z-index: 2;
  float: right;
  width: 220px;
  margin-top: -40px;
  padding: 16px 0;
}
#search_result .rank > ol {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0px;
  width: 124px;
  height: 45px;
  padding: 10px 0;
  border: 1px solid #fff;
  background-color: #fff;
}
#search_result .rank > ol li {
  overflow: hidden;
  padding: 5px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#search_result .rank > ol li span {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  border-radius: 50%;
  background: #ebebeb;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 18px;
}
#search_result .rank > ol:after {
  display: block;
  position: absolute;
  right: 5px;
  top: 20px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  content: '';
}
#search_result .rank > ol:hover {
  height: auto;
  border: 1px solid #dcdcdc;
}
#search_result .rank > ol:hover:after {
  display: none;
}
#search_result .category {
  clear: both;
  border: 1px solid #e0e0e0;
  background: #fff;
}
#search_result .result_cate {
  overflow: hidden;
  padding: 0 25px;
  border-top: 1px solid #e0e0e0;
}
#search_result .result_cate:first-child {
  border-top: 0;
}
#search_result .result_cate:after {
  clear: both;
}
#search_result .result_cate > h3 {
  float: left;
  line-height: 38px;
}
#search_result .result_cate > ul {
  width: 85%;
  margin-left: 15%;
  text-align: left;
}
#search_result .result_cate > ul > li {
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  width: 20%;
  height: 40px;
  white-space: nowrap;
  line-height: 38px;
}
#search_result .result_cate > ul > li a {
  color: #777;
  font-size: 11px;
}
#search_result .result_cate > ul > li a.selected {
  font-weight: bold;
}
#search_result .result_cate > ul > li span {
  color: #aaa;
  font-size: 11px;
}

/* 상품문의 & 상품후기 - 상품정보(/shop/product_review_list.php & /shop/product_qna_list.php) */
#qnarev_list_all .photo_sort {
  position: relative;
  margin-bottom: 20px;
}
#qnarev_list_all .photo_sort .check {
  position: absolute;
  top: 0;
  left: 0;
}
#qnarev_list_all .photo_sort .sort {
  text-align: right;
  font-size: 0;
}
#qnarev_list_all .photo_sort .sort li {
  display: inline-block;
}
#qnarev_list_all .photo_sort .sort li:after {
  display: inline-block;
  width: 1px;
  height: 14px;
  margin: 5px 10px 0 10px;
  background-color: #e5e5e5;
  vertical-align: top;
  content: '';
}
#qnarev_list_all .photo_sort .sort li:last-child:after {
  display: none;
}
#qnarev_list_all .photo_sort .sort li a {
  color: #666;
  font-size: 14px;
}
#qnarev_list_all .photo_sort .sort li a.selected {
  padding-left: 13px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/bullet_check.png') no-repeat left center;
  color: #333;
  font-weight: bold;
}
#qnarev_list_all > .btn {
  position: relative;
  bottom: -30px;
  height: 0;
}
#qnarev_list_all > .btn .box_btn {
  position: absolute;
  right: 0;
  top: 0;
}
#qnarev_list_all .board_search {
  clear: both;
  text-align: center;
}
#qnarev_list_all .board_search form {
  display: inline-block;
  margin: 30px auto 0;
  padding: 5px;
  border: 1px solid #dcdcdc;
  text-align: center;
}
#qnarev_list_all .board_search select {
  border: 0;
}
#qnarev_list_all .board_search input.form_input.search {
  width: 300px;
  border-width: 0;
}
#qnarev_list_all .board_search .btn_search {
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 0;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/search_s.png') no-repeat center;
  vertical-align: top;
  text-indent: -9999px;
  cursor: pointer;
}
#qnarev_list_all .board_search form {
  padding: 5px 5px 5px 20px;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#qnarev_list_all .board_search select {
  width: 85px;
  padding: 0;
  height: auto;
}

/* 상품문의 & 상품후기 & 마이페이지 상품문의 & 마이페이지 상품후기 - 상품정보(/shop/product_review.php & /shop/product_qna.php) */
.qnarev_list .prd {
  overflow: hidden;
  position: relative;
  min-height: 150px;
  padding: 40px 50px;
  margin-bottom: 32px;
  background: #fafbfb;
  color: #474645;
}
.qnarev_list .prd .img {
  float: left;
  width: 150px;
}
.qnarev_list .prd .img img {
  width: 150px;
  height: auto;
}
.qnarev_list .prd .info {
  float: left;
  padding-left: 40px;
  text-align: left;
}
.qnarev_list .prd .info .name {
  padding-bottom: 20px;
  font-weight: bold;
}
.qnarev_list .prd .info .name img {
  padding-right: 5px;
  vertical-align: middle;
}
.qnarev_list .prd .info ul li {
  padding: 5px 0;
  color: #666;
}
.qnarev_list .prd .info ul li .nprice {
  text-decoration: line-through;
}
.qnarev_list .prd .btn_related {
  padding-top: 20px;
}
.qnarev_list .btn {
  padding-top: 20px;
  text-align: left;
  padding-bottom: 16px;
}

.qnarev_list .btn > a:nth-child(1){
  width: 104px;
  padding: 4px 0px;
  border: 1px solid #000;
  /* background: #000; */
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  /* color: #FFF; */
  justify-content: center;
}

.qnarev_list .btn > a:nth-child(2){
  width: 104px;
  padding: 4px 24px;
  border: 1px solid #000;
  background: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  color: black;
  justify-content: center;
}
.qnarev_list .qnarev_cnt {
  padding: 0;
  border-top: 0 !important;
}
.qnarev_list .qnarev_cnt > div {
  display: none;
  /* width: 100%; */
  padding: 32px 0px;
  text-align: left;
  word-break: break-all;
  word-wrap: break-word;
  background: var(--neutral-50, #FAFAFA);
}
.qnarev_list .qnarev_cnt .question,
.qnarev_list .qnarev_cnt .answer {
  position: relative;
  min-height: 40px;
  padding: 0 16px 20px 16px;
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.qnarev_list .qnarev_cnt .answer:before {
  display: inline-block;
  /* position: absolute; */
  left: 0;
  top: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: #262626;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  text-align: center;
  padding-top: 2px;
  content: 'A';
  margin: 0 12px;
}

.qnarev_list .qnarev_cnt .question {
  border-bottom: 1px solid #e5e5e5;
}

.qnarev_list .qnarev_cnt .question:before {
  display: inline-block;
  /* position: absolute; */
  left: 0;
  top: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--neutral-400, #A1A1A1);
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  text-align: center;
  padding-top: 2px;
  content: 'Q'; 
  margin: 0 12px;
}
.qnarev_list .qnarev_cnt .question img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.qnarev_list .qnarev_cnt .answer {
  margin-top: 20px;
  color: #000000;
}
.qnarev_list .qnarev_cnt .icon {
  position: absolute;
  left: -22px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url('/_skin/radiwell_kor_2/img/shop/icon_q.png') #bebebe no-repeat 0 0;
  text-indent: -9999px;
}
.qnarev_list .qnarev_cnt .answer .icon {
  background: url('/_skin/radiwell_kor_2/img/shop/icon_a.png') #bebebe no-repeat 0 0;
}
.qnarev_list .qnarev_cnt .btn {
  text-align: end !important;
}
.qnarev_list .qnarev_cnt .comment {
  padding-top: 20px;
}

/* 상품문의, 상품후기 - 비밀번호 확인 */
.pwbox_popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 100;
  margin: -131px 0 0 -570px;
  width: 1140px;
  padding: 0 60px;
}
#pwbox {
  padding: 40px 0;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  text-align: center !important;
  justify-content: center;
}
#pwbox > div{
  display: flex;
  justify-content: center;
  gap: 8px;
}
#pwbox > input {
  border: 1px solid #ccc;
}

#pwbox h3 {
  padding-bottom: 15px;
}
#pwbox p {
  margin-bottom: 20px;
  color: #888;
}
#pwbox .form_input {
  width: 330px;
  margin-bottom: 20px;
}

/* 상품문의 & 상품후기 - 쓰기 */
.qnarev_write_popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 102;
  transform: translate(-50%, -50%);
  width: 720px;
  border-radius: 12px;
  overflow: hidden;
}
.qnarev_write_popup > .close {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
}
.qnarev_write_popup > .close:before {
  position: absolute;
  left: 0;
  top: -2px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-size: 24px;
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cpath d='M18 6.5L6 18.5M6 6.5L18 18.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.qnarev_write {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.qnarev_write div{
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

/* .qnarev_write .contents{
  margin-top: 16px;
} */

.qnarev_write .name{
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.qnarev_write .name > input{
  width: 300px;
  margin-right: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}


.qnarev_write form {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.qnarev_write_popup .qnarev_write fieldset > div {
  overflow-y: scroll;
  height: 730px;
  padding: 0 16px;
  overflow-x: hidden;
  width: 720px;
}
.qnarev_write fieldset > legend {
  padding: 16px;
  display: flex;
  width: 100%;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  justify-content: center;
  line-height: 26px;
  border-bottom: 1px solid #e5e5e5;
}
.qnarev_write fieldset > div > div {
  position: relative;
  /* margin-top: 10px; */
}
.qnarev_write fieldset > div > div:last-child {
  margin-bottom: 0;
}

.qnarev_write fieldset > div > div.grade {
  width: 100%;
  padding: 32px 0;
  /* margin: 16px 0 32px 0; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: rgb(var(--brandback-color));
  /* border: 1px solid #E5E5E5; */
  row-gap: 8px;
}
.qnarev_write fieldset > div > div.grade > .msg {
  color: var(--neutral-800, #262626);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
}
.qnarev_write fieldset > div > div.grade .grade_wrap {
  display: inline-block;
  position: relative;
  width: 191px;
  height: 32px;
  background: #c6c6c6;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M31.1713 12.4765C31.1002 12.2582 30.9695 12.0642 30.794 11.9163C30.6185 11.7684 30.4051 11.6726 30.178 11.6395L21.1442 10.3275L17.1036 2.14169C16.6888 1.30108 15.3116 1.30108 14.8968 2.14169L10.8562 10.3275L1.82233 11.6395C1.59526 11.6727 1.38199 11.7687 1.2066 11.9167C1.03121 12.0647 0.900687 12.2588 0.829772 12.477C0.758856 12.6953 0.750372 12.929 0.805276 13.1518C0.860179 13.3747 0.976285 13.5777 1.14048 13.738L7.67833 20.1109L6.13494 29.1078C6.09665 29.3341 6.1223 29.5665 6.20899 29.7789C6.29568 29.9914 6.43997 30.1754 6.62561 30.3102C6.81125 30.4451 7.03086 30.5254 7.25969 30.5422C7.48852 30.5589 7.71749 30.5114 7.92079 30.4051L16.0008 26.1565L24.0796 30.4038C24.2828 30.5107 24.5119 30.5586 24.741 30.542C24.97 30.5255 25.1899 30.4452 25.3756 30.3102C25.5614 30.1753 25.7058 29.991 25.7923 29.7783C25.8789 29.5656 25.9042 29.333 25.8654 29.1066L24.322 20.1097L30.8599 13.7368C31.0241 13.5766 31.1402 13.3737 31.1952 13.151C31.2503 12.9283 31.242 12.6947 31.1713 12.4765Z' fill='%23F5F5F5'/%3E%3C/svg%3E");
  -webkit-mask-size: 32px;
  -webkit-mask-repeat: space;
}
.qnarev_write fieldset > div > div.grade .grade_wrap i {
  width: auto;
  height: 100%;
  background: none;
  display: flex;
  gap: 8px;
  width: 0;
  height: 100%;
  background: rgb(var(--brand-color));
}
.qnarev_write fieldset > div > div.grade .grade_wrap .point1 + i {
  width: 20%;
}
.qnarev_write fieldset > div > div.grade .grade_wrap .point2 + i {
  width: 40%;
}
.qnarev_write fieldset > div > div.grade .grade_wrap .point3 + i {
  width: 60%;
}
.qnarev_write fieldset > div > div.grade .grade_wrap .point4 + i {
  width: 80%;
}
.qnarev_write fieldset > div > div.grade .grade_wrap .point5 + i {
  width: 100%;
}
.qnarev_write fieldset > div > div.grade .grade_wrap i {
  position: absolute;
  top: 0;
  left: 0;
}
.qnarev_write fieldset > div > div.grade .grade_wrap .gradebox {
  display: flex;
  width: 100%;
  gap: 8px;
  background: none;
}
.qnarev_write fieldset > div > div.grade .grade_wrap .gradebox::after {
  content: none;
}
.qnarev_write fieldset > div > div.grade .grade_wrap .gradebox label {
  width: 32px;
}
.qnarev_write fieldset > div > div.name {
  padding: 20px 0;
  color: var(--text-02, #3a3a3a);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 137.5% */
  letter-spacing: -0.08px;
}
.qnarev_write fieldset > div > div.name .form_input {
  float: left;
  width: 49%;
}
.qnarev_write fieldset > div > div.name .form_input.pw {
  float: right;
}
.qnarev_write fieldset > div > div.name .check {
  position: absolute;
  right: 0;
  top: 5px;
}
.qnarev_write fieldset > div > div.name.nopd {
  padding-right: 0;
}
.qnarev_write fieldset > div > div.name:after {
  display: block;
  clear: both;
  content: '';
}
.qnarev_write fieldset > div > div.title input {
  height: 52px;
  border: 1px solid #ccc;
}
.qnarev_write fieldset > div > div.contents {
  background: #fff;
}
.qnarev_write fieldset > div > div.contents textarea {
  height: 250px;
  resize: none;
}
.qnarev_write fieldset > div > div.msg_milage {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgb(var(--brand-color));
  color: var(--neutral-800, #262626);
  display: flex;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.qnarev_write fieldset > div > div.msg_milage > p {
  color: rgb(var(--brand-color));
  font-weight: 600;
}

.qnarev_write fieldset > div > div.msg_milage img {
  vertical-align: middle;
}
.qnarev_write fieldset > div > div .file_del {
  padding-top: 5px;
}
.qnarev_write fieldset > div > div #preview_attach_files {
  font-size: 0;
}
.qnarev_write fieldset > div > div #preview_attach_files > li {
  display: inline-block;
  padding: 0 5px;
}
.qnarev_write fieldset > div > div #preview_attach_files > li:first-child {
  padding-left: 0;
}
.qnarev_write fieldset > div > div #preview_attach_files > li img {
  width: 115px;
  height: 115px;
}
.qnarev_write fieldset select {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px;
  background-color: white;
  min-height: 52px;
}
.qnarev_write .btn {
  padding: 24px 0;
  text-align: center !important;
  border-top: 0px;
}

/* 상품문의 & 상품후기 - 수정 */
#qnarevmod .modi_pwd,
#qnarevmod .modi_cnt {
  display: none;
}
#qnarevmod .modi_cnt .qnarev_write > form {
  border-top: 1px solid var(--neutral-200, #E5E5E5);
  padding: 32px 0;
  text-align: left;
  margin-top: 32px;
}

/* 상품후기(포토) - 리스트 */
.total_review_list {
  display: block;
  margin-left: -16px;
  font-size: 0;
}
.total_review_list > li {
  display: inline-block;
  width: 25%;
  margin-bottom: 32px;
  padding-left: 16px;
  vertical-align: top;
}
.total_review_list .box {
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  overflow: hidden;
}
.total_review_list .box .img_wrap {
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: pointer;
}

.total_review_list .box .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.total_review_list .box .info_wrap {
  padding: 25px 20px 0;
}

.total_review_list .box .info_wrap .title {
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  word-break: break-all;
  word-wrap: break-word;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.total_review_list .box .info_wrap .title img {
  display: inline-block;
}
.total_review_list .box .info_wrap .content {
  height: 56px;
  margin-bottom: 20px;
  color: #666;
  font-size: 13px;
  word-break: break-all;
  word-wrap: break-word;
}

.total_review_list .box .info_wrap .date {
  color: #888;
}
.total_review_list .box .info_wrap .prd_info {
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px solid #eee;
  font-size: 14px;
}
.total_review_list .box .info_wrap .prd_info .img {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 50px;
  height: 50px;
  vertical-align: middle;
}
.total_review_list .box .info_wrap .prd_info .img img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
.total_review_list .box .info_wrap .prd_info .name_star {
  width: 76%;
  padding-left: 16px;
  vertical-align: middle;
}
.total_review_list .box .info_wrap .prd_info .name_star .name {
  overflow: hidden;
  margin-bottom: 4px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.total_review_list .box .info_wrap .prd_info .name_star .name a {
  color: #666;
  font-size: 13px;
}
.total_review_list .box .info_wrap .prd_info .name_star .star .grade {
  padding-left: 7px;
  font-size: 16px;
  font-weight: 700;
}

/* 상품후기 - 열람 레이어 */
.layer_review_list {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 103;
  width: 100%;
  max-width: 1300px;
  height: 95%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.layer_review_list > .inner {
  position: relative;
  width: calc(100% - 110px);
  margin: 0 auto;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  padding: 0 42px;
}
.layer_review_list > .inner:after {
  display: block;
  clear: both;
  content: '';
}
.layer_review_list.upfile_cnt0 > .inner > .img {
  display: none !important;
}
.layer_review_list.upfile_cnt0 > .inner > .info {
  width: 100% !important;
  border-radius: 12px !important;
}
.layer_review_list > .inner > .img {
  float: left;
  width: calc(100% - 400px);
  height: 100%;
  background-color: #E7E7E7;
  border-radius: 12px 0 0 12px;
}
.layer_review_list > .inner > .img .box {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.layer_review_list > .inner > .img > .add_slide,
.layer_review_list > .inner > .img > .add_slide .slick-list,
.layer_review_list > .inner > .img > .add_slide .slick-track {
  height: 100%;
}
.layer_review_list > .inner > .img > .add_slide img {
  width: 650px;
  height: auto;
  object-fit: contain;
  max-height: 100%;
}
.layer_review_list > .inner > .img > .add_slide .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 32px;
  height: 32px;
  margin: -20px 15px 0 15px;
  border-radius: 50%;
}
.layer_review_list > .inner > .img > .add_slide .slick-arrow.slick-prev {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='16' fill='black' fill-opacity='0.3'/%3E%3Cpath d='M18.4753 9.39844L13.7769 14.6189C12.8095 15.6937 12.8398 17.3341 13.8462 18.3725L18.4753 23.1484' stroke='white' stroke-width='1.375' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.layer_review_list > .inner > .img > .add_slide .slick-arrow.slick-prev:before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  margin: -5px 0 0 -6px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}
.layer_review_list > .inner > .img > .add_slide .slick-arrow.slick-prev:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  margin: 3px 0 0 -6px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
}
.layer_review_list > .inner > .img > .add_slide .slick-arrow.slick-next {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='16' fill='black' fill-opacity='0.3'/%3E%3Cpath d='M18.4753 9.39844L13.7769 14.6189C12.8095 15.6937 12.8398 17.3341 13.8462 18.3725L18.4753 23.1484' stroke='white' stroke-width='1.375' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  transform: rotate(180deg);
}
.layer_review_list > .inner > .img > .add_slide .slick-arrow.slick-next:before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  margin: -5px 0 0 -6px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
}
.layer_review_list > .inner > .img > .add_slide .slick-arrow.slick-next:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  margin: 3px 0 0 -6px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}
.layer_review_list > .inner > .img > .add_slide .slick-dots {
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 10;
}
.layer_review_list > .inner > .info {
  border-radius: 0 12px 12px 0;
  overflow: auto;
  float: left;
  width: 400px;
  height: 100%;
  padding: 0 16px;
  background-color: #fff;
}
.layer_review_list > .inner > .info > .prd {
  margin-bottom: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
}
.layer_review_list > .inner > .info > .prd:after {
  display: block;
  clear: both;
  content: '';
}
.layer_review_list > .inner > .info > .prd > h2 {
  float: right;
}
.layer_review_list > .inner > .info > .prd > h2 a {
  font-size: 14px;
  color: var(--neutral-800, #262626);
  font-weight: 600;
  line-height: 22px; /* 157.143% */
}
.layer_review_list > .inner > .info > .prd > .img {
  float: left;
  width: 60px;
  margin-right: 16px;
}
.layer_review_list > .inner > .info > .prd > .img img {
  width: 60px;
  height: auto;
}
.layer_review_list > .inner > .info > .board {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.layer_review_list > .inner > .info > .board > .grade > .score {
  font-size: 16px;
  font-weight: bold;
}
.layer_review_list > .inner > .info > .board > .name {
  margin-top: 10px;
  color: #888;
}
.layer_review_list > .inner > .info > .board > .name img {
  width: auto;
  height: 16px;
  margin-top: 1px;
  vertical-align: top;
}
.layer_review_list > .inner > .info > .board > .subject {
  margin-top: 20px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

.layer_review_list > .inner > .info > .board > .subject .review_naver img {
  display: inline-block;
  width: 22px;
  margin-right: 5px;
}

.layer_review_list > .inner > .info > .board > .content {
  margin-top: 10px;
  color: #666;
  line-height: 1.6;
  word-break: break-all;
  font-size: 14px;
}
.layer_review_list > .inner > .info > .board > .content * {
  font-size: 14px;
}
.layer_review_list > .inner > .info > .board > .recommend {
  margin-top: 32px;
  color: #888;
  line-height: 24px;
  font-size: 14px;
}
.layer_review_list > .inner > .info > .board > .recommend > span {
  float: right;
}
.layer_review_list > .inner > .info > .board > .recommend > span > a {
  display: inline-block;
  min-width: 60px;
  min-height: 24px;
  padding: 0 10px 0 30px;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: 7px center;
  background-color: #fff;
  color: #333;
  text-align: right;
  line-height: 24px;
  cursor: pointer;
}
.layer_review_list > .inner > .info > .board > .recommend > span > a.yes {
  background-image: url('/_skin/radiwell_kor_2/img/shop/recommend_yes.png');
}
.layer_review_list > .inner > .info > .board > .recommend > span > a.no {
  background-image: url('/_skin/radiwell_kor_2/img/shop/recommend_no.png');
}
.layer_review_list > .inner > .info > .board > .recommend > span > a:hover {
  background-color: #f1f2f3;
}
.layer_review_list > .inner > .info > .board > .btn {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
}
.layer_review_list > .inner > .info > .board > .btn > a {
  display: inline-flex;
  margin-left: -1px;
  padding: 5px 10px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  background-color: #fff;
  color: #888;
  border-radius: 4px;
}
.layer_review_list > .inner > .info > .board > .btn > a:hover {
  background-color: #f1f2f3;
}
.layer_review_list > .inner > .info > .board > .btn > a:first-child {
  margin-right: 5px;
}
.layer_review_list > .inner > .info > .comment > .guest {
  padding: 15px 20px;
  background-color: #fafafa;
  color: #666;
}
.layer_review_list > .inner > .info > .comment > .guest > a {
  float: right;
  color: #333;
  font-size: 13px;
  font-weight: bold;
  text-decoration: underline;
}
.layer_review_list > .inner > .info > .comment > form .write {
  position: relative;
  padding-right: 56px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  text-align: left;
}
.layer_review_list > .inner > .info > .comment > form .write textarea.form_input {
  min-height: 40px;
  border: 0;
}
.layer_review_list > .inner > .info > .comment > form .write .btn_comment {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 100%;
  text-align: center;
  border: 0;
  background-color: #fff;
  font-weight: bold;
  line-height: 100%;
  cursor: pointer;
}
.layer_review_list > .inner > .info > .comment > form .write:after {
  display: inline-block;
  position: absolute;
  right: 56px;
  top: 50%;
  width: 1px;
  height: 20px;
  margin-top: -10px;
  background-color: #dcdcdc;
  content: '';
}
.layer_review_list > .inner > .info > .comment > .list {
  position: relative;
  margin-top: 20px;
}
.layer_review_list > .inner > .info > .comment > .list:before {
  position: absolute;
  left: 20px;
  top: -6px;
  width: 10px;
  height: 10px;
  border: 1px solid #dcdcdc;
  border-width: 1px 1px 0 0;
  background-color: #fff;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}
.layer_review_list > .inner > .info > .comment > .list > li {
  margin-top: -1px;
  padding: 10px 15px;
  border: 1px solid #dcdcdc;
}
.layer_review_list > .inner > .info > .comment > .list > li > .date {
  display: block;
  position: relative;
  height: 16px;
  top: -16px;
  color: #888;
  text-align: right;
}
.layer_review_list > .inner > .info > .comment > .list > li > .date img {
  vertical-align: middle;
}
.layer_review_list > .inner > .info > .comment > .list > li > .content {
  padding-top: 5px;
  color: #666;
  line-height: 1.6;
  word-break: break-all;
}
.layer_review_list > .inner > .move {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 12px 0 12px;
  text-indent: -9999px;
  cursor: pointer;
}
.layer_review_list > .inner > .move.prev {
  left: -60px;
}
.layer_review_list > .inner > .move.prev:before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 4px;
  margin: -9px 0 0 -13px;
  background-color: #fff;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}
.layer_review_list > .inner > .move.prev:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 4px;
  margin: 7px 0 0 -13px;
  background-color: #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
}
.layer_review_list > .inner > .move.next {
  right: -60px;
}
.layer_review_list > .inner > .move.next:before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 4px;
  margin: -9px 0 0 -13px;
  background-color: #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
}
.layer_review_list > .inner > .move.next:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 4px;
  margin: 7px 0 0 -13px;
  background-color: #fff;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}
.layer_review_list > .inner > .move.end:before,
.layer_review_list > .inner > .move.end:after {
  background-color: #818181;
}
.layer_review_list > .inner >.close {
  position: absolute;
  top: 0;
  right: 0px;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  cursor: pointer;
}
.layer_review_list > .inner > .close:before {
  position: absolute;
  left: 0;
  top: 16px;
  width: 32px;
  height: 3px;
  background-color: #b7b7b7;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}
.layer_review_list > .inner > .close:after {
  position: absolute;
  left: 0;
  top: 16px;
  width: 32px;
  height: 3px;
  background-color: #b7b7b7;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
}

/* 리뷰 */
.review_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.review_header .subtitle {
  padding: 70px 0 10px;
  font-weight: 700;
  font-size: 45px;
  letter-spacing: -0.3px;
  color: #000000;
}
.review_header .comment {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.1px;
  line-height: 32px;
  color: #3a3a3a;
}
.tab_review ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 1280px;
  margin: 0 auto;
}
.tab_review button {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 50px;
  padding: 0 20px 0 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20.27px;
  letter-spacing: -0.5%;
  color: #666666;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
}
.tab_review button:before {
  flex: none;
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 100px;
}
.tab_review button.active {
  color: #000000;
  border-color: #396be6;
  background-color: #ffffff;
}
.tab_review .btn_all:before {
  width: 28px;
  height: 28px;
  background: url('/_skin/radiwell_kor_2/img/button/icon_all.png') no-repeat 50% 50%;
}
.btn_prd1:before {
  background: url('/_skin/radiwell_kor_2/img/button/icon_prd.png') no-repeat 50% 50%;
  background-size: 100% 100%;
}
.btn_prd2:before {
  background: url('/_skin/radiwell_kor_2/img/button/icon_prd1.png') no-repeat 50% 50%;
  background-size: 100% 100%;
}
.btn_prd3:before {
  background: url('/_skin/radiwell_kor_2/img/button/icon_prd.png') no-repeat 50% 50%;
  background-size: 100% 100%;
}
.tab_review.sticky {
  position: sticky;
  top: 0px;
  z-index: 9;
  width: 100%;
  background: #f1f1f1;
}
.tab_review.sticky:after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}
.tab_review.sticky ul {
  gap: 0;
  position: relative;
  z-index: 2;
}
.tab_review.sticky li {
  flex: 1;
}
.tab_review.sticky li button {
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.review_slider {
  height: 780px;
  margin: 50px 0 100px;
  padding-top: 70px;
  background-color: #588ef8;
  overflow: hidden;
}
.review_slider .inner {
  width: 1278px;
  margin: 0 auto;
}
.review_slider .tip {
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin-bottom: 20px;
  padding: 0 22px 0 10px;
  font-size: 14px;
  line-height: 20.27px;
  letter-spacing: -0.5%;
  color: #396be6;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #eaf0fb;
}
.review_slider .tip .title {
  flex: none;
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  padding: 0 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.5%;
  color: #ffffff;
  border-radius: 100px;
  background-color: #9cb8ed;
}
.review_slider .title_best {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.5%;
  color: #ffffff;
}
.review_slider .comment {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5%;
  color: #ffffff;
}
.review_slider .list .slide {
  position: relative;
  width: 410px;
  height: 421px;
}
.review_slider .list .slide .img {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 100%;
  transform: translateX(-50%);
  overflow: hidden;
}
.review_slider .list .slide .img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}
.review_slider .list .slide .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 81px;
  z-index: 1;
  width: 410px;
  height: 362px;
  padding-top: 128px;
  text-align: center;
  border-radius: 20px;
  background-color: #ffffff;
}
.review_slider .list .slide .txt .tit {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 233px;
  height: 52px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.05em;
  color: #a96ff4;
  text-decoration: underline;
}
.review_slider .list .slide .txt .tit:before,
.review_slider .list .slide .txt .tit:after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 14px;
  background: url('/_skin/radiwell_kor_2/img/etc/icon_double_quotes.png') no-repeat 50% 50%;
  transform: translateY(-50%);
}
.review_slider .list .slide .txt .tit:before {
  left: -20px;
}
.review_slider .list .slide .txt .tit:after {
  right: -20px;
  transform: rotate(180deg);
}

.review_slider .list .slide .txt .tit .review_naver {
  display: none;
}

.review_slider .list .slide .txt .desc {
  width: 242px;
  height: 66px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.05em;
  color: #666666;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.review_slider .list .slide .txt .name {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.05em;
  color: #666666;
}
.review_slider .list .slide .txt .name:before {
  display: block;
  content: '';
  width: 78px;
  height: 14px;
  margin-right: 7px;
  background: url('/_skin/radiwell_kor_2/img/common/stars_best.png') no-repeat 0 0;
}
.review_slider .list .slide .product {
  display: flex;
  align-items: center;
  min-width: 187px;
  height: 34px;
  margin-top: 10px;
  padding: 2px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.03px;
  color: #666666;
  border-radius: 4px;
  background-color: #f3f3f3;
}
.review_slider .list .slide .product .nail {
  flex: none;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  overflow: hidden;
}
.review_slider .list .slide .product .nail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}
.review_slider .list .slick-list {
  overflow: visible;
}
.review_slider .slick-prev,
.review_slider .slick-next {
  position: absolute;
  top: -116px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  background: url('/_skin/radiwell_kor_2/img/common/arr_review_slider.png') no-repeat 50% 50%;
}
.review_slider .slick-prev {
  right: 55px;
  transform: rotate(180deg);
}
.review_slider .slick-prev.slick-disabled,
.review_slider .slick-next.slick-disabled {
  opacity: 0.5;
}

/* 컨텐츠 */
.contents_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contents_header .subtitle {
  padding-top: 96px;
  padding-bottom: 48px;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 54px */
  color: var(--neutral-800, #262626);
  text-transform: uppercase;
}
.contents_header .comment {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.1px;
  line-height: 32px;
  color: #3a3a3a;
}
.contents_header h4 {
  margin-bottom: 10px;
  padding-top: 100px;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.15px;
  text-align: center;
}
.contents_header .comment {
  display: block;
  margin-bottom: 47px;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.1px;
  color: #3a3a3a;
  text-align: center;
}
.tab_contents {
  position: relative;
  z-index: 9;
}
.tab_contents:after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 150vw;
  height: 1px;
  background-color: #e5e5e5;
  left: -300px;
}

@media all and (max-width: 1200px) {
  .tab_contents:after {
    left: 0px;
  }
}

.tab_contents ul {
  display: flex;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  margin-bottom: 48px
}
.tab_contents ul li {
  background: #FFF;
}
.tab_contents ul li button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  color: #8d8d8d;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid #E5E5E5;
  background: #FFF;
}

.tab_contents > ul > li.cate_all > button,
.tab_contents ul li button.selected {
  background: #000;
  color: #FFF;
}
@media all and (min-width: 1200px) {
  .tab_contents.sticky {
    position: sticky;
    top: 0px;
    background-color: white;
  }
}
.tab_contents.sticky li button.active {
  color: #000000;
  background-color: #ffffff;
}
.tab_contents.sticky ul li button.active:after {
  display: none;
}
.search_contents {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 410px;
  height: 50px;
  margin-bottom: 50px;
  padding: 0 20px 0 10px;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
}
.search_contents input[type='text'] {
  flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.07px;
  border: 0;
}
.search_contents button {
  width: 24px;
  height: 24px;
  background: url('/_skin/radiwell_kor_2/img/button/hd_search.png') no-repeat 50% 50%;
}
.content_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px 24px;
  width: 1278px;
  margin: 0 auto;
}
.content_list > li {
  width: 410px;
  height: 452px;
}
.content_list > li a {
  display: flex;
  flex-direction: column;
}
.content_list > li .img_box {
  display: block;
  position: relative;
  width: 410px;
  height: 300px;
  margin-bottom: 20px;
}
.content_list > li .img_box img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content_list > li .img_box .category {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 48px;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: -0.07px;
  color: #ffffff;
  border-radius: 0 0 20px 0;
}
.content_list > li .img_box .category.래디웰.스토리 {
  background-color: rgba(57, 107, 230, 0.7);
}
.content_list > li .img_box .category.헬스.저널 {
  background-color: rgba(251, 158, 71, 0.7);
}
.content_list > li .img_box .category.원료.백과사전 {
  background-color: rgba(169, 111, 244, 0.7);
}
.content_list > li .img_box .category.전문가.건강.가이드 {
  background-color: rgba(50, 178, 156, 0.7);
}
.content_list > li .tit {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.1px;
  color: #000000;
  text-overflow: ellipsis;
  display: -webkit-box;
  text-overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.content_list > li .desc,
.content_list > li .desc * {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.7px;
  color: #666666;
  text-overflow: ellipsis;
  display: -webkit-box;
  text-overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 설문조사(/shop/poll_list.php) */
#poll .subject {
  padding: 15px 30px;
  border: 1px solid #e0e0e0;
  border-width: 1px 0;
  text-align: left;
}
#poll .subject strong {
  padding-left: 40px;
}
#poll .box {
  padding: 30px;
  border-bottom: 1px solid #e0e0e0;
  background: #fbfbfb;
}
#poll .box .vote {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid #e0e0e0;
  background: #fff;
}
#poll .box .vote table {
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
}
#poll .box .vote table > thead {
  display: none;
}
#poll .box .vote table > tbody > tr > td {
  padding: 2px 0;
}
#poll .box .vote table > tbody > tr > td .graph {
  height: 5px;
  background: #b1b1b1;
}
#poll .btn {
  margin: 10px 0 40px 0;
  text-align: right;
}
#poll .commentdel {
  padding: 20px 0;
  border: 1px solid #e0e0e0;
  border-bottom: 0;
  background: #fff;
  text-align: center;
}
#poll .commentdel .msg {
  padding-top: 5px;
}

/* 퀵카트 */
.quickcart {
  position: relative;
}
.quickcart > a {
  display: inline-block;
  padding: 0 10px;
  color: #666;
  font-size: 11px;
  line-height: 30px;
}
.quickcart > a:hover {
  color: #d53838;
}
.quickcart .list {
  position: absolute;
  right: 0;
  z-index: 20;
  width: 300px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
}
.quickcart .list .frame {
  overflow: auto;
  max-height: 300px;
}
.quickcart .list .frame table {
  table-layout: fixed;
  clear: both;
  width: 100%;
  border-collapse: collapse;
}
.quickcart .list .frame table caption {
  padding: 10px 0;
  color: #181818;
  font-weight: bold;
  text-align: left;
}
.quickcart .list .frame table thead {
  display: none;
}
.quickcart .list .frame table td {
  position: relative;
  padding: 10px 0;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  vertical-align: middle;
}
.quickcart .list .frame table td.info {
  padding: 0 10px;
  text-align: left;
}
.quickcart .list .frame table td.info .mall {
  font-size: 11px;
}
.quickcart .list .frame table td .del {
  position: absolute;
  right: 0;
  top: 10px;
}
.quickcart .list .box_price {
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-width: 1px 0;
  background: #f8f8f8;
}
.quickcart .list .btn > span {
  margin-top: 10px;
}

/* 개별상품쿠폰 레이어 */
#prdCouponArea {
  margin-left: -285px !important;
}
#pop_coupon2 {
  position: relative;
  width: 690px;
  border: 1px solid #d9d9d9;
  background: #fff;
}
#pop_coupon2 h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid black;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
}
#pop_coupon2 .box {
  overflow: auto;
  max-height: 300px;
  margin: -1px 0;
}
#pop_coupon2 .box .tbl_col .img img {
  width: 60px;
  height: auto;
}
#pop_coupon2 .box .usable_cpn {
  padding: 8px 0;
  text-align: left;
}
#pop_coupon2 .box .usable_cpn > li {
  position: relative;
  padding: 2px 60px 2px 0;
}
#pop_coupon2 .box .usable_cpn > li > label {
  display: inline-block;
  cursor: pointer;
}
#pop_coupon2 .box .usable_cpn > li > label > span {
  color: #df7e7e;
}
#pop_coupon2 .box .usable_cpn > li > .expiry {
  position: absolute;
  right: 0;
  top: 2px;
  color: #888;
}
#pop_coupon2 .btn {
  padding-top: 30px;
  border-top: 1px solid #dbdbdb;
  text-align: center;
}
#pop_coupon2 .close {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: 24px !important;
  background: url('/_skin/radiwell_kor_2/img/img_sw_kor/button/hd_close.png') no-repeat center;
  text-indent: -9999px;
  cursor: pointer;
}

/* 재입고 알림 신청 레이어 */
#notify_restock {
  width: 570px;
  margin-left: -285px !important;
  padding: 40px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
}
#notify_restock .close {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 21px;
  height: 21px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/hd_close.png') no-repeat center;
  text-indent: -9999px;
  cursor: pointer;
}
#notify_restock h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #dbdbdb;
  color: #000;
  font-size: 22px;
}
#notify_restock .tbl_row {
  margin-top: -1px;
}
#notify_restock .tbl_row .opt th,
#notify_restock .tbl_row .opt td {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 0;
}
#notify_restock .tbl_row .phone th,
#notify_restock .tbl_row .phone td {
  border-top: 1px solid #e0e0e0;
}
#notify_restock .agree {
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
}
#notify_restock .btn {
  padding-top: 20px;
  text-align: center;
}

/* 프로모션 기획전(/shop/promotion.php) */
.speical_group {
  margin: 1px 1px 0 0;
}
.speical_group > .menu {
  margin-bottom: 20px;
  font-size: 0;
}
.speical_group > .menu > li {
  display: inline-block;
  width: 25%;
}
.speical_group > .menu > li > a {
  display: block;
  margin: -1px -1px 0 0;
  padding: 10px;
  border: 1px solid #d2d2d2;
  color: #666;
  text-align: center;
}
.speical_group > .menu > li > a:hover,
.speical_group > .menu > li > a.active {
  position: relative;
  z-index: 5;
  border: 1px solid #535353;
  color: #333;
  font-weight: bold;
}
.speical_group > .intro > .title {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #d2d2d2;
}
.speical_group > .intro > .title > h3 {
  padding-right: 160px;
  font-size: 16px;
  font-weight: bold;
}
.speical_group > .intro > .title > span {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
  color: #666;
  font-size: 14px;
}
.speical_group > .intro > .summary {
  padding: 30px 0;
  border-bottom: 1px solid #d2d2d2;
}
.speical_group > .box {
  border-bottom: 1px solid #d2d2d2;
  text-align: center;
}
.speical_group > .box > h4 {
  padding: 40px 0 30px;
  font-size: 20px;
}
.speical_group > .box > .img {
  padding-bottom: 30px;
}

/* 정기배송 레이어 */
.layer_sbs {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  overflow: auto;
  width: 762px;
  height: 572px;
  margin: -305px 0 0 -550px;
  background-color: #fff;
}

.layer_sbs .delivery_info {
  float: left;
  min-height: 610px;
  padding: 24px 32px;
  width: 93%;
}
.layer_sbs .delivery_info > h2.title {
  border-bottom: 2px solid #000;
  font-size: 20px;
  font-style: normal;
  padding-bottom: 10px;
  font-weight: 700;
  margin-bottom:  24px;
}
.layer_sbs .delivery_info > h2.title.first {
  padding-top: 0;
}
.layer_sbs .delivery_info .calendar {
  padding: 5px 0;
}
.layer_sbs .delivery_info .calendar .text {
  display: inline-block;
  width: 125px;
  font-size: 13px;
  vertical-align: middle;
}
.layer_sbs .delivery_info .calendar > p {
  display: inline-block;
  vertical-align: middle;
}
.layer_sbs .delivery_info .calendar > p .date_text {
  display: inline-block;
  width: 110px;
  height: 40px;
  margin-right: 5px;
  padding: 0 0 0 16px;
  background: url('../../../_image/svg/ico_scheduler.svg') no-repeat right 16px center / 20px;
  /* text-align: center; */
  vertical-align: middle;
  width: 100%;
}
.layer_sbs .delivery_info .calendar > p span.date_text {
  line-height: 33px;
}
.layer_sbs .delivery_info .calendar > p .day {
  display: inline-block;
  vertical-align: middle;
}
.layer_sbs .delivery_info .list {
  padding: 10px 0;
}
.layer_sbs .delivery_info .list > li {
  overflow: hidden;
  padding: 3px 0;
  color: #666;
}
.layer_sbs .delivery_info .list > li p {
  float: right;
  color: #333;
}
.layer_sbs .sbs_info {
  position: fixed;
     width: 365px;
    height: 572px;
    padding: 24px 32px;
    background: #F9FAFC;
    right: 23%;
}

.layer_sbs .sbs_info .close{
  background: url(../../../_image/svg/ico_close.svg) no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
}

.layer_sbs .sbs_info .last_chk .icon_title {
  text-align: center;
  padding: 16px 0px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.10);
  margin-bottom: 16px;
}
.layer_sbs .sbs_info .last_chk .icon_title span {
  color: var(--neutral-800, #262626);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  line-height: 28px; /* 140% */
  font-weight: bold;
}
.layer_sbs .sbs_info .last_chk .chk_list {
  margin-bottom: 10px;
}
.layer_sbs .sbs_info .last_chk .chk_list > li {
  padding-bottom: 10px;
}
.layer_sbs .sbs_info .last_chk .chk_list > li > span {
  display: inline-block;
  width: 85px;
  font-size: 13px;
  vertical-align: middle;
  color: #09090B;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}
.layer_sbs .sbs_info .last_chk .chk_list > li > strong {
  font-size: 13px;
  font-weight: 400;
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.layer_sbs .sbs_info .last_chk .chk_list > li > strong.point_color {
  color: rgb(var(--brand-color));
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.layer_sbs .sbs_info .total_prc {
  position: relative;
}
.layer_sbs .sbs_info .total_prc > strong {
  font-size: 13px;
}
.layer_sbs .sbs_info .total_prc > span {
  color: #666;
  font-size: 11px;
}

.layer_sbs .sbs_info .btn:after {
  display: block;
  clear: both;
  content: '';
}
.layer_sbs .sbs_info .btn > span {
  float: left;
  width: 49%;
}
.layer_sbs .sbs_info .btn > span:nth-child(2) {
  float: right;
}
.layer_sbs > .close {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/layer_sbs_close.png') no-repeat center;
  text-indent: -9999px;
  cursor: pointer;
}

/*-----------------------------------------------------------------*/
/* 4-3. 회원
/*-----------------------------------------------------------------*/

/* 로그인 & 아이디 비밀번호 찾기 & 비밀번호 변경 */
.box_member {
  width: 380px;
  margin: 0 auto;
}
.box_member .tab_member {
  padding: 62px 0 42px;
  font-size: 0;
  text-align: center;
}
.box_member .tab_member > li {
  display: inline-block;
  padding: 0 15px;
}
.box_member .tab_member > li a {
  font-size: 22px;
  letter-spacing: -0.5px;
  cursor: pointer;
  opacity: 0.5;
}
.box_member .tab_member > li a.active {
  opacity: 1;
}
.box_member fieldset {
  position: relative;
}
.box_member fieldset legend {
  padding: 25px 0;
  font-weight: bold;
}
.box_member fieldset .fld {
  position: relative;
  margin-bottom: 10px;
  font-size: 0;
}
.box_member fieldset .fld label {
  position: absolute;
  top: 50%;
  left: 15px;
  color: #666;
  font-size: 14px;
  transform: translateY(-50%);
  cursor: auto;
  transition: all 0.3s ease;
}
.box_member fieldset .fld.active label {
  display: inline-block;
  top: 0;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 15px;
}
.box_member fieldset .fld .show_icon {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_pwd.png') no-repeat center;
  cursor: pointer;
}
.box_member fieldset .fld .show_icon:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 24px;
  margin-top: -12px;
  background: #e7e7e7;
  content: '';
}
.box_member fieldset .fld .show_icon.active {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_pwd_active.png');
}
.box_member fieldset .savessl {
  padding: 7px 0 27px;
}
.box_member fieldset .savessl label {
  margin-right: 10px;
  color: #999;
  vertical-align: middle;
}
.box_member fieldset .select {
  float: right;
  margin-top: -44px;
}
.box_member fieldset .box_btn * {
  border-radius: 6px;
}
/* 로그인 & 아이디 비밀번호 찾기 & 비밀번호 변경 - 인풋 기본 스타일 */
.box_member .form_input.member {
  height: 50px;
  padding: 0 15px;
  border-radius: 6px;
  border-color: #f5f5f5;
  background: #f5f5f5;
}
.box_member .form_input.member:focus {
  border-color: #333;
}
.box_member .form_input.member.number_first {
  width: 32%;
}
.box_member .form_input.member.number {
  width: 33%;
  margin-left: 1%;
}
.box_member .find_id_item_2,
.box_member .find_id_item_3,
.box_member .find_pw_item_2,
.box_member .find_pw_item_3 {
  display: none;
}

/* 로그인(/member/login.php) */
#login .adult_msg {
  margin-top: 60px;
  padding-top: 75px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/adult_warning.png') no-repeat top center;
  color: #000;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  letter-spacing: -0.5px;
}
#login .adult_msg strong {
  color: inherit;
  font-size: inherit;
}
#login .guest_order {
  margin-top: 10px;
}
#login .fail {
  position: relative;
  margin-bottom: 20px;
  padding: 18px 10px;
  border-radius: 10px;
  background: #fae4e8;
  color: #d53838;
  text-align: center;
}
#login .fail:after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 0;
  margin-left: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 6px solid #fae4e8;
  content: '';
}
#login .joinfind {
  padding: 25px 0 35px;
  font-size: 0;
  text-align: center;
}
#login .joinfind li {
  display: inline-block;
  padding: 0 10px;
}
#login .joinfind li a {
  font-size: 14px;
  letter-spacing: -0.5px;
}
#login .simple {
  margin-bottom: 35px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
#login .simple a {
  display: block;
  width: 100%;
  height: 50px;
  margin-top: 10px;
  border: 1px solid #000;
  border-radius: 6px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: left 25px center;
  color: #191919;
  font-size: 16px;
  letter-spacing: -0.5px;
  line-height: 49px;
}
#login .simple a.naver {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_naver.png');
}
#login .simple a.facebook {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_facebook.png');
}
#login .simple a.kakao {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_kakao.png');
}
#login .simple a.payco {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_payco.png');
}
#login .simple a.wemake {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_wemake.png');
}
#login .simple a.apple {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_apple.png');
}
#login .adult_certify {
  padding-top: 35px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
#login .adult_certify h5 {
  padding-bottom: 5px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
#login .adult_certify p {
  padding-bottom: 20px;
  color: #888;
  letter-spacing: -0.5px;
}
#login .adult_certify > a {
  display: block;
  height: 50px;
  margin-top: 10px;
  border-radius: 6px;
  background: #aaa9a9;
}
#login .adult_certify > a span {
  display: inline-block;
  height: 50px;
  padding-left: 25px;
  background: no-repeat left center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -0.5px;
}
#login .adult_certify > a.ipincheckplususe span {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/adult_phone.png');
}
#login .adult_certify > a.ipinuse span {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/adult_ipin.png');
}

/* 아이디/비밀번호 찾기 레이어 */
.pop_find_id {
  position: fixed;
  left: 50%;
  top: 100px;
  z-index: 1001;
  width: 400px;
  border: 1px solid #dcdcdc;
  margin-left: -200px;
  background-color: #fff;
}
.pop_find_id h1 {
  height: 49px;
  padding: 0 10px;
  background-color: #676767;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: 49px;
}
.pop_find_id > .box {
  padding: 30px;
}
.pop_find_id > .box > h2 {
  color: #333;
  font-size: 20px;
  font-weight: normal;
}
.pop_find_id > .box > .msg {
  padding-top: 15px;
}
.pop_find_id > .box > .input {
  position: relative;
  height: 50px;
  margin-top: 15px;
  padding-right: 113px;
  background-color: #f5f5f5;
}
.pop_find_id > .box > .input:after {
  position: absolute;
  right: 113px;
  top: 50%;
  width: 1px;
  height: 22px;
  margin-top: -11px;
  background-color: #dbdbdb;
  content: '';
}
.pop_find_id > .box > .input > .input_number {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 0;
  background-color: transparent;
}
.pop_find_id > .box > .input > .btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 113px;
  height: 50px;
  border: 0;
  background-color: #f5f5f5;
  font-weight: bold;
  cursor: pointer;
}
.pop_find_id > .box > .form_input {
  height: 50px;
  margin-top: 10px;
}
.pop_find_id > .box > .box_btn {
  margin-top: 20px;
}
.pop_find_id > .box > .pop_id_list {
  padding-top: 25px;
}
.pop_find_id > .box > .pop_id_list .list {
  overflow: auto;
  max-height: 100px;
  margin-top: 10px;
  padding: 5px 0;
  border: 1px solid #d2d2d2;
  border-width: 1px 0;
  background-color: #f5f5f5;
}
.pop_find_id > .box > .pop_id_list .list li {
  position: relative;
  padding: 5px;
  text-align: left;
}
.pop_find_id > .box > .pop_id_list .btn {
  padding-top: 20px;
  text-align: center;
}
.pop_find_id > .box > .close {
  display: inline-block;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 21px;
  height: 21px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/hd_close.png') no-repeat center;
  text-indent: -9999px;
  cursor: pointer;
}

/* 비밀번호 변경 */
#modify_pwd .modify_id {
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: bold;
}
#modify_pwd .msg_chgpw {
  border: 1px dashed #000;
  margin-bottom: 20px;
  padding: 10px;
  text-align: left;
}

/* 회원가입 약관동의(/member/join_step1.php) */
/* #join_agree {
  text-align: center;
} */
#join_agree .all_chk {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #dcdcdc;
  text-align: left;
}
#join_agree .all_chk .msg {
  margin-top: -5px;
  color: #666;
  letter-spacing: -0.024px;
  font-size: 14px;
}
#join_agree .check {
  padding-bottom: 15px;
  text-align: left;
}
#join_agree .check > label {
  font-size: 20px;
}
#join_agree iframe {
  width: 100%;
  height: 180px;
  margin-bottom: 40px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
}
#join_agree .tbl_row {
  margin-bottom: 40px;
  border-top: 1px solid #333;
}
#join_agree .member_type {
  padding: 20px 0 30px;
}
#join_agree .member_type label {
  margin: 0 10px;
}
#join_agree .btn {
  padding-top: 20px;
  text-align: center;
}
#join_agree .simple {
  margin-top: 50px;
  padding-top: 63px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
#join_agree .simple p,
#join_agree .simple p * {
  padding-bottom: 29px;
  font-size: 20px;
  letter-spacing: -0.024px;
}
#join_agree .simple p strong {
  font-weight: bold;
}
#join_agree .simple a {
  display: inline-block;
  width: 200px;
  height: 50px;
  margin: 4px;
  border: 1px solid #000;
  border-radius: 6px;
}
#join_agree .simple a span {
  display: inline-block;
  height: 48px;
  padding-left: 29px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: left center;
  color: #191919;
  font-size: 14px;
  letter-spacing: -0.5px;
  line-height: 47px;
}
#join_agree .simple a.naver span {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_naver.png');
}
#join_agree .simple a.facebook span {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_facebook.png');
}
#join_agree .simple a.kakao span {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_kakao.png');
}
#join_agree .simple a.payco span {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_payco.png');
}
#join_agree .simple a.wemake span {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_wemake.png');
}
#join_agree .simple a.apple span {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/icon_apple.png');
}

/* 회원가입 정보입력(/member/join_frm.php) */
#join_input fieldset {
  margin-top: 50px;
}
#join_input fieldset:nth-of-type(1) {
  margin-top: 0;
}
#join_input fieldset * {
  font-size: 14px;
}
#join_input fieldset .form_input.invalid {
  border-color: #c41c1b;
  background-color: #fff5f6;
}
#join_input fieldset legend {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  color: #333;
  font-size: 20px;
}
#join_input fieldset legend > span {
  position: absolute;
  right: 0;
  top: 5px;
  color: #666;
}
#join_input fieldset legend > span > strong {
  color: #cc3a3a;
}
#join_input fieldset > .box {
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}
#join_input fieldset > .box > div {
  display: table;
  position: relative;
  width: 100%;
  padding: 5px 0;
  padding-right: 38%;
}
#join_input fieldset > .box > div > label {
  display: table-cell;
  width: 170px;
  padding-right: 10px;
  color: #666;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}
#join_input fieldset > .box > div > .input_area {
  display: table-cell;
  height: 34px;
  vertical-align: middle;
}
#join_input fieldset > .box > div > .input_area input {
  vertical-align: top;
}
#join_input fieldset > .box > div > .input_area input.form_input {
  width: 400px;
}
#join_input fieldset > .box > div > .input_area label {
  margin-right: 20px;
}
#join_input fieldset > .box > div .msg {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 5;
  width: 38%;
  padding-left: 20px;
}
#join_input fieldset > .box > div .msg > p {
  padding-left: 15px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/bullet_msg.png') no-repeat left center;
  color: #888;
  font-size: 12px;
  line-height: 34px;
}
#join_input fieldset > .box > div .msg > p.warning {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/bullet_msg_warning.png');
  color: #c41c1c;
}
#join_input fieldset > .box > div .msg.block {
  display: inline-block;
  position: static;
  width: 100%;
  padding-left: 0;
}
#join_input fieldset > .box > div.required > label:after {
  color: #c41c1c;
  content: ' *';
}
#join_input fieldset > .box > div.birth > .input_area,
#join_input fieldset > .box > div.addr > .input_area {
  font-size: 0;
}
#join_input fieldset > .box > div.birth select {
  width: 32%;
  margin-right: 10px;
  font-size: 12px;
  padding: 10px;
}

#join_input fieldset > .box > div.birth select:last-child {
  margin-right: 0;
}

#join_input fieldset > .box > div.addr .form_input:nth-of-type(1) {
  width: calc(100% - 126px) !important;
  margin-right: 10px;
}
#join_input fieldset > .box > div.addr .form_input:nth-of-type(2) {
  margin: 10px 0;
}
#join_input fieldset > .box > div.addr .box_btn * {
  padding: 9.5px 12px;
}
#join_input fieldset > .box > div.sns {
  padding-right: 0;
}
#join_input fieldset > .box > div.sns .integrate {
  font-size: 0;
}
#join_input fieldset > .box > div.sns .integrate > li {
  display: inline-block;
  padding-right: 50px;
  text-align: center;
  vertical-align: top;
}
#join_input fieldset > .box > div.sns .integrate > li .name {
  padding: 30px 0 6px;
  background: no-repeat top center;
  font-size: 13px;
}
#join_input fieldset > .box > div.sns .integrate > li .name.nameKA {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/integrate_kakao.png');
}
#join_input fieldset > .box > div.sns .integrate > li .name.nameNA {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/integrate_naver.png');
}
#join_input fieldset > .box > div.sns .integrate > li .name.nameFB {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/integrate_facebook.png');
}
#join_input fieldset > .box > div.sns .integrate > li .name.namePC {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/integrate_payco.png');
}
#join_input fieldset > .box > div.sns .integrate > li .name.nameWN {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/integrate_wemake.png');
}
#join_input fieldset > .box > div.sns .integrate > li .name.nameAP {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/integrate_apple.png');
}
#join_input fieldset > .box > div.sns .integrate > li .box_btn a {
  min-width: 55px;
  font-size: 12px;
}
#join_input fieldset > .box > div.sns .integrate > li .state {
  padding-top: 6px;
}
#join_input fieldset > .box > div.sns .integrate > li .state span {
  display: inline-block;
  padding-left: 20px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/integrate_state.png') no-repeat left center;
  color: #888;
  font-size: 12px;
}
#join_input fieldset > .box > div.sns .integrate > li .state.connect span {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/integrate_state_connect.png');
  color: #fe0100;
}
/* 회원가입 정보입력 - SNS */
#join_input.api {
  margin-top: 40px;
}
#join_input.api fieldset > .box > div > .email_area .form_input {
  width: calc(100% - 97px) !important;
  margin-right: 10px;
}
#join_input.api fieldset > .box > div > .email_area .box_btn * {
  padding: 9.5px 12px;
}
#join_input.api fieldset > .box > div > .input_area .api_agree {
  padding-top: 10px;
}
/* 회원가입 정보입력 - dummy */
#join_input .dummy {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  opacity: 0;
}
/* 회원가입 정보입력 - 기업회원추가입력 */
#join_input fieldset > .box > div.licensee_num .form_input {
  width: 32%;
}
#join_input fieldset > .box > div.licensee_num .form_input.second {
  margin: 0 2%;
}
/* 회원가입 정보입력 - 버튼 */
#join_input .btn {
  margin-top: 30px;
  text-align: center;
}
/* 비밀번호 안전도 */
#join_input .password_security_lev {
  display: inline-block;
  position: relative;
  padding: 7px 15px;
  border: 1px solid #bfbfbf;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  text-align: left;
}
#join_input .password_security_lev:before {
  position: absolute;
  left: -5px;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 1px solid #bfbfbf;
  border-width: 1px 0 0 1px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}
#join_input .password_security_lev > span {
  display: inline-block;
  position: relative;
  width: 72px;
  height: 4px;
  margin-top: 7px;
  background-color: #e5e5e5;
  vertical-align: top;
}
#join_input .password_security_lev > span:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  content: '';
}
#join_input .password_security_lev > span:after {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/member/safebar.gif') no-repeat center;
  content: '';
}
#join_input .password_security_lev > p {
  color: #888;
  font-size: 11px;
  font-weight: normal;
}
#join_input .password_security_lev.password_security_1 > strong {
  color: #e60012;
}
#join_input .password_security_lev.password_security_1 > span:before {
  width: 22px;
  background-color: #e60012;
}
#join_input .password_security_lev.password_security_2 > strong {
  color: #e7853c;
}
#join_input .password_security_lev.password_security_2 > span:before {
  width: 47px;
  background-color: #e7853c;
}
#join_input .password_security_lev.password_security_3 > strong {
  color: #32b16c;
}
#join_input .password_security_lev.password_security_3 > span:before {
  width: 72px;
  background-color: #32b16c;
}

/* 회원가입완료(/member/join_step3.php) */
#join_finish {
  width: 640px;
  margin: 0 auto;
}
#join_finish h3 {
  margin-bottom: 20px;
  font-size: 13px;
}
#join_finish .box {
  padding: 45px 0;
  border: 1px solid #dedede;
  color: #888;
  text-align: center;
  line-height: 3;
}
#join_finish .box > .agree {
  width: 80%;
  margin: 0 auto;
  padding: 15px;
  color: #666;
  background-color: #f0f0f0;
}
#join_finish .box > .agree > span {
  display: block;
}
#join_finish .box strong {
  font-size: 14px;
}
#join_finish .box .document > a {
  display: inline-block;
  padding: 20px 10px;
  font-weight: bold;
  text-decoration: underline;
}
#join_finish .btn {
  margin-top: 30px;
  text-align: center;
}

/* 정보수정(/member/edit_step1.php), 정보수정완료(/member/edit_step3.php) */
.edit_info .box {
  padding: 60px 0;
  background-color: #f5f5f5;
  text-align: center;
}
.edit_info .box > .msg {
  color: #666;
  font-size: 14px;
}
.edit_info .box > .agree {
  width: 50%;
  margin: 20px auto 0;
  padding: 15px;
  color: #666;
  background-color: #fff;
}
.edit_info .box > .agree > span {
  display: block;
}
.edit_info .form_input {
  width: 50%;
  margin-top: 15px;
}
.edit_info .btn {
  padding-top: 30px;
  text-align: center;
}

/* 우편번호 찾기(/common/zip_search.php) */
.zipcode {
  width: 420px;
  padding: 20px;
  text-align: center;
}
.zipcode h1 {
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
.zipcode .tab {
  height: 32px;
  text-align: center;
}
.zipcode .tab li {
  float: left;
  width: 50%;
  vertical-align: bottom;
}
.zipcode .tab a {
  display: block;
  height: 34px;
  margin: 10px 0 0 -1px;
  border: 1px solid #dcdcdc;
  background: #f8f8f8;
  color: #181818;
  line-height: 34px;
}
.zipcode .tab a.selected {
  height: 44px;
  margin-top: 0;
  border-bottom: 0;
  background: #fff;
  font-weight: bold;
  line-height: 49px;
}
.zipcode .ex {
  clear: both;
  padding: 20px 0;
  color: #666;
  text-align: left;
}
.zipcode .ex span {
  display: block;
  color: #888;
}
.zipcode .search {
  position: relative;
  padding-right: 60px;
}
.zipcode .search .box_btn {
  position: absolute;
  right: 0;
  top: 0;
}
.zipcode table {
  table-layout: fixed;
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.zipcode table th {
  font-size: 0;
}
.zipcode table td {
  padding: 10px 0;
  border-bottom: 1px solid #d7d7d7;
  color: #888;
  text-align: center;
  vertical-align: top;
}
.zipcode table td.addr {
  text-align: left;
}
.zipcode table td.addr p {
  display: inline-block;
  padding: 0 4px 0 23px;
  border-radius: 3px;
  background: #ffeded url('https://www.radiwell.com/_skin/radiwell_kor_2/img/shop/icon_addrwarring.png') no-repeat top 4px left 4px;
  color: #d83838;
  font-weight: 600;
  letter-spacing: -0.05rem;
}
.zipcode table td font {
  color: #d53838;
}

/*-----------------------------------------------------------------*/
/* 4-4. 마이페이지
/*-----------------------------------------------------------------*/

/* 마이페이지 탭 & 회원정보 */
.tbl_mypage {
  width: 100%;
  margin-bottom: 40px;
  border: 1px solid #d7d7d7;
}
.tbl_mypage thead th {
  padding: 16px 0;
  border-right: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  color: #181818;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}
.tbl_mypage tbody td {
  padding: 13px 0 17px 0;
  border-right: 1px solid #dadada;
  text-align: center;
  font-size: 14px;
}
.tbl_mypage tbody td ul li {
  padding: 5px 0;
}
.tbl_mypage tbody td ul li a {
  color: #888;
  font-size: 14px;
}
.tbl_mypage tbody td ul li a:hover {
  color: #333;
}
.tbl_mypage .last {
  border-right: 0;
}

/* 마이페이지 공통 박스 */
.box_mp {
  margin-bottom: 32px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--neutral-200, #E5E5E5);
  text-align: center;
  line-height: 35px;
  display: grid;
  grid-template-columns: 1fr  1fr  1fr ;
  align-items: center;
}
.box_mp .msg {
  color: var(--neutral-400, #A3A3A3);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  margin-bottom: 16px;
}
.box_mp:after {
  display: block;
  clear: both;
  content: '';
}
.box_mp .have {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.box_mp .have span {
  color: var(--neutral-800, #262626);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}

/* 마이페이지 메인(/mypage/mypage.php) */
#mypage .my_info {
  margin-bottom: 40px;
  background: #f8f8f8;
  border-radius: 12px;
}
#mypage .my_info ul {
  display: flex;
  margin: 0 auto;
  padding: 32px 96px;
  justify-content: center;
}
#mypage .my_info ul li {
  display: table-cell;
  position: relative;
  width: 145px;
  color: #666;
  text-align: center;
}
/* #mypage .my_info ul li:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
  content: '';
} */
#mypage .my_info ul li:first-child:after {
  display: none;
}
#mypage .my_info ul li a {
  display: block;
  font-size: 16px;
}
#mypage .my_info ul li span {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px; /* 140% */
}
#mypage .latest {
  width: 100%;
  font-size: 0;
}
#mypage .latest li {
  display: inline-block;
  width: 12.5%;
  margin-bottom: 10px;
  text-align: center;
}
#mypage .latest li img {
  width: 96%;
  height: auto;
}

/* 주문내역조회(/mypage/order_list.php) */
#order_list > .search {
  /* padding: 30px; */
  /* background-color: #f8f8f8; */
  text-align: center;
}
#order_list > .search > .date {
  display: flex;
  font-size: 0;
  vertical-align: top;
}
#order_list > .search > .date > span {
  margin-left: -1px;
}
#order_list > .search > .date > span > * {
  border-color: #dcdcdc;
}
#order_list > .search > .date > span.on * {
  background-color: black;
  border: 1px solid black;
  color: white !important;
}
#order_list > div > div.date > span:first-of-type > input{
  border-radius: 4px 0 0 4px;
}
#order_list > div > div.date > span:nth-of-type(2) > input{
  border-radius: 0 0 0 0;
}
#order_list > div > div.date > span:nth-of-type(3) > input{
  border-radius: 0 0 0 0;
}
#order_list > div > div.date > span:last-of-type > input{
  border-radius: 0 4px 4px 0;
}

/* 주문상세조회(/mypage/order_detail.php) */
#order_detail .stat {
  padding-bottom: 20px;
  font-size: 0;
  text-align: center;
}
#order_detail .stat li {
  display: inline;
  padding: 0 5px;
}
#order_detail .trace {
  padding-top: 20px;
}
#order_detail .trace .number {
  padding-left: 10px;
  line-height: 35px;
}
#order_detail .area_left {
  float: left;
  width: 63%;
}
#order_detail .area_right {
  float: right;
  margin-top: 30px;
}
#order_detail .area_right .box {
  width: 360px;
  padding: 40px;
  background: #f8f8f8;
}
#order_detail .area_right .box .line {
  margin-top: 25px;
  border-top: 1px solid #dfdfdf;
}
#order_detail .total_price {
  font-size: 16px;
}
#order_detail .backtolist {
  padding: 30px 0;
  text-align: center;
}

/* 주문상세조회(/mypage/order_detail.php) - 정기배송주문상세조회 */
#order_detail .chgdelivery {
  position: relative;
  top: -46px;
  height: 0;
  text-align: right;
}
#order_detail .area_right .box > .btn {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #dfdfdf;
}
#order_detail .area_right .box > .btn > .box_btn {
  margin-top: 10px;
}
#order_detail .area_right .box > .btn > .box_btn:first-child {
  margin-top: 0;
}
#order_detail .area_right .box > .btn > .box_btn form {
  padding: 0;
}
#order_detail .area_right .box > .btn > .box_btn form input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
#order_detail .sbs_schedule > .msg {
  position: relative;
  top: -41px;
  height: 0;
  text-align: right;
}

/* 주문상세조회(/mypage/order_detail.php) - 결제수단변경 레이어 */
.chg_paytype {
  overflow: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 100;
  width: 1100px;
  height: 720px;
  margin: -360px 0 0 -550px;
  padding: 20px 40px 40px 40px;
  background-color: #fff;
}
.chg_paytype h2 {
  padding-bottom: 20px;
  border-bottom: 1px solid #535353;
  font-size: 18px;
  font-weight: bold;
}
.chg_paytype h3 {
  padding: 30px 0 15px;
  font-size: 13px;
  font-weight: bold;
}
.chg_paytype .explain {
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}
.chg_paytype .explain > li {
  padding-left: 25px;
  background: url('http://sw.wisaweb.co.kr/wm_engine_SW/_manage/image/common/icon_info.png') no-repeat left center;
  color: #888;
  line-height: 2;
}
.chg_paytype .sum {
  float: left;
  width: 58.82%;
  text-align: left;
}
.chg_paytype .select {
  float: right;
  width: 35.29%;
  text-align: left;
}
.chg_paytype .select > .type {
  padding: 30px;
  background-color: #f5f5f5;
}
.chg_paytype .select > .type > li {
  padding: 5px 0;
}
.chg_paytype .select > .type > li > label {
  color: #666;
  cursor: pointer;
}
.chg_paytype .select > .type > li > label > input {
  position: relative;
  top: -3px;
}
.chg_paytype .select > .msg {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #e5e5e5;
}
.chg_paytype .select > .msg > li {
  color: #888;
  letter-spacing: -1px;
}
.chg_paytype .select > .btn {
  padding-top: 10px;
}
.chg_paytype .select > .btn > span {
  margin-top: 10px;
}
.chg_paytype .sum > table {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
}
.chg_paytype .sum > table * {
  font-size: 13px;
}
.chg_paytype .sum > table th {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-width: 0 1px 1px 0;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}
.chg_paytype .sum > table td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: middle;
}
.chg_paytype .sum > table td .price {
  font-family: 'arial';
  font-size: 16px;
}
.chg_paytype .select h3:first-child,
.chg_paytype .sum h3:first-child {
  padding-top: 0;
}
.chg_paytype .close {
  display: block;
  position: absolute;
  right: 40px;
  top: 20px;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  cursor: pointer;
}
.chg_paytype .close:before {
  position: absolute;
  right: 0px;
  top: 10px;
  width: 20px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
  content: '';
}
.chg_paytype .close:after {
  position: absolute;
  right: 0px;
  top: 10px;
  width: 20px;
  height: 1px;
  background-color: #000;
  transform: rotate(-45deg);
  content: '';
}
.chg_paytype:after {
  display: block;
  clear: both;
  content: '';
}

/* 정기배송주문 배송지변경 */
.sbs_address {
  width: 600px;
  padding: 30px;
}
.sbs_address > table > caption {
  font-size: 20px;
  font-weight: bold;
}
.sbs_address .zip {
  width: 285px !important;
}
.sbs_address .middle_address {
  margin: 5px 0;
}
.sbs_address > .btn {
  padding-top: 20px;
  text-align: center;
}

/* 쿠폰(/mypage/coupon_down_list.php) */
#coupon h3.title:first-child {
  padding-top: 0;
}

/* 소셜쿠폰(/mypage/sccoupon.php) */
#sccoupon .box_mp .form_input {
  width: 270px;
  margin-top: 20px;
}
#sccoupon .btn {
  text-align: center;
}

/* 관심상품(/mypage/wish_list.php) */
#wish_list .btn {
  font-size: 0;
  text-align: left;
}
#wish_list .btn .box_btn {
  margin-right: 5px;
}
#wish_list .btn .box_btn.fr {
  margin-right: 0;
}

/* 1:1문의 내역(/mypage/counsel_list.php & /mypage/order_detail.php) */
#counsel {
  clear: both;
}
#counsel .content {
  padding: 30px;
  border-bottom: 1px solid #aeaeae;
  text-align: left;
  word-break: break-all;
  word-wrap: break-word;
}
#counsel .content .question {
  padding-bottom: 25px;
}
#counsel .none_style {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
#counsel .cnt_hidden {
  display: none;
  overflow: hidden;
  /* padding: 16px 0; */
  /* border-bottom: 1px solid #d7d7d7; */
  background: #FAFAFA;
}
#counsel .cnt_hidden .qna_subject {
  /* border-bottom: 1px solid #E5E5E5;
  background: #FAFAFA; */
  clear: both;
  float: left;
  padding: 32px 16px 32px 32px;
  color: #181818;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}
#counsel .cnt_hidden .qna_subject:before {
  display: inline-block;
  /* position: absolute; */
  left: 0;
  top: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--neutral-400, #A1A1A1);
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  text-align: center;
  padding-top: 2px;
  content: 'Q'; 
}
#counsel .cnt_hidden .qna_subject.answer:before {
  display: inline-block;
  /* position: absolute; */
  left: 0;
  top: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: #262626;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  text-align: center;
  padding-top: 2px;
  content: 'A';
}
#counsel .cnt_hidden .qna_cnt {
  border-top: 1px solid #E5E5E5;
  /* float: left; */
  width: 100%;
  padding: 32px;
  text-align: left;
  vertical-align: top;
  min-height:61px;
}
#counsel .btn {
  padding-top: 30px;
  font-size: 0;
  text-align: left;
}
#counsel .btn .box_btn {
  margin-right: 5px;
}
#counsel .btn .box_btn.fr {
  margin-right: 0;
}

/* 1:1문의 글쓰기(/mypage/counsel_step1.php) */
#counsel_write {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}
#counsel_write > form {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  text-align: left;
}
#counsel_write fieldset > table {
  margin-bottom: -1px;
}
#counsel_write fieldset > div {
  position: relative;
  margin-bottom: 10px;
  text-align: left;
}
#counsel_write fieldset > div.content {
  background-color: #fff;
}
#counsel_write fieldset > div:last-child {
  margin-bottom: 0;
}
#counsel_write fieldset > div > label {
  display: none;
}
#counsel_write fieldset textarea {
  height: 250px;
}
#counsel_write .btn {
  padding: 20px 0;
  text-align: center !important;
}

/* 1:1문의 완료(/mypage/counsel_step2.php) */
#counsel_fin {
  width: 640px;
  margin: 0 auto;
}
#counsel_fin h3 {
  margin-bottom: 20px;
  font-size: 13px;
}
#counsel_fin .box {
  padding: 80px 0;
  border: 1px solid #dedede;
  color: #888;
  font-size: 14px;
  text-align: center;
  line-height: 3;
}
#counsel_fin .box strong {
  font-size: inherit;
}
#counsel_fin .btn {
  margin-top: 30px;
  text-align: center;
}

/* 출석체크(/mypage/attend_list.php) */
#attend .date {
  padding: 25px 0;
  border: 1px solid #dbdbdb;
  border-bottom: 0;
  text-align: center;
  vertical-align: top;
}
#attend .date a {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #dbdbdb;
  background-repeat: no-repeat;
  background-position: center;
}
#attend .date a.prev {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/bullet_arrow_prev.png');
}
#attend .date a.next {
  background-image: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/common/bullet_arrow_next.png');
}
#attend .date strong {
  padding: 0 5px;
  color: #040404;
  font-family: 'arial';
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  vertical-align: top;
}
#attend #calendar table {
  width: 100%;
}
#attend #calendar table thead th {
  padding: 10px 0;
  border: 1px solid #dbdbdb;
  background: #fbfbfb;
  color: #666;
  font-family: 'arial';
  font-weight: normal;
  text-align: center;
}
#attend #calendar table thead th.sun {
  color: #d53838;
}
#attend #calendar table thead th.sat {
  color: #7cb4d1;
}
#attend #calendar table tbody td {
  height: 100px;
  padding: 10px;
  border: 1px solid #dbdbdb;
  color: #040404;
  text-align: left;
  vertical-align: top;
}
#attend #calendar .attenY {
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/mypage/attend_ok.png') no-repeat center;
}
#attend #calendar .attenR {
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/mypage/attend_today.png') no-repeat center #fbf9ed;
  font-weight: bold;
  text-decoration: underline;
}
#attend .info {
  overflow: hidden;
  padding: 30px 50px;
  border: 1px solid #dbdbdb;
  border-top: 0;
  background: #fbfbfb;
  text-align: left;
}
#attend .info .explain {
  float: left;
  text-align: left;
}
#attend .info .sum {
  float: right;
}

/* 회원탈퇴(/mypage/withdraw_step1.php), 회원탈퇴완료(/mypage/withdraw_step2.php) */
.withdraw .box {
  padding: 60px 0;
  background: #f5f5f5;
  text-align: center;
}
.withdraw .msg {
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}
.withdraw .frame {
  width: 50%;
  margin: 0 auto;
}
.withdraw .frame textarea {
  height: 250px;
  margin-top: 10px;
}
.withdraw .btn {
  padding-top: 30px;
  text-align: center;
}

/*-----------------------------------------------------------------*/
/* 4-5. 추가페이지
/*-----------------------------------------------------------------*/

/* 이용약관(/content/content.php?cont=uselaw) */
#uselaw {
  padding: 10px;
}
#uselaw > ol > li > dl > dt {
  padding: 30px 0 10px;
  font-weight: bold;
}
#uselaw > ol > li:nth-of-type(1) > dl > dt {
  padding-top: 0;
}
#uselaw > ol > li > dl > dd {
  padding-left: 10px;
  color: #666;
}
#uselaw > ol > li > dl > dd > ul,
#uselaw > ol > li > dl > dd > ol {
  padding-left: 10px;
  color: #666;
}

/* 개인정보취급방침(/content/content.php?cont=privacy) */
#privacy > ul > li > dl > dt {
  padding: 30px 0 10px;
  font-weight: bold;
}
#privacy > ul > li > dl > dd {
  padding-left: 10px;
  color: #666;
}
#privacy > ul > li > dl > dd > ul,
#privacy > ul > li > dl > dd > ol {
  padding-left: 10px;
  color: #666;
}

/* 이용안내(/content/content.php?cont=guide) */
#guide .tab {
  text-align: center;
}
#guide .tab li {
  display: inline;
}
#guide .tab li a {
  padding: 0 15px;
}
#guide .tab li a:hover {
  text-decoration: underline;
}
#guide > dl > dt {
  padding: 30px 0 10px;
  font-weight: bold;
}
#guide > dl > dd {
  padding-left: 10px;
  color: #666;
}
#guide > dl > dd > ul,
#guide > dl > dd > ol {
  padding-left: 10px;
  color: #666;
}

/* 회사소개(/content/content.php?cont=company) */
#company {
  padding-top: 300px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/etc/company.jpg') no-repeat left top/100% auto;
  text-align: left;
}
#company:after {
  display: block;
  clear: both;
  content: '';
}
#company > dl {
  float: left;
  width: 30%;
}
#company > dl:nth-child(2) {
  margin: 0 5%;
}
#company > dl > dt {
  padding: 30px 0 10px;
  font-size: 14px;
  font-weight: bold;
}
#company > dl.location {
  clear: both;
  float: none;
  width: 100%;
}

/* 고객센터(/content/customer.php) */
#customer .quick {
  width: 100%;
  margin: 0 0 35px 2px;
}
#customer .quick:after {
  display: block;
  clear: both;
  content: '';
}
#customer .quick > li {
  float: left;
  width: 20%;
  margin-left: -1px;
  border: 1px solid #dcdcdc;
}
#customer .quick > li > a {
  display: block;
  height: 46px;
  padding: 15px;
  text-align: center;
}
#customer .quick > li > a:hover {
  background: #f5f5f5;
}
#customer .search_faq {
  margin-bottom: 35px;
  padding: 20px 90px;
  background: #f5f5f5;
  text-align: center;
}
#customer .search_faq > h3 {
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: normal;
}
#customer .search_faq > form {
  position: relative;
  margin: 0 auto;
  background: #fff;
}
#customer .search_faq > form > .form_input {
  height: 50px;
  padding-right: 60px;
}
#customer .search_faq > form > .btn {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border: 0;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/img_sw_kor/button/hd_search.png') no-repeat center/18px;
  text-indent: -9999px;
  cursor: pointer;
}
#customer .search_faq > form:after {
  display: inline-block;
  position: absolute;
  right: 50px;
  top: 50%;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background: #e0e0e0;
  content: '';
}
#customer .latest {
  width: 48%;
  margin-bottom: 40px;
}
#customer .latest > h3 {
  position: relative;
  padding-bottom: 20px;
  color: #333;
  font-size: 18px;
  font-weight: normal;
}
#customer .latest > ul {
  border-top: 1px solid #e0e0e0;
}
#customer .latest > h3 .more {
  display: block;
  position: absolute;
  right: 0;
  top: 2px;
  width: 27px;
  height: 27px;
  border: 1px solid #c3c3c3;
  text-indent: -9999px;
}
#customer .latest > h3 .more:before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1px;
  margin: -1px 0 0 -6px;
  background: #666;
  content: '';
}
#customer .latest > h3 .more:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 13px;
  margin: -7px 0 0 0;
  background: #666;
  content: '';
}
#customer .latest.faq {
  float: left;
}
#customer .latest.faq > ul > li > div {
  position: relative;
  padding: 15px 15px 15px 50px;
  border-bottom: 1px solid #e0e0e0;
}
#customer .latest.faq > ul > li > div .icon {
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 13px;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  border-radius: 50%;
  background: #777474;
  color: #fff;
  font-family: 'arial';
  text-align: center;
  line-height: 24px;
}
#customer .latest.faq > ul > li > div.question {
  cursor: pointer;
}
#customer .latest.faq > ul > li > div.answer {
  display: none;
  background: #f5f5f5;
  word-break: break-all;
}
#customer .latest.faq > ul > li > div.answer > .icon {
  background: #ef6363;
}
#customer .latest.notice {
  float: right;
}
#customer .latest.notice > ul > li {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}
#customer .latest.notice > ul > li > span {
  position: absolute;
  right: 15px;
  top: 15px;
}
#customer .info {
  display: table;
  clear: both;
  width: 100%;
  border: 1px solid #dcdcdc;
}
#customer .info > .box {
  display: table-cell;
  position: relative;
  width: 50%;
  padding: 50px 20px;
  vertical-align: middle;
}
#customer .info > .box:last-child {
  border-left: 1px solid #dcdcdc;
}
#customer .info > .box > .title {
  position: absolute;
  right: 50%;
  top: 50%;
  margin-top: -24px;
  padding: 0 48px 0 50px;
  background-repeat: no-repeat;
  background-position: left center;
  color: #000;
  font-size: 24px;
}
#customer .info > .box > .content {
  padding-left: 50%;
}

/*-----------------------------------------------------------------*/
/* 5. ETC
/*-----------------------------------------------------------------*/

/* 댓글 - 리스트(게시판, 상품리뷰) */
.list_comment {
  position: relative;
  text-align: left;
  max-width: 1280px;
  margin: 0 auto;
}
.list_comment > ul {
  border: 1px solid #e5e5e5;
  border-top: 0;
}
.list_comment > ul > li {
  clear: both;
  overflow: hidden;
  padding: 15px 30px;
  border-top: 1px solid #e5e5e5;
  color: #474645;
  word-break: break-all;
  word-wrap: break-word;
}
.list_comment > ul > li .name {
  float: left;
  width: 12%;
}
.list_comment > ul > li .name a {
  color: inherit;
  font-size: inherit;
}
.list_comment > ul > li .content {
  float: left;
  width: 73%;
}
.list_comment > ul > li .date {
  float: right;
  width: 15%;
  text-align: right;
}
.list_comment > ul > li .date span {
  padding-right: 5px;
  color: #888;
}
.list_comment > ul > li .date img {
  margin-top: 3px;
}

.list_comment_test > div > div > ul {
  border: 0px;
}

.list_comment_test > div > div > ul > li {
  display: grid;
  /* grid-template-columns: 1fr auto; */
  gap: 8px;
  padding: 12px 0;
}

.list_comment_test > div > div > ul > li  .date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 14px;
}

/* 댓글 - 쓰기(게시판, 상품리뷰) */
.write_comment {
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: -1px;
  /* padding: 20px; */
  /* border: 1px solid #e5e5e5; */
  padding-bottom: 30px;
  background: #fff;
}
.write_comment .user {
  overflow: auto;
  padding-bottom: 10px;
  text-align: left;
}
.write_comment .user span {
  float: left;
  width: 50%;
}
.write_comment .user span.name {
  padding-right: 5px;
}
.write_comment .user span.pw {
  padding-left: 5px;
}
.write_comment .inputbox {
  display: flex;
  /* position: relative; */
  /* padding-right: 70px; */
  /* border: 1px solid #e2e2e2; */
  background: white;
  text-align: left;
  height: 100px;
}
.write_comment .inputbox textarea.form_input {
    min-height: 90px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    resize: vertical;
    font-size: 16px;
    resize: none;
    margin-top: 0px;
    color: black;
    font-weight: 400;

}
.write_comment .inputbox .btn_comment {
    /* display: inline-block; */
    /* position: absolute; */
    right: 0;
    top: 0;
    width: 120px;
    margin-left: 10px;
    font-weight: 600;
    height: 100%;
    text-align: center;
    border: 0;
    background: black;
    color: white;
    border-color: black;
    cursor: pointer;
    /* flex: 10%; */
    height: 100%;
    border-radius: 10px;
}

/* 게시판 - 상품연동 - 검색 */
#product_search_frm {
  background: #fff;
}
#product_search_frm .frame {
  min-height: 600px;
  margin: 10px;
}
#product_search_frm .frame .search {
  padding-bottom: 10px;
}
#product_search_frm .frame .btn {
  padding: 15px 0 10px 0;
  text-align: center;
}

/* 게시판 - 상품연동 - 쓰기 */
.related_prd_write {
  padding: 20px 0;
}
.related_prd_write > ul {
  margin: 20px 0;
}

/* 게시판 - 상품연동 - 열람 */
/* .related_prd_view {
  border-bottom: 1px solid #e0e0e0;
} */
.related_prd_view .title {
  padding: 60px 0 30px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

/* 관리자 - 인용구 */
blockquote.se2_quote1 {
  _zoom: 1;
  margin: 0 15px 30px 20px;
  padding: 0 8px;
  border-left: 2px solid #ccc;
  color: #888;
}
blockquote.se2_quote1 * {
  color: inherit;
}
blockquote.se2_quote2 {
  _zoom: 1;
  margin: 0 0 30px 13px;
  padding: 0 8px 0 16px;
  background: url(http://static.se2.naver.com/static/img/bg_quote2.gif) 0 3px no-repeat;
  color: #888;
}
blockquote.se2_quote2 * {
  color: inherit;
}
blockquote.se2_quote3 {
  _zoom: 1;
  margin: 0 0 30px 0;
  padding: 10px;
  border: 1px dashed #ccc;
  color: #888;
}
blockquote.se2_quote3 * {
  color: inherit;
}
blockquote.se2_quote4 {
  _zoom: 1;
  margin: 0 0 30px 0;
  padding: 10px;
  border: 1px dashed #66b246;
  color: #888;
}
blockquote.se2_quote4 * {
  color: inherit;
}
blockquote.se2_quote5 {
  _zoom: 1;
  margin: 0 0 30px 0;
  padding: 10px;
  border: 1px dashed #ccc;
  background: url(http://static.se2.naver.com/static/img/bg_b1.png) repeat;
  _background: none;
  _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.se2.naver.com/static/img/bg_b1.png',sizingMethod='scale');
  color: #888;
}
blockquote.se2_quote5 * {
  color: inherit;
}
blockquote.se2_quote6 {
  _zoom: 1;
  margin: 0 0 30px 0;
  padding: 10px;
  border: 1px solid #e5e5e5;
  color: #888;
}
blockquote.se2_quote6 * {
  color: inherit;
}
blockquote.se2_quote7 {
  _zoom: 1;
  margin: 0 0 30px 0;
  padding: 10px;
  border: 1px solid #66b246;
  color: #888;
}
blockquote.se2_quote7 * {
  color: inherit;
}
blockquote.se2_quote8 {
  _zoom: 1;
  margin: 0 0 30px 0;
  padding: 10px;
  border: 1px solid #e5e5e5;
  background: url(http://static.se2.naver.com/static/img/bg_b1.png) repeat;
  _background: none;
  _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.se2.naver.com/static/img/bg_b1.png',sizingMethod='scale');
  color: #888;
}
blockquote.se2_quote8 * {
  color: inherit;
}
blockquote.se2_quote9 {
  _zoom: 1;
  margin: 0 0 30px 0;
  padding: 10px;
  border: 2px solid #e5e5e5;
  color: #888;
}
blockquote.se2_quote9 * {
  color: inherit;
}
blockquote.se2_quote10 {
  _zoom: 1;
  margin: 0 0 30px 0;
  padding: 10px;
  border: 2px solid #e5e5e5;
  background: url(http://static.se2.naver.com/static/img/bg_b1.png) repeat;
  _background: none;
  _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.se2.naver.com/static/img/bg_b1.png',sizingMethod='scale');
  color: #888;
}
blockquote.se2_quote10 * {
  color: inherit;
}

/* 관리자 - 에디터 폰트 스타일 */
b,
b *,
u,
u *,
i,
i *,
strike,
strike * {
  color: inherit;
  font-size: inherit;
}

/* 커스텀 */
.visual_fade .box img {
  width: 100%;
}

.ui-datepicker select {
  height: auto;
}

/* 선물하기 커스텀 */
.tbl_col > tbody > tr > td {
  vertical-align: middle;
}
.tbl_col.prd > tbody > tr > td .btn_edit {
  display: block;
}
.tbl_col.prd > tbody > tr > td .btn_edit a {
  font-size: 13px;
}
.tbl_col.prd > tbody > tr > td.delete_wish span:after {
  display: none;
}
.tbl_col.prd > tbody > tr > td.delete_wish span {
  font-size: 0;
}
.tbl_order2 th {
  vertical-align: top;
}
.tbl_order2 td span {
  font-size: 16px;
}
.tbl_order2 td p span {
  font-size: 14px;
  font-weight: bold;
  color: #666;
  width: 60px;
  line-height: 30px;
}
/* .msg_delivery * {
  color: #000;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
} */

.list_cart > li > .box .info {
  display: flex;
  align-items: center;
}


.list_cart > li > .box .info > p {
  color: var(--neutral-800, #262626);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; 
}

.list_cart > li > .box .info > div > p {
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; 
}

.list_cart > li > .box .info > div > div {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px; 
}


@media all and (min-width: 768px) {
  .tbl_order2 {
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
  }
  .tbl_order2 > .thead {
    display: table-row;
  }
  .tbl_order2 > .thead > li {
    display: table-cell;
  }
  .tbl_order2 > .tbody {
    display: table-row;
    padding: 0;
    border: 1px solid #e0e0e0;
    border-top: 0;
  }
  .tbl_order2 > .tbody > li {
    display: table-cell;
    padding: 20px;
    vertical-align: middle;
    font-size: 14px;
  }
  .tbl_order2 > .tbody > li.title {
    padding: 20px 15px;
    border-right: 1px solid #e0e0e0;
    font-weight: 400;
  }
  .tbl_order2 > .tbody > li.title label {
    font-size: 14px;
  }
  .tbl_order2 > .tbody > li.present_msg {
    padding-top: 0;
  }
  .tbl_order2 > .tbody > li.receiver {
    line-height: 51px;
  }
  .tbl_order2 > .tbody > li .present_resend > a {
    line-height: 41px;
  }

  #order .part_msgcard .present_list_cate {
    padding: 15px 20px 0;
  }
}

@media all and (min-width: 1024px) {
  .tbl_order2 > .tbody {
    border-width: 0 0 1px 0;
  }
}

div.tbl_order2 {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #e0e0e0;
}

div.tbl_order2 > .thead {
  display: table-row;
}

div.tbl_order2 > .thead > li {
  display: table-cell;
}

.tbl_order2 > .tbody {
  border-width: 0 0 1px 0;
}

div.tbl_order2 > .tbody > li.present_msg {
  display: block;
  width: 100%;
  padding-top: 10px;
  color: #d53838;
  line-height: 25px;
}

.tbl_order2 > .tbody > li.ib {
  display: inline-block;
  width: auto;
  min-width: 170px;
}

.tbl_order2 > .tbody > li.ib input {
  display: inline-block;
  margin-right: 5px;
}
.tbl_order2 > .tbody .msg {
  font-size: 14px;
}
.tbl_order2 > .tbody .msg > input {
  display: inline-block;
  margin-right: 5px;
}
.tbl_order2 > .tbody .msg label {
  font-size: 14px;
}

/* 선물하기 메시지 */
#order .part_msgcard .present_list_cate {
  padding-top: 4.68%;
  padding-left: 4.68%;
  overflow: hidden;
}
#order .part_msgcard .present_list_cate .swiper-slide {
  display: flex;
  height: 34px;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
#order .part_msgcard .present_list_cate .swiper-slide > a {
  display: block;
  height: 34px;
  border: 1px solid #dfdfdf;
  border-radius: 34px;
  width: 100%;
  color: #999;
  font-size: 13px;
  line-height: 34px;
}
#order .part_msgcard .present_list_cate .swiper-slide > a.active {
  border: 1px solid #666;
  background: #666;
  color: #fff;
}
#order .part_msgcard .gift-message-wrap {
  position: relative;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 25.6px;
}
#order .part_msgcard .gift-message-wrap .list-box {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
#order .part_msgcard .gift-message-wrap .list-box li {
  width: 25%;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
#order .part_msgcard .gift-message-wrap .list-box li .img-wrap {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ebebeb;
}
#order .part_msgcard .gift-message-wrap .list-box li .img-wrap img {
  width: 100%;
  height: auto;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  position: relative;
}
#order .part_msgcard .gift-message-wrap .list-box li.on .img-wrap::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  position: absolute;
  border: 2px solid #000;
}
#order .part_msgcard .gift-message-wrap .list-box li .msg-txt {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin-top: 10px;
  line-height: 22px;
}
#order .part_msgcard .gift-message-wrap .list-box .list-box-bg {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  width: 20%;
  height: 95%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgb(255 255 255 / 93%) 33%, rgba(255, 255, 255, 1) 100%);
  z-index: 4;
}
#order .part_msgcard .gift-message-wrap .list-box .list-box-bg .list-box-num {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #333;
}
#order .part_msgcard .gift-message-wrap .message-box {
  width: 100%;
  position: relative;
}
#order .part_msgcard .gift-message-wrap .bg-box img {
  width: 100%;
  border-radius: 20px;
}
#order .part_msgcard .gift-message-wrap .textarea-wrap {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 100px;
  padding: 20px 24px 45px 24px;
  border-radius: 10px;
  background: #fff;
}
#order .part_msgcard .gift-message-wrap .textarea-wrap textarea {
  width: 100%;
  height: 68px;
  text-align: left;
  line-height: 24px;
  padding: 0 10px;
  resize: none;
  border: 0;
  outline: 0;
}
#order .part_msgcard .gift-message-wrap .textarea-wrap .len-box p {
  font-size: 0.917rem;
  line-height: 16px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #999;
  display: none;
}
#order .part_msgcard .gift-message-wrap .textarea-wrap .len-box p.on {
  display: block;
}
#order .part_msgcard .gift-message-wrap .textarea-wrap .len-box p span {
  font-size: 0.917rem;
  line-height: 16px;
  color: #999;
}

/* 선물하기 전체 리스트 팝업 */
#order .part_msgcard .present_list {
  display: none;
}
#order .part_msgcard.on .present_list {
  display: block;
}
#order .part_msgcard.on .dimmed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
}
#order .part_msgcard.on .present_list_all {
  position: absolute;
  top: 0;
  left: 0;
  display: table;
  width: 100%;
  height: 100%;
}
#order .part_msgcard.on .present_list_all .present_list_all_inner {
  display: table-cell;
  vertical-align: middle;
}
#order .part_msgcard.on .present_list_all_box {
  position: fixed;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 520px;
  padding: 30px 17px;
  border-radius: 20px 20px 0px 0px;
  background: #fff;
  z-index: 101;
}
#order .part_msgcard.on .present_list_all_box > div {
  position: relative;
}
#order .part_msgcard.on .present_list_all_box > div .title {
  display: block;
  margin-bottom: 17px;
  color: #333;
  font-size: 1.083rem;
  letter-spacing: -1px;
}
#order .part_msgcard.on .present_list_all_box > div .present_list_close {
  position: absolute;
  top: 0;
  right: 0;
}
#order .part_msgcard.on .present_list_all_box > div .present_list_close > img {
  width: 10px;
  height: 10px;
  cursor: pointer;
}
#order .part_msgcard.on .present_list_all_box > div .present_list_cate {
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}
#order .part_msgcard.on .present_list_all_box > div .present_list_cate .swiper-slide {
  display: flex;
  height: 34px;
  align-items: center;
  text-align: center;
}
#order .part_msgcard.on .present_list_all_box > div .present_list_cate .swiper-slide > a {
  display: block;
  height: 34px;
  border: 1px solid #dfdfdf;
  border-radius: 34px;
  width: 100%;
  color: #999;
  font-size: 0.917rem;
  line-height: 34px;
}
#order .part_msgcard.on .present_list_all_box > div .present_list_cate .swiper-slide > a.active {
  border: 1px solid #666;
  background: #666;
  color: #fff;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap {
  padding: 0;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box {
  height: 340px;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box .list-box-bg {
  display: none;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box::-webkit-scrollbar {
  width: 5px;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 7px;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box::-webkit-scrollbar-track {
  background: #fff;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  scrollbar-width: none;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box ul.reset {
  transform: translate3d(0px, 0, 0) !important;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box ul > li {
  position: relative;
  width: 49.5% !important;
  height: auto;
  margin-right: 0 !important;
  margin-bottom: 1%;
  border-radius: 8px;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box ul > li.on .img-wrap::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  position: absolute;
  border: 2px solid #000;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box ul > li img {
  width: 100%;
}
#order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .message-box {
  display: none;
}
#order .part_msgcard.on .present_list_all_box .present_list_close2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; 
}
#order .part_msgcard.on .present_list_all_box .present_list_close2 > * {
  padding: 16px 12px;
  border-radius: 20px 20px 0 0;
  font-size: 1.083rem;
}

.present * {
  display: inline-block;
  border-radius: 4px;
  max-width: 210px;      
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px; 
  color: #666;
  border: 1px solid #e5e5e5;
  padding: 2px 6px;
  background-color: white;
}
#orderfin .present_kakao .box_btn a {
  background-color: #fee500;
  color: #191919 !important;
  border: none;
}

#orderfin .present_kakao .box_btn a {
  background-color: #fee500;
  color: #191919 !important;
  border: none;
}

#detail .info_order > .btn {
  flex-direction: row;
}
#detail .info_order > .btn button.present {
  flex: 1;
}
#detail .info_order > .btn button.present:before {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/common/icon_present.png') no-repeat 0 0;
}

#detail .delivery .txt .txt_box {
  display: flex;
  justify-content: start;
  align-items: start;
  padding: 6px 0;
  gap: 30px;
}

#detail .info_order > .btn button {
  flex: 1 auto;
}

#orderfin .present_kakao a > span {
  padding-left: 28px;
  background: url('https://www.radiwell.com/_skin/radiwell_kor_2/img/common/icon_kakao.png') no-repeat left center/21px;
  color: #2a1617;
  font-size: 1.083rem;
  line-height: 40px;
  letter-spacing: -1px;
}

#orderfin .present_kakao {
  background-color: #f5e14b;
  text-align: center;
  border-radius: 4px;
  padding: 10px;
  width: 50%;
  margin: 20px auto;
}

#orderfin .present_kakao a {
  padding: 0 16px;
}

@media all and (min-width: 1024px) {
  #order .print_receipt {
    display: block;
  }
  #order h3.title {
    border-bottom: none;
    background: none;
  }
  #order h3.title:before,
  #order h3.title:after {
    display: none;
  }
  #order h3.title.first {
    padding-top: 0;
  }
  #order h3.title.line {
    margin-top: 25px;
    border-top: 1px solid #dfdfdf;
  }

  #order .part_guest {
    padding-bottom: 40px;
  }
  #order .part_guest .agree_guest {
    padding: 0 0 20px;
  }
  #order .ord_info {
    display: flex;
  }
  #order .ord_info > .area_left {
    width: calc(100% - 410px);
  }
  #order .ord_info > .area_right .inner {
    float: right;
    position: sticky;
    position: -webkit-sticky;
    top: 30px;
  }
  #order .ord_info > .area_right .box .line {
    margin-top: 25px;
    border-top: 1px solid #dfdfdf;
  }
  #order .reconfirm {
    margin-top: 24px;
    padding-top: 25px;
    margin-bottom: 32px;
  }
  #order #order1 {
    border-top: none;
  }
  #order #order2 {
    display: none !important;
    clear: both;
    margin-top: 30px;
    padding: 50px 25px;
    border: 1px solid #dfdfdf;
  }
  #order #order2 .paytype_gr1 {
    padding-bottom: 23px;
  }
  #order #order2 .msg {
    padding: 0 0 23px;
  }

  #order .part_msgcard .present_list_cate {
    border-top: 1px solid #e0e0e0;
    padding: 25px 0 0 0;
    margin-bottom: 0;
  }
  #order .part_msgcard .gift-message-wrap {
    padding-top: 20px;
    padding-bottom: 183px;
    /* border-bottom: 1px solid #e0e0e0; */
  }
  #order .part_msgcard .gift-message-wrap .list-box .list-box-bg .list-box-num {
    font-size: 18px;
  }
  #order .part_msgcard .gift-message-wrap .textarea-wrap {
    bottom: 40px;
    height: 120px;
    border: 1px solid #dfdfdf;
  }
  #order .part_msgcard .gift-message-wrap .textarea-wrap textarea {
    height: 80px;
    line-height: 34px;
  }
  #order .part_msgcard .gift-message-wrap .textarea-wrap .len-box p {
    font-size: 11px;
  }

  #order .part_msgcard.on .present_list_cate {
    border-top: 0;
  }
  #order .part_msgcard.on .gift-message-wrap {
    border-bottom: 0;
  }
  #order .part_msgcard.on .present_list_all_box {
    bottom: 12%;
    left: 30%;
    border-radius: 20px;
    width: 690px;
    height: 600px;
    padding: 40px;
  }
  #order .part_msgcard.on .present_list_all_box > div .title {
    font-size: 18px;
    margin-bottom: 25px;
  }
  #order .part_msgcard.on .present_list_all_box > div .present_list_close > img {
    width: 12px;
    height: 12px;
  }
  #order .part_msgcard.on .present_list_all_box > div .present_list_cate {
    overflow: hidden;
    margin-bottom: 14px;
  }
  #order .part_msgcard.on .present_list_all_box > div .present_list_cate .swiper-slide {
    font-size: 14px;
  }
  #order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .present_list_img ul > li {
    position: relative;
    width: 49%;
    margin-bottom: 20px;
  }
  #order .part_msgcard.on .present_list_all_box > div .gift-message-wrap .tab_wrap .list-box {
    /* height: 400px; */
  }
  #order .part_msgcard.on .present_list_all_box .present_list_close2 {
    position: static;
    padding-top: 20px;
  }
  #order .part_msgcard.on .present_list_all_box .present_list_close2 > * {
    height: 60px;
    padding: 18px 12px;
    border-radius: 30px;
    font-size: 1.5rem;
  }

  .tbl_order2 > .tbody.pnum_check.on {
    display: table-row;
  }
}

.review_naver {
  display: inline-block;
}

.review_naver img {
  display: inline-block;
  width: 20px;
}
.detail_qnarev .list > li > .info .title .review_naver img {
  width: 14px;
  margin: 0;
  padding-top: 4px;
}
.layer_review_list > .inner > .info > .board > .subject .review_naver img {
  width: 14px;
  margin-top: -2px;
}

#discount_info.view_info {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #888;
  
}

#discount_info.view_info > div > span {
  font-weight: 400;
  font-size: 14px;
  color: #888;
}

#footer .quick .wrap_inner img {
  display: inline-block;
}

.tbl_col.prd > tbody > tr > td.delete_wish span:after {
  content: none;
}

.box_btn [type='button'],
.box_btn [type='reset'],
.box_btn [type='submit'] {
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
}

.box_btn.gray [type='button'],
.box_btn.gray [type='reset'],
.box_btn.gray [type='submit'] {
  background: #f5f5f5;
}

.box_btn.white [type='button'],
.box_btn.white [type='reset'],
.box_btn.white [type='submit'] {
  border-color: #c3c3c3;
  background: #fff;
  color: #666 !important;
}

.section4 .logos img {
  display: inline-block;
}

.qnarev_list .prd .info .name img {
  display: inline-block;
  width: 50px;
}

*,
::before,
::after {
  border-width: 0;
}

/* 디자인 변경 */
#detail .big_title {
  margin-bottom: 10px;
  width: 1060px;
  margin: 0 auto;
}

#detail .wrap_prd .icons {
  display: flex;
  gap: 10px;
}

#detail .wrap_prd .icons img {
  width: 40px;
}

#detail .big_title h3.name {
  font-size: 22px;
  font-weight: bold;
}


#detail .wrap_prd > .prdimg .btn .wish {
  position: absolute;
  top: 20px;
  right: 20px;
  flex: none;
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('/_skin/radiwell_kor_2/img/button/wish.png');
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
}
#detail .wrap_prd > .prdimg .btn .wish.on {
  background-image: url('/_skin/radiwell_kor_2/img/button/wish_on.png');
}

@media all and (min-width: 1200px) {
  #detail .wrap_prd > .prdimg {
    width: 750px;
  }
}


#detail .wrap_prd > .prdimg .img {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

#detail .wrap_prd > .prdimg .img a {
  width: 500px;
}


#detail .wrap_prd > .prdimg .addimg .add_slide .slick-slide img {
  width: 80%;
  margin: auto;
  cursor: pointer;
}


#detail .wrap_prd > .prdimg .addimg .add_slide .slick-list {
  padding-top: 24px;
}
#detail .wrap_prd > .prdimg .addimg .add_slide .slick-track {
  margin: auto;
  gap: 12px;
  display: flex;
  justify-content: center;
}

#detail .wrap_prd > .prdimg .addimg .add_slide .slick-track > div > img{
  min-width: 102px;
  min-height: 102px;
  border : 1px solid #E5E5E5;
}

#detail .wrap_prd > .prdimg .addimg .add_slide .slick-track > div > img:hover {
  border: 1px solid black;
}


#detail .wrap_prd form[name='prdFrm'] .info {
  width: 568px;
  position: relative;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media all and (max-width: 1200px) {
  #detail .wrap_prd form[name='prdFrm'] .info {
    width: 100vw;
    
  }
}

#detail .wrap_prd form[name='prdFrm'] .info .prd_name {
  color: var(--neutral-800, #262626);
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px; /* 130.769% */
  display: block;
  margin-bottom: 16px;
}

#detail .wrap_prd form[name='prdFrm'] .info .info_layer {

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#detail .wrap_prd form[name='prdFrm'] .info .info_layer .inner {
  /* max-height: 394px; */
  /* display: flex; */
  flex-direction: column;
  /* overflow: hidden; */
  /* overflow-y: auto; */
}




#detail .wrap_prd .info .info_layer .btn button.wish {
  flex: 1;
}

#detail .wrap_prd .info .info_layer .btn button.cart {
  flex: 1;
}

#detail .wrap_prd .info .info_layer .btn button.buy {
  flex: 3;
}

#detail .wrap_info .tabcnt_detail .detail_info + .box_btn.block {
  padding: 20px;
}

#detail .wrap_info .tabcnt_detail .tbl_prdinfo {
  width: auto;
  margin: 20px 0 20px 0;
}


/* 약관 관련 style */
.terms_and_info_wrap {
  font-size: 14px;
  padding: 0 12px;
}

.terms_and_info_content {
  margin-top: 2.5em;
  color: #71717a;
}

.terms_and_info_content ol,
.terms_and_info_content ul {
  list-style: initial;
  padding-left: 1em;
  margin: initial;
}

.terms_and_info_content ol li {
  list-style-type: inherit;
  list-style-position: outside;
  padding: initial;
  margin: initial;
  line-height: 1.5em;
}

.terms_and_info_content ul li {
  list-style-type: inherit;
  list-style-position: outside;
  padding: initial;
  margin: initial;
  line-height: 1.5em;
}

.terms_and_info_content li > ul {
  padding-left: 1.25em;
}

.terms_and_info_content li > ul[style='list-style: none;'] {
  padding: 0;
  margin-top: 0;
}

.terms_and_info_content li > ol {
  padding-left: 1.25em;
}

.terms_and_info_content li > ol[style='list-style: none;'] {
  margin-top: 0;
}

.terms_and_info_content ol[style='list-style-type: decimal;'] {
  padding-left: 1.4em;
}

.terms_and_info_content ol[style='list-style-type: hangul;'] {
  padding-left: 1.4em;
}

.terms_and_info_content ol[style='list-style-type: decimal-circle;'] {
  padding-left: 1em;
}

.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li {
  padding-left: 0.5em;
}

.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(1)::marker {
  content: '①';
}
.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(2)::marker {
  content: '②';
}
.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(3)::marker {
  content: '③';
}
.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(4)::marker {
  content: '④';
}
.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(5)::marker {
  content: '⑤';
}
.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(6)::marker {
  content: '⑥';
}
.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(7)::marker {
  content: '⑦';
}
.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(8)::marker {
  content: '⑧';
}
.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(9)::marker {
  content: '⑨';
}
.terms_and_info_content ol[style='list-style-type: decimal-circle;'] > li:nth-child(10)::marker {
  content: '⑩';
}

.terms_and_info_content h3 {
  scroll-margin-top: 20em;
  font-size: 1.13em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #3f3f46;
  line-height: 1.7em;
  margin-bottom: 0.63em;
}

.terms_and_info_content h4 {
  scroll-margin-top: 20em;
  margin-top: 3em;
  font-size: 1em;
  font-weight: 800;
  line-height: 1.7em;
  scroll-margin-top: 7em;
  color: #3f3f46;
  margin-bottom: 0.63em;
}

.terms_and_info_content p {
  color: #71717a;
  letter-spacing: -0.075px;
  margin-bottom: 0.63em;
}

.terms_and_info_content p strong {
  color: #09090b;
}

.terms_and_info_content a:hover {
  text-decoration: underline;
}

.terms_and_info_content table {
  margin-bottom: 1em;
}

.terms_and_info_content table thead tr th {
  border: 1px solid #71717a;
  background-color: #eee;
  color: #3f3f46;
  padding: 10px;
  text-align: center;
  font-size: 0.88em;
  font-weight: 400;
}

.terms_and_info_content table tbody tr td {
  border: 1px solid #71717a;
  padding: 10px;
  font-size: 0.88em;
}

.terms_and_info_content dl {
  margin-top: 0.63em;
}

@media (min-width: 380px) {
  .terms_and_info_wrap {
    font-size: 16px;
  }

  .terms_and_info_content p {
    letter-spacing: normal;
    line-height: 1.5em;
  }

  .terms_and_info_content h3 {
    font-size: 1.25em;
  }

  .terms_and_info_content h4 {
    scroll-margin-top: 8em;
  }
}

@media (min-width: 1440px) {
  .terms_and_info_wrap {
    padding: 0;
  }
}

.icon_q {
  width: 16px;
  height : 16px;
  cursor: pointer;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4514_18427)'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23888888'/%3E%3Cpath d='M7.14453 9.89844C7.15625 8.41016 7.57812 7.95312 8.31641 7.49609C8.82031 7.17969 9.19531 6.78125 9.19531 6.19531C9.19531 5.53906 8.69141 5.11719 8.04688 5.11719C7.46094 5.11719 6.89844 5.49219 6.86328 6.27734H5.39844C5.43359 4.70703 6.61719 3.89844 8.05859 3.89844C9.64062 3.89844 10.7305 4.77734 10.7305 6.17188C10.7305 7.12109 10.25 7.74219 9.48828 8.19922C8.80859 8.60938 8.52734 9.01953 8.51562 9.89844V10.0039H7.14453V9.89844ZM7.87109 12.5938C7.36719 12.5938 6.95703 12.1836 6.95703 11.6797C6.95703 11.1875 7.36719 10.7773 7.87109 10.7773C8.35156 10.7773 8.77344 11.1875 8.77344 11.6797C8.77344 12.1836 8.35156 12.5938 7.87109 12.5938Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4514_18427'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.arrow {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23A1A1A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  display: flex;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow.rotate {
  transform: rotate(180deg); 
}

.arrow2 {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23A1A1A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  display: flex;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow2.rotate {
  transform: rotate(180deg); 
}


.toggle {
  display: block;
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

#dimmed {
  cursor: pointer;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#dimmed.on {
  display: block;
}


.deliverySection {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.deliveryDay {
  border-radius: 100px;
  background: #F2F6FF;
  color: rgb(var(--brand-color));
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  padding: 6px 12px;
  line-height: 22px;
  max-width: 100px;
  white-space: nowrap;
}

.delivery-section .delivery-caption {
  color: var(--neutral-800, #262626);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 8px;
}

.delivery-section .delivery-caption .ico_mo_filter {
  background: url(../../../_image/svg/ico_mo_filter_off_16.svg) no-repeat right center;
  background-size: 16px;
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.delivery-section .delivery-caption .ico_mo_filter.rotate {
  transform: rotate(180deg);
}


.delivery-section .delivery-info {
  background: #FAFAFA;
  display: flex;
  padding: 8px 0px;
  gap: 4px;
  flex-direction: column;
  margin-bottom: 24px;
}

.delivery-section .delivery-info > p{
  color: #666;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  background: url(../../../_image/svg/ico_notice_20x20.svg) no-repeat top left;
  background-size: 20px;
  padding-left: 26px;
}

.delivery-section {
  margin-bottom: 16px;
}

.layer_sbs .delivery_info .prd .info {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: space-between;
}

.layer_sbs .delivery_info .prd > img {
  width: 80px;
  height: 80px;
}

.layer_sbs .delivery_info .prd .info .sbscr_sell_prc {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

.delivery-price {
  justify-content: space-between;
  margin: 16px 0;
  border-bottom: 1px solid #E5E5E5;
  background: #FAFAFA;
  padding: 8px;
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

.delivery-price > div > span {
  font-weight: 600;
}

.delivery-price > div > i {
  background: url(../../../_image/svg/ico_mo_filter_off_16.svg) no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
  display: flex;
}

.p_color_big {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
  padding: 16px 0;
}

.listbold{
  color: rgb(var(--brand-color));
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}



.fld_info > li > p {
  color: var(--neutral-800, #262626);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  margin-bottom: 8px;
  margin-top: 16px;
}


#detail .pop_coupon > div > .count2 {
  padding: 12px 0;
  background: rgb(var(--brandback-color));
  text-align: center;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  color: rgb(var(--brand-color));
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}


.detail_qnarev .list > li.show > .info .review_title {
    text-overflow: initial;
    white-space: pre-line;
    overflow: hidden;
    -webkit-line-clamp: 2;
    align-items: flex-start;
}

.detail_qnarev .list > li > .info .review_title > p.review_title_section {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.detail_qnarev .list > li.show > .info .review_title > p.review_title_section {
  overflow: visible;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}



.non-data-line {
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;

}

.custom-select {
  font-size: 16px;
  font-weight: 400;
  color: #888;
  border: none;
  padding-right: 40px !important;
}

.custom-select option {
  font-size: 16px;
  font-weight: 400;
  text-align: end;

}

.small_arrow {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23A1A1A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  display: flex;
  transition: transform 0.3s ease; 
}

.small_arrow.rotate {
  transform: rotate(180deg);
}

.icon_a {
  width: 24px;
  height : 24px;
  cursor: pointer;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cpath d='M12 8.90234V12.9023M12 16.9023H12.01M22 12.9023C22 18.4252 17.5228 22.9023 12 22.9023C6.47715 22.9023 2 18.4252 2 12.9023C2 7.3795 6.47715 2.90234 12 2.90234C17.5228 2.90234 22 7.3795 22 12.9023Z' stroke='%23A3A3A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 24px;
}
 /* 쿠폰 컨테이너 (부모 박스) */
.coupon-container {
  width: 100%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; 
  padding: 10px;
  container-type: inline-size; 
  container-name: coupon-container; 
}

/* 쿠폰 텍스트 */
.coupon-text {
  white-space: pre-line !important; 
  text-align: center;
  display: block;
  max-width: 100%; 
  color: #FFF;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

@container coupon-container (min-width: 640px) {
  .coupon-text {
    white-space: nowrap !important;
    font-size: 18px;
  }
}

.mailage_all {
  font-weight: 400 !important;
  line-height: 22px;
  font-size: 14px !important;
  color: #666 !important;
}

:root {
  --brand-color: 56 139 250;
  --brandback-color : 242 247 255; 
}

.theme-renfit {
  --brand-color: 255 83 82; 
  --brandback-color : 255 247 237;
  --brand-top: 84px;
}

.theme-radiwell {
  --brand-color: 56 139 250;
  --brandback-color : 242 247 255; 
  --brand-top: 0px;
}


.star-icon {
  width: 16px;
  height: 16px;
  background-color: rgb(var(--brand-color));
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8.74947 1.45418L10.2619 4.51858C10.3835 4.76538 10.6191 4.93618 10.8911 4.97578L14.2731 5.46738C14.9587 5.56698 15.2323 6.40938 14.7363 6.89298L12.2891 9.27818C12.0923 9.47018 12.0023 9.74698 12.0487 10.0182L12.6263 13.3862C12.7435 14.069 12.0267 14.5898 11.4135 14.2674L8.38867 12.677C8.14507 12.549 7.85427 12.549 7.61067 12.677L4.58587 14.2674C3.97267 14.5898 3.25587 14.069 3.37307 13.3862L3.95067 10.0182C3.99707 9.74698 3.90747 9.47058 3.71027 9.27818L1.26307 6.89298C0.767071 6.40938 1.04067 5.56698 1.72627 5.46738L5.10827 4.97578C5.38067 4.93618 5.61587 4.76538 5.73747 4.51858L7.24987 1.45418C7.55627 0.832981 8.44227 0.832981 8.74907 1.45418H8.74947Z' fill='black'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8.74947 1.45418L10.2619 4.51858C10.3835 4.76538 10.6191 4.93618 10.8911 4.97578L14.2731 5.46738C14.9587 5.56698 15.2323 6.40938 14.7363 6.89298L12.2891 9.27818C12.0923 9.47018 12.0023 9.74698 12.0487 10.0182L12.6263 13.3862C12.7435 14.069 12.0267 14.5898 11.4135 14.2674L8.38867 12.677C8.14507 12.549 7.85427 12.549 7.61067 12.677L4.58587 14.2674C3.97267 14.5898 3.25587 14.069 3.37307 13.3862L3.95067 10.0182C3.99707 9.74698 3.90747 9.47058 3.71027 9.27818L1.26307 6.89298C0.767071 6.40938 1.04067 5.56698 1.72627 5.46738L5.10827 4.97578C5.38067 4.93618 5.61587 4.76538 5.73747 4.51858L7.24987 1.45418C7.55627 0.832981 8.44227 0.832981 8.74907 1.45418H8.74947Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}


.star-icon-white {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2827 3.45332C11.5131 2.98638 11.6284 2.75291 11.7848 2.67831C11.9209 2.61341 12.0791 2.61341 12.2152 2.67831C12.3717 2.75291 12.4869 2.98638 12.7174 3.45332L14.9041 7.88328C14.9721 8.02113 15.0061 8.09006 15.0558 8.14358C15.0999 8.19096 15.1527 8.22935 15.2113 8.25662C15.2776 8.28742 15.3536 8.29854 15.5057 8.32077L20.397 9.03571C20.9121 9.11099 21.1696 9.14863 21.2888 9.27444C21.3925 9.38389 21.4412 9.5343 21.4215 9.68377C21.3988 9.85558 21.2124 10.0372 20.8395 10.4004L17.3014 13.8464C17.1912 13.9538 17.136 14.0076 17.1004 14.0715C17.0689 14.128 17.0487 14.1902 17.0409 14.2545C17.0321 14.3271 17.0451 14.403 17.0711 14.5547L17.906 19.4221C17.994 19.9355 18.038 20.1922 17.9553 20.3445C17.8833 20.477 17.7554 20.57 17.6071 20.5975C17.4366 20.6291 17.2061 20.5078 16.7451 20.2654L12.3724 17.9658C12.2361 17.8942 12.168 17.8584 12.0962 17.8443C12.0327 17.8318 11.9673 17.8318 11.9038 17.8443C11.832 17.8584 11.7639 17.8942 11.6277 17.9658L7.25492 20.2654C6.79392 20.5078 6.56341 20.6291 6.39297 20.5975C6.24468 20.57 6.11672 20.477 6.04474 20.3445C5.962 20.1922 6.00603 19.9355 6.09407 19.4221L6.92889 14.5547C6.95491 14.403 6.96793 14.3271 6.95912 14.2545C6.95132 14.1902 6.93111 14.128 6.89961 14.0715C6.86402 14.0076 6.80888 13.9538 6.69859 13.8464L3.16056 10.4004C2.78766 10.0372 2.60121 9.85558 2.57853 9.68377C2.55879 9.5343 2.60755 9.38389 2.71125 9.27444C2.83044 9.14863 3.08797 9.11099 3.60304 9.03571L8.49431 8.32077C8.64642 8.29854 8.72248 8.28742 8.78872 8.25662C8.84736 8.22935 8.90016 8.19096 8.94419 8.14358C8.99391 8.09006 9.02793 8.02113 9.09597 7.88328L11.2827 3.45332Z' stroke='white' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


  .option-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEE;
  }

  .option-row:last-child {
    border-bottom: none;
    padding-bottom: 0px;
  }

  .option-label {
     display: flex;
     gap: 4px;
     color: #111;
     font-size: 16px;
     font-style: normal;
     font-weight: 500;
     line-height: 150%; /* 24px */
     letter-spacing: -0.5px;
     align-items: center;
  }


	.speech-bubble {
		position: absolute;
		top: -35px;
		display: inline-block;
		padding: 2px 8px;
		background-color: black;
		color: white;
		border-radius: 200px;
		font-size: 14px;
		font-style: normal;
		font-weight: 700;
		white-space: nowrap;
		max-width: 200px;
		word-wrap: break-word;
	}

	.speech-bubble::after {
		content: '';
		position: absolute;
		bottom: -6px;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-top: 10px solid black;
	}

  

  .ico_kakao_talk {
    width: 24px;
    height: 24px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_6456_26443)'%3E%3Cpath d='M12.0002 2.84375C7.21904 2.84375 3.34375 6.42963 3.34375 10.8508C3.34375 14.1167 4.71081 15.6767 6.5861 17.0979L6.59551 17.1026V20.9355C6.59551 21.1167 6.80257 21.2202 6.9461 21.112L10.2285 18.6743L10.299 18.7049C10.8496 18.8061 11.419 18.8602 12.0002 18.8602C16.7814 18.8602 20.6567 15.2743 20.6567 10.8532C20.6567 6.43199 16.7814 2.84375 12.0002 2.84375Z' fill='%23FFDE00'/%3E%3Cpath d='M12.0002 2.84375C7.21904 2.84375 3.34375 6.42963 3.34375 10.8508C3.34375 14.1167 4.71081 15.6767 6.5861 17.0979L6.59551 17.1026V20.9355C6.59551 21.1167 6.80257 21.2202 6.9461 21.112L10.2285 18.6743L10.299 18.7049C10.8496 18.8061 11.419 18.8602 12.0002 18.8602C16.7814 18.8602 20.6567 15.2743 20.6567 10.8532C20.6567 6.43199 16.7814 2.84375 12.0002 2.84375ZM9.09904 12.879C9.94846 12.879 10.6732 12.3708 10.892 11.5873H12.1461C11.8402 13.0979 10.6637 14.0861 9.09904 14.0861C7.28022 14.0861 5.83787 12.7285 5.83787 10.8414C5.83787 8.95434 7.28022 7.59669 9.09904 7.59669C10.6802 7.59669 11.8637 8.6061 12.1555 10.1426H10.9037C10.7132 9.30728 9.96257 8.78728 9.09904 8.78728C7.87551 8.78728 7.0614 9.66022 7.0614 10.8414C7.0614 12.0226 7.9861 12.879 9.09904 12.879ZM17.3696 13.9637H16.219V11.3685C16.219 10.7708 15.8708 10.4508 15.3367 10.4508C14.739 10.4508 14.3555 10.8155 14.3555 11.5567V13.9637H13.2049V7.61787H14.3555V10.0061C14.6308 9.58728 15.0779 9.38257 15.6849 9.38257C16.1743 9.38257 16.5767 9.54257 16.8896 9.87198C17.212 10.2014 17.372 10.6485 17.372 11.2273V13.9637H17.3696Z' fill='%23231815'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6456_26443'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    display: inline-block;
}

  .brand_renfit {
    background: url(../../../_image/svg/logo_renfit.svg) no-repeat ;
    background-size: 72px 20px;
    text-indent: -9999px;
  }
  .brand_radiwell {
    background: url(../../../_image/svg/logo_radiwell.svg) no-repeat ;
    background-size: 72px 20px;
    text-indent: -9999px;
  }


  .icon-point {
    width: 16px;
    height: 17px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M8.66665 3.83333C8.66665 4.56971 7.02502 5.16667 4.99998 5.16667C2.97494 5.16667 1.33331 4.56971 1.33331 3.83333M8.66665 3.83333C8.66665 3.09695 7.02502 2.5 4.99998 2.5C2.97494 2.5 1.33331 3.09695 1.33331 3.83333M8.66665 3.83333V4.83333M1.33331 3.83333V11.8333C1.33331 12.5697 2.97494 13.1667 4.99998 13.1667M4.99998 7.83333C4.88762 7.83333 4.77643 7.8315 4.66665 7.8279C2.79781 7.76666 1.33331 7.19552 1.33331 6.5M4.99998 10.5C2.97494 10.5 1.33331 9.90305 1.33331 9.16667M14.6666 8.16667C14.6666 8.90305 13.025 9.5 11 9.5C8.97494 9.5 7.33331 8.90305 7.33331 8.16667M14.6666 8.16667C14.6666 7.43029 13.025 6.83333 11 6.83333C8.97494 6.83333 7.33331 7.43029 7.33331 8.16667M14.6666 8.16667V13.1667C14.6666 13.903 13.025 14.5 11 14.5C8.97494 14.5 7.33331 13.903 7.33331 13.1667V8.16667M14.6666 10.6667C14.6666 11.403 13.025 12 11 12C8.97494 12 7.33331 11.403 7.33331 10.6667' stroke='%23D4D4D4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    display: inline-block;
  }

  .icon-secret {
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cpath d='M17 10.9023V8.90234C17 6.14092 14.7614 3.90234 12 3.90234C9.23858 3.90234 7 6.14092 7 8.90234V10.9023M12 15.4023V17.4023M8.8 21.9023H15.2C16.8802 21.9023 17.7202 21.9023 18.362 21.5754C18.9265 21.2877 19.3854 20.8288 19.673 20.2643C20 19.6226 20 18.7825 20 17.1023V15.7023C20 14.0222 20 13.1821 19.673 12.5404C19.3854 11.9759 18.9265 11.5169 18.362 11.2293C17.7202 10.9023 16.8802 10.9023 15.2 10.9023H8.8C7.11984 10.9023 6.27976 10.9023 5.63803 11.2293C5.07354 11.5169 4.6146 11.9759 4.32698 12.5404C4 13.1821 4 14.0222 4 15.7023V17.1023C4 18.7825 4 19.6226 4.32698 20.2643C4.6146 20.8288 5.07354 21.2877 5.63803 21.5754C6.27976 21.9023 7.11984 21.9023 8.8 21.9023Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
  }

  .img > a > img {
    border-radius: 8px;
  }

  .coupon-card-icon-section .coupon-card-icon {
    color: var(--neutral-400, #A1A1A1);
		font-size: 14px;
		font-style: normal;
		font-weight: 600;
		line-height: 150%;
		border-radius: 4px;
    border-top: 1px solid var(--neutral-300, #D4D4D4);
    border-bottom: 1px solid var(--neutral-300, #D4D4D4);
    border-left: 1px solid var(--neutral-300, #D4D4D4);
    background-color: #F5F5F5;
    opacity: 0.5;
		height: 100%;
		display: flex;
    align-items: center;
    padding: 0 8px;
    pointer-events: none;
    
  }
  .coupon-card-icon-section.Y .coupon-card-icon {
    border-top: 1px solid var(--neutral-400, #A3A3A3);
    border-bottom: 1px solid var(--neutral-400, #A3A3A3);
    border-left: 1px solid var(--neutral-400, #A3A3A3);
    background-color: #FFFFFF;
    opacity: 1;
    pointer-events:visible; 
	}

  .coupon-card-icon-section.login_ {
    pointer-events: none; /* 클릭 이벤트 비활성화 */
  }

  .coupon-card-icon-section.login_.Y {
    pointer-events: auto; 
  }

  .coupon-card-icon-section.login_Y .coupon-card-icon {
    border-top: 1px solid var(--neutral-400, #A3A3A3);
    border-bottom: 1px solid var(--neutral-400, #A3A3A3);
    border-left: 1px solid var(--neutral-400, #A3A3A3);
    background-color: #FFFFFF;
    opacity: 1;
  }

  .coupon-card-icon-section .coupon-card-icon-tail {
		height: 100%;
		width: 16px;
    border-radius: 8px 0 0 8px; /* 왼쪽만 둥글게 */
		border-left: 1px dashed var(--neutral-300, #D4D4D4);
		border-top: 1px solid var(--neutral-300, #D4D4D4);
		border-right: 1px solid var(--neutral-300, #D4D4D4);
		border-bottom: 1px solid var(--neutral-300, #D4D4D4);
    background-color: #F5F5F5;
    opacity: 0.5;
  }
	.coupon-card-icon-section.Y .coupon-card-icon-tail {
		border-left: 1px dashed var(--neutral-400, #A3A3A3);
		border-top: 1px solid var(--neutral-400, #A3A3A3);
		border-right: 1px solid var(--neutral-400, #A3A3A3);
		border-bottom: 1px solid var(--neutral-400, #A3A3A3);
    background-color: #FFFFFF;
    opacity: 1;
	}
  .coupon-card-icon-section.login_Y .coupon-card-icon-tail {
		border-left: 1px dashed var(--neutral-400, #A3A3A3);
		border-top: 1px solid var(--neutral-400, #A3A3A3);
		border-right: 1px solid var(--neutral-400, #A3A3A3);
		border-bottom: 1px solid var(--neutral-400, #A3A3A3);
    background-color: #FFFFFF;
    opacity: 1;
	}
  .coupon-card-icon-section.Y .coupon-card-icon .box > div.won {
    color: rgb(var(--brand-color)) !important;
  } 
  .coupon-card-icon-section.login_Y .coupon-card-icon .box > div.won {
    color: rgb(var(--brand-color)) !important;
  } 


  .coupon-card-icon-section {
    display: flex; align-items: center; height: 39px;
  }

  .product-box.out .soldout-overlay {
    display: flex !important; /* flex로 보이게 */
  }

  .product-box > div > a > img {
    width: 100% !important;
    height: 100% !important;
  }

  .tabs {
    display: flex;
    gap: 8px;
  }

  .tabs .tab-button {
    border-radius: 8px;
    border: 1px solid var(--neutral-200, #E5E5E5);
    background: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding: 12px 16px;
  }

  .tabs .tab-button.active {
    color: white;
    background: var(--neutral-800, #262626);
    border: 1px solid var(--neutral-800, #262626);
  }

  .tabs .tab-button.other {
    text-align: end;
    border: 0px;
    padding: 0px;flex: 4;
  }
  .tabs .tab-button.other.active {
    color: black;
    text-decoration-line: underline;
    text-underline-position: under;
    background: transparent;
    border: 0px;
  }


  .icon_naver_S {
    display: flex;
    align-items: center;
    margin-right: 8px;        
    border-radius: 4px;      
    border: 1px solid var(--neutral-200, #E5E5E5);
    padding: 2px 6px;  
    font-size: 13px;          
    font-weight: 500;      
    line-height: 150%;     
    color: #03C75A; 
    white-space: nowrap;             
  }

  .icon_naver_big_N {
    display: none;
  }
  .icon_naver_big_S {
    align-items: start;
    display: inline;
  }

  #review_area li .info_Y:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 1px;
    height: 80%;
    background-color: #EEE;
    margin-left: 0.5em;
    vertical-align: middle;
    right: 14%;
  }

  #review_area li .info_Y.show:after {
    display: none;
  }

	.review-truncate {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

  .privacy> * {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }

  .privacy table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 14px;
    color: #333;
  }
  
  .privacy table th,
  .privacy table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
  
  .privacy table th {
    background-color: #f5f5f5;
    font-weight: bold;
  }
  
  .privacy table tr:nth-child(even) {
    background-color: #fafafa;
  }

  /* 리뷰세트옵션 */
  .review-option-item {
    width: 100%;
    /* border: 1px solid #eee; */
    /* border-radius: 8px; */
    /* background-color: #fafafa; */
  }

  .options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .keyword-checkbox {
    display: inline-block;
    cursor: pointer;
    line-height: 1;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 35px;
  }
  
  .keyword-checkbox input[type="checkbox"] {
    display: none;
  }

  .keyword-checkbox input[type="radio"] {
    display: none;
  }
  
  /* .keyword-checkbox input[type="checkbox"] + span,
  .keyword-checkbox input[type="checkbox"] + br {
    display: none;
  } */
  
  .keyword-checkbox input[type="checkbox"] + span  {
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--neutral-100, #F5F5F5);
    border : 1px solid var(--neutral-100, #F5F5F5);
    color: var(--neutral-500, #737373);
    transition: all 0.2s ease;
  }

  .keyword-checkbox input[type="checkbox"]:checked + span {
    border: 1px solid black;
    color: white;
    background-color: black;
  }

  .keyword-checkbox input[type="radio"] + span  {
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--neutral-100, #F5F5F5);
    border : 1px solid var(--neutral-100, #F5F5F5);
    color: var(--neutral-500, #737373);
    transition: all 0.2s ease;
  }

  .keyword-checkbox input[type="radio"]:checked + span {
    border: 1px solid black;
    color: white;
    background-color: black;
  }

  /* .keyword-checkbox input[type="checkbox"]:checked + * {
    border: 1px solid rgb(var(--brand-color));
    color: rgb(var(--brand-color));
    background-color: #fff;
  } */

  .text-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .review-option-item .options{
    display: flex;
  }

  .review-option-item .msg {
    color: var(--neutral-800, #262626);
    margin-bottom: 16px;
    font-weight: 600;

  }
  .review-answer-wrap {
    color: var(--neutral-700, #404040);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 19.5px */
    letter-spacing: -0.5px;
    border-radius: 4px;
    background: var(--neutral-50, #FAFAFA);
    padding: 10px 12px;
    gap:2px;
  }
  .review-answer-wrap > div > p {
    color: #888;
    font-weight: 400;
  }
  .review-answer-item {
    color: var(--neutral-700, #404040);
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 150%; /* 21px */
  }
  .review-answer-text > div {
    color: #888;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 150%; /* 21px */
    margin-right: 8px;
  }
  .review-answer-item span {
    color: #888;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 150%; /* 21px */
    margin-right: 8px;
  }

  .review-options-container-text .review-answer-text > div, .review-options-container-text  .review-answer-item span {
    font-weight: 600 !important;
  }

  .review-options-text .review-answer-text > div,  .review-options-text .review-answer-item span {
    font-weight: 600 !important;
  }

  .keyword-more-btn .more-text{
    color: var(--neutral-800, #262626);
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    margin-right: 0;
  }

  .review-answer-item .keywords-wrapper > span.keyword-tag {
    margin-right: 0px;
    margin-bottom: 4px;
  }

  .review-answer-wrap .review-options-container .review-answer-wrap {
    background: var(--neutral-50, #FAFAFA);
    padding: 0px;
    margin-bottom: 0px;
  }

  .recommend {
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--neutral-200, #E5E5E5);
    display: flex;
    padding: 6px 8px;
    align-items: center;
    color: var(--neutral-500, #737373);
    justify-content: space-between;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    letter-spacing: -0.5px;
    width: 96px;
    max-width: 100px;
  }

  .recommend .yes {
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cg clip-path='url(%23clip0_6185_27165)'%3E%3Cpath d='M6.98242 13.125C10.3652 13.125 13.1074 10.3827 13.1074 7C13.1074 3.61726 10.3652 0.875 6.98242 0.875C3.59968 0.875 0.857422 3.61726 0.857422 7C0.857422 10.3827 3.59968 13.125 6.98242 13.125Z' fill='%23FFC84D'/%3E%3Cpath d='M5.28399 6.59923C5.70403 6.59923 6.04454 6.25872 6.04454 5.83868C6.04454 5.41863 5.70403 5.07812 5.28399 5.07812C4.86395 5.07812 4.52344 5.41863 4.52344 5.83868C4.52344 6.25872 4.86395 6.59923 5.28399 6.59923Z' fill='black'/%3E%3Cpath d='M9.5799 6.10491C9.66985 6.13991 9.76225 6.05661 9.73495 5.96421C9.58305 5.45076 9.099 5.09761 8.56035 5.14486C8.0217 5.19211 7.60625 5.62401 7.5457 6.15601C7.53485 6.25191 7.6402 6.31771 7.7228 6.26766C7.9027 6.15846 8.21245 6.01356 8.63315 5.97681C9.05385 5.94006 9.38425 6.02896 9.58025 6.10526L9.5799 6.10491Z' fill='black'/%3E%3Cpath d='M7.22497 8.46482C7.38737 8.36017 7.67367 8.21527 7.67367 7.92267C7.67367 7.76202 7.52177 7.53662 7.13607 7.42007C7.01007 7.38192 6.92222 7.35707 6.92327 7.28392C6.92432 7.21077 6.99922 7.19922 7.11927 7.19922C7.23617 7.19922 8.12552 7.35672 8.15947 7.91602C8.18432 8.32587 7.90572 8.49422 7.68172 8.66362C7.90607 8.83302 8.21547 9.13752 8.19132 9.47877C8.14757 10.0972 7.43847 10.2439 7.16582 10.2439C7.00447 10.2439 6.90647 10.2299 6.89562 10.1606C6.88477 10.0913 6.95442 10.0594 7.13607 9.98732C7.43882 9.86692 7.65232 9.67757 7.65232 9.42592C7.65232 9.10042 7.35972 8.90722 7.22462 8.82147C7.08952 8.73572 7.00342 8.70422 7.00622 8.64262C7.00937 8.57017 7.09267 8.54987 7.22497 8.46482Z' fill='%23FF6D00'/%3E%3Cpath d='M10.6534 12.0458C10.512 12.0797 10.3646 12.0262 10.2778 11.9093C10.0027 11.5383 9.4217 10.6794 9.3146 9.916C9.17355 8.90905 10.0062 8.25875 10.7017 8.5118C11.0982 8.656 11.2613 8.95 11.3285 9.1761C11.3639 9.2951 11.5011 9.34515 11.605 9.27655C11.8017 9.14635 12.1157 9.0263 12.5122 9.1705C13.2077 9.42355 13.4275 10.4571 12.6722 11.1379C12.0996 11.6541 11.1028 11.9383 10.6534 12.0458Z' fill='%23F5172B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6185_27165'%3E%3Crect width='14' height='14' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    width: 14px;
    height: 14px;
    margin-right: 2px;
    display: inline-block;
  }

  .lazy-img {
    /* aspect-ratio: 750 / 800; */
    object-fit: contain;
    width: 100%;
    display: block;
    min-height: 200px;
  }

  /* 리뷰 포토업로드 */
  .photo-upload-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .upload-box {
    width: 100px;
    height: 100px;
    border: 1px solid var(--neutral-200, #E5E5E5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #000;
    cursor: pointer;
    position: relative;
  }
  .upload-box input {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }
  .photo-thumb {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--neutral-200, #E5E5E5);
    border-radius: 4px;
  }
  .photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .photo-remove {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.90);
    width: 16px;
    height: 16px;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    text-indent: -999px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3.59664' y1='12.5966' x2='12.789' y2='3.40425' stroke='white'/%3E%3Cline x1='3.59574' y1='3.40426' x2='12.7881' y2='12.5966' stroke='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center; 
  }


  .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .loading-icon {
    width: 42px !important;
    height: 42px !important;
    opacity: 0.8;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  /* //리뷰 포토업로드 */

  .usp-section {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
  }

  .usp-section.hiding {
      opacity: 0;
  }

  .usp_content {
    display: grid;
    row-gap: 6px;
  }

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

  .usp_content li .txt {
    color: var(--neutral-800, #262626);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; 
    letter-spacing: -0.5px;
  }

  .ico_badge {
    background: url(../../../_image/svg/ico_test.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  
  .ico_flower {
    background: url(../../../_image/svg/ico_flower.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  
  .ico_scale {
    background: url(../../../_image/svg/ico_scale.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  
  .ico_sprout {
    background: url(../../../_image/svg/ico_sprout.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  
  .ico_snowflake {
    background: url(../../../_image/svg/ico_snowflake.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  
  .ico_sensitive {
    background: url(../../../_image/svg/ico_sensitive.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  
  .ico_crown {
    background: url(../../../_image/svg/ico_crown.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }

  .ico_clearance {
    background: url(../../../_image/svg/ico_clearance.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  
  .ico_capsule {
    background: url(../../../_image/svg/ico_capsule.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  /* 20251118_효소 사용 아이콘 추가 */
  .ico_flag_italy {
    background: url(../../../_image/svg/ico_flag_italy.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  .ico_flask {
    background: url(../../../_image/svg/ico_flask.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  .ico_medal {
    background: url(../../../_image/svg/ico_medal.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  .ico_rice {
    background: url(../../../_image/svg/ico_rice.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  .ico_leaf {
    background: url(../../../_image/svg/ico_leaf.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }
  .ico_sweetpotato {
    background: url(../../../_image/svg/ico_sweetpotato.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }


  
  .division {
    color: #DCDCDC;
    padding: 0 8px;
  }
  
  #detail.tab_area {
    /* 기본 sticky 제거하고 transition 추가 */
    position: relative;
    background: white;
    z-index: 20;
    transition: all 0.3s ease;
  }

  #detail.tab_area.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* 웹사이즈에서 wrap_info의 width를 고려한 고정 */
  @media (min-width: 1280px) {
    #detail.tab_area.fixed {
        width: 750px;
        left: 50%;
        transform: translateX(-50%);
    }
  }

  .shop-btn {
    padding: 12px;
    border-radius: 4px;
		border-radius: 200px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 51px;
}

  .shop-btn.brand-color {
    background-color: rgb(var(--brand-color));
    border: 1px solid rgb(var(--brand-color));
    color: #fff;
  }
  .icon_present {
    display: block;
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    background-color: rgb(var(--brand-color));
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.24568 6.41426C7.91079 6.03922 7.72266 5.53056 7.72266 5.00017C7.72266 4.46979 7.91079 3.96112 8.24568 3.58608C8.58057 3.21104 9.03477 3.00035 9.50837 3.00035C10.1974 2.9869 10.8727 3.36133 11.446 4.07478C12.0194 4.78824 12.4643 5.80763 12.7227 7C12.981 5.80763 13.4259 4.78824 13.9993 4.07478C14.5726 3.36133 15.2479 2.9869 15.9369 3.00035C16.4105 3.00035 16.8647 3.21104 17.1996 3.58608C17.5345 3.96112 17.7227 4.46979 17.7227 5.00017C17.7227 5.53056 17.5345 6.03922 17.1996 6.41426' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.60156 6.75H18.6016C19.8442 6.75 20.8516 7.75736 20.8516 9V18C20.8516 19.2426 19.8442 20.25 18.6016 20.25H6.60156C5.35892 20.25 4.35156 19.2426 4.35156 18V9C4.35156 7.75736 5.35892 6.75 6.60156 6.75Z' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M12.6172 6.99609L12.498 20' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.24568 6.41426C7.91079 6.03922 7.72266 5.53056 7.72266 5.00017C7.72266 4.46979 7.91079 3.96112 8.24568 3.58608C8.58057 3.21104 9.03477 3.00035 9.50837 3.00035C10.1974 2.9869 10.8727 3.36133 11.446 4.07478C12.0194 4.78824 12.4643 5.80763 12.7227 7C12.981 5.80763 13.4259 4.78824 13.9993 4.07478C14.5726 3.36133 15.2479 2.9869 15.9369 3.00035C16.4105 3.00035 16.8647 3.21104 17.1996 3.58608C17.5345 3.96112 17.7227 4.46979 17.7227 5.00017C17.7227 5.53056 17.5345 6.03922 17.1996 6.41426' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.60156 6.75H18.6016C19.8442 6.75 20.8516 7.75736 20.8516 9V18C20.8516 19.2426 19.8442 20.25 18.6016 20.25H6.60156C5.35892 20.25 4.35156 19.2426 4.35156 18V9C4.35156 7.75736 5.35892 6.75 6.60156 6.75Z' stroke='black' stroke-width='1.5'/%3E%3Cpath d='M12.6172 6.99609L12.498 20' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }


  .icon_shoppingbag {
    display: block;
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67578 9.40991V6.35793C8.67578 4.25099 10.2441 2.54297 12.1788 2.54297C14.1134 2.54297 15.6818 4.25099 15.6818 6.35793V9.40991' stroke='%23262626' stroke-width='1.4355'/%3E%3Cpath d='M18.8296 6.5625H5.43161C4.90307 6.5625 4.47461 6.99096 4.47461 7.5195V14.697C4.47461 18.1325 7.25962 20.9175 10.6951 20.9175H12.1306H13.5661C17.0016 20.9175 19.7866 18.1325 19.7866 14.697V7.5195C19.7866 6.99096 19.3581 6.5625 18.8296 6.5625Z' stroke='%23262626' stroke-width='1.4355' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }

  .ico_point {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M7.9987 15.7904C12.0258 15.7904 15.2904 12.5258 15.2904 8.4987C15.2904 4.47162 12.0258 1.20703 7.9987 1.20703C3.97162 1.20703 0.707031 4.47162 0.707031 8.4987C0.707031 12.5258 3.97162 15.7904 7.9987 15.7904Z' fill='%23FFC30E'/%3E%3Cpath d='M5.79425 6.04072C5.79425 5.803 5.85815 5.61895 5.98724 5.48987C6.11505 5.36078 6.29909 5.29688 6.53809 5.29688H8.25968C9.10705 5.29688 9.78571 5.47581 10.2969 5.83367C10.8082 6.19154 11.0638 6.77434 11.0638 7.58337C11.0638 8.11634 10.9398 8.56367 10.6919 8.92409C10.4439 9.28451 10.1116 9.55163 9.69497 9.72417C9.27831 9.89671 8.81181 9.98234 8.29802 9.98234H7.47877V11.5352C7.47877 11.7678 7.39697 11.9672 7.23337 12.1334C7.06978 12.2995 6.87295 12.3826 6.64034 12.3826C6.40773 12.3826 6.20835 12.2995 6.0422 12.1334C5.87604 11.9672 5.79297 11.7678 5.79297 11.5352V6.03944L5.79425 6.04072ZM8.21239 8.65697C8.61371 8.65697 8.91662 8.56494 9.12111 8.37962C9.32433 8.1943 9.42657 7.92974 9.42657 7.58465C9.42657 7.23957 9.32177 7.00312 9.11088 6.85486C8.9 6.70788 8.58559 6.63375 8.1651 6.63375H7.47877V8.65697H8.21239Z' fill='white'/%3E%3C/svg%3E");
    background-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-block;
  }


  .review-answer-item span.keyword-tag {
    display: inline-flex;
    align-items: center;
    /* height: 29px; */
    padding: 4px 8px 4px 6px;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    border-radius: 4px;
    border: 1px solid #EEE;
    background: var(--white, #FFF);
    color: var(--neutral-800, #262626);
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 150%; /* 18px */
  }
  
  .keyword-tag::before {
    font-size: 14px !important;
    font-family: tossface;
    font-style: normal;

  }

  .review-answer-item span.keyword-tag.hidden {
    display: none !important;
  }
  

  .keyword-more-btn {
    display: inline-flex;
    align-items: center;
    height: 100%;
    max-height: 31px;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 4px;
    border: 1px solid #EEE;
    background: var(--white, #FFF);
    color: var(--neutral-800, #262626);
    font-size: 12px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 150%; /* 18px */
  }


  .icon-yummy::before { content: '😋'; }
  .icon-speedarrive::before { content: '🚚'; }
  .icon-longdate::before { content: '📅'; }
  .icon-easyeat::before { content: '🍴'; }
  .icon-healthy::before { content: '🌱'; }
  .icon-diet::before { content: '👙'; }
  .icon-meal::before { content: '🥣'; }
  .icon-satiety::before { content: '🍚'; }
  .icon-tastesclean::before { content: '🥛'; }

  .review-options-text:empty,
  .review-options-keywords:empty {
    display: none;
  }


  .review-view-all-btn-wrap {
    width: 100%;
    display: flex;
    padding: 16px 14px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid var(--neutral-200, #E5E5E5);
  }
  
  .review-view-all-btn {
    color: #111;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 14px */
    letter-spacing: -0.28px;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }
  
  .review-view-all-btn .arrow-right {
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cg opacity='0.3'%3E%3Cpath d='M5.42448 2.79688L8.41437 6.11897C9.02995 6.80296 9.01066 7.84685 8.37022 8.50762L5.42448 11.5469' stroke='%23262626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    display: inline-block;
  }

  .icon-secret {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='15' viewBox='0 0 14 15' fill='none'%3E%3Cpath d='M9.91732 6.33333V5.16667C9.91732 3.55584 8.61148 2.25 7.00065 2.25C5.38982 2.25 4.08398 3.55584 4.08398 5.16667V6.33333M7.00065 8.95833V10.125M5.13398 12.75H8.86732C9.84741 12.75 10.3375 12.75 10.7118 12.5593C11.0411 12.3915 11.3088 12.1238 11.4766 11.7945C11.6673 11.4201 11.6673 10.9301 11.6673 9.95V9.13333C11.6673 8.15324 11.6673 7.6632 11.4766 7.28885C11.3088 6.95957 11.0411 6.69185 10.7118 6.52407C10.3375 6.33333 9.84741 6.33333 8.86732 6.33333H5.13398C4.15389 6.33333 3.66385 6.33333 3.2895 6.52407C2.96022 6.69185 2.6925 6.95957 2.52472 7.28885C2.33398 7.6632 2.33398 8.15324 2.33398 9.13333V9.95C2.33398 10.9301 2.33398 11.4201 2.52472 11.7945C2.6925 12.1238 2.96022 12.3915 3.2895 12.5593C3.66385 12.75 4.15389 12.75 5.13398 12.75Z' stroke='black' stroke-width='1.3125' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 14px;
    height: 14px;
    background-size: contain;
    display: inline-block;
  }



  .list_qnarev {
    list-style: none;
    padding: 0;
    margin: 0;
  }

.list_qnarev > li {
  border-top: 1px solid #F0F0F0;
}

/* .list_qnarev > li:last-child {
  margin: 0;
  border: 0px;
} */

.list_qnarev > li:after {
  display: block;
  clear: both;
  content: '';
}

.list_qnarev > li > .prdimg {
  float: left;
  position: relative;
  overflow: hidden;
  width: 110px;
  height: 110px;
  line-height: 110px;
}

.list_qnarev > li > .prdimg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: auto;
  transform: translate(-50%, -50%);
}

.list_qnarev > li > .subject.prd {
  padding-left: 120px;
}

.list_qnarev > li > .subject {
  cursor: pointer;
}

.list_qnarev > li > .subject > p {
  margin-bottom: 4px;
}

.list_qnarev > li > .subject > p:last-child {
  margin-bottom: 0;
}

.list_qnarev > li > .subject > p {
  color: #444;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; 
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_qnarev > li > .subject > p a {
  font-weight: 400;
}

.list_qnarev > li > .subject > p:first-child {
  color: var(--neutral-800, #262626);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 22.5px */
  letter-spacing: -0.5px;
}

.list_qnarev > li > .subject > p.prdname a {
  color: #666;
}

.list_qnarev > li > .subject > p.title img {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.list_qnarev > li > .subject > p.title .best {
  display: inline-block;
  padding: 0 3px;
  background: #f00;
  color: #fff !important;
}

.list_qnarev > li > .subject > p.stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list_qnarev > li > .subject > p.stat,
.list_qnarev > li > .subject > p.stat * {
  color: #444;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
}

.list_qnarev > li > .subject > p.stat .name {
  color: #444;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
}

.list_qnarev > li > .subject > p.stat .answer {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; 
}



.list_qnarev > li > .subject > p.stat .answer.complete {
  color: #000;
  font-size: 12px;
}

.list_qnarev > li > .subject > p.stat img {
  width: auto;
  height: 9px;
  margin-top: 3px;
  vertical-align: top;
}

.list_qnarev > li > .content {
  padding: 16px 0;
  margin-bottom: 21px;
}

.list_qnarev > li > .content > div {
  color: var(--neutral-800, #262626);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

.list_qnarev > li > .content * {
  font-size: 14px;
  font-weight: 400;
  display: grid;
  align-items: center;
}

.list_qnarev > li > .content > .question > .btn > .box_btn > a{
  padding: 8px 0px;
}

.list_qnarev > li > .content .btn_col {
  display: flex;
  gap: 4px;
}

/* .list_qnarev > li > .content > div.answer {
  color: #000;
  padding-top: 14px;
  max-width: 400px;
} */

.list_qnarev > li > .content > div img {
  width: 100%;
}

.list_qnarev > li > .content > div .date img {
  width: auto;
}

.list_qnarev > li > .content .question {
  position: relative;
  word-break: break-all;
  padding-left: 42px;
  
}

.list_qnarev > li > .content .question:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: #777474;
  color: #fff;
  font-family: 'arial';
  font-size: 14px;
  text-align: center;
  line-height: 29px;
  content: 'Q';
}

.list_qnarev > li > .content .question > span.qnaIcon {
  display: inline-block;
  position: absolute;
  left: -16px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #b2b2b2;
  color: #fff;
  
  font-size: 12px;
  text-align: center;
  line-height: 25px;
  content: 'Q';
}

.list_qnarev > li > .content .answer {
  border-top: 1px solid #e1e1e1;
  position: relative;
  word-break: break-all;
  min-height: 30px;
  margin-top: 15px;
  padding-left: 42px;
}

.list_qnarev > li > .content .answer:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--black, #000);
  color: #fff;
  font-family: 'arial';
  font-size: 14px;
  text-align: center;
  line-height: 29px;
  content: 'A';
}

.list_qnarev > li > .content .answer > span.qnaIcon {
  display: inline-block;
  position: absolute;
  left: -16px;
  top: 13px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #396be6;
  color: #fff;
  
  font-size: 12px;
  text-align: center;
  line-height: 25px;
}


.list_qnarev > li > .content .question img,
.list_qnarev > li > .content .answer img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.list_qnarev > li > .content .btn {
  padding-top: 10px;
  text-align: left;
  display: flex;
  width: 100%;
  justify-content: end;
  gap: 10px;
}

.list_qnarev > li > .content .comment {
  padding-top: 10px;
}

  
  .qna-item {
    padding: 16px 0;
    border-top: 1px solid #F0F0F0;
  }
  
  .qna-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
  }
  
  .qna-status-info {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .qna-icon.wait {
    width: 16px;
    height: 16px;
    background-image: url(../../../_image/svg/wait.svg);
  }
  
  .qna-icon.complate {
    width: 16px;
    height: 16px;
    background-image: url(../../../_image/svg/complate.svg);
  }
  
  
  .answer {
    font-size: 14px;
    font-weight: 600;
  }
  
  .answer.wait {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 12px */
    letter-spacing: -0.24px;
  }
  
  .answer.complete {
    color: #333;
  }
  
  .qna-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    color: var(--neutral-400, #A3A3A3);
    text-align: right;
    text-overflow: ellipsis;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 16.5px */
  }
  
  .qna-meta .name {
    color: var(--neutral-400, #A3A3A3);
  }
  
  .qna-meta .date {
    color: var(--neutral-400, #A3A3A3);
  }
  
  .subject .title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin: 0;
  }
  
  .subject .title-text {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.5px;
    cursor: pointer;
  }
  
  .subject .title-text .qna_category {
    font-weight: 600;
  }

  .subject .title-text .qna_category > a {
    font-weight: 700;
  }

  .more_btn a i,
  .more_btn2 a i {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg opacity='0.3'%3E%3Cpath d='M12.8008 6.20052L9.0041 9.61754C8.2224 10.3211 7.02939 10.299 6.27422 9.56708L2.80078 6.20052' stroke='%23262626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    display: inline-block;
    width: 16px;
    height: 16px;
  }

  .more_btn a {
    width: 60%;
    margin: 0 auto;
    display: flex;
    padding: 16px 14px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid var(--neutral-200, #E5E5E5);
    color: #111;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 14px */
    letter-spacing: -0.28px;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }
  
  .more_btn2 a {
    width: 60%;
    margin: 0 auto;
    display: flex;
    padding: 16px 14px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid #F5F5F5;
    background: #FFF;
    color: #111;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 14px */
    letter-spacing: -0.28px;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }
  

.option-slug {
	width: 16px;
	height: 16px;
	aspect-ratio: 1/1;
	background-color: #E5E5E5;
	border-radius: 100px;
  margin-right: 4px;
}

.option-slug.choco,
.option-slug.bchoco {
  background-color: #683B30;
}
.option-slug.grain,
.option-slug.bgrain {
  background-color: #F0A962;
}
.option-slug.corn {
  background-color: #FFC447;
}
.option-slug.milktea {
  background-color: #F5B3A3;
}
.option-slug.greentea {
  background-color: #84CA65;
}
.tossface {
  font-family: Tossface;
}
