/*//*/
* {
  box-sizing: border-box;
}
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
button,
input,
textarea,
p,
select,
blockquote,
th,
td,
img,
a {
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: #333;
  font-family: "Noto Sans KR", sans-serif;
  word-break: keep-all;
  word-wrap: break-word;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
}
html,
body {
  font-size: 16px;
  width: 100%;
  height: 100%;
  overscroll-behavior: contain;
}
body.active {
  overflow-y: hidden;
}
body.loadingActive {
  overflow-y: hidden;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  display: block;
  border: 0;
}
button {
  background: transparent;
  border: 0;
  cursor: pointer;
  outline: 0;
}
input,
select,
textarea {
  border: 1px solid #aaa;
  -webkit-appearance: none;
  border-radius: 0;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="password"] {
  font-family: sans-serif;
}
input::placeholder {
  color: #999;
  font-weight: 400;
}
textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 400;
}
input,
textarea:focus {
  outline: none;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
textarea {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
textarea::-webkit-scrollbar {
  display: none;
}
input[type="radio"],
input[type="checkbox"] {
  display: none;
}
input.disabled {
  cursor: auto;
  opacity: 1;
  color: #797979;
  border: 1px solid #4a4a4a;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 0 0 1000px white inset;
  box-shadow: 0 0 0 1000px white inset;
}
input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
  -webkit-text-fill-color: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 0 0 1000px white inset;
  box-shadow: 0 0 0 1000px white inset;
}

@keyframes err {
  0%,
  100% {
    transform: translateX(0);
  }

  12.5% {
    transform: translateX(12px);
  }

  25% {
    transform: translateX(-12px);
  }

  37.5% {
    transform: translateX(8px);
  }

  50% {
    transform: translateX(-8px);
  }

  62.5% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }

  87.5% {
    transform: translateX(3px);
  }
}

@keyframes tooltip {
  0% {
    transform: translateX(0);
  }

  0.42% {
    transform: translateX(12px);
  }

  0.84% {
    transform: translateX(-12px);
  }

  1.26% {
    transform: translateX(8px);
  }

  1.68% {
    transform: translateX(-8px);
  }

  2.1% {
    transform: translateX(5px);
  }

  2.52% {
    transform: translateX(-5px);
  }

  3% {
    transform: translateX(3px);
  }

  100% {
    transform: translateX(3px);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/*scroll*/
/*
*{-ms-overflow-style: none;scrollbar-width: none}
*::-webkit-scrollbar{display: none}
*/

/*basic*/
.wra {
  width: 100%;
  overflow: hidden;
}
#container {
  padding: 60px 0 0;
  position: relative;
  z-index: 2;
}
#container.footerMenuContainer {
  padding: 60px 0;
}
#container.bottombtnContainer {
  padding-bottom: 80px;
}
#container.bottombtnTextContainer {
  padding-bottom: 140px;
}
#container.notheaderContainer {
  padding-top: 0;
}
#container.commentContainer {
  padding: 60px 0 80px;
}
.container.active {
  transition: transform 0.5s cubic-bezier(0.89, 0.11, 0.09, 0.89);
}

.pageBtn_box {
  padding: 15px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1001;
}
.pageBtn {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background: #000;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  border: 1px solid #000000;
}
.pageBtn.lineBtn {
  color: #000;
  background: #fff;
}
.pageBtn.lineBtn_v2 {
  color: #000;
  background: #fff;
  border: 1px solid #d8d8d8;
}
.pageBtn.wl_color {
  background: #ffab02;
  border-color: #ffab02;
}
.pageBtn:disabled {
  background: #d8d8d8;
  border-color: #d8d8d8;
}
.pageBtn + .pageBtn {
  margin: 8px 0 0;
}
.pageBtnSubText {
  margin: 0 0 10px;
  font-size: 12px;
  color: #838383;
}
.pageBtn.disabled {
  background: #d8d8d8;
  border-color: #d8d8d8;
}

.bottomErrMsg {
  text-align: center;
  padding: 10px;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 7px;
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  display: none;
  transition: opacity 0.2s;
  z-index: 9999;
}
.bottomErrMsg.active {
  opacity: 1;
}

/*header*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9000;
}
.header.notBgHeader {
  background: transparent;
}
.header.notBgHeader.active {
  background: #fff;
}
.main_header {
  background: transparent;
}
.header_section {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.header_section.leftText {
  text-align: left;
  justify-content: left;
}
.header_section.alignRight {
  justify-content: flex-end;
}
.header_section.main_header_section {
  transition: background 0.2s;
}
.header_section.main_header_section.active {
  background: #fff;
}
.header_section.main_header_section.active .link_alarm {
  background-image: url(/assets/images/basic/alarm_off.svg);
}
.header_section.main_header_section.active .link_alarm.active {
  background-image: url(/assets/images/basic/alarm_on.svg);
}
.header_section .link_alarm.link_alarm_b {
  background-image: url(/assets/images/basic/alarm_off.svg);
}
.header_section .link_alarm.link_alarm_b.active {
  background-image: url(/assets/images/basic/alarm_on.svg);
}

.btn_back {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.btn_back.btn_bgBack {
  background: url(/assets/images/basic/back_w.svg) no-repeat center;
  background-size: 100%;
  width: 20px;
  height: 20px;
}
.btn_back.rightPopupClose {
  left: inherit;
  right: 20px;
}

.btn_headerSharing {
  background: url(/assets/images/basic/sharing_w.svg) no-repeat center;
  background-size: 100%;
  width: 20px;
  height: 20px;
}

.header.notBgHeader.active .btn_back.btn_bgBack {
  background-image: url(/assets/images/basic/back.svg);
}
.header.notBgHeader.active .btn_headerSharing {
  background-image: url(/assets/images/basic/sharing.svg);
}

.header.notBgHeader .settingLink {
  background: url(/assets/images/basic/setting.svg) no-repeat center;
  background-size: 100%;
  width: 20px;
  height: 20px;
}
.header.notBgHeader.active .settingLink {
  background-image: url(/assets/images/basic/setting_b.svg);
}

.header_title {
  font-weight: 700;
  font-size: 14px;
}
.header.notBgHeader .header_title {
  color: #fff;
}
.header.notBgHeader.active .header_title {
  color: #000;
}
.header_right_btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.header_btnBox {
  display: flex;
  align-items: center;
}
.header_btnBoxItem + .header_btnBoxItem {
  margin: 0 0 0 20px;
}
.header_pageTitle {
  font-weight: 500;
  font-size: 18px;
}

.headerInfoBox {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.btn_headerInfo {
  width: 20px;
  height: 20px;
  background: url(/assets/images/basic/info_w.svg) no-repeat center;
  background-size: 100%;
}
.header.notBgHeader.active .btn_headerInfo {
  background-image: url(/assets/images/basic/info_b.svg);
}
.btn_headerInfoText {
  position: absolute;
  top: 35px;
  right: -10px;
  display: none;
}
.btn_headerInfoText span {
  position: relative;
  background: #d9d9d9;
  border-radius: 9px;
  font-size: 11px;
  padding: 7px 10px;
  line-height: 1.4;
  color: #5e5e5e;
  white-space: nowrap;
}
.btn_headerInfoText span::after {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  border: solid transparent;
  border-bottom-color: #d9d9d9;
  border-width: 7px;
  pointer-events: none;
  bottom: 100%;
  right: 13px;
}
.btn_headerInfo.active + .btn_headerInfoText {
  display: block;
}
.header.notBgHeader.active .btn_headerInfoText span {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}
.header.notBgHeader.active .btn_headerInfoText span::after {
  border-bottom-color: rgba(0, 0, 0, 0.8);
}

/*footer*/
.footer {
  background: rgba(231, 231, 231, 0.6);
}
.footer_section {
  padding: 29px 25px 25px;
}
.footer_text {
  color: rgba(131, 131, 131, 0.7);
  font-size: 10px;
  margin: 18px 0 0;
}
.footer_caption {
  margin: 16px 0 0;
  font-weight: 500;
  color: rgba(131, 131, 131, 0.7);
  font-size: 10px;
}
.footer_subText {
  color: rgba(131, 131, 131, 0.7);
  font-size: 10px;
  margin: 16px 0 0;
}
.btn_top {
  position: fixed;
  right: 20px;
  bottom: 130px;
  z-index: 10;
}
.btn_experience {
  position: fixed;
  right: 14px;
  bottom: 184px;
  z-index: 10;
}
.btn_top.notFooterMenu {
  bottom: 18px;
}
.btn_top.btnBoxItem {
  bottom: 90px;
}
.btn_top.footerMenuTopItem {
  bottom: 73px;
}
.btn_top.footerMenuTopItem.subBtnTopItem {
  bottom: 129px;
}
.btn_subBtnTopItem {
  position: fixed;
  right: 20px;
  bottom: 73px;
  z-index: 10;
}
.footerMenuBox {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #fff;
  z-index: 1000;
}
.footerMenu {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  font-weight: 500;
  font-size: 10px;
  color: #8b8b8b;
}
.footerMenu.active {
  color: #000;
}
.footerMenuIcon {
  width: 22px;
  height: 22px;
  margin: 0 0 6px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.footerMenuIcon_home {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_0.svg);
}
.footerMenuIcon_contents {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_1.svg);
}
.footerMenuIcon_review {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_2.svg);
}
.footerMenuIcon_event {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_3.svg);
}
.footerMenuIcon_mypage {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_4.svg);
}

.footerMenu.active .footerMenuIcon_home {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_0_on.svg);
}
.footerMenu.active .footerMenuIcon_contents {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_1_on.svg);
}
.footerMenu.active .footerMenuIcon_review {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_2_on.svg);
}
.footerMenu.active .footerMenuIcon_event {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_3_on.svg);
}
.footerMenu.active .footerMenuIcon_mypage {
  background-image: url(/assets/images/footerMenu/footerMenu_icon_4_on.svg);
}

/*expired*/
.expired_page {
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.expired_section {
  padding: 20px;
  text-align: center;
}
.expired_section > img {
  margin: 0 auto;
}
.expired_title {
  font-weight: 700;
  font-size: 16px;
  margin: 24px 0 0;
}
.expired_text {
  font-size: 13px;
  color: #838383;
  margin: 6px 0 0;
}

/*onboarding*/
.page_title {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin: 20px 0 0;
}
.onboardingPageSlideArea {
  padding: 60px 0 20px;
}
.onboardingPageSlideArea .swiper-slide {
  padding: 0 20px;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.onboardingPageSlidePagination {
  bottom: inherit;
  top: 20px;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.onboardingPageSlidePagination
  .swiper-pagination-bullet {
  width: 18px;
  height: 2px;
  background: #d9d9d9;
  border-radius: 4px;
  opacity: 1;
  margin: 0 2.5px;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.onboardingPageSlidePagination
  .swiper-pagination-bullet-active {
  background: #000;
}
.onboardingImgBox {
  position: relative;
  max-width: 250px;
  margin: 0 auto;
}
.onboarding_img {
  width: 100%;
}
.onboarding_icon {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(20%, 20%);
}

/*popup*/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  display: none;
}
.popup_cover {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
}
.popupSetion {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px 20px 16px;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.2s cubic-bezier(0.13, 0.91, 0.11, 0.91);
}
.popup.active .popup_cover {
  opacity: 1;
}
.popup.active .popupSetion {
  transform: translateY(0);
}
.popupTitle {
  font-weight: 700;
  font-size: 16px;
  text-align: left;
}
.selPopup .popupTitle {
  text-align: center;
}
.popupText {
  font-size: 14px;
  margin: 8px 0 0;
  color: #838383;
}
.popup_btnBox {
  margin: 26px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn_popup {
  background: #000;
  border-radius: 9px;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  padding: 14.5px;
  width: 100%;
}
.btn_popup.notColor {
  background: #fff;
  border: 1px solid #000;
  color: #000;
  width: calc(50% - 4px);
}
.btn_popup.notColor + .btn_popup {
  width: calc(50% - 4px);
}
.popupTextCaption {
  font-size: 12px;
  color: rgba(172, 172, 172, 1);
}
.btn_selPopupClose {
  position: absolute;
  right: 20px;
  top: 20px;
}
.slideUpPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  display: none;
}
.slideUpPopup.active .popup_cover {
  opacity: 1;
}
.slideUpPopup.active .popupSetion {
  transform: translateY(0);
}

/*adminMemberPopup*/
.adminMemberPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  display: none;
}
.adminMemberPopup_cover {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
}
.adminMemberPopup_section {
  max-width: 300px;
  width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  background: #fff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 20px 15px;
  opacity: 0;
  transition: opacity 0.2s;
}
.adminMemberPopup.active .adminMemberPopup_cover {
  opacity: 1;
}
.adminMemberPopup.active .adminMemberPopup_section {
  opacity: 1;
}
.adminMemberPopup_title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 15px;
}
.adminMemberPopup_text {
  max-height: 216px;
  overflow-y: auto;
  color: #838383;
  font-size: 12px;
}
.adminMemberPopup_text span {
  background: #838383;
  border-radius: 100%;
  width: 3px;
  height: 3px;
  display: inline-block;
  margin: 0 5px 3px;
}
.adminMemberPopup_btnBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 17px 0 0;
}
.adminMemberPopup_caption {
  font-weight: 500;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 15px 0 0;
}
.btn_adminMemberPopup {
  background: #000000;
  border-radius: 10px;
  min-width: 90px;
  text-align: center;
  color: #fff;
  padding: 14px;
  font-weight: 500;
  font-size: 14px;
}

/*selPopup*/
.selPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  display: none;
}

.selPopupSetion {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px 0 16px;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.2s cubic-bezier(0.13, 0.91, 0.11, 0.91);
}
.selPopupTextBox {
  padding: 0 20px 20px;
}
.selPopup_selBox {
  max-height: 300px;
  overflow-y: auto;
}
.selPopup_sel {
  text-align: left;
  font-weight: 400;
  padding: 16px 20px;
  display: block;
  width: 100%;
}
.selPopup_sel + .selPopup_sel {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
}
.selPopup.active .popup_cover {
  opacity: 1;
}
.selPopup.active .selPopupSetion {
  transform: translateY(0);
}
.selPopup_sel.active {
  background: url(/assets/images/basic/chk_icon.svg) no-repeat center right 23px;
  padding-right: 50px;
}

/*rightPopup*/
.rightPopup {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  z-index: 9000;
  transition: transform 0.2s cubic-bezier(0.89, 0.11, 0.09, 0.89);
}
.rightPopup.active {
  transform: translateX(0);
}
.rightPopup_header_section {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: relative;
}
.rightPopup_header_section.rightPopup_header_sectionCenter {
  justify-content: center;
}
.rightPopup_header_title {
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.rightPopup_contents {
  height: calc(100% - 60px);
  padding: 0;
}
.rightPopup_contents.rightPopup_titleContents {
  height: calc(100% - 60px - 75px);
}
.rightPopup_title_area {
  padding: 20px;
}
.rightPopup_title {
  font-weight: 700;
  font-size: 30px;
}
.guideTitle {
  font-size: 25px;
}
.terms_text {
  padding: 20px 20px 50px;
  margin: 0;
  font-size: 16px;
  height: calc(100% - 50px);
  overflow-y: auto;
}
.terms_text * {
  font-weight: revert;
  color: revert;
  font-family: revert;
  font-size: revert;
}
.terms_text img {
  max-width: 100%;
}

/*stopPopup*/
.stopPopup {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  display: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.stopPopup.active {
  opacity: 1;
}
.stopPopup_header_section {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  position: relative;
}
.stopPopup_header_title {
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.stopPopup_contents {
  height: calc(100% - 60px - 80px);
  padding: 0;
}
.stopBtnBox {
  padding: 15px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1001;
}
.stop_text {
  padding: 20px 20px 50px;
  margin: 0;
  font-size: 16px;
  height: 100%;
  overflow-y: auto;
}
.stop_text * {
  font-weight: revert;
  color: revert;
  font-family: revert;
  font-size: revert;
}
.stop_text img {
  max-width: 100%;
}

/*shPopup*/
.shPopup {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  z-index: 9000;
  transition: transform 0.2s cubic-bezier(0.89, 0.11, 0.09, 0.89);
}
.shPopup.active {
  transform: translateX(0);
}
.shPopup_header {
  position: relative;
  padding: 7px 58px 7px 20px;
}
.shPopup_header > .header_shBox {
  width: 100%;
}
.shPopupKey_titleBox {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shPopupKey_title {
  font-weight: 700;
  font-size: 15px;
}
.btn_shPopupKeyAllDel {
  font-size: 12px;
  color: #838383;
  text-decoration: underline;
}
.btn_shPopupKeyItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.btn_shPopupKey {
  font-size: 13px;
  padding: 14px 0;
  width: calc(100% - 20px);
  text-align: left;
}
.btn_shPopupKeyDel {
  min-width: 20px;
}
.shPopupListInfo {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shPopupListInfoText {
  font-size: 12px;
}
.shPopupList_count {
  font-size: 12px;
}
.shPopupList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px 50px;
  overflow-y: auto;
}

/*input*/
.inputBox + .inputBox {
  margin: 20px 0 0;
}
.inputItem {
  border: 0;
  border-bottom: 1px solid #d8d8d8;
  width: 100%;
  font-size: 14px;
  padding: 14px 0;
}
.inputItem:focus {
  border-color: #000;
}
.errMsg {
  margin: 6px 0 0;
  color: #d82a4b;
  font-size: 12px;
  display: none;
}
.inputName {
  font-weight: 500;
  font-size: 12px;
  margin: 0 0 2px;
}
.err .inputItem {
  animation: err 0.3s;
  border-color: #ff3344;
}
.err .errMsg {
  display: block;
}
.errMsg.comMsg {
  color: #3c8aff;
  display: block;
}
.inputItem.customSel {
  background: url(/assets/images/basic/bottom.svg) no-repeat right 15px center;
  padding-right: 38px;
}

.certificationCount {
  color: #3c8aff;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.btn_inputSubBtn.btn_line:disabled {
  border: 1px solid #838383;
  color: rgba(0, 0, 0, 0.6);
  cursor: auto;
}
.btn_inputSubBtn.btn_line.btn_re {
  color: #000;
  border-color: #000;
  display: none;
}
.btn_inputSubBtn.btn_line {
  border: 1px solid #000;
  color: #000;
  background: #ffffff;
  border-radius: 10px;
  width: 65px;
  font-weight: 500;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 0;
  text-align: center;
}
.certificationInput {
  position: relative;
}
.inputItem.certificationInputItem {
  padding-right: 30px;
}
.certificationBox {
  display: none;
}

.pwInput.type_0 .inputItem {
  background: url(/assets/images/basic/safety.svg) no-repeat center right 15px;
  padding-right: 40px;
}
.pwInput.type_1 .inputItem {
  background: url(/assets/images/basic/ordinary.svg) no-repeat center right 15px;
  padding-right: 40px;
}
.pwInput.type_2 .inputItem {
  background: url(/assets/images/basic/insufficient.svg) no-repeat center right
    15px;
  padding-right: 40px;
}

/*login*/
.loginPage {
  padding: 37px 20px 50px;
}
.loginPage_head > img {
  margin: 0 0 13px;
}
.loginPage_title {
  font-size: 20px;
}
.loginPage_inputBox {
  margin: 30px 0 0;
}
.loginPage_btnBox {
  margin: 20px 0 0;
}
.loginPage_btnBox .pageBtn + .pageBtn {
  margin: 10px 0 0;
}
.loginPage_subBtnBox {
  margin: 13px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loginPage_subBtn {
  width: 50%;
  text-align: center;
  font-size: 13px;
  position: relative;
}
.loginPage_subBtn + .loginPage_subBtn::before {
  content: "";
  width: 1px;
  height: 8px;
  background: #838383;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loginPage_snsBox {
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_snsLogin + .btn_snsLogin {
  margin: 0 0 0 10px;
}
#naverIdLogin {
  display: none;
}

/*terms*/
.joinPageTitleBox {
  padding: 16px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.joinPageTitle {
  font-size: 18px;
}
.joinPageTitle span {
  color: rgba(131, 131, 131, 1);
}
.termsPageInfo {
  padding: 10px 20px 50px;
}

.terms_allBox {
  padding: 15px 0;
  border-bottom: 1px solid #e7e7e7;
}
.terms_allBox label {
  padding: 0 0 0 30px;
  background: url(/assets/images/basic/chk_off.svg) no-repeat left center;
  background-size: 22px;
  font-weight: 500;
  font-size: 16px;
  min-height: 22px;
  display: block;
  line-height: 22px;
}
.terms_allBox input:checked + label {
  background-image: url(/assets/images/basic/chk_on.svg);
}
.terms_item {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.terms_item img {
  min-width: 17px;
}
.terms_item label {
  line-height: 22px;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 30px;
  font-size: 13px;
  background: url(/assets/images/basic/chk_off.svg) no-repeat left center;
  background-size: 22px;
}
.terms_item input:checked + label {
  background-image: url(/assets/images/basic/chk_on.svg);
}
.terms_item_text {
  font-size: 14px;
}
.terms_item_text span {
  margin: 0 3px 0 0;
}

/*join*/
.joinPage_inputSection {
  padding: 0 20px 50px;
}

.registrationNumberBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.registrationNumberBox > .inputItem {
  width: calc(50% - 12px);
}
.registrationNumberBox > span {
  display: block;
  width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.registrationNumberBackBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(50% - 12px);
}
.registrationNumberBackBox .inputItem {
  width: 30px;
  min-width: 30px;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.registrationNumberBack_text {
  font-weight: 700;
  width: calc(100% - 30px);
  letter-spacing: 3px;
}

.joinPage_inputStep {
  display: none;
}
.joinPage_inputStep_0 {
  display: block;
}

.joinProfileImgBox {
  width: 70px;
  height: 70px;
  min-width: 70px;
  margin: 0 0 0 20px;
}
.joinProfileImg {
  display: none;
}
.joinProfileImgBox label {
  display: block;
  position: relative;
  background: url(/assets/images/basic/basic_profile.svg) no-repeat center;
  width: 100%;
  height: 100%;
  background-color: rgba(231, 231, 231, 0.3);
  border: 1px solid #e7e7e7;
  border-radius: 100%;
}
.joinProfileImgBox label.active {
  background-size: cover;
}
.joinProfileImgBox label img {
  width: 23px;
  height: 23px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.joinPage_interestList {
  display: flex;
  flex-wrap: wrap;
}
.joinPage_interestBox {
  width: calc(33.33% - 13.33px);
  margin: 0 20px 25px 0;
}
.joinPage_interestBox:nth-child(3n) {
  margin-right: 0;
}
.joinPage_interestItem_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
  padding: 0 0 100%;
  position: relative;
}
.joinPage_interestItem_chkItem {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 3px solid #e6a31b;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  display: none;
}
.joinPage_interestItem_text {
  font-weight: 500;
  font-size: 13px;
  margin: 8px 0 0;
  text-align: center;
}
.joinPage_interestBox input:checked + label .joinPage_interestItem_chkItem {
  display: flex;
}
.joinPage_interestBox input:checked + label .joinPage_interestItem_text {
  color: #e6a31b;
}

.btn_skip {
  font-size: 14px;
  color: #838383;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: underline;
}

/*find*/
.findPage_inputStep {
  display: none;
}
.findPage_inputStep_0 {
  display: block;
}
.idFind_text {
  color: #e6a31b;
  font-weight: 500;
  font-size: 13px;
}

/*main*/
.link_alarm {
  background: url(/assets/images/basic/alarm_w_off.svg) no-repeat center;
  background-position: center;
  width: 20px;
  height: 20px;
  display: block;
}
.link_alarm.active {
  background-image: url(/assets/images/basic/alarm_w_on.svg);
}

.main_bannerSlide {
  position: relative;
}
.main_bannerSlide .swiper-slide > a {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  width: 100%;
  padding: 0 0 55%;
}
.main_bannerSlide_v1 .swiper-slide > a {
  padding: 0 0 58%;
}
.main_bannerSlide_v2 .swiper-slide > a {
  padding: 0 0 61%;
}
.main_bannerSlide_v3 .swiper-slide > a {
  padding: 0 0 66%;
}
.main_bannerSlide_number {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 30px;
  bottom: 10px;
  left: inherit;
  right: 8px;
  width: auto;
  padding: 5px 9px;
  font-size: 12px;
  color: #fff;
}

.main_titleBox {
  background-color: #212121;
  position: relative;
  padding: 0 20px 58%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.main_title {
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 20px;
  bottom: 40px;
  width: calc(100% - 40px);
}
.main_contents {
  margin: -23px 0 0;
  position: relative;
  z-index: 1;
}
.main_shBox {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  position: relative;
}
.shInput {
  background: #ffffff;
  box-shadow: 0px 3px 4px rgb(0 0 0 / 7%);
  border-radius: 10px;
  border: 0;
  width: 100%;
  font-size: 15px;
  padding: 15px 45px 15px 15px;
}
.btn_sh {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.main_categoryList {
  padding: 20px;
  margin: 0 auto;
  display: flex;
  overflow-x: scroll;
}
.main_categoryListItem {
  font-size: 13px;
  text-align: center;
  width: 25%;
  min-width: 80px;
}
.main_categoryListItem img {
  margin: 0 auto 10px;
}

.main_section {
  margin: 40px 0 0;
}
.mainSlide_titleBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px 12px;
}
.mainSlide_title {
  font-size: 16px;
  font-weight: 500;
  padding: 0 10px 0 0;
}
.mainSlide_title span {
  color: #e6a31b;
}
.mainSlide_title_link {
  color: #616161;
  font-size: 12px;
  margin: 3px 0 0;
}

.main_waLike_categoryBox {
  padding: 0 20px 10px;
  display: flex;
  overflow-x: auto;
}
.main_waLike_category {
  padding: 6px 12px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  font-weight: 500;
  font-size: 13px;
  min-width: 73px;
  text-align: center;
}
.main_waLike_category + .main_waLike_category {
  margin: 0 0 0 6px;
}
.main_waLike_category.active {
  background: #000000;
  color: #fff;
}

.productListItem {
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.productListItem.notPadding {
  padding: 16px 0;
}
.productListItem + .productListItem {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
}
.productList_infoBox {
  width: calc(100% - 16px - 20px);
  display: flex;
  align-items: flex-start;
  text-align: left;
}
.productList_img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 10px;
  background-color: #f1f1f1;
}
.productList_textBox {
  margin: 0 0 0 10px;
  width: calc(100% - 90px);
}
.productList_brand {
  color: #838383;
  font-weight: 500;
  font-size: 12px;
  margin: 0 0 2px;
}
.productList_name {
  font-weight: 500;
  font-size: 13px;
}
.productList_name span {
  color: #838383;
}
.productList_price {
  font-weight: 700;
  font-size: 13px;
  margin: 4px 0 0;
}
.productList_avgBox {
  display: flex;
  align-items: center;
  margin: 8px 0 0;
}
.productList_avgBox > img {
  width: 11px;
  margin: 0 4px 0 0;
}
.productList_avg {
  font-weight: 500;
  font-size: 12px;
  color: #5e5e5e;
}
.productList_reviewCount {
  color: #5e5e5e;
  font-weight: 500;
  font-size: 12px;
  margin: 0 0 0 3px;
}
.productList_reviewCount:first-child {
  margin: 0;
}
.btn_productLink {
  width: 16px;
  height: 16px;
  background: url(/assets/images/basic/hart_m.svg) no-repeat center;
  background-size: 100%;
}
.btn_productLink.active {
  background-image: url(/assets/images/basic/hart_m_on.svg);
}

.main_bannerSlide_item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: block;
  padding: 0 0 55%;
}
.main_slideType_0 {
  padding: 0 99px 32px 20px;
  position: relative;
}
.main_slideType_0.notContents {
  padding-right: 20px;
}
.main_slideType_0.notContents
  .swiper-pagination-progressbar.main_slidePagination_bottomLine {
  display: none;
}
.mainSlide_type0_item {
  display: block;
  width: 100%;
}
.mainSlide_type0_imgBox {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 0 0 100%;
  position: relative;
  border-radius: 10px;
  background-color: #f1f1f1;
  overflow: hidden;
}
.mainSlide_type0_imgTextbox {
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: 110px;
  width: 100%;
  z-index: 1;
}
.mainSlide_type0_brand {
  font-size: 12px;
  color: #fff;
}
.mainSlide_type0_name {
  font-weight: 700;
  font-size: 14px;
  margin: 5px 0 0;
  color: #fff;
}
.mainSlide_type0_imgTextbox .productList_avgBox {
  margin: 9px 0 0;
}
.mainSlide_type0_imgTextbox .productList_avg,
.mainSlide_type0_imgTextbox .productList_reviewCount {
  color: #fff;
}
.productList_avg + .caption {
  width: 2px;
  height: 2px;
  border-radius: 100%;
  display: inline-block;
  margin: 0 0 0 2px;
  background: #d9d9d9;
}
.mainSlide_type0_textBox {
  margin: 14px 0 0;
}
.mainSlide_type0_profileBox {
  display: flex;
  align-items: center;
}
.mainSlide_type0_profileImg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
}
.mainSlide_type0_profileName {
  font-weight: 500;
  font-size: 13px;
}
.mainSlide_type0_profileText {
  font-size: 12px;
  margin: 6px 0 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.swiper-container-horizontal
  > .swiper-pagination-progressbar.main_slidePagination_bottomLine {
  top: inherit;
  bottom: 0;
  max-width: calc(100% - 40px);
  left: 20px;
  background: #d9d9d9;
  height: 2px;
}
.swiper-pagination-progressbar.main_slidePagination_bottomLine
  .swiper-pagination-progressbar-fill {
  background: #000;
}
.mainSlide_type1_item {
  position: relative;
}
.main_slideType_1 {
  padding: 0 20px 32px 20px;
  position: relative;
}
.main_slideType_1.notContents
  .swiper-pagination-progressbar.main_slidePagination_bottomLine {
  display: none;
}
.not_items {
  font-size: 12px;
  color: #999;
  text-align: center;
  width: 100%;
  padding: 30px 0;
}
.mainSlide_type1_imgBox {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 0 0 100%;
  position: relative;
  border-radius: 10px;
  background-color: #999;
  overflow: hidden;
}
.slideContents_cover {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 58.85%,
    rgba(0, 0, 0, 0.6) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mainSlide_type1_imgTextbox {
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: calc(100% - 53px);
  width: 100%;
  z-index: 2;
}
.mainSlide_type1_title {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.mainSlide_type1_subTitle {
  font-size: 12px;
  color: #d8d8d8;
  margin: 4px 0 0;
}
.btn_main_contentsBookmark {
  width: 14px;
  height: 18px;
  background: url(/assets/images/basic/book_off.svg?v=2) no-repeat center;
  background-size: 100%;
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}
.btn_main_contentsBookmark.active {
  background-image: url(/assets/images/basic/book_on.svg?v=2);
}
.mainPage {
  padding: 0 0 80px;
}
.not_firstReviewImgBox {
  position: relative;
  border-radius: 10px;
  background-color: #f1f1f1;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

/*list*/
.filter_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  display: none;
}
.filter_popup_cover {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
}
.filter_popup_section {
  background: #fff;
  position: absolute;
  height: calc(100vh - 40px);
  bottom: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px 0 16px;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.2s cubic-bezier(0.13, 0.91, 0.11, 0.91);
}
.filter_popup.active .filter_popup_cover {
  opacity: 1;
}
.filter_popup.active .filter_popup_section {
  transform: translateY(0);
}
.filter_popup_header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
}
.btn_filter_popupReSet {
  font-weight: 700;
  font-size: 14px;
  color: #acacac;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.filter_popup_title {
  font-weight: 700;
}
.filter_popupClose {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.filter_popup_detailCateArea {
  padding: 0 20px;
}
.filter_popup_detailCate_title {
  font-weight: 700;
  font-size: 15px;
}
.filter_popup_detailCateBox {
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  max-height: 67px;
  overflow: hidden;
  align-items: flex-start;
}
.filter_popup_detailCateBox.on {
  max-height: 100%;
}
.btn_detailCate {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 500;
  min-width: 73px;
  margin: 0 6px 6px 0;
}
.btn_detailCate.active {
  background: #000000;
  border-color: #000;
  color: #fff;
}
.btn_filter_popup_detailOpen {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  color: #616161;
  font-size: 12px;
}
.btn_filter_popup_detailOpen.active img {
  transform: rotate(180deg);
}
.filter_popupOption_area {
  padding: 20px 20px 40px;
}
.filter_popupOption_area + .filter_popupOption_area {
  border-top: 6px solid rgba(231, 231, 231, 0.4);
}
.filter_popup_detailCateArea + .filter_popupOption_area {
  border-top: 6px solid rgba(231, 231, 231, 0.4);
}
.filter_popupOption_area:first-child {
  padding-top: 0;
}
.filter_popupOption_title {
  font-weight: 700;
  font-size: 15px;
}
.filter_popupOption_text {
  color: #838383;
  font-size: 12px;
  margin: 8px 0 0;
}
.filter_popupOptionBox {
  margin: 30px 0 0;
}
.filter_popupOption_name {
  font-weight: 500;
  font-size: 12px;
  margin: 0 0 14px;
}
.filter_popup_contesnts {
  margin: 34px 0 0;
  height: calc(100% - 20px - 23px);
  overflow-y: auto;
  padding: 0 0 60px;
  overflow-x: hidden;
}

.rs-container {
  width: calc(100% - 20px);
  margin: 0 auto;
  font-family: "Noto Sans KR", sans-serif;
}
.rs-container .rs-scale span::before {
  display: none;
}
.rs-container .rs-bg,
.rs-container .rs-selected {
  height: 7px;
  background: rgba(231, 231, 231, 0.5);
  border: 1px solid #e7e7e7;
  border-radius: 20px;
}
.rs-container .rs-selected {
  background: rgb(255, 214, 131);
  border-radius: 20px;
  border: 0px;
  height: 7px;
}
.rs-container .rs-pointer {
  border: 1px solid rgb(131, 131, 131);
  box-shadow: none;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  top: 1.5px;
  transform: translateX(-50%);
}
.rs-container .rs-pointer::after,
.rs-container .rs-pointer::before {
  display: none;
}
.rs-tooltip {
  display: none;
}
.rs-container .rs-scale span ins {
  margin: 9px 0 0;
  font-size: 13px;
}
.rs-container .rs-scale {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rs-container .rs-scale span {
  width: auto !important;
}
.rs-container .rs-scale span:first-child {
  transform: translateX(-50%);
}
.rs-container .rs-scale span:last-child {
  transform: translateX(50%);
}
.rs-container .rs-scale span:nth-child(2) {
  transform: translateX(-25%);
}
.rs-container .rs-scale span:nth-child(4) {
  transform: translateX(25%);
}
.rs-container .rs-scale span.notSel ins {
  color: #acacac;
}

.filter_popupOptionKeyBox {
  margin: 30px 0 0;
}
.filter_popupOptionKeySlide {
  padding-right: 98px;
}
.filter_popupOptionKeySlide .swiper-wrapper {
  overflow: visible;
}
.filter_popupOptionKeySlide .swiper-slide {
  width: auto;
}
.keyTitle {
  font-weight: 500;
  font-size: 12px;
  margin: 0 0 10px;
}
.keyList .btn_detailCate {
  display: block;
}
.listFilter_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #fff;
}
.listFilter_section.active {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 11;
}
.btn_listFilter_align {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.btn_listFilter_align img {
  margin: 0 0 0 2px;
}
.filter_popupOptionKeyList {
  overflow-x: auto;
  margin: 16px 0 0;
  white-space: nowrap;
  padding: 0 0 7px;
}
.filter_popupOptionKeyListItem {
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
}
.filter_popupOptionKeyListItem.active {
  font-weight: 500;
}
.filter_popupOptionKeyList span {
  background: #d9d9d9;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  margin: 0 6px;
  min-width: 3px;
  display: inline-block;
  vertical-align: middle;
}
.listFilter_selListBox {
  white-space: nowrap;
  padding: 8px 20px;
}
.filterSelText {
  display: inline-block;
  white-space: nowrap;
  font-size: 11px;
  background: #efefef;
  border-radius: 7px;
  padding: 5px 8px;
}
.filterSelText + .filterSelText {
  margin: 0 0 0 6px;
}
.listFilter_selList {
  overflow-x: auto;
  background: rgba(249, 249, 249, 0.8);
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  display: none;
}
.filterSelText:last-child {
  margin-right: 20px;
}
.listFilter_selList.active {
  position: fixed;
  top: 100.8px;
  left: 0;
  width: 100%;
}

.pageTitle {
  padding: 16px 20px 0;
  font-size: 18px;
}
.list_cateList {
  padding: 16px 20px;
  white-space: nowrap;
  overflow-x: auto;
}
.btn_list_cate {
  padding: 6px 12px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  font-weight: 500;
  font-size: 13px;
  min-width: 73px;
  text-align: center;
}
.btn_list_cate + .btn_list_cate {
  margin: 0 0 0 6px;
}
.btn_list_cate + .btn_myReview_cate {
  margin: 0 0 0 6px;
}
.btn_list_cate.active {
  background: #000000;
  color: #fff;
}

.reviewList {
  padding: 5px 20px 50px;
}
.myReviewList_infoBox {
  padding-bottom: 14px;
  display: block;
}
.myReviewListItem + .myReviewListItem .myReviewList_infoBox {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
  padding-top: 14px;
}
.myReviewListItem + .myReviewListItem .review_statusText {
  top: 32px;
}
.myReviewList_productInfoBox {
  display: flex;
  align-items: flex-start;
}
.myReviewList_productInfoBox .productList_name {
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}
.myReviewList_reviewInfoBox {
  margin: 15px 0 0;
  display: block;
}
.myReviewList_profileInfo {
  display: flex;
  align-items: center;
}
.myReviewList_profile {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  margin: 0 6px 0 0;
}
.myReviewList_name {
  font-weight: 500;
  font-size: 12px;
}
.myReviewList_reviewText {
  font-size: 12px;
  margin: 4px 0 0;
  color: #838383;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*contents*/
.list_cateList.active {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}
.list_cateListBox {
  min-height: 64.19px;
}
.list_cateListBox.tapItemBox {
  min-height: 48.59px;
}

.inlineAlign {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.inlineAlign.rightAlign {
  justify-content: flex-end;
}
.btn_inlineAlignItem {
  font-size: 12px;
}
.btn_inlineAlignItem.active {
  font-weight: 700;
}
.inlineAlign > span {
  background: #d9d9d9;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  display: block;
  margin: 0 6px;
}
.contentsList {
  padding: 20px 20px 60px;
}

.contentsListItem + .contentsListItem {
  margin: 26px 0 0;
}
.contentsListImgBox {
  position: relative;
}
.contentsListImgLink {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 0 49%;
  width: 100%;
  display: block;
  border-radius: 10px;
}
.btn_contentsListLike {
  width: 14px;
  height: 18px;
  background: url(/assets/images/basic/book_off.svg?v=2) no-repeat center;
  background-size: 100%;
  position: absolute;
  right: 18px;
  bottom: 18px;
}
.btn_contentsListLike.active {
  background-image: url(/assets/images/basic/book_on.svg?v=2);
}
.contentsListTextLink {
  margin: 14px 0 0;
  display: block;
}
.contentsListItem_titleBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.viewCountItem {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  color: #c7c7c7;
  font-size: 11px;
  font-weight: 500;
}
.viewCountItemMain {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 500;
  justify-content: flex-start;
  margin: 11px 0 0;
  font-size: 10px;
  color: #e7e7e7;
}
.contentsListItem_title {
  font-weight: 700;
  font-size: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.contentsListItem_text {
  font-size: 12px;
  margin: 5px 0 0;
}
.contentsListItem_tagBox {
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contentsListItem_tag {
  background: rgba(231, 231, 231, 0.4);
  border-radius: 7px;
  font-size: 11px;
  padding: 5px 7px;
  margin: 6px 6px 0 0;
  white-space: nowrap;
  min-width: 42px;
  text-align: center;
}
.contentsDetail_bgBox {
  padding: 0 20px;
}
.contentsDetail_bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 0 0 55%;
  border-radius: 20px;
}
.contentsDetail_infoBox {
  padding: 16px 20px 12px;
}
.contentsDetail_titleBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.contentsDetail_title {
  font-weight: 700;
  font-size: 18px;
  overflow: hidden;
}
.contentsDetail_text {
  font-size: 13px;
  color: #5e5e5e;
  margin: 8px 0 0;
}
.contentsDetail_tagBox {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contentsDetail_tag {
  background: rgba(231, 231, 231, 0.4);
  border-radius: 7px;
  font-size: 11px;
  padding: 5px 7px;
  margin: 0 6px 8px 0;
  white-space: nowrap;
  min-width: 42px;
  text-align: center;
}
.contentsDetail_area {
  padding: 0;
  border-top: 6px solid rgba(231, 231, 231, 0.4);
}
.contentsDetail_btnBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
.contentsDetail_btnLeft {
  display: flex;
  align-items: center;
}
.btn_contentsDetailLike {
  display: flex;
  align-items: center;
  background: url(/assets/images/basic/like_off.svg?v=2) no-repeat center left;
  background-size: 20px;
  padding-left: 26px;
  font-size: 12px;
  min-height: 20px;
}
.btn_contentsDetailLike.active {
  background-image: url(/assets/images/basic/like_on.svg?v=2);
}
.contentsDetail_commentCount {
  margin: 0 0 0 18px;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.contentsDetail_commentCount img {
  margin: 0 6px 0 0;
}
.contentsDetail_btnRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.btn_contentsDetailBookMark {
  background: url(/assets/images/basic/book_off_detail.svg) no-repeat center;
  background-size: 100%;
  width: 16px;
  height: 20px;
}
.btn_contentsDetailBookMark.active {
  background-image: url(/assets/images/basic/book_on_detail.svg);
}
.commentList_section {
  border-top: 6px solid rgba(231, 231, 231, 0.4);
}
.commentList_count {
  padding: 15px 20px;
  font-size: 15px;
}
.contentsDetail_area {
  padding: 16px 20px 12px;
}
.contentsDetail_area * {
  font-weight: revert;
  color: revert;
  font-size: revert;
}
.contentsDetail_area img {
  max-width: 100%;
}
.commentList_inputBox {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 18px;
  background: #fff;
}
.commentList_input {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  resize: none;
  width: 100%;
  padding: 12px 50px 12px 16px;
  font-size: 14px;
  height: 46px;
  display: block;
}
.add_comment {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 14px;
}
.add_comment:disabled {
  color: #c7c7c7;
}

.contentsPage_commentList .commentList_inputBox {
  position: relative;
  width: 100%;
  padding: 18px;
  background: #fff;
}
.contentsPage_commentList .commentList_input {
  resize: none;
  width: 100%;
  font-size: 14px;
  height: 46px;
  display: block;
  border: 0;
  background: #f0f0f0;
  border-radius: 30px;
  padding: 14px 50px 14px 16px;
}
.contentsPage_commentList .add_comment {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 14px;
  color: #999;
}
.contentsPage_commentList .add_comment:disabled {
  color: #c7c7c7;
}
.addCommentList {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px 10px;
  font-size: 13px;
  gap: 3px;
}

.contentsDetail_sharingBox {
  position: relative;
  margin: 1px 0 0 15px;
}
.contentsDetail_sharingCaption {
  animation: tooltip 10.3s infinite;
  background: #ff3d00;
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  font-size: 12px;
  position: absolute;
  right: -7px;
  bottom: 46px;
  min-width: 198px;
}
.contentsDetail_sharingCaption::after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 61, 0, 0);
  border-top-color: #ff3d00;
  border-width: 8px;
  margin-left: 65px;
}

.contentsDetail_subArea {
  border-top: 6px solid rgba(231, 231, 231, 0.4);
  padding: 16px 20px;
}
.contentsDetail_npArea {
  padding: 25px 20px;
}
.constentsDetail_npBox + .constentsDetail_npBox {
  margin: 15px 0 0;
}
.constentsDetail_npTitle {
  font-size: 14px;
  font-weight: 700;
}
.constentsDetail_npItem {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  position: relative;
}
.constentsDetail_npLink {
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  gap: 11px;
}
.constentsDetail_npImg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-width: 90px;
  width: 90px;
  height: 54.9px;
  border-radius: 10px;
}
.constentsDetail_npInfo {
  width: calc(100% - 101px);
}
.constentsDetail_np_itemTitle {
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.constentsDetail_np_itemText {
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #838383;
}
.btn_contents_npLike {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: url(/assets/images/basic/book_off_np.svg) no-repeat center;
  background-size: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.btn_contents_npLike.active {
  background-image: url(/assets/images/basic/book_on_np.svg);
}

.contentsDetail_vote {
  background: rgba(249, 249, 249, 0.8);
  padding: 20px;
  display: none;
}
.contentsDetail_subTitle {
  font-weight: 700;
}
.contentsDetail_subTitleCaption {
  color: #838383;
  font-size: 13px;
  margin: 5px 0 0;
}
.contentsDetail_voteItemBox {
  margin: 20px 0 0;
}
.contentsDetail_voteComItem + .contentsDetail_voteComItem {
  margin: 18px 0 0;
}
.contentsDetail_voteComItemInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.contentsDetail_voteCom_name {
  color: #838383;
  font-size: 15px;
  font-weight: 500;
}
.contentsDetail_voteCom_val {
  color: #838383;
  font-size: 13px;
}
.contentsDetail_voteValItem {
  background: #fff;
  border: 1px solid #e7e7e7;
  height: 18px;
  width: 100%;
  border-radius: 30px;
  margin: 5px 0 0;
  overflow: hidden;
}
.contentsDetail_voteValItem span {
  width: 0;
  background: #e7e7e7;
  transition: width 0.2s;
  display: block;
  height: 100%;
}
.contentsDetail_voteComItem.active .contentsDetail_voteCom_name {
  color: #000;
}
.contentsDetail_voteComItem.active .contentsDetail_voteCom_val {
  color: #000;
}
.contentsDetail_voteComItem.active .contentsDetail_voteValItem span {
  border-radius: 30px;
  background: #ff3d00;
}

.contentsDetail_voteItem + .contentsDetail_voteItem {
  margin: 10px 0 0;
}
.contentsDetail_voteItem label {
  border: 1px solid #b7b7b7;
  border-radius: 25px;
  width: 100%;
  display: block;
  padding: 12px 20px 12px 50px;
  font-weight: 500;
  font-size: 15px;
  color: #b7b7b7;
  background: url(/assets/images/basic/chk_off_t2.svg) no-repeat left 18px
    center;
  background-size: 22px;
  background-color: #fff;
}
.contentsDetail_voteItem input:checked + label {
  border-color: #000;
  color: #000;
  background-image: url(/assets/images/basic/chk_on.svg);
}
.btn_contentsDetail_voteComBox {
  padding: 14px 0;
}
.btn_contentsDetail_voteCom {
  background: #ff3d00;
  width: 100%;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
}

.contentsDetail_contentsReview {
  margin: 12px 0 0;
}
.contentsDetail_contentsReview .productListItem {
  padding: 16px 0;
}

.slideContents_imgBox {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.slideContents_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 0 0 49%;
  border-radius: 20px;
}
.slideContents_itemInfo {
  margin: 14px 0 0;
  width: 100%;
}
.slideContents_item_textBox {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 11px;
  text-align: left;
}
.slideContents_item_title {
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 101px);
  white-space: nowrap;
}
.slideContents_item_subTitle {
  text-align: left;
  font-size: 12px;
  color: #5e5e5e;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin: 3px 0 0;
}
.slideContents_item_title + .viewCountItem {
  min-width: 90px;
}

.swiper-container-horizontal
  > .swiper-pagination-progressbar.contentsDetail_contentsSlide_pagination {
  background: #d9d9d9;
  height: 2px;
  position: static;
  width: 100%;
  margin: 20px 0;
  max-width: 100%;
}
.swiper-pagination-progressbar.contentsDetail_contentsSlide_pagination
  .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination.contentsDetail_contentsSlide_pagination {
  background: #d9d9d9;
  height: 2px;
  position: static;
  width: 100%;
  margin: 20px 0;
  max-width: 100%;
}
.swiper-pagination.contentsDetail_contentsSlide_pagination
  .swiper-scrollbar-drag {
  background: #000;
}

/*sh*/
.header_shBox {
  position: relative;
  width: calc(100% - 52px);
}
.shInput_header {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 10px 41px 10px 16px;
  width: 100%;
  font-size: 14px;
}
.btn_shStart {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.sh_section_titleBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
}
.sh_section_title {
  font-weight: 700;
  font-size: 15px;
}
.btn_sh_section {
  text-decoration-line: underline;
  font-size: 12px;
  color: #838383;
}
.shRecently {
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.btn_sh_recommend {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 6px 12px;
  font-weight: 500;
  font-size: 12px;
  margin: 0 6px 6px 0;
}
.shRecently + .sh_section_titleBox {
  margin: 10px 0 0;
}
.shKey_ranking {
  padding: 16px 20px 50px;
}
.btn_sh_ranking {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 13px;
}
.btn_sh_ranking + .btn_sh_ranking {
  margin: 33px 0 0;
}
.sh_rankingNumber {
  font-weight: 700;
  font-size: 13px;
  margin: 0 4px 0 10px;
}

.sh_section_tapBox {
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  padding: 0 20px;
  white-space: nowrap;
  overflow-x: auto;
}
.btn_sh_section_tap {
  font-weight: 500;
  font-size: 14px;
  color: #d8d8d8;
  padding: 14px 0 12px;
  border-bottom: 2px solid transparent;
}
.btn_sh_section_tap + .btn_sh_section_tap {
  margin: 0 0 0 20px;
}
.btn_sh_section_tap.active {
  color: #000;
  border-color: #000;
}
.shCount {
  font-size: 12px;
}
.not_listInfoBox {
  padding: 50px 0 0;
  text-align: center;
  width: 100%;
}
.not_listInfoBox > img {
  margin: 0 auto;
}
.not_listInfoText {
  font-size: 15px;
  margin: 15px 0 0;
  color: #acacac;
}
.not_listInfoSubBox {
  margin: 25px 0 0;
}
.not_listInfoSubText {
  font-size: 13px;
}
.not_listInfoSubBox_link {
  border: 1px solid #000000;
  border-radius: 10px;
  margin: 10px 0 0;
  padding: 7px 14px;
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
}
.sh_areaList {
  padding: 10px 20px 60px;
  overflow-y: scroll;
  height: calc(100% - 40.8px);
}
.sh_area {
  height: calc(100vh - 48.59px - 60px);
}

/*alarm*/
.alarmList {
  padding: 0 20px 60px;
}
.alarmListItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  padding: 15px 0;
}
.alarmListItem_typeBox {
  width: 30px;
  min-width: 30px;
}
.alarmListItem_typeBox img {
  margin: 0 auto;
  width: 20px;
}
.alarmListItem_typeText {
  font-weight: 500;
  font-size: 9px;
  text-align: center;
  margin: 8px 0 0;
}
.alarmListItem_textBox {
  width: calc(100% - 40px);
  margin: 0 0 0 10px;
}
.alarmListItem_text {
  font-size: 13px;
}
.alarmListItem_date {
  margin: 6px 0 0;
  font-size: 11px;
  color: #c7c7c7;
}
.alarmListItem_date span {
  margin: 0 0 0 1px;
  display: inline-block;
  vertical-align: bottom;
}

.commentList .not_listInfoBox {
  padding: 60px 0;
}
.commentList .not_listInfoBox > img {
  width: 57px;
}
.commentList .not_listInfoText {
  margin: 8px 0 0;
}
.commentItemBox {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
}
.comment_head_infoBox {
  display: flex;
  align-items: center;
}
.comment_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 16px;
  height: 16px;
  border-radius: 100%;
}
.comment_name {
  color: #838383;
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 0 4px;
}
.comment_name span {
  margin: 0 0 0 8px;
}
.commentInfo {
  margin: 8px 0 0;
}
.commentInfoBox {
  margin: 12px 0 0;
}
.btn_commentList_like {
  font-size: 12px;
  color: #838383;
  background: url(/assets/images/basic/like_s_off.svg?v=2) no-repeat center left;
  background-size: 12px;
  padding-left: 15px;
  font-size: 12px;
  min-height: 12px;
}
.btn_commentList_like.active {
  background-image: url(/assets/images/basic/like_s_on.svg?v=2);
}

.re_commentOpen {
  color: #838383;
  font-weight: 500;
  font-size: 12px;
  margin: 0 0 0 10px;
  text-decoration: underline;
}
.comment {
  font-size: 13px;
}
.comment.hideComment {
  color: #acacac;
}
.comment_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.commentItemBox.reCommentItemBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #f5f5f5;
}
.reCommentItemBox > img {
  min-width: 20px;
}
.reCommentItemBox .commentItem {
  width: calc(100% - 20px);
  padding: 0 0 0 8px;
}

/*reportPopup*/
.reportTextPopup {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  z-index: 9000;
  transition: transform 0.2s cubic-bezier(0.89, 0.11, 0.09, 0.89);
}
.reportTextPopup.active {
  transform: translateX(0);
}
.reportTextPopup_header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn_reportTextPopupClose {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.reportTextPopup_title {
  font-weight: 700;
  font-size: 14px;
}
.reportTextPopup_contents {
  padding: 20px 20px 90px;
  height: 100%;
}
.reportTextPopup_textarea {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 14px 14px 40px;
  resize: none;
  border: 1px solid #e7e7e7;
  font-size: 14px;
}
.reportTextPopup_textareaBox {
  position: relative;
  height: calc(100% - 55px);
}
.textareaCount {
  text-align: right;
  display: block;
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: 14px;
  color: #c7c7c7;
  margin: 0;
}
.reportTextPopup_btnBox {
  position: fixed;
  bottom: 15px;
  left: 0;
  width: 100%;
  padding: 0 20px;
}

/*shopPopup*/
.shopPopup {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  z-index: 9000;
  transition: transform 0.2s cubic-bezier(0.89, 0.11, 0.09, 0.89);
}
.shopPopup.active {
  transform: translateX(0);
}
.shopPopup_header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn_shopPopupClose {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.shopPopup_contents {
  padding: 20px 20px 90px;
  height: 100%;
}
.shopPopup_iframe {
  width: 100%;
  height: 100%;
}

/*review*/
.list_cateTap {
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  padding: 0 20px;
  white-space: nowrap;
  overflow-x: auto;
  transform: translateY(1px);
}
.list_cateTap.active {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  transform: translateY(0);
  z-index: 11;
}
.list_cateTap.active + .list_cateList.active {
  top: 108.59px;
}
.btn_list_cateTap {
  font-weight: 500;
  font-size: 14px;
  color: #d8d8d8;
  padding: 14px 0 12px;
  border-bottom: 2px solid transparent;
  display: inline-block;
}
.btn_list_cateTap + .btn_list_cateTap {
  margin: 0 0 0 20px;
}
.btn_list_cateTap.active {
  color: #000;
  border-color: #000;
}
.contentsList.notSidePadding {
  padding: 20px 0 0;
}
.myReviewListItem {
  position: relative;
}
button.myReviewListItem {
  width: 100vw;
  transform: translateX(-20px);
  display: block;
}
.myReviewCateItem_infoBox {
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  padding: 10px 20px;
  margin: 0 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review_statusText {
  position: absolute;
  right: 20px;
  top: 10px;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #838383;
}
.review_statusText.rColor {
  color: #d82a4b;
}
.review_statusText.yColor {
  color: #e6a31b;
}
.review_statusText img {
  margin: 0 0 1px 2px;
}
.reject_reason {
  position: absolute;
  top: 19px;
  right: 0;
  width: 100%;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
  border-radius: 10px;
  color: #838383;
  font-size: 11px;
  padding: 8px;
  display: none;
}
.review_statusText.active .reject_reason {
  display: block;
}
.myReviewCateItem .myReviewList_productInfoBox {
  padding: 0 20px;
}
.myReviewCateItem .myReviewList_reviewInfoBox {
  padding: 0 20px;
}
.myReviewListItem.myReviewCateItem
  + .myReviewListItem.myReviewCateItem
  .myReviewList_infoBox {
  border-top: 8px solid rgba(249, 249, 249, 0.8);
  padding-top: 0;
}
.myReviewListItem.myReviewCateItem
  + .myReviewListItem.myReviewCateItem
  .review_statusText {
  top: 18px;
}
.myReviewCateItem_infoDate {
  color: #c7c7c7;
  font-weight: 500;
  font-size: 12px;
  padding-right: 15px;
}

.sectionPageTitleBox {
  padding: 20px;
}
.sectionPageTitleBox .header_shBox {
  margin: 10px 0 0;
  width: 100%;
}
.productSh_list {
  padding: 12px 20px 60px;
}
button.myReviewList_infoBox {
  text-align: left;
  width: 100%;
}
.productSh_list .myReviewList_productInfoBox {
  align-items: center;
}
.productSh_section {
  border-top: 8px solid rgba(249, 249, 249, 0.8);
}

.reviewWritingOptionKeyBox {
  margin: 18px 0 0;
  padding: 0 20px 30px;
}
.reviewWritingOptionKeySlide {
  padding-right: 98px;
}
.reviewWritingOptionKeySlide .swiper-wrapper {
  overflow: visible;
}
.reviewWritingOptionKeySlide .swiper-slide {
  width: auto;
}

.reviewWriting_subMenu {
  background: rgba(249, 249, 249, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviewWriting_subMenuItem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 12px 15px;
  font-size: 13px;
  color: #5e5e5e;
  position: relative;
}
.reviewWriting_subMenuItem:first-child::before {
  content: "";
  width: 1px;
  height: 11px;
  background: #d8d8d8;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.reviewWriting_subMenuItem img {
  margin: 0 10px 0 0;
}
.reviewWriting_area {
  border-top: 8px solid rgba(249, 249, 249, 0.8);
}
.reviewWriting_area_title {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
}
.reviewWriting_area_title span {
  color: rgba(131, 131, 131, 1);
}
.reviewWriting_area_title span.yColor {
  color: rgba(230, 163, 27, 1);
}
.reviewWriting_selItem {
  padding: 10px 20px 20px;
}
.reviewWriting_selItem_title {
  font-weight: 500;
  font-size: 12px;
}
.reviewWriting_selBox {
  margin: 16px 0 0;
  display: flex;
  overflow-x: auto;
}
.btn_reviewWriting_sel {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  font-weight: 500;
  font-size: 13px;
  padding: 6px 12px;
  min-width: 50px;
}
.btn_reviewWriting_sel + .btn_reviewWriting_sel {
  margin: 0 0 0 10px;
}
.btn_reviewWriting_sel.active {
  background: #000;
  border-color: #000;
  color: #fff;
}
.blockKey_list {
  padding: 0 20px 30px;
}
.blockKey_listBox {
  padding: 20px 0 0;
}
.blockKey_listBox .keyList {
  white-space: nowrap;
  overflow-x: scroll;
}
.blockKey_listBox .keyList .btn_detailCate {
  display: inline-block;
}
.reviewWriting_textArea_title {
  font-weight: 500;
  font-size: 14px;
  margin: 0 0 8px;
  padding: 0;
}
.reviewWriting_textArea_area {
  padding: 0 20px 30px;
}
.reviewWriting_textAreaBox {
  position: relative;
  height: 160px;
}
.textareaItem {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 14px 14px 40px;
  resize: none;
  border: 1px solid #e7e7e7;
  font-size: 14px;
}
.reviewWriting_radioBox {
  padding: 0 20px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.radioSelBox {
  margin: 13px 28px 0 0;
}
.radioSelBox label {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  padding-bottom: 3px;
}
.radioSelBox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #acacac;
  border-radius: 100%;
}
.radioSelBox input:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 100%;
}

.radioSelBox label.disabled {
  color: #c7c7c7;
}
.radioSelBox input:disabled + label {
  color: #c7c7c7;
}
.radioSelBox input:disabled + label::before {
  border: 1px solid #d8d8d8;
}
.radioSelBox input:disabled:checked + label::after {
  background: #d8d8d8;
}

.reviewWriting_product_titleBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 20px;
}
.reviewWriting_product_title {
  font-weight: 700;
  font-size: 15px;
}
.reviewWriting_productReset {
  color: #838383;
  font-size: 12px;
  text-decoration: underline;
}
.productList_cate {
  color: #acacac;
  font-size: 11px;
  margin: 0 0 10px;
}

.reviewDetail {
  border-top: 8px solid rgba(249, 249, 249, 0.8);
  padding: 0 20px 60px;
}
.reviewDetail_profileBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.reviewDetail_profileInfo {
  display: flex;
  align-items: center;
}
.reviewDetail_profile {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  min-width: 26px;
}
.reviewDetail_profileTextBox {
  margin: 0 0 0 8px;
}
.reviewDetail_profileName {
  font-weight: 500;
  font-size: 12px;
  color: #838383;
}
.reviewDetail_profileDate {
  color: #c7c7c7;
  font-size: 10px;
  margin: 4px 0 0;
}
.reviewDetail_section {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
  padding: 20px 0;
  display: block;
}
.reviewDetail_section_titleBox {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}
.reviewDetail_section_title {
  font-weight: 700;
  font-size: 18px;
}
.reviewDetail_allAvgBox {
  display: flex;
  align-items: center;
  margin: 0 0 0 7px;
}
.reviewDetail_allAvg {
  font-weight: 500;
  font-size: 13px;
  margin: 0 0 0 4px;
  transform: translateY(1px);
}
.reviewDetail_avgArea {
  display: flex;
  flex-wrap: wrap;
}
.reviewDetail_avgItem {
  background: rgba(249, 249, 249, 0.7);
  border-radius: 10px;
  width: calc(33.33% - 5.33px);
  margin: 8px 8px 0 0;
  padding: 10px 5px;
  text-align: center;
}
.reviewDetail_avgItem:nth-child(1),
.reviewDetail_avgItem:nth-child(2) {
  width: calc(50% - 4px);
  margin: 0 8px 0 0;
}
.reviewDetail_avgItem:nth-child(2),
.reviewDetail_avgItem:nth-child(5) {
  margin-right: 0;
}
.reviewDetail_avgItem_title {
  font-weight: 500;
  font-size: 12px;
}
.reviewDetail_avgItem_avgBox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 0;
}
.reviewDetail_avgItem_avgBox > img {
  margin: 0 3px 0 0;
  width: 12px;
}
.reviewDetail_avgItem_avgText {
  font-weight: 500;
  font-size: 13px;
}

.reviewDetail_textInfo_title {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
}
.reviewDetail_textInfo_title.yColor {
  color: #e6a31b;
}
.reviewDetail_textInfo_title.gColor {
  color: #5e5e5e;
}
.reviewDetail_textInfo_title > img {
  margin: 0 5px 0 0;
}
.reviewDetail_textInfo_text {
  font-size: 13px;
  color: #5e5e5e;
  margin: 6px 0 0;
}
.reviewDetail_textInfoBox {
  margin: 27px 0 0;
}
.reviewDetail_selItemBox.reviewDetail_textInfoSelBox {
  margin: 30px 0 0;
}
.reviewDetail_selItemBox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.reviewDetail_selItem {
  background: #efefef;
  border-radius: 10px;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 12px;
  display: inline-block;
}
.reviewDetail_selItem + .reviewDetail_selItem {
  margin: 8px 0 0;
}
.reviewDetail_selItemArea + .reviewDetail_selItemArea {
  margin: 18px 0 0;
}
.reviewDetail_selItemTitle {
  font-weight: 500;
  font-size: 13px;
  margin: 0 0 10px;
}

/*event*/
.myPointInfo_section {
  background: rgba(249, 249, 249, 0.8);
  padding: 30px 20px;
}
.myPointInfo_area {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 1px 8px rgb(0 0 0 / 10%);
  padding: 20px;
}
.myPointInfo_area + .myPointInfo_area {
  margin: 16px 0 0;
}
.myPointInfo_area.myPointInfo_count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 12px;
}
.myPointInfo_imgBox {
  height: 101px;
  width: 123px;
  position: relative;
}
.myPointInfo_imgBox img {
  width: 123px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(9.54deg);
}
.myPointInfo_title {
  font-size: 16px;
}
.myPointInfo {
  color: #ffd45e;
  font-weight: 700;
  font-size: 25px;
  margin: 8px 0 0;
}
.myPointInfo span {
  font-size: 35px;
  margin: 0 7px 0 0;
}

.eventFooter {
  padding: 32px 20px;
}
.eventFooter_textBox + .eventFooter_textBox {
  margin: 14px 0 0;
}
.eventFooter_title {
  font-size: 10px;
  font-weight: 700;
  color: #c4c4c4;
  margin: 0 0 5px;
}
.eventFooter_text {
  font-size: 10px;
  color: #c4c4c4;
}
.dotText {
  display: flex;
  align-items: flex-start;
}
.dotText span {
  display: block;
  margin: 3px 4px;
}

.myPointInfo_captionBox {
  margin: 16px 0 0;
}
.myPointInfo_caption {
  font-size: 11px;
  color: #838383;
  line-height: 1.5;
}
.myPointInfo_btnBox {
  margin: 30px 0 0;
}
.myPointInfo_code {
  position: fixed;
  top: -9999px;
  left: -9999px;
}
.myPointInfo_invitation_title {
  text-align: center;
}
.myPointInfo_invitation_stampBox {
  margin: 14px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 254px;
}
.myPointInfo_invitation_stampImg {
  width: 65px;
  height: 65px;
  background: url(/assets/images/icon/stamp.svg) no-repeat center;
  background-size: 100%;
}
.myPointInfo_invitation_stampPoint {
  margin: 10px 0 0;
  color: #c7c7c7;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
}
.myPointInfo_invitation_stamp.active .myPointInfo_invitation_stampImg {
  background-image: url(/assets/images/icon/stamp_on.svg);
}
.myPointInfo_invitation_stamp.active .myPointInfo_invitation_stampPoint {
  color: #e6a31b;
}

.minBanner_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 0 33%;
  width: 100%;
  display: block;
}
.myPointInfo_main {
  padding: 16px 20px 20px;
}
.myPointInfo_main_title {
  font-size: 18px;
}
.myPointInfo_main_link {
  color: #838383;
  margin: 16px 0 0;
  text-decoration: underline;
  font-size: 12px;
  display: inline-block;
}
.pointList_allCate {
  border-top: 8px solid rgba(249, 249, 249, 0.8);
}
.pointList_allCateItem {
  font-size: 13px;
  display: block;
  padding: 14px 20px;
}
.pointList_cate_section {
  border-top: 8px solid rgba(249, 249, 249, 0.8);
  min-height: 116.39px;
}
.pointList_cateBox {
  padding: 18px 20px;
  overflow-x: auto;
  white-space: nowrap;
}
.pointList_cateBox.active {
  position: fixed;
  top: 60px;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 11;
}
.point_productListItem_cateItem {
  min-width: 56px;
  display: inline-block;
  width: 56px;
}
.point_productListItem_cateItem + .point_productListItem_cateItem {
  margin: 0 0 0 20px;
}
.point_productListItem_cateItemImg {
  border: 1px solid #d9d9d9;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 56px;
  height: 56px;
  background-color: #d9d9d9;
  border-radius: 100%;
  margin: 0 auto;
}
.point_productListItem_cateItemName {
  font-weight: 400;
  font-size: 13px;
  margin: 6px 0 0;
  text-align: center;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
}
.point_productList {
  padding: 14px 20px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.point_productListItem {
  display: block;
  width: calc(50% - 5px);
  margin: 30px 0 0;
}
.point_productListItem:nth-child(1),
.point_productListItem:nth-child(2) {
  margin-top: 0;
}
.point_productListItem_img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(249, 249, 249, 0.8);
  border-radius: 10px;
  padding: 0 0 100%;
  position: relative;
  overflow: hidden;
}
.point_productListItem_brand {
  font-weight: 500;
  font-size: 12px;
  margin: 10px 0 0;
  color: #838383;
}
.point_productListItem_name {
  font-weight: 500;
  font-size: 13px;
  margin: 4px 0 0;
}
.point_productListItem_point {
  color: #acacac;
  font-weight: 500;
  font-size: 10px;
  margin: 6px 0 0;
}
.point_productListItem_img_cover {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  padding: 20px;
}
.point_productListItem_point.rColor {
  color: #d82a4b;
}

.point_productListItem_cateItem.active .point_productListItem_cateItemName {
  font-weight: 700;
  color: #000;
}
.point_productListItem_cateItem.active .point_productListItem_cateItemImg {
  border: 1px solid #666;
}

.pointProduct_detail {
  padding: 0 40px 30px;
}
.pointProduct_detailImg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 0 0 100%;
  border: 1px solid rgba(249, 249, 249, 0.8);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
img.pointProduct_detailImg {
  padding: 0;
  overflow: hidden;
}
.pointProduct_detail_brand {
  color: #838383;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  margin: 20px 0 0;
}
.pointProduct_detail_name {
  font-weight: 700;
  margin: 4px 0 0;
  text-align: center;
}
.pointProduct_detail_point {
  color: #5e5e5e;
  text-align: center;
  margin: 10px 0 0;
}
.pointProduct_detail_captionSection {
  background: rgba(249, 249, 249, 0.8);
  padding: 20px;
}
.pointProduct_detail_captionBox {
  margin: 16px 0 0;
}
.pointProduct_detail_captionName {
  color: #838383;
  font-weight: 700;
  font-size: 10px;
  margin: 0 0 4px;
}
.pointProduct_detail_caption {
  font-size: 10px;
  color: #acacac;
  white-space: pre-wrap;
}
.pointProduct_detail_subCaptionBox {
  padding: 20px 20px 0;
}
.pointProduct_detail_subCaptionBox:last-child {
  padding-bottom: 30px;
}

.pointExch_titleBox {
  position: relative;
  text-align: center;
}
.pointExch_title {
  font-weight: 700;
  margin: 0 0 16px;
}
.btn_pageClose {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.pointExch_contents {
  padding: 20px 0 30px;
}
.pointExch_subTitle {
  font-weight: 400;
  font-size: 18px;
}
.pointExch_pointArea {
  background: rgba(249, 249, 249, 0.8);
  border-radius: 10px;
  margin: 15px 0 0;
  padding: 20px;
}
.pointExch_pointBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pointExch_pointBox + .pointExch_pointBox {
  margin: 20px 0 0;
}
.pointExch_pointCount {
  font-weight: 700;
}
.pointExch_pointCount.rColor {
  color: #d82a4b;
}
.pointExch_pointCaption {
  font-size: 14px;
  color: #838383;
  margin: 10px 0 0;
}
.pointExch_productArea {
  background: rgba(249, 249, 249, 0.8);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
}
.pointExch_productImg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 10px;
  border: 1px solid rgba(249, 249, 249, 0.8);
}
.pointExch_productTextBox {
  width: calc(100% - 60px);
  padding: 0 0 0 10px;
}
.pointExch_productBrand {
  font-weight: 500;
  font-size: 13px;
  margin: 0 0 6px;
  color: #838383;
}
.pointExch_productName {
  font-weight: 500;
  font-size: 15px;
}

/*detail*/
.productDetail_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 0 0 100%;
}
.productDetail_infoBox {
  padding: 20px;
}
.productDetail_cate {
  color: #acacac;
  font-size: 13px;
  margin: 0 0 14px;
}
.productDetail_brand {
  font-weight: 500;
  font-size: 15px;
  margin: 0 0 6px;
  color: #838383;
}
.productDetail_name {
  font-weight: 500;
}
.productDetail_avgBox {
  display: flex;
  align-items: center;
  margin: 9px 0 0;
}
.productDetail_avgBox img {
  margin: -1px 0 0;
}
.productDetail_avgBox .productList_avg {
  font-weight: 500;
  font-size: 14px;
  margin: 0 0 0 3px;
}
.productDetail_avgBox .productList_reviewCount {
  font-size: 14px;
}
.productDetail_priceBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 0;
}
.productDetail_price {
  font-weight: 700;
}
.productDetail_shop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #e6a31b;
  font-weight: 700;
  font-size: 12px;
}
.productDetail_shop img {
  margin: 0 0 0 6px;
}
.productDetail_subInfoBox {
  white-space: nowrap;
  overflow-x: auto;
  padding: 8px 20px;
  border-top: 1px solid rgba(231, 231, 231, 0.5);
}
.productDetail_subInfo {
  background: #efefef;
  border-radius: 7px;
  font-size: 11px;
  padding: 5px 8px;
  display: inline-block;
}
.productDetail_subInfo + .productDetail_subInfo {
  margin: 0 0 0 6px;
}

.productDetail_tapBox {
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  padding: 0 20px;
  white-space: nowrap;
  overflow-x: auto;
}
.productDetail_tapBox.active {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  transform: translateY(0);
  z-index: 11;
}
.btn_productDetail_tap {
  font-weight: 500;
  font-size: 14px;
  color: #d8d8d8;
  padding: 14px 0 12px;
  border-bottom: 2px solid transparent;
}
.btn_productDetail_tap + .btn_productDetail_tap {
  margin: 0 0 0 20px;
}
.btn_productDetail_tap.active {
  color: #000;
  border-color: #000;
}
.productDetail_tapArea {
  border-top: 8px solid rgba(249, 249, 249, 0.8);
}

.productDetail_section {
  padding: 0 20px 20px;
}
.productDetail_section + .productDetail_section {
  border-top: 8px solid rgba(249, 249, 249, 0.8);
}
.productDetail_reviewBgBox {
  width: 100vw;
  transform: translateX(-20px);
  padding: 0 20px;
}
.productDetail_reviewBgBox.active {
  background: #f5f5f5;
}
.productDetail_section_title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
  padding: 20px 0 0;
}
.productDetail_reviewInfo {
  margin: 14px 0 0;
  border-top: 1px solid rgba(231, 231, 231, 0.5);
  padding: 20px 0;
}
.productDetail_reviewInfo_title {
  font-weight: 700;
  font-size: 14px;
}
.productDetail_reviewInfo_title span {
  color: #e6a31b;
}
.productDetail_reviewInfoList {
  margin: 16px 0 0;
}
.productDetail_reviewInfoList_item {
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.productDetail_reviewInfoList_item + .productDetail_reviewInfoList_item {
  margin: 10px 0 0;
}
.productDetail_reviewInfoList_itemTextBox {
  position: relative;
  z-index: 1;
}
.productDetail_reviewInfoList_itemText {
  font-weight: 500;
  font-size: 13px;
}
.productDetail_reviewInfoSubList {
  display: none;
  margin: 10px 0 0;
}
.productDetail_reviewInfoList_itemCount {
  font-size: 10px;
  color: #5e5e5e;
  margin: 4px 0 0;
}
.productDetail_reviewInfoList_percentage {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 13px;
}
.productDetail_reviewInfoList_itemBg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #ffd643;
}
.btn_productDetail_reviewInfoOpen {
  margin: 10px 0 0;
}
.productDetail_reviewSubInfo {
  padding: 20px 0 0;
}
.productDetail_reviewSubInfo + .productDetail_reviewSubInfo {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
  margin: 20px 0 0;
}
.productDetail_reviewSubInfo_title {
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 16px;
}
.productDetail_reviewSubInfo_allAvgBox {
  background: rgba(249, 249, 249, 0.7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
}
.productDetail_reviewSubInfo_allAvgText {
  font-weight: 500;
  font-size: 20px;
}
.productDetail_reviewSubInfo_avgListItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 0;
}
.productDetail_reviewSubInfo_avgListItem_name {
  font-size: 13px;
}
.reviewSubInfoSlide {
  padding-right: 42px;
}
.reviewSubInfoSlideTitle span {
  margin: 0 0 0 6px;
}
.reviewSubInfoSlideLink {
  padding: 12px;
  display: block;
  background: rgba(249, 249, 249, 0.7);
  border-radius: 10px;
  width: 100%;
}
.reviewSubInfoSlide_profileBox {
  display: flex;
  align-items: center;
}
.reviewSubInfoSlide_profileImg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
  margin: 0 6px 0 0;
}
.reviewSubInfoSlide_name {
  font-weight: 500;
  font-size: 12px;
  color: #5e5e5e;
}
.reviewSubInfoSlide_text {
  color: #838383;
  margin: 4px 0 0;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.productDetail_reviewList + .pageBtn {
  margin: 16px 0 0;
}
.productDetail_commentList + .pageBtn {
  width: calc(100% - 40px);
  margin: 16px auto 0;
}
.productDetail_section.productDetail_comment {
  padding: 0 0 20px;
}
.productDetail_section.productDetail_comment .productDetail_section_title {
  padding: 20px 20px 0;
}
.productDetail_section.productDetail_comment
  .productDetail_section_titleCaption {
  font-weight: 400;
  font-size: 13px;
  color: #5e5e5e;
  padding: 0 20px;
}
.productDetail_commentList {
  margin: 20px 0 0;
  padding: 0;
  background: rgba(249, 249, 249, 0.8);
  display: block;
}
.productDetail_detailInfoList {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
  padding: 37px 0 20px;
}
.productDetail_detailInfo_itemName {
  font-weight: 700;
  font-size: 14px;
}
.productDetail_detailInfo_itemText {
  font-size: 13px;
  color: #5e5e5e;
  margin: 6px 0 0;
}
.productDetail_detailInfo_subItemBox .productDetail_detailInfo_item {
  margin: 18px 0 0;
}
.productDetail_detailInfo_subItemBox
  .productDetail_detailInfo_item:first-child {
  margin: 30px 0 0;
}
.productDetail_detailInfo_itemBox {
  margin: 10px 0 0;
  white-space: nowrap;
  overflow-x: auto;
}
.productDetail_detailInfo_subItemBox .productDetail_detailInfo_itemName {
  font-weight: 500;
  font-size: 13px;
}
.productDetail_detailInfo_subItem {
  background: #efefef;
  border-radius: 10px;
  font-weight: 500;
  font-size: 13px;
  padding: 7px 12px;
  display: inline-block;
  white-space: nowrap;
}
.productDetail_detailInfo_subItem + .productDetail_detailInfo_subItem {
  margin: 0 0 0 10px;
}
.productDetail_detailInfo_sction {
  padding: 20px 20px 60px;
  border-top: 8px solid rgba(249, 249, 249, 0.8);
}
.productDetail_section_subTitle {
  font-weight: 700;
  font-size: 14px;
}
.productDetailArea {
  margin: 16px 0 0;
}
.productDetailArea_item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
}
.productDetailArea_itemName {
  display: flex;
  align-items: center;
  color: #838383;
  font-weight: 500;
  font-size: 10px;
  padding: 10px 8px;
  background: rgba(249, 249, 249, 0.8);
  text-align: left;
  min-width: 90px;
  width: 90px;
}
.productDetailArea_itemTextBox {
  display: flex;
  align-items: center;
  padding: 10px 8px;
  width: calc(100% - 90px);
  min-width: calc(100% - 90px);
}
.productDetailArea_text {
  color: #838383;
  font-size: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: calc(100% - 15px);
}
.btn_productDetailAreaText {
  margin: 0 0 0 6px;
}
.productDetail_section.productDetail_detailInfo {
  padding: 0 0 20px;
}
.productDetail_section.productDetail_detailInfo
  .productDetail_detailInfo_subSection {
  padding: 0 20px;
}
.productDetailArea_itemTextBox.active .productDetailArea_text {
  white-space: pre-wrap;
  text-overflow: unset;
  width: 100%;
}
.productDetailArea_itemTextBox.active .btn_productDetailAreaText {
  display: none;
}
.pageBtn_box.pageBtnProduct {
  display: flex;
  align-items: center;
}
.pageBtn_productLike {
  width: 24px;
  height: 24px;
  background: url(/assets/images/basic/hart_big.svg) no-repeat center;
  background-size: 100%;
  min-width: 24px;
  margin: 0 18px 0 0;
}
.pageBtn_productLike.active {
  background-image: url(/assets/images/basic/hart_big_on.svg);
}
.pageBtn_box.pageBtnProduct .pageBtn {
  width: calc(50% - 25px);
}
.pageBtn_box.pageBtnProduct .pageBtn + .pageBtn {
  margin: 0 0 0 8px;
}
.productDetail_reviewSubInfo_allAvg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 11px 0 0;
}
.productDetail_reviewSubInfo_allAvg span {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: url(/assets/images/basic/star_not.svg) no-repeat center;
  background-size: 100%;
  display: block;
}
.productDetail_reviewSubInfo_allAvg span + span {
  margin: 0 0 0 3px;
}
.productDetail_reviewSubInfo_allAvg span.full {
  background-image: url(/assets/images/basic/star_on.svg);
}
.productDetail_reviewSubInfo_allAvg span.half {
  background-image: url(/assets/images/basic/star_s_half.svg);
}
.productDetail_reviewSubInfo_avg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.productDetail_reviewSubInfo_avg span {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: url(/assets/images/basic/star_not.svg) no-repeat center;
  background-size: 100%;
  display: block;
}
.productDetail_reviewSubInfo_avg span + span {
  margin: 0 0 0 3px;
}
.productDetail_reviewSubInfo_avg span.full {
  background-image: url(/assets/images/basic/star_on.svg);
}
.productDetail_reviewSubInfo_avg span.half {
  background-image: url(/assets/images/basic/star_s_half.svg);
}
.productDetailPage .not_listInfoBox {
  padding: 40px 0;
  background: #fff;
}
.productDetail_reviewInfoList .not_listInfoText {
  margin: 0;
  font-size: 12px;
}
.productDetail_reviewSubInfo_title .swiper-pagination-total {
  margin: 0;
}
.allReviewList {
  padding-bottom: 20px;
}
.productDetail_reviewItem {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
}
.productDetail_reviewItem .reviewDetail_profileBox {
  padding: 16px 0 0;
}
.productDetail_reviewItem .reviewDetail_profileName {
  color: #5e5e5e;
}
.productDetail_reviewItem .reviewDetail_section {
  border: 0;
  padding: 0;
}
.productDetail_reviewItem .reviewDetail_avgSetion {
  padding: 25px 0 0;
}
.productDetail_reviewItem + .productDetail_reviewItem {
  margin: 20px 0 0;
}
button.productDetail_reviewItem + button.productDetail_reviewItem {
  margin: 0;
}
button.productDetail_reviewItem {
  position: relative;
  width: 100vw;
  transform: translateX(-20px);
  display: block;
}
.not_firstReviewImg {
  width: 100%;
}
.not_firstReviewText {
  font-weight: 700;
  font-size: 15px;
  color: #5e5e5e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.not_firstReviewText.wColor {
  color: #fff;
}

.allItemsProduct .productList_img {
  width: 60px;
  height: 60px;
  min-width: 60px;
}
.allReviewList .productDetail_reviewItem {
  padding: 0 20px 20px;
}
.notReviewText {
  padding: 20px;
  text-align: center;
  color: #acacac;
  font-size: 13px;
}

/*mypage*/
.mypageMain_profile_section {
  background: #000;
  padding: 65px 20px 20px;
}
.mypageMain_profile_img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 100%;
}
.mypageMain_profile_nameBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 11px 0 0;
}
.mypageMain_profile_name {
  font-size: 21px;
  color: #fff;
}
.mypageMain_profile_nameBox > a {
  display: block;
  padding-left: 9px;
}
.mypageMain_profile_interestBox {
  margin: 5px 0 0;
  display: flex;
  align-items: center;
}
.interestLink {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.interestLink img {
  width: 7px;
  margin: 0 0 0 4px;
}
.mypageMain_activity {
  background: #f9f9f9;
  padding: 20px;
}
.mypageMain_title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 10px;
}
.mypageMain_activity_item {
  background: #ffffff;
  border-radius: 7px;
  padding: 17px 12px 17px 14px;
  display: flex;
  align-content: center;
  justify-content: space-between;
}
.mypageMain_activity_item + .mypageMain_activity_item {
  margin: 10px 0 0;
}
.mypageMain_activity_item + .mypageMain_activity_itemBox {
  margin: 10px 0 0;
}
.mypageMain_activity_itemBox {
  display: flex;
  justify-content: space-between;
}
.mypageMain_activity_itemBox .mypageMain_activity_item {
  width: calc(50% - 5px);
}
.mypageMain_activity_itemBox .mypageMain_activity_itemNameBox {
  width: 100%;
}
.mypageMain_activity_itemBox
  .mypageMain_activity_item
  + .mypageMain_activity_item {
  margin: 0 0 0 10px;
}
.mypageMain_activity_itemName {
  display: flex;
  align-items: center;
  padding-right: 10px;
}
.mypageMain_activity_itemName img {
  margin: 0 8px 0 0;
}
.mypageMain_activity_itemLink {
  font-weight: 500;
  font-size: 13px;
  text-decoration: underline;
}
.mypageMain_activityLink {
  color: #e6a31b;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mypageMain_activity_itemNameBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(50% - 5px - 14px);
}
.mypageMain_csLink {
  padding: 20px 0;
}
.mypageMain_csLink .mypageMain_title {
  padding: 0 20px;
}
.mypageLinkItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  width: 100%;
  text-align: left;
}
.mypageLinkItem_name {
  display: flex;
  align-items: center;
  font-size: 13px;
}
.mypageLinkItem_name img {
  margin: 0 10px 0 0;
}
.mypageMain_profile_interest {
  color: #e6a31b;
  font-weight: 400;
  font-size: 12px;
  position: relative;
}
.mypageMain_profile_interest + .mypageMain_profile_interest {
  padding: 0 0 0 15px;
}
.mypageMain_profile_interest + .mypageMain_profile_interest::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: rgba(230, 163, 27, 0.5);
  left: 6px;
}
.mypage_joinPage_inputSection {
  padding-top: 10px;
}

.toggleBox label {
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
}
.toggleBox label span {
  background: #d8d8d8;
  border-radius: 12px;
  width: 44px;
  height: 24px;
  position: relative;
  transition: background 0.3s;
}
.toggleBox label span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  background: #fff;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  transition: left 0.3s cubic-bezier(0.89, 0.11, 0.09, 0.89);
}
.toggleBox .toggleChk:checked + label span {
  background: #000;
}
.toggleBox .toggleChk:checked + label span::before {
  left: calc(100% - 22px);
}

.mypageLinkItemText {
  font-weight: 700;
  font-size: 13px;
}
.mypageLinkItemText.yColor {
  color: #e6a31b;
  font-weight: 500;
}
.mypageLinkItemLink {
  color: #e6a31b;
  font-weight: 500;
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid #e6a31b;
  border-radius: 10px;
}

.setting_section + .setting_section {
  border-top: 8px solid rgba(249, 249, 249, 0.8);
}

.cutOffItem {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cutOff_profile {
  display: flex;
  align-items: center;
}
.cutOff_profileImg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 100%;
  margin: 0 8px 0 0;
}
.cutOff_profileName {
  font-size: 13px;
}
.btn_cutOffList {
  font-weight: 500;
  font-size: 12px;
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 5px 10px;
}
.mypageTermsText {
  padding: 20px 20px 40px;
}
.mypageTermsText * {
  font-weight: revert;
  color: revert;
  font-family: revert;
  font-size: revert;
}
.mypageTermsText img {
  max-width: 100%;
}
.withdrawalMypoint {
  background: rgba(249, 249, 249, 0.8);
  border-radius: 10px;
  padding: 15px 20px;
  margin: 25px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.withdrawalMypoint b {
  margin: 4px 0 0;
}
.pwCh_inputStep {
  padding: 0 20px 20px;
}

.chk_item {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chk_item img {
  min-width: 17px;
}
.chk_item label {
  line-height: 22px;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 30px;
  font-size: 13px;
  background: url(/assets/images/basic/chk_off.svg) no-repeat left center;
  background-size: 22px;
}
.chk_item input:checked + label {
  background-image: url(/assets/images/basic/chk_on.svg);
}
.chk_item_text {
  font-size: 14px;
}
.chk_item_text span {
  margin: 0 3px 0 0;
}

.withdrawalPage {
  padding: 20px 20px 40px;
}
.withdrawalPageTitle {
  font-weight: 500;
}
.withdrawal_textAreaBox {
  margin: 14px 0 0;
  position: relative;
  height: 160px;
  display: none;
}

.profileEditImgBox {
  width: 70px;
  height: 70px;
  min-width: 70px;
  margin: 20px auto 30px;
}
.profileEditImg {
  display: none;
}
.profileEditImgBox label {
  display: block;
  position: relative;
  background: url(/assets/images/basic/basic_profile.svg) no-repeat center;
  width: 100%;
  height: 100%;
  background-color: rgba(231, 231, 231, 0.3);
  border: 1px solid #e7e7e7;
  border-radius: 100%;
}
.profileEditImgBox label.active {
  background-size: cover;
}
.profileEditImgBox label img {
  width: 23px;
  height: 23px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.profilePage_inputArea {
  padding: 0 20px 50px;
}
.profilePage_inputArea .inputBox + .inputBox {
  margin: 26px 0 0;
}
.inputNameBox {
  position: relative;
}
.profileEdit_interestBox {
  margin: 18px 0 0;
}
.profileEdit_interest_text + .profileEdit_interest_text {
  margin: 8px 0 0;
}
.profileEdit_interest_text span {
  background: rgba(249, 249, 249, 0.8);
  border-radius: 10px;
  font-weight: 500;
  font-size: 13px;
  padding: 6px 12px;
  display: inline-block;
}

.nickNameChPopup_titleBox {
  position: relative;
  text-align: center;
}
.nickNameChPopup_title {
  font-weight: 700;
  margin: 0 0 16px;
}
.nickNameChPopup_contents {
  padding: 20px 0 30px;
}

.pointPage_header {
  background: #000;
  padding: 80px 20px 20px;
}
.pointPage_header_title {
  font-size: 18px;
  color: #fff;
}
.pointPage_header_textBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0 0;
}
.pointPage_header_text {
  color: #acacac;
  font-size: 12px;
  padding-right: 10px;
}
.pointPage_header_point {
  font-weight: 500;
  font-size: 13px;
  color: #acacac;
}
.pointPageContents {
  padding: 20px 20px 50px;
}
.pointPage_title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 10px;
}
.pointPage_item {
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pointPage_item + .pointPage_item {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
}
.pointPage_itemName {
  font-weight: 500;
  font-size: 13px;
}
.pointPage_itemDate {
  font-size: 10px;
  color: #c7c7c7;
  margin: 3px 0 0;
}
.pointPage_pointBox {
  text-align: right;
}
.pointPage_point {
  color: #3c8aff;
  font-weight: 500;
  font-size: 13px;
}
.pointPage_point.rColor {
  color: #d82a4b;
}
.pointPage_pointDel_date {
  font-size: 10px;
  color: #c7c7c7;
  margin: 3px 0 0;
}

.couponList {
  padding: 20px 20px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.likeList {
  padding: 0 0 50px;
}
.likeList .contentsListItem {
  padding: 0 20px;
}

.boardList {
  padding: 10px 20px 50px;
}
.boardListItem {
  display: block;
  padding: 14px 0;
}
.boardListItem + .boardListItem {
  border-top: 1px solid rgba(231, 231, 231, 0.5);
}
.boardList_itemName {
  font-weight: 500;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.boardList_itemDate {
  color: #c7c7c7;
  font-size: 10px;
  margin: 3px 0 0;
}

.boardDetailPage {
  padding: 10px 20px 50px;
}
.boardDetail_header {
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  padding: 0 0 14px;
  margin: 0 0 14px;
}
.boardDetail_title {
  font-weight: 500;
  font-size: 15px;
}
.boardDetail_date {
  color: #c7c7c7;
  font-size: 12px;
  margin: 3px 0 0;
}
.boardDetail * {
  font-weight: revert;
  color: revert;
  font-family: revert;
  font-size: revert;
}
.boardDetail img {
  max-width: 100%;
}

.imgAdd_file_list {
  display: flex;
  overflow-x: auto;
}
.imgAdd_file_list label {
  min-width: 69px;
  width: 69px;
  height: 69px;
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 69px;
  margin-right: 10px;
}
.imgAdd_fileInputItem {
  width: 69px;
  min-width: 69px;
  height: 69px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  margin: 0 10px 0 0;
}
.btn_multiRemove {
  position: absolute;
  right: 3px;
  top: 3px;
}
.imgAdd_file {
  display: none;
}

.submitSection {
  padding: 20px 20px 40px;
}
.submitSection .inputBox + .inputBox {
  margin: 10px 0 0;
}
.submit_textAreaBox {
  margin: 10px 0 0;
  height: 240px;
  position: relative;
}
.imgAdd_itemBox {
  margin: 20px 0 0;
}
.imgAdd_itemName {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 15px;
}
.imgAdd_itemName span {
  font-weight: 400;
}
.inputItem.inputItemLine {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 14px 16px;
}
.inputItem.customSel {
  padding-right: 38px;
}

.csList_itemInfoBox {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.csList_itemInfo {
  width: calc(100% - 16px);
  padding-right: 20px;
}
.csList_itemName {
  font-weight: 500;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.csList_itemSubInfo {
  margin: 3px 0 0;
  display: flex;
  align-items: center;
}
.csList_itemStatus {
  color: #838383;
  font-weight: 700;
  font-size: 12px;
}
.csList_itemStatus.yColor {
  color: #e6a31b;
}
.csList_itemDate {
  color: #c7c7c7;
  font-size: 12px;
  margin: 0 0 0 6px;
}
.csList_itemInfoBox > img {
  min-width: 16px;
  transition: transform 0.2s;
}
.csDetailItem {
  background: rgba(249, 249, 249, 0.8);
  padding: 20px;
  display: none;
}
.csDetailItem_a {
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(231, 231, 231, 0.5);
}
.csDetailItem_title {
  color: #838383;
  font-weight: 700;
  font-size: 13px;
}
.csDetailItem_text {
  color: #838383;
  font-size: 13px;
  margin: 6px 0 0;
}
.csDetailItem_a .csDetailItem_title {
  color: #e6a31b;
}
.csListItem.active .csList_itemInfoBox > img {
  transform: rotate(180deg);
}

.pointProduct_limit_date {
  color: #acacac;
  font-weight: 500;
  font-size: 12px;
  margin: 6px 0 0;
  text-align: center;
}
.pointProduct_codeBox {
  margin: 20px 0 0;
}
.pointProduct_code {
  width: 100%;
}
.pointProduct_codeTextBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 0;
}
.pointProduct_codeText {
  font-weight: 500;
  font-size: 13px;
  width: calc(100% - 78px);
  letter-spacing: 6px;
}
.pointProduct_codeTextVal {
  position: fixed;
  top: 0;
  left: -9999px;
}
.btn_pointProduct_codeCopy {
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 8px;
  width: 58px;
  text-align: center;
}
.profileEdit_interest_notText {
  color: #838383;
  font-size: 13px;
}

.toastui-editor-contents * {
  margin: 0px !important;
}

.toastui-editor-contents h1 {
  font-size: 22px;
  line-height: 33.5px !important;
  color: #000 !important;
  padding: 0 !important;
  border: 0 !important;
  font-weight: 400 !important;
}
.toastui-editor-contents h2 {
  font-size: 18px;
  line-height: 27px !important;
  color: #727272 !important;
  padding: 0 !important;
  border: 0 !important;
  font-weight: 400 !important;
}
.toastui-editor-contents h3 {
  font-size: 16px;
  line-height: 24px !important;
  color: #727272 !important;
  padding: 0 !important;
  border: 0 !important;
  font-weight: 400 !important;
}
.toastui-editor-contents h4 {
  font-size: 13px;
  line-height: 22px !important;
  color: #727272 !important;
  padding: 0 !important;
  border: 0 !important;
  font-weight: 400 !important;
}
.toastui-editor-contents h5 {
  font-size: 11px;
  line-height: 19px !important;
  color: #727272 !important;
  padding: 0 !important;
  border: 0 !important;
  font-weight: 400 !important;
}
.toastui-editor-contents h6 {
  font-size: 10px;
  line-height: 16px !important;
  color: #727272 !important;
  padding: 0 !important;
  border: 0 !important;
  font-weight: 400 !important;
}

.toastui-editor-contents p {
  font-size: 10px;
  line-height: 16px !important;
  color: #727272 !important;
  padding: 0 !important;
  border: 0 !important;
}

.toastui-editor-contents iframe {
  max-width: 100% !important;
  border: 0 !important;
}

.toastui-editor-contents * {
  word-break: break-all;
}

.toastui-editor-contents table th,
.toastui-editor-contents table td {
  background-color: #fff;
  border: 0;
  border-top: 1px solid #f3f0f0;
}
.toastui-editor-contents table {
  border: 0;
}
.toastui-editor-contents table tbody tr:first-child td {
  background: #f8f7f7;
}
.toastui-editor-contents table tbody tr:nth-child(2n + 1) td {
  background: #f8f7f7;
}

.myPageExperienceList{padding: 20px}
.experienceBtnBox{display: flex;justify-content: space-between;gap: 10px;margin: 12px 0 0;width:100%}
.experienceBtn{width:calc(50% - 5px);background-color: #000000;border-radius: 7px;font-size: 13px;color:#fff;padding: 7px 10px;border: 1px solid #000;text-align: center;}
.experienceBtn.line{background-color: #fff;color:#000;border-color: #E7E7E7;}

.experience_content_wrapper {
  padding: 20px 18px;
}

.experience_content {
  margin-bottom: 26px;
}

.experience_content .experience_image_area {
  position: relative;
  aspect-ratio: 324 /180;
  border-radius: 20px;
}

.experience_content .experience_image_area img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}

.experience_content .experience_title {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-top: 14px;
}

.experience_content .experience_date_area {
  margin-top: 8px;

  display: flex;
  align-items: center;
  gap: 6px;
}

.experience_info_wrapper {
  position: relative;
  padding-left: 10px;
}

.experience_info_wrapper .stick {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 2px;
  background: #e7e7e7;
  border-radius: 100px;
}

.experience_info_area {
  display: flex;
  align-items: center;
  margin-top: 12px;
  gap: 6px;
}

.experience_info_area .channel_img {
}

.experience_info_area .count {
  font-size: 12px;
  font-weight: 500;
}

.experience_calender {
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 500;
  border-radius: 100px;
}

.experience_dday {
  display: flex;
  gap: 5px;
  background: #000;
  color: #fff;
}

.experience_end {
  background: #e7e7e7;
  color: #5e5e5e;
}

.experience_soldout_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #00000099;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience_date {
  font-size: 11px;
  font-weight: 500;
  color: #838383;
}

.experience_empty_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.experience_empty_wrapper img {
  width: 132px;
  height: 140px;
}

.experience_empty_wrapper p {
  margin-top: 20px;
  line-height: 22.5px;
  font-size: 15px;
  color: #acacac;
  text-align: center;
}

/* .ql-container{overflow: hidden} */
.ql-container img{max-width: 100%}
.ql-container table{max-width: 100%}

/*반응형*/
@media (max-height: 420px) {
  .joinPage {
    align-items: flex-start;
  }
}
@media (max-width: 1440px) {
}
@media (max-width: 1366px) {
}
@media (max-width: 1280px) {
}
@media (max-width: 1152px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 960px) {
}
@media (max-width: 720px) {
}
@media (max-width: 650px) {
}
@media (max-width: 550px) {
}
@media (max-width: 450px) {
}
@media (max-width: 400px) {
}
@media (max-width: 340px) {
}
/*//*/
