@charset "UTF-8";
/*************************************************
custom1
************************************************/
/*************************************************
custom2
************************************************/
/*************************************************
custom3
************************************************/
/*************************************************
custom4
************************************************/
/*공통 CSS*/
@media (max-width: 991px) {
  .m_header .container_fix {
    display: flex;
    align-items: center;
  }
  .m_header a.left_menu {
    position: relative;
    left: 0;
  }
  .m_header a.center_logo {
    flex-grow: 1;
  }
}
.fix_footer .mob_logo {
  display: none;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.fix_footer .mob_logo img {
  margin-right: 5px;
  display: inline-block;
  height: 14px;
}
.fix_footer .mob_logo span.arrow {
  position: absolute;
  top: 0;
  transition: all 0.2s ease-in-out;
}
.fix_footer .mob_logo span img {
  height: 7px;
  margin-right: 0;
}
.fix_footer .mob_logo.active span.arrow {
  transform: rotate(180deg);
  /* top: 4px; */
}
@media (max-width: 991px) {
  .fix_footer.mob_fixed {
    margin-bottom: 0;
  }
  .fix_footer .mob_logo {
    display: block;
  }
  .fix_footer .fix_infos_box .container_fix {
    /* display: none;
    margin-top: 15px; */
  }
}

.sub_text {
  padding: 0;
  margin: 70px 0 40px;
}
.sub_text.ca_it_mb {
  /* display: none; */
}
.sub_text h1 {
  font-size: 28px;
  line-height: 1.2em;
  font-weight: 600;
  color: var(--main-point-color);
}
@media (max-width: 991px) {
  .sub_text {
    margin: 50px 0;
  }
  .sub_text h1 {
    font-size: 24px;
  }
  .sub_text .orderaddress_subtit {
    background: #f7f7f7;
    font-size: 16px;
    color: #717171;
    font-weight: 400;
    padding: 12px 10px;
    margin-top: 30px;
    border-radius: 12px;
  }
  .sub_text .orderaddress_subtit > span {
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 13px;
    border: 1px solid #717171;
    border-radius: 50%;
    font-size: 9px;
    text-align: center;
    margin-right: 13px;
  }
}
@media (max-width: 480px) {
  .sub_text {
    margin: 35px 0 20px;
  }
  .sub_text h1 {
    font-size: 22px;
  }
  .sub_text .orderaddress_subtit {
    font-size: 12px;
    padding: 12px 6px;
    margin-top: 20px;
    border-radius: 6px;
  }
  .sub_text .orderaddress_subtit > span {
    width: 12px;
    height: 12px;
    line-height: 10px;
    font-size: 9px;
    margin-right: 6px;
  }
}

.marker_box {
  width: 32px;
  position: relative;
  text-align: center;
}
@media (max-width: 480px) {
  .marker_box {
    width: 17px;
  }
}
.marker_box > a.marker_icon, .marker_box > a.m_marker {
    width: 16px;
    height: 21px;
  display: block;
  background: url("../img/mmarker_icon_b.png") center/16px 21px no-repeat;
  background-size: cover;
  margin: 0 auto;
}
/* .marker_box > a.m_marker {
    background: url(../img/mmarker_icon_b.png) center/15.5px 20px no-repeat;
}
.transparent_H .marker_box > a.marker_icon {
    background: url(../img/mmarker_icon_w.png) center/15.5px 20px no-repeat; 
}
@media (max-width: 991px) {
  .marker_box > a.marker_icon, .marker_box > a.m_marker {
    width: 15.5px; height: 19px; background: url(../img/mmarker_icon_b.png) center/15.5px 19px no-repeat;
  }
  .transparent_H .marker_box > a.marker_icon {
    width: 15.5px; height: 19px; background: url(../img/mmarker_icon_w.png) center/15.5px 19px no-repeat;
  }
}
@media (max-width: 480px) {
  .marker_box > a.marker_icon, .marker_box > a.m_marker {
    width: 15px; height: 20px;
  }
} */
/* .marker_box > a.marker_icon:hover, .marker_box > a.m_marker:hover {
  background: url("../img/marker_icon_on.png") no-repeat 50% 50%;
}
@media (max-width: 991px) {
  .marker_box > a.marker_icon:hover, .marker_box > a.m_marker:hover {
    background: url("../img/mmarker_icon_on.png") no-repeat 50% 50%/cover;
  }
} */
.marker_box .marker_msg {
  display: none;
  width: 225px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #d8d8d8;
  z-index: 11;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media (max-width: 991px) {
  .marker_box .marker_msg {
    top: 40px;
    z-index: 20;
    left: -50px;
    /* left: unset; */
    /* right: 0; */
    /* transform: translateX(0); */
    /* background: #652df1;
    border: 0; 
    border-radius: 5px;*/
    width: 225px;
    display: block;
    transform: translateX(-50%) scale(0);
    transform-origin: 73% top;
  }
  .marker_box .marker_msg.animation{animation-name: bubble; animation-duration: 0.5s; animation-fill-mode: forwards;}
  .marker_box .marker_msg.no_active{animation-name: bubbleEnd; animation-duration: 0.5s; animation-fill-mode: forwards;}
}
@media (max-width: 480px) {
  .marker_box .marker_msg {
    width: 175.5px;
    padding: 8px 14px;
    top: 34px;
    /* left: 2px; */
    left: -30px;
  }
}
@keyframes bubble {
    0% {
        transform: translateX(-50%) scale(0);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

@keyframes bubbleEnd {
    0% {
        transform: translateX(-50%) scale(1);
    }

    100% {
        transform: translateX(-50%) scale(0);
    }
}

.marker_box .marker_msg .msg_box {
  font-size: 16px;
  color: var(--main-point-color);
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}
@media (max-width: 991px) {
  .marker_box .marker_msg .msg_box {
    /* color: #fff; */
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .marker_box .marker_msg .msg_box {
    font-size: 13px;
    line-height: 18.5px;
  }
}
.marker_box .marker_msg .msg_box > span {
  color: var(--main-point-color-hover);
}
@media (max-width: 991px) {
  .marker_box .marker_msg .msg_box > span {
    /* color: #fff; */
  }
}
.marker_box .marker_msg::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  top: -17%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 10;
}
@media (max-width: 991px) {
  .marker_box .marker_msg::before {
    /* display: none; */
  }
}
.marker_box .marker_msg::after {
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  border: 1px solid #d8d8d8;
  background: #fff;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  top: -7px;
  transform: translateX(-50%) rotate(-45deg);
}
@media (max-width: 991px) {
  .marker_box .marker_msg::after {
    /* width: 7px;
    height: 10px;
    top: -4px;
    border: 0;
    left: unset;
    right: 10px;
    transform: translateX(0) rotate(-45deg);
    border: 0;
    background: #652df1; */
    left: 76%;
  }
}
@media (max-width: 480px) {
  .marker_box .marker_msg::after {
    left: 72%;
  }
}
.marker_box .address {
  display: block;
  width: 100%;
  height: 35px;
  line-height: 33px;
  border: 1px solid var(--main-point-btn-line-color-hover);
  border-radius: 4px;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 991px){
    .marker_box .address{
        height: 30px;
        line-height: 28px;
    }
}
.marker_box .address a {
  display: block;
  font-size: 12px;
  color: var(--main-point-color-hover);
  font-weight: 500;
}

.radio_check input {
  display: none;
}
.radio_check input + label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 480px) {
  .radio_check input + label {
    font-size: 14px;
  }
}
.radio_check input + label .circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d8d8;
  margin-right: 7px;
  top: 1px;
}
@media (max-width: 480px) {
  .radio_check input + label .circle {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }

  .ordersheet_payment_agree .radio_check input + label .circle{
    width: 21px;
    height: 21px;
  }
}
.radio_check input + label .circle::before {
  content: "";
  width: 2px;
  height: 6px;
  border-radius: 3px;
  background: #d8d8d8;
  position: absolute;
  top: 9px;
  left: 6px;
  transform: rotate(-45deg);
}
@media (max-width: 480px) {
  .radio_check input + label .circle::before {
    width: 2px;
    height: 5px;
    border-radius: 1.5px;
    /* top: 9px;
    left: 6px; */
    top: 6px;
    left: 3px;
  }
}
.radio_check input + label .circle::after {
  content: "";
  width: 2px;
  height: 10px;
  border-radius: 5px;
  background: #d8d8d8;
  transform: rotate(45deg);
  position: absolute;
  top: 5px;
  left: 11px;
}
@media (max-width: 480px) {
  .radio_check input + label .circle::after {
    width: 2px;
    height: 8px;
    border-radius: 3.5px;
    /* top: 4.5px;
    left: 10px; */
    top: 3px;
    left: 7px;
  }

  .reg_terms .radio_check input + label .circle::before{
    top: 6px;
    left: 3px;
  }
  .reg_terms .radio_check input + label .circle::after{
    top: 2.5px;
    left: 7px;
  }
  .register_cont .reg_terms .radio_check input + label .circle::after{
    height: 8px;
  }
}
.radio_check input + label .text {
  font-size: 16px;
  color: #666666;
  font-weight: 400;
}
@media (max-width: 480px) {
  .radio_check input + label .text {
    font-size: 13px;
    color: #999999;
  }
}
.radio_check input:checked + label .circle {
  border-color: var(--main-point-btn-line-color-hover);
  background: var(--main-point-btn-bg-color-hover);
}
.radio_check input:checked + label .circle::before, .radio_check input:checked + label .circle::after {
  background: #fff;
}

/* alret창 커스텀 html > thmea > fivesense-basic > shop.tail.php */
/* 기존 알럿 css */

    .alert_custom_wrap .custom_box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    width: 350px;
    max-width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    }
    .alert_custom_wrap .custom_box .custom_cont {
    padding: 15px 15px 27px;
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close_wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close {
    width: 22px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: block !important;
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(1) {
    content: "";
    display: block;
    width: 2px;
    height: 22px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(-45deg);
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(2) {
    content: "";
    display: block;
    width: 2px;
    height: 22px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(45deg);
    }
    .alert_custom_wrap .custom_box .custom_cont .alert_cont {
    text-align: center;
    font-size: 15px;
    color: var(--main-point-color);
    line-height: 25px;
    padding: 0 30px;
    }
    .alert_custom_wrap .custom_box .alert_custom_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e3e3e3;
    }
    .alert_custom_wrap .custom_box .alert_custom_btn .alert_btn {
    width: 50%;
    line-height: 67px;
    font-size: 15px;
    color: var(--main-point-color-hover);
    font-weight: 400;
    text-align: center;
    line-height: 1em;
    padding: 17px 0;
    }
    .alert_custom_wrap .custom_box .alert_custom_btn .alert_btn.full {
    /* width:100% !important;  */
    /* 2024-07-17 (주)파이브센스_FIVESENSES.Corp */
    /* 2024-08-09 (주)파이브센스_FIVESENSES.Corp */
    /* display: none; */
    }
    .alert_custom_wrap .custom_box .alert_custom_btn button.alert_btn{
        color: var(--main-point-color);
    }
    .alert_custom_wrap .custom_box .alert_custom_btn a {
    border-right: 1px solid #e3e3e3;
    }
    .alert_custom_wrap .custom_box .alert_custom_btn button {
    border: 0;
    background: #fff;
    }
    .alert_custom_wrap .custom_box.open {
    opacity: 1;
    visibility: visible;
    }
    .alert_custom_wrap .alert_custom_bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    } 
    .alert_custom_wrap .alert_custom_bg.open {
        opacity: 1;
        visibility: visible;
    }


/* 검은바 커스텀 알럿창 */
/* .alert_custom_wrap .custom_box{background-color: #202020; border-radius: 5px; padding: 15px;position: fixed;z-index: 1003;top: 54px;left: 50%; transform: translateX(-50%); overflow: hidden;opacity: 0;visibility: hidden;transition: 0.3s ease;}
.alert_custom_wrap .alert_cont{color: #fff; font-size: 14px; display: inline-block;}
.alert_custom_wrap .alert_close{cursor: pointer;color: #235cf5; font-size: 14px; display: inline-block;border: none;background: transparent;margin-left: 15px;padding: 0;}
.alert_custom_wrap .custom_box.open {opacity: 1;visibility: visible;}
.alert_custom_wrap .alert_custom_bg{display: none;} */


@media (max-width: 991px) {
  .alert_custom_wrap .custom_box {
    width: calc(100% - 50px);
    border-radius: 10px;
  }
  .alert_custom_wrap .custom_box .custom_cont {
    padding: 15px 15px 34px;
  }
  .alert_custom_wrap .custom_box .custom_cont .alert_close_wrap {
    margin-bottom: 5px;
  }
  .alert_custom_wrap .custom_box .custom_cont .alert_close {
    width: 15px;
    height: 15px;
  }
  .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(1) {
    content: "";
    display: block;
    width: 1.5px;
    height: 15px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(-45deg);
  }
  .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(2) {
    content: "";
    display: block;
    width: 1.5px;
    height: 15px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(45deg);
  }
  .alert_custom_wrap .custom_box .custom_cont .alert_cont {
    font-size: 16px;
    line-height: 19px;
    padding: 0 62px;
  }
  .alert_custom_wrap .custom_box .alert_custom_btn .alert_btn {
    font-size: 14px;
    padding: 15px 0;
  }
}
@media (max-width: 480px) {
  .alert_custom_wrap .custom_box {
    width: 330px;
  }
  .alert_custom_wrap .custom_box .custom_cont {
    padding: 10px 10px 20px;
  }
  .alert_custom_wrap .custom_box .custom_cont .alert_close_wrap {
    margin-bottom: 16px;
  }
  .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(1) {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(-45deg);
  }
  .alert_custom_wrap .custom_box .custom_cont .alert_close span:nth-child(2) {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #ccc;
    position: absolute;
    top: 0;
    right: 8px;
    transform: rotate(45deg);
  }
  .alert_custom_wrap .custom_box .custom_cont .alert_cont {
    font-size: 13px;
    padding: 0 15px;
  }
  .alert_custom_wrap .custom_box .alert_custom_btn .alert_btn {
    /* line-height: 45px; */
    font-size: 14px;
  }
}


/* 커스텀 알럿창 */
.alert_custom_wrap .quote_box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
  width: 350px;
  max-width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  }
  .alert_custom_wrap .quote_box .quote_cont {
  padding: 15px 15px 27px;
  }
  .alert_custom_wrap .quote_box .quote_cont .alert_close_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  }
  .alert_custom_wrap .quote_box .quote_cont .alert_close {
  width: 22px;
  height: 22px;
  position: relative;
  cursor: pointer;
  }
  .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(1) {
  content: "";
  display: block;
  width: 2px;
  height: 22px;
  background: #ccc;
  position: absolute;
  top: 0;
  right: 8px;
  transform: rotate(-45deg);
  }
  .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(2) {
  content: "";
  display: block;
  width: 2px;
  height: 22px;
  background: #ccc;
  position: absolute;
  top: 0;
  right: 8px;
  transform: rotate(45deg);
  }
  .alert_custom_wrap .quote_box .quote_cont .alert_cont {
  text-align: center;
  font-size: 15px;
  color: #333;
  line-height: 25px;
  padding: 0 30px;
  }
  .alert_custom_wrap .quote_box .alert_quote_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #e3e3e3;
  }
  .alert_custom_wrap .quote_box .alert_quote_btn .alert_btn {
  width: 50%;
  line-height: 67px;
  font-size: 15px;
  color: var(--main-point-color-hover);
  font-weight: 400;
  text-align: center;
  line-height: 1em;
  padding: 17px 0;
  }
  .alert_custom_wrap .quote_box .alert_quote_btn .alert_btn.full {
  /* width:100% !important;  */
  }
  .alert_custom_wrap .quote_box .alert_quote_btn button.alert_btn{
      color: var(--main-point-color-hover);
  }
  .alert_custom_wrap .quote_box .alert_quote_btn a {
  border-right: 1px solid #e3e3e3;
  }
  .alert_custom_wrap .quote_box .alert_quote_btn button {
  border: 0;
  background: #fff;
  }
  .alert_custom_wrap .quote_box.open {
  opacity: 1;
  visibility: visible;
  }
  .alert_custom_wrap .alert_quote_bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  } 
  .alert_custom_wrap .alert_quote_bg.open {
      opacity: 1;
      visibility: visible;
  }
  @media (max-width: 991px) {
    .alert_custom_wrap .quote_box {
      width: calc(100% - 50px);
      border-radius: 10px;
    }
    .alert_custom_wrap .quote_box .quote_cont {
      padding: 15px 15px 34px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close_wrap {
      margin-bottom: 5px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close {
      width: 15px;
      height: 15px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(1) {
      content: "";
      display: block;
      width: 1px;
      height: 15px;
      background: #999;
      position: absolute;
      top: 0;
      right: 8px;
      transform: rotate(-45deg);
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(2) {
      content: "";
      display: block;
      width: 1px;
      height: 15px;
      background: #999;
      position: absolute;
      top: 0;
      right: 8px;
      transform: rotate(45deg);
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_cont {
      font-size: 16px;
      line-height: 19px;
      padding: 0 62px;
    }
    .alert_custom_wrap .quote_box .alert_quote_btn .alert_btn {
      font-size: 14px;
      padding: 15px 0;
    }
  }
  @media (max-width: 480px) {
    .alert_custom_wrap .quote_box {
      width: 330px;
    }
    .alert_custom_wrap .quote_box .quote_cont {
      padding: 10px 10px 20px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close_wrap {
      margin-bottom: 16px;
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(1) {
      content: "";
      display: block;
      width: 1px;
      height: 20px;
      background: #999;
      position: absolute;
      top: 0;
      right: 8px;
      transform: rotate(-45deg);
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_close span:nth-child(2) {
      content: "";
      display: block;
      width: 1px;
      height: 20px;
      background: #999;
      position: absolute;
      top: 0;
      right: 8px;
      transform: rotate(45deg);
    }
    .alert_custom_wrap .quote_box .quote_cont .alert_cont {
      font-size: 16px;
      line-height: 23px;
      padding: 0 15px;
      font-weight: 500;
    }
    .alert_custom_wrap .quote_box .alert_quote_btn .alert_btn {
      /* line-height: 45px; */
      font-size: 15px;
    }
  }

/* 공통 팝업*/
.responsive .modal .modal-dialog {
  width: 440px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
@media (max-width: 991px) {
  .responsive .modal .modal-dialog {
    /* width: calc(100% - 30px); */
    width: 100%;
    margin: 0;
    top: initial;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.list-page{
    margin: 70px 0 0px !important;
}
@media (max-width: 991px) {
    .list-page{
        margin-top: 40px !important;
    }
    .at-content.type_cont .list-page{
        padding-bottom: 15px;
    }
}
.pagination li a, .pagination li span, .pagination-sm li a, .pagination-sm li span {
  background: none;
  border: none;
  padding: 0;
  color: #999 !important;
  margin: 0 16px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .pagination li a, .pagination li span, .pagination-sm li a, .pagination-sm li span {
    font-size: 13px;
    margin: 0 10px;
  }
}
.pagination li.active a, .pagination-sm li.active a {
  background: none !important;
  color: var(--main-point-color-hover) !important;
}
.pagination li:first-child a, .pagination-sm li:first-child a {
  margin-right: 4px;
}
.pagination li:first-child a i::before, .pagination-sm li:first-child a i::before {
  content: "\f104" "\f104";
}
.pagination li:last-child a, .pagination-sm li:last-child a {
  margin-left: 4px;
}
.pagination li:last-child a i::before, .pagination-sm li:last-child a i::before {
  content: "\f105" "\f105";
}

.text-center .pagination li a, .text-center .pagination li span, .text-center .pagination-sm li a, .text-center .pagination-sm li span {
  background: none;
  border: none;
  padding: 0;
  color: #999 !important;
  margin: 0 13px;
  font-size: 15px;
}
@media (max-width: 991px) {
  .text-center .pagination li a, .text-center .pagination li span, .text-center .pagination-sm li a, .text-center .pagination-sm li span {
    font-size: 13px;
    margin: 0 10px;
  }
}
.text-center .pagination li.active a, .text-center .pagination li.active a:hover , .text-center .pagination-sm li.active a {
  border: none !important;
  background: none !important;
  background-color: transparent !important;
  color: var(--main-point-color-hover) !important;
  font-weight: 500;
}
.text-center .pagination li:first-child a, .text-center .pagination-sm li:first-child a {
  margin-right: 4px;
}
.text-center .pagination li:first-child a i::before, .text-center .pagination-sm li:first-child a i::before {
  content: "\f104" "\f104";
}
.text-center .pagination li:last-child a, .text-center .pagination-sm li:last-child a {
  margin-left: 4px;
}
.text-center .pagination li:last-child a i::before, .text-center .pagination-sm li:last-child a i::before {
  content: "\f105" "\f105";
}

/****************************
전체 > 모바일 전체메뉴
html > thema > Fivesense-basic > widget > miso-sidebar > widget.php
****************************/
/* aside#sidebar-box {
  width: 360px;
  cursor: pointer;
} */
aside#sidebar-box .sidebar_header {
  position: relative;
  padding: 30px 25px 18px;
}
aside#sidebar-box .sidebar_log_box a {
  display: inline-block;
  height: 32px;
  line-height: 30px;
  font-size: 15px;
  border-radius: 3px;
  border: 1px solid #e3e3e3;
  padding: 0 19px;
  transition: 0.2s;
}
@media (max-width: 480px) {
  aside#sidebar-box .sidebar_log_box a {
    font-size: 12px;
    height: 30px;
    line-height: 28px;
  }
}
aside#sidebar-box .sidebar_log_box a + a {
  margin-left: 3px;
  /* color: #000022; */
}
aside#sidebar-box .sidebar_log_box a:hover {
  background: var(--main-point-btn-bg-color-hover);
  border-color: var(--main-point-btn-line-color-hover);
  color: #fff;
}
aside#sidebar-box .sidebar_log_box p {
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--main-point-color);
  font-weight: 400;
  line-height: 27.5px;
}
@media (max-width: 480px) {
  aside#sidebar-box .sidebar_log_box p {
    font-size: 20px;
  }
}
aside#sidebar-box .sidebar_log_box p span {
  font-weight: 600;
}
aside#sidebar-box .sidebar_log_box p span.line{
    text-decoration: underline;
    font-weight: 400;
    text-underline-offset : 4px;
    text-decoration-thickness: 1px;
}
aside#sidebar-box .sidebar-wing-close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 23px;
}
@media (max-width: 480px) {
  aside#sidebar-box .sidebar-wing-close {
    top: 26px;
    width: 15px;
    height: 15px;
  }
}
aside#sidebar-box .sidebar-wing-close span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
aside#sidebar-box .sidebar-wing-close span::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #1b1b1b;
  position: absolute;
  top: 0;
  right: 10px;
  transform: rotate(-45deg);
}
aside#sidebar-box .sidebar-wing-close span::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #1b1b1b;
  position: absolute;
  top: 0;
  right: 10px;
  transform: rotate(45deg);
}
aside#sidebar-box .sidebar_qmenu {
  margin-bottom: 10px;
  border-bottom: 10px solid #f9f9fa;
  padding-bottom: 20px;
}
aside#sidebar-box .sidebar_qmenu_li {
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #e3e3e3; */
  border-width: 1px 0;
}
aside#sidebar-box .sidebar_qmenu_li li {
  width: 25%;
}
aside#sidebar-box .sidebar_qmenu_li li a {
  display: block;
  padding: 13px 0;
  text-align: center;
  position: relative;
}
aside#sidebar-box .sidebar_qmenu_li li a .cart_icon{
    position: relative;
    display: inline-block;
    height: 19px;
}
aside#sidebar-box .sidebar_qmenu_li li a img {
  /* height: 19px; */
  display: inline-block;
}
@media (max-width: 991px) {
  aside#sidebar-box .sidebar_qmenu_li li a img {
    height: 22.5px;
  }
  aside#sidebar-box .sidebar_qmenu_li li a .cart_icon img {
    height: 24px;
  }
}
@media (max-width: 480px) {
  aside#sidebar-box .sidebar_qmenu_li li a img {
    height: 22.5px;
  }
  aside#sidebar-box .sidebar_qmenu_li li a .cart_icon img {
    height: 24px;
  }
}
aside#sidebar-box .sidebar_qmenu_li li a .cart_count{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-point-bg-color-hover);
    text-align: center;
    line-height: 10px;
    font-size: 5px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    right: -5px;
    bottom: -2px;
}
@media (max-width: 480px) {
    aside#sidebar-box .sidebar_qmenu_li li a .cart_count{
      font-size: 8px;
      font-weight: 600;
      width: 12.5px;
      height: 12.5px;
      line-height: 12.5px;
      bottom: -5px;
    }
}
aside#sidebar-box .sidebar_qmenu_li li a .tit {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  color: var(--main-point-color);
  font-weight: 400;
}
@media (max-width: 480px) {
  aside#sidebar-box .sidebar_qmenu_li li a .tit {
    font-size: 14px;
  }
}
aside#sidebar-box .sidebar_qmenu_li li + li {
  /* border-left: 1px solid #e3e3e3; */
}
aside#sidebar-box .sidebar-menu {
  border: none;
  padding: 0;
}
aside#sidebar-box .sidebar-menu .menu_li_tt a {
  padding: 0 18px;
  color: var(--main-point-color);
  font-size: 25px;
  font-weight: 600;
  position: relative;
  line-height: 45px;
}
@media (max-width: 480px) {
  aside#sidebar-box .sidebar-menu .menu_li_tt a {
    font-size: 25px;
  }
}
aside#sidebar-box .sidebar-menu .menu_li_tt.active a,
aside#sidebar-box .sidebar-menu .menu_li_tt a.active{
    color: var(--main-point-color-hover);
}
aside#sidebar-box .sidebar-menu .menu_li_tt a span {
  display: block;
  width: 11px;
  height: 7px;
  position: absolute;
  top: 24px;
  right: 30px;
}
aside#sidebar-box .sidebar-menu .menu_li_tt a span:before {
  content: "";
  display: block;
  height: 1px;
  width: 7px;
  background: var(--main-point-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(45deg) translate(0%, 0);
}
aside#sidebar-box .sidebar-menu .menu_li_tt a span:after {
  content: "";
  display: block;
  height: 1px;
  width: 7px;
  background: var(--main-point-color);
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(-45deg) translate(0%, 0);
}
aside#sidebar-box .sidebar-menu .menu_li_tt a.active span,
aside#sidebar-box .sidebar-menu .menu_li_tt a.open span {
  transform: rotate(180deg);
}
/* aside#sidebar-box .sidebar-menu .menu_li_tt a.open span:before {
  background: #ccc;
}
aside#sidebar-box .sidebar-menu .menu_li_tt a.open span:after {
  background: #ccc;
} */
aside#sidebar-box .sidebar-menu .menu_li_sub{
    border-top: 1px solid #eeeeee;
    padding-top: 8px;
    padding-bottom: 5px;
}
aside#sidebar-box .sidebar-menu .menu_li_sub li a {
  padding-left: 25px;
  color: var(--main-point-color);
  font-size: 13px;
  line-height: 20px;
  position: relative;
  padding: 10px 24px;
}
@media (max-width: 480px) {
  aside#sidebar-box .sidebar-menu .menu_li_sub li a {
    font-size: 13px;
  }
}
aside#sidebar-box .sidebar-menu .menu_li_sub li a:hover {
  color: #333 !important;
}
aside#sidebar-box .sidebar-menu .menu_li_sub li a.is-2sub span {
  position: relative;
  top: -3px;
  display: inline-block;
  width: 8px;
  height: 5px;
}
aside#sidebar-box .sidebar-menu .menu_li_sub li a.is-2sub span:before {
  content: "";
  display: block;
  height: 1px;
  width: 53%;
  background: #555;
  position: absolute;
  top: 50%;
  left: 0.6px;
  transform: rotate(45deg);
}
aside#sidebar-box .sidebar-menu .menu_li_sub li a.is-2sub span:after {
  content: "";
  display: block;
  height: 1px;
  width: 53%;
  background: #555;
  position: absolute;
  top: 50%;
  right: 0.6px;
  transform: rotate(-45deg);
}
aside#sidebar-box .sidebar-menu .menu_li_sub li a.is-2sub.open {
  color: #666;
}
aside#sidebar-box .sidebar-menu .menu_li_sub li a.is-2sub.open span {
  transform: rotate(180deg);
  top: -1px;
}
aside#sidebar-box .sidebar-menu .menu_li_sub li a.is-2sub.open span:before {
  background: #ccc;
}
aside#sidebar-box .sidebar-menu .menu_li_sub li a.is-2sub.open span:after {
  background: #ccc;
}
aside#sidebar-box .sidebar-menu .menu_li_sub li.on a {
  font-weight: 500;
}
aside#sidebar-box .sidebar-menu .menu_li_sub li + li {
  /* margin-top: 8px; */
}
aside#sidebar-box .sidebar-menu .menu_li_sub_2sub {
  background: #f8f8f8;
  padding: 10px 0;
  margin-top: 9px;
}
aside#sidebar-box .sidebar-menu .menu_li_sub_2sub li a {
  padding-left: 35px;
  font-size: 12px;
  color: #999;
  font-weight: 500;
}
aside#sidebar-box .sidebar-menu .menu_li_sub_2sub + li {
  margin-top: 15px;
}
aside#sidebar-box .sidebar-menu_divide {
  width: calc(100% - 30px);
  height: 1px;
  background: #e3e3e3;
  margin: 10px 15px;
}

/****************************
공통 > 상품유형 스티커
html > shop > shop.js
****************************/
.item_sticker {
  height: 19px;
  border-radius: 3px;
  padding: 0 5px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
  margin-top: 9px;
}
.item_sticker.best {
    color: #ff4e1f;
  background: rgba(255, 78, 31,0.1);
}
.item_sticker.new {
    color: #f83249;
    background: rgba(248, 50, 73,0.1);
}
.item_sticker.discount {
    color: #f83249;
  background: rgba(248, 50, 73,0.1);
}
.item_sticker.hit {
    color: #f83249;
    background: rgba(248, 50, 73,0.1);
}
.item_sticker.rec {
    color: #1d32ff;
    background: rgba(29, 50, 255,0.1);
}
.item_sticker.coupon {
  background: #000;
}
.item_sticker.free_shupping {
    color: #9d9d9d;
  background: rgba(157, 157, 157,0.1);
  margin-right: 5px;
}
@media (max-width: 768px) {
  .item_cont .item_icon{
    margin-top: 5px;
  }
  .item_sticker {
    font-size: 10px;
    padding: 1px 5px 0;
    height: 17.5px;
    line-height: 18.5px;
    min-width: 29px;
    border-radius: 4px;
    margin-top: 4px;
  }
  .item_sticker.free_shupping{
    margin-right: 3px;
  }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
주문서 페이지
html > skin > apms > order > basic > orderform.skin.php
(기존에 있던 페이지는 221228 날짜로 백업함.)
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/* 주문서 */
.ordersheet {
  width: 100%;
}
.ordersheet_cont {
  display: block;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .ordersheet_cont {
    position: relative;
    margin-bottom: 0;
    padding: 40px 0;
  }
  .ordersheet_cont::after {
    content: "";
    width: calc(100% + 30px);
    height: 10px;
    background: #f9f9fa;
    position: absolute;
    bottom: 0;
    left: -15px;
  }
}
@media (max-width: 480px) {
  .ordersheet_cont {
    padding: 30px 0 40px;
  }
}
.ordersheet_title {
  font-size: 24px;
  font-weight: 500;
  color: var(--main-point-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid #444444;  
}
.ordersheet_title h3{
  font-family: 'Pretendard';
  font-weight: 500;
}
@media (max-width: 991px) {
  .ordersheet_title {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .ordersheet_title {
    font-size: 16px;
    font-weight: 700;
  }
  .ordersheet_title h3{
    font-weight: 700;
  }
}
.ordersheet_title_length .first_product_name, .ordersheet_title_length .other_text, .ordersheet_title_length .mobile_hidden {
  display: none;
}
@media (max-width: 991px) {
  .ordersheet_title_length .first_product_name, .ordersheet_title_length .other_text, .ordersheet_title_length .mobile_hidden {
    display: inline;
  }
}
.ordersheet_title_arrow {
  display: flex;
  width: 16px;
  height: 9px;
  position: relative;
  right: 0;
  transition: all 0.3s ease;
}
.ordersheet_title_arrow .arrow {
  width: 2px;
  height: 11px;
  background: #555555;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
}
.ordersheet_title_arrow .arrow:last-child {
  left: auto;
  right: 3px;
  transform: rotate(-45deg);
}
.ordersheet_title_arrow.active {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .ordersheet_title_arrow.active {
    top: 4px;
  }
}
@media (max-width: 480px) {
  .ordersheet_title_arrow {
    width: 12px;
    height: 7px;
  }
  .ordersheet_title_arrow .arrow {
    width: 1px;
    height: 9px;
    left: 3px;
  }
  .ordersheet_title_arrow .arrow:last-child {
    left: auto;
    right: 2px;
  }
  .ordersheet_title_arrow.active {
    top: 2px;
  }
}
.ordersheet_title_length {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .ordersheet_title_length.active .ordersheet_length {
    display: block;
    margin-right: 15px;
    padding: 0;
    border: 0;
  }
  .ordersheet_title_length.active .ordersheet_length > .other_text{
    display: none;
  }
}
@media (max-width: 991px) {
  .ordersheet_title_length .ordersheet_length {
    display: none;
  }
  .ordersheet_title_length .ordersheet_length .mobile_hidden {
    display: none;
  }
  .ordersheet_title_length .ordersheet_length .first_product_name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-inline-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.1;
    height: 1.1em;
    position: relative;
    top: 3px;
  }
}
@media (max-width: 480px) {
  .ordersheet_title_length .ordersheet_length .first_product_name {
    max-width: 150px;
  }
}
.ordersheet_inner {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
  display: none;
  align-items: center;
}
.ordersheet_inner:first-child {
  padding-top: 30px;
}
.ordersheet_inner:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .ordersheet_inner {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: none;
    position: relative;
  }
  .ordersheet_inner:first-child{
    padding-top: 10px;
  }
  .ordersheet_inner + .ordersheet_inner{
    border-bottom: 1px solid #eeeeee;
  }
  .ordersheet_inner + .ordersheet_inner::before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #eee;
    position: absolute;
    top: -20px;
    left: 0;
  }
}
.ordersheet_inner .image {
  width: 130px;
  border-radius: 5px;
  overflow: hidden;
}
.ordersheet_inner .image img {
  width: 100%;
}
@media (max-width: 480px) {
  .ordersheet_inner .image {
    width: 78px;
    min-width: 78px;
    height: 78px;
    border-radius: 3px;
    overflow: hidden;
  }
  .ordersheet_inner .image img {
    height: 83px;
    position: relative;
    top: -5px;
    object-fit: cover;
  }
}
.ordersheet_inner .content {
  width: calc(100% - 230px);
  padding-left: 20px;
}
.ordersheet_inner .content_subname {
  font-size: 13px;
  color: #666666;
  font-weight: 300;
  margin-bottom: 4px;
  line-height: 1.5;
}
.ordersheet_inner .content_name {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-point-color);
  line-height: 1.5;
  margin-bottom: 10px;
}
.ordersheet_inner .content_option {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  /*
  li::after{
      content:"";
      width:1px;
      height:15px;
      background:#c7c7c7;
      position:absolute;
      right:-10px;
      top:2px;
      @include responsive-991(){display: none;}
  }
  */
}
.ordersheet_inner .content_option li {
  position: relative;
  font-size: 14px;
  color: #666666;
  margin-bottom: 15px;
  width: 100%;
}
@media (max-width: 991px) {
  .ordersheet_inner .content_option li {
    margin-bottom: 10px;
  }
}
.ordersheet_inner .content_option li:last-child {
  margin-bottom: 0;
}
.ordersheet_inner .content_option li:last-child::after {
  display: none;
}
.ordersheet_inner .content_price {
  display: flex;
  align-items: baseline;
}
.ordersheet_inner .content_price li {
  font-size: 16px;
  color: var(--main-point-color);
  margin-right: 10px;
  font-weight: 600;
}
.ordersheet_inner .content_price li:last-child {
  margin-right: 0;
  font-size: 14px;
  color: #666666;
}
@media (max-width: 480px) {
  .ordersheet_inner .content {
    width: 100%;
    padding-left: 18px;
  }
  .ordersheet_inner .content_subname {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 1px;
  }
  .ordersheet_inner .content_name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 22.5px;
  }
  .ordersheet_inner .content_option {
    margin-bottom: 0;
  }
  .ordersheet_inner .content_option li {
    font-size: 12px;
    margin-right: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    /* 2024-07-29 (주)파이브센스_FIVESENSES.Corp */
    /* height: 12px; */
  }
  .ordersheet_inner .content_option li::after {
    top: 0;
    right: -8px;
    height: 12px;
  }
  .ordersheet_inner .content_price{
    display: none;
  }
  .ordersheet_inner .content_price li {
    font-size: 12px;
    margin-right: 6px;
  }
  .ordersheet_inner .content_price li:last-child {
    font-size: 12px;
  }
  .ordersheet_inner .content_price li span {
    font-size: 14px;
  }
}
.ordersheet_inner .coupon {
  width: 100px;
  text-align: right;
}
.ordersheet_inner .coupon button {
  padding: 0 20px;
  width: 100px;
  height: 46px;
  line-height: 44px;
  color: #fff;
  border-radius: 5px !important;
  font-size: 16px;
  cursor: pointer;
  border: none;
}
.ordersheet_inner .coupon button.cp_btn {
  background: var(--main-point-btn-bg-color-hover);
}
.ordersheet_inner .coupon button.cp_cancel {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .ordersheet_inner .coupon button {
    margin-left: 2.28%;
    padding: 0 15px;
    text-align: center;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .ordersheet_inner .coupon button {
    height: 40px;
    line-height: 38px;
    width: 80px;
    font-weight: 500;
  }
}
.ordersheet_length {
  padding: 39.5px 0;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
  font-size: 18px;
  color: #222222;
  font-weight: 500;
  display: none;
}
.ordersheet_length.active {
  display: block;
}
.ordersheet_length .point_color {
  color: var(--main-point-color-hover);
}
.ordersheet_length div {
  display: inline;
}
@media (max-width: 991px) {
  .ordersheet_length {
    display: none;
  }
  .ordersheet_length.active {
    display: none;
  }
}
@media (max-width: 480px) {
  .ordersheet_length {
    font-size: 13px;
  }
}
.ordersheet .ordersheet_write {
  padding-top: 25px;
}
.ordersheet .ordersheet_write_input {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input {
    flex-wrap: wrap;
    margin-bottom: 23px;
  }
}
.ordersheet .ordersheet_write_input:last-child {
  margin-bottom: 0;
}
.ordersheet .ordersheet_write_input.w485 {
  width: 485px;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input.w485 {
    width: 100%;
  }
}
.ordersheet .ordersheet_write_input.w490 {
  width: 490px;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input.w490 {
    width: 100%;
  }
}
.ordersheet .ordersheet_write_input.w615 {
  width: 615px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.ordersheet .ordersheet_write_input.w615 > label {
  position: relative;
  top: 13px;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input.w615 {
    width: 100%;
  }
  .ordersheet .ordersheet_write_input.w615 > label {
    top: 0;
  }
}
.ordersheet .ordersheet_write_input.w620 {
  width: 620px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.ordersheet .ordersheet_write_input.w620 > label {
  position: relative;
  top: 13px;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input.w620 {
    width: 100%;
  }
  .ordersheet .ordersheet_write_input.w620 > label {
    top: 0;
  }
}
.ordersheet .ordersheet_write_input.w100p {
  width: 100%;
}
.ordersheet .ordersheet_write_input label {
  width: 115px;
  font-size: 16px;
  color: #666666;
  font-weight: 400;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input label {
    width: 100%;
    margin-bottom: 11px;
  }
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_input label {
    font-size: 14px;
  }
}
.ordersheet .ordersheet_write_input input {
  width: calc(100% - 115px);
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 16px;
  color: #222;
  padding: 0 15px;
  height: 45px;
  line-height: 45px;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input input {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_input input {
    font-size: 14px;
    height: 40px;
    line-height: 38px;
  }
}
.ordersheet .ordersheet_write_input input::placeholder {
  color: #999999;
  line-height: 45px;
}
.ordersheet .ordersheet_write_input input:focus {
  color: var(--main-point-color-hover);
  border-color: var(--main-point-color-hover);
}
.ordersheet .ordersheet_write_input textarea {
  width: calc(100% - 115px);
  resize: none;
  outline: none;
  box-shadow: none;
  height: 100px;
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
  padding: 15px;
}
.ordersheet .ordersheet_write_input textarea:focus {
  border-color: var(--main-point-color-hover);
  color: var(--main-point-color-hover);
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input textarea {
    width: 100%;
    border-radius: 2.5px;
  }
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_input textarea {
    height: 77px;
    font-size: 14px;
    padding: 10px 15px;
  }
}
.ordersheet .ordersheet_write .b_hp .msg-box{
    margin-left: 115px;
    margin-top: -2px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #ff0000;
}
.ordersheet .ordersheet_write_input.member {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input.member {
    flex-wrap: nowrap;
  }
}
.ordersheet .ordersheet_write_input.member :last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input.member label {
    width: 115px;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_input.member label {
    width: 85px;
  }
}
.ordersheet .ordersheet_write_input.member input {
  color: var(--main-point-color);
  border: 0;
  border-radius: 0;
  height: auto;
  line-height: normal;
  cursor: default;
  padding: 0;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input.member input {
    width: calc(100% - 115px);
  }
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_input.member input {
    width: calc(100% - 85px);
  }
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input.member .ordersheet_write_addr_wrap {
    width: calc(100% - 115px);
  }
}
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap {
  width: calc(100% - 115px);
}
.ordersheet .ordersheet_write_input.w620 .ordersheet_write_addr_wrap {
  width: calc(100% - 120px);
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap,
  .ordersheet .ordersheet_write_input.w620 .ordersheet_write_addr_wrap {
    width: 100%;
  }
}
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .ordersheet_write_addr {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .ordersheet_write_addr:last-child {
  margin-bottom: 0;
}
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .ordersheet_write_addr #daum_juso_pageod_b_zip {
  margin-top: 20px !important;
  margin-bottom: 8px !important;
  max-height: 400px;
}
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .ordersheet_write_addr #daum_juso_pageod_zip,
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .ordersheet_write_addr.maxh400 > div{
    max-height: 400px;
}
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .left_label {
  width: calc(100% - 130px);
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .left_label {
    width: calc(100% - 83px);
  }
}
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .right_label {
  width: 120px;
  margin-left: 10px;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .right_label {
    width: 75px;
    margin-left: 8px;
  }
}
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .right_label button {
  width: 100%;
  height: 45px;
  line-height: 43px;
  background: var(--main-point-btn-bg-color-hover);
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 300;
  border: 0;
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap .right_label button {
    height: 40px;
    line-height: 38px;
    font-size: 12px;
    border-radius: 2.5px;
    font-weight: 500;
  }
}
.ordersheet .ordersheet_write_input .ordersheet_write_addr_wrap input {
  width: 100%;
}
.ordersheet .ordersheet_write_addr_btn {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.ordersheet .ordersheet_write_addr_btn .shipping_pop_open {
  display: inline-flex;
  position: relative;
  color: var(--main-point-color-hover);
  height: 16px;
  font-size: 16px;
}
.ordersheet .ordersheet_write_addr_btn .shipping_pop_open::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--main-point-color-hover);
  position: absolute;
  bottom: -5px;
  left: 0;
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_addr_btn .shipping_pop_open {
    font-size: 13px;
    height: 12px;
    bottom: -4px;
    color: #666666;
  }
  .ordersheet .ordersheet_write_addr_btn .shipping_pop_open::after{
    background: #666666;
  }
}
.ordersheet .ordersheet_write_caption {
  font-size: 13px;
  color: #999999;
  font-weight: 400;
}
@media (max-width: 991px) {
  .ordersheet .ordersheet_write_caption {
    text-align: left;
    width: 100%;
    margin-top: -10px;
  }
}
@media (max-width: 480px) {
  .ordersheet .ordersheet_write_caption {
    font-size: 11px;
    margin-top: -15px;
  }
}
.ordersheet_paytab {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .ordersheet_paytab {
    padding: 0;
  }
}
.ordersheet_paytab_left {
  width: 70%;
}
.ordersheet_paytab_right {
  width: 25.834%;
  position: sticky;
  top: 150px;
  margin-bottom: 0;
}
.ordersheet_paytab_right .paytab_tt {
  font-size: 24px;
  color: var(--main-point-color);
  font-weight: 500;
  margin-bottom: 26px;
}
@media (max-width: 480px) {
  .ordersheet_paytab_right .paytab_tt {
    font-size: 15.5px;
    font-weight: 600;
  }
}
.ordersheet_paytab_right .paytab_con {
  background: #fafafa;
  border: 1px solid #f2f2f2;
  padding: 30px;
}
@media (max-width: 991px) {
  .ordersheet_paytab_right .paytab_con {
    background: none;
    border: none;
    padding: 30px 0 10px;
  }
}
.ordersheet_paytab_right .paytab_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .ordersheet_paytab_right .paytab_price {
    margin-bottom: 18px;
  }
}
.ordersheet_paytab_right .paytab_price_obj {
  color: #4c4c4c;
  font-size: 16px;
  font-weight: 400;
  width: 50%;
  margin-bottom: 17px;
}
@media (max-width: 991px) {
  .ordersheet_paytab_right .paytab_price_obj {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .ordersheet_paytab_right .paytab_price_obj {
    font-size: 15px;
  }
}
.ordersheet_paytab_right .paytab_price_obj.sub {
  padding-left: 15px;
  position: relative;
}
.ordersheet_paytab_right .paytab_price_obj.sub:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #dcdcdc;
  border-width: 0 0 1px 1px;
  position: absolute;
  top: 5px;
  left: 0;
}
.ordersheet_paytab_right .paytab_price_obj.sub:nth-last-child(2) {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .ordersheet_paytab_right .paytab_price_obj.sub:nth-last-child(2) {
    margin-bottom: 0;
  }
  .ordersheet_paytab_right .paytab_price_obj.sub:nth-child(3) {
    margin-top: 14px;
  }
}
.ordersheet_paytab_right .paytab_price_num {
  color: #4c4c4c;
  font-size: 18px;
  font-weight: 400;
  width: 50%;
  text-align: right;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .ordersheet_paytab_right .paytab_price_num {
    margin-bottom: 0;
    color: var(--main-point-color);
  }
}
@media (max-width: 480px) {
  .ordersheet_paytab_right .paytab_price_num {
    font-size: 15px;
  }
  .ordersheet_paytab_right .paytab_price_num > span {
    font-size: 16px;
  }
}
.ordersheet_paytab_right .paytab_price_num.sub:nth-last-child(1) {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .ordersheet_paytab_right .paytab_price_num.sub:nth-last-child(1) {
    margin-bottom: 0;
  }
  .ordersheet_paytab_right .paytab_price_num.sub:nth-child(4) {
    margin-top: 14px;
  }
}
.ordersheet_paytab_right .paytab_price.total {
  padding-top: 20px;
  border-top: 1px solid #f2f2f2;
}
.ordersheet_paytab_right .paytab_price.total div {
  margin-bottom: 0;
}
.ordersheet_paytab_right .paytab_price.total span {
  font-size: 25px;
  font-weight: 600;
  margin-right: 3px;
  display: inline-block;
}
@media (max-width: 480px) {
  .ordersheet_paytab_right .paytab_price.total span {
    font-size: 20px;
  }
}
.ordersheet_paytab_right .paytab_price.point {
  width: 100%;
  margin-top: 12px;
}
@media (max-width: 480px) {
  .ordersheet_paytab_right .paytab_price.point {
    margin-top: 7px;
  }
}
.ordersheet_paytab_right .paytab_price.point .paytab_price_point {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ordersheet_paytab_right .paytab_price.point .paytab_price_point div {
  font-size: 13px;
  font-weight: 300;
}
.ordersheet_paytab_right .paytab_price.point .paytab_price_point div .point_sticker {
  display: block;
  width: 33px;
  height: 18px;
  line-height: 18px;
  border-radius: 9px;
  background: var(--main-point-bg-color-hover);
  font-size: 11px;
  color: #fff;
  text-align: center;
}
@media (max-width: 480px) {
  .ordersheet_paytab_right .paytab_price.point .paytab_price_point div .point_sticker {
    font-weight: 400;
    line-height: 18px;
  }
}
.ordersheet_paytab_right .paytab_price.point .paytab_price_point div.point_num {
  color: #4c4c4c;
  position: relative;
  top: 1px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .ordersheet_paytab_right .paytab_price.point .paytab_price_point div.point_num{
    top: 0;
    font-weight: 400;
  }
}
.ordersheet_paytab_right .paytab_price.point .paytab_price_point div.point_txt {
  color: #777;
}
.ordersheet_paytab_right .paytab_price.point .paytab_price_point div + div {
  margin-left: 7px;
}
.ordersheet_paytab_right .paytab_price .sub {
  color: #999;
  font-size: 14px;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .ordersheet_paytab_right .paytab_price .sub {
    font-size: 12px;
  }
  .ordersheet_paytab_right .paytab_price .sub span {
    font-size: inherit;
  }
}
@media (max-width: 991px) {
  .ordersheet_paytab {
    flex-direction: column;
  }
  .ordersheet_paytab_left {
    width: 100%;
  }
  .ordersheet_paytab_right {
    width: 100%;
    position: relative;
    top: 0;
  }
}
@media (max-width: 480px) {
  .ordersheet_paytab #mobile_payment {
    position: relative;
    padding: 0 0 40px;
  }
  .ordersheet_paytab #mobile_payment::after {
    content: "";
    display: block;
    width: 110%;
    height: 10px;
    background: #f9f9fa;
    position: absolute;
    left: -15px;
    bottom: 30px;
  }
}
.ordersheet_cp_input {
  padding: 25px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ordersheet_cp_input:first-child{
  /* border-bottom: 1px solid #eee; */
}
.ordersheet_point_con.use_point_con .ordersheet_cp_input{
  padding-bottom: 0;
}
@media (max-width: 480px) {
  .ordersheet_cp_input {
    padding: 10px 0;
  }
  .ordersheet_cp_input:first-child{
    border-bottom: none;
  }
}
.ordersheet_cp_tt {
  color: #444;
  font-size: 16px;
  font-weight: 400;
  width: 38.21%;
  line-height: 46px;
}
.ordersheet_cp_btn {
  width: 100%;
}
.ordersheet_cp_btn button {
  display: block;
  background: #f9f9f9 url(../img/icon_order_cp.png) no-repeat calc(100% - 15px) center;
  width: 100%;
  padding: 0 15px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  height: 46px;
  line-height: 44px;
  text-align: left;
  color: #999;
  font-size: 16px;
  font-weight: 300;
}
.ordersheet_cp_btn button.coupon_cancel {
  background: var(--main-point-btn-bg-color-hover);
  border: none;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  width: auto;
}
@media (max-width: 480px) {
  .ordersheet_cp_btn button.coupon_cancel {
    font-size: 12px;
    width: 22.72%;
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .ordersheet_cp_btn button {
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    border-radius: 2.5px;
    background-size: 5px 9px;
  }
}
.ordersheet_cp_btn .coupon_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
}
@media (max-width: 480px) {
  .ordersheet_cp_btn .coupon_list {
    font-size: 13px;
  }
}
.ordersheet_cp_btn.point {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.ordersheet_cp_btn.point .input_box {
  position: relative;
  width: 36.527%; 
}
.ordersheet_cp_btn.point .input_box input {
  width: 100%;
  height: 46px;
  line-height: 44px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  padding: 0 15px;
  color: #999;
  font-size: 16px;
  background-color: #fff;
}
@media (max-width: 991px) {
    .ordersheet_cp_btn.point .input_box {
        width: calc(100% - 83px); 
        padding-left: 0;
    }
}
@media (max-width: 480px) {
  .ordersheet_cp_btn.point .input_box input {
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    border-radius: 2.5px;
    font-weight: 300;
  }
  .ordersheet_cp_btn.point .input_box input::placeholder{
    color: #999;
  }
}
.ordersheet_cp_btn.point .input_box .del_point {
  background: #b7b7b7;
  display: block;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%) rotate(0);
  cursor: pointer;
}
@media (max-width: 991px){
    .ordersheet_cp_btn.point .input_box .del_point{
        width: 14px; 
        height: 14px;
    }
}
.ordersheet_cp_btn.point .input_box .del_point:before {
  content: "";
  display: block;
  width: 1px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ordersheet_cp_btn.point .input_box .del_point:after {
  content: "";
  display: block;
  width: 1px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 991px){
    .ordersheet_cp_btn.point .input_box .del_point:before, .ordersheet_cp_btn.point .input_box .del_point:after{height: 7px;}
}
.ordersheet_cp_btn.point .btn_all_point {
  margin-left: 10px;
  padding: 0 28.32px;
  height: 46px;
  line-height: 44px;
  color: #fff;
  background: var(--main-point-btn-bg-color-hover);
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .ordersheet_cp_btn.point .btn_all_point {
    width: 22.72%;
    margin-left: 2.28%;
    text-align: center;
    font-size: 12px;
    padding: 0 13px; 
    border-radius: 2.5px; 
    width: 75px; 
    margin-left: 8px; 
    font-size: 500;
  }
}
@media (max-width: 480px) {
  .ordersheet_cp_btn.point .btn_all_point {
    height: 40px;
    line-height: 38px;
  }
}
.ordersheet_cp_btn.point #sod_frm_pt {
  display: block;
  width: 100%;
  margin-top: 15px;
  color: #999999;
  font-size: 14px;
}
.ordersheet_cp_btn.point #sod_frm_pt span {
  color: #333;
  font-weight: 600;
}
@media (max-width: 480px) {
  .ordersheet_cp_btn.point #sod_frm_pt {
    font-size: 13px;
    margin-top: 13px;
  }
}
@media (max-width: 991px) {
  .ordersheet_cp_tt {
    display: none;
  }
}
@media (max-width: 480px) {
  .ordersheet_cp .ordersheet_title {
    margin-bottom: 30px;
  }
}
.ordersheet_cp_con {
  /* border-bottom: 1px solid #eeeeee; */
}
.ordersheet_point_con {
  border-top: 1px solid #eeeeee;
}
.ordersheet_payment_con {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.ordersheet_payment_con > span {
  position: relative;
  margin: 5px;
  width: calc(25% - 10px);
}
.ordersheet_payment_con > span input[type=radio] {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.ordersheet_payment_con > span input[type=radio] + label {
  display: inline-block;
  padding: 0 15px;
  text-align: center;
  position: relative;
  min-width: 180px;
  width: 100%;
  border: 1px solid #d6d6d6;
  height: 55px;
  line-height: 53px;
  border-radius: 5px;
  color: var(--main-point-color);
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
}
.ordersheet_payment_con > span input[type=radio] + label .icon_pay {
  display: block;
  padding: 0 8px;
  height: 22px;
  line-height: 18px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: -11px;
  left: 6px;
}
.ordersheet_payment_con > span input[type=radio] + label .icon_pay img {
  margin-right: 5px;
  display: inline-block;
}
.ordersheet_payment_con > span input[type=radio] + label .icon_pay.naver {
  background: #04cf5c;
  color: #fff;
}
.ordersheet_payment_con > span input[type=radio] + label .icon_pay.kakao {
  background: #fae100;
  color: #3a2020;
  left: 60px;
}
.ordersheet_payment_con > span input[type=radio]:checked + label {
  background: var(--main-point-btn-bg-color-hover);
  border-color: var(--main-point-btn-line-color-hover);
  color: #fff;
  font-weight: 500;
}
.ordersheet_payment #settle_bank {
  padding: 25px 0;
  border-top: 1px solid #eeeeee;
  border-width: 1px 0;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ordersheet_payment #settle_bank .input-box {
  width: 47.87%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.ordersheet_payment #settle_bank .input-box label {
  width: 86px;
  margin: 0;
  color: var(--main-point-color);
  font-size: 16px;
  font-weight: 400;
}
.ordersheet_payment #settle_bank .input-box .settle_input {
  padding: 0 15px;
  height: 46px;
  line-height: 44px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 16px;
  color: #999999; 
  width: calc(100% - 86px);
}
.ordersheet_payment #settle_bank .input-box .settle_input:focus{
  border-color: var(--main-point-line-color-hover);
}
.ordersheet_payment #settle_bank .input-box select {
  appearance: none;
}
.ordersheet_payment #settle_bank .input-box span.arrow {
  width: 6px;
  height: 5px;
  display: block;
  position: absolute;
  top: 23px;
  right: 15px;
}
.ordersheet_payment #settle_bank .input-box span.arrow::before, .ordersheet_payment #settle_bank .input-box span.arrow::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #242424;
}
.ordersheet_payment #settle_bank .input-box span.arrow::before {
  right: 4px;
  transform: rotate(45deg);
}
.ordersheet_payment #settle_bank .input-box span.arrow::after {
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .ordersheet_payment #settle_bank .input-box span.arrow {
    top: 47px;
  }
}
.ordersheet_payment_agree label {
  color: #222;
  font-size: 18px;
  font-weight: 600;
}
.ordersheet_payment_agree_desc {
  margin-top: 25px;
}
.ordersheet_payment_agree_desc a {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}
.ordersheet_payment_agree_desc a span {
  color: #999;
}
.ordersheet_payment_agree_desc a img {
  margin-left: 18px;
  height: 13px;
  position: relative; 
  top: -2px;
  display: inline-block;
}
@media (max-width: 991px){
    .ordersheet_payment_agree_desc a img{
        top: 5px;
        position: absolute;
        height: 11px;
    }
}
.ordersheet_payment_agree_li {
  margin-top: 15px;
}
.ordersheet_payment_agree_li li {
  font-size: 13px;
  color: #999;
  line-height: 23px;
}
@media (max-width: 480px) {
  .ordersheet_payment_agree {
    position: relative;
    padding: 40px 0 0;
  }
  .ordersheet_payment_agree::before {
    content: "";
    display: block;
    width: 110%;
    height: 10px;
    background: #f9f9fa;
    position: absolute;
    left: -15px;
    top: 0;
  }
}
@media (max-width: 991px) {
  .ordersheet_payment_con {
    margin: 0;
  }
  .ordersheet_payment_con > span {
    width: calc(50% - 5px);
  }
  .ordersheet_payment_con > span:nth-child(2n-1) {
    margin-left: 0;
  }
  .ordersheet_payment_con > span:nth-child(2n) {
    margin-right: 0;
  }
  .ordersheet_payment_con > span input[type=radio] + label {
    width: 100%;
    min-width: initial;
    border-radius: 2.5px;
  }
  .ordersheet_payment #settle_bank {
    flex-direction: column;
    border-bottom: none;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .ordersheet_payment #settle_bank .input-box {
    width: 100%;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .ordersheet_payment #settle_bank .input-box:last-child {
    margin-bottom: 0;
  }
  .ordersheet_payment #settle_bank .input-box label {
    width: 100%;
  }
  .ordersheet_payment #settle_bank .input-box .settle_input {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .ordersheet_payment_con > span input[type=radio] + label {
    height: 45px;
    line-height: 43px;
    font-size: 15px;
  }
  .ordersheet_payment_con > span input[type=radio] + label .icon_pay {
    padding: 0 6px;
    height: 18px;
    line-height: 15px;
    font-size: 10px;
  }
  .ordersheet_payment_con > span input[type=radio] + label .icon_pay img {
    height: 8px;
    margin-right: 3px;
  }
  .ordersheet_payment_con > span input[type=radio] + label .icon_pay.kakao {
    left: 50px;
  }
  .ordersheet_payment #settle_bank .input-box label {
    width: 100%;
    font-size: 16px;
  }
  .ordersheet_payment #settle_bank .input-box .settle_input {
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    border-radius: 2.5px;
  }
  .ordersheet_payment_agree_desc {
    margin-top: 20px;
  }
  .ordersheet_payment_agree_desc a {
    display: block;
    font-size: 13px;
    width: 100%;
    position: relative;
  }
  .ordersheet_payment_agree_desc a img {
    text-align: right;
    position: absolute;
    top: 0;
    right: 0;
  }
  .ordersheet_payment_agree_li li {
    font-size: 11px;
    line-height: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .ordersheet_payment_agree_li li span {
    width: 8px;
    text-align: left;
  }
}

.ordersheet_proof_of_payment .proof_of_payment_tab{
  margin: 0 -7.5px;
}
.ordersheet_proof_of_payment .proof_of_payment_tab > span {
  position: relative;
  margin: 25px 5px;
  width: calc(33.1% - 10px);
  display: inline-block;
}
.ordersheet_proof_of_payment .proof_of_payment_tab > span input[type=radio] {
  display: none;
}
.ordersheet_proof_of_payment .proof_of_payment_tab > span input[type=radio] + label {
  display: inline-block;
  padding: 0 15px;
  text-align: center;
  position: relative;
  min-width: 180px;
  width: 100%;
  border: 1px solid #d6d6d6;
  height: 55px;
  line-height: 53px;
  border-radius: 5px;
  color: #222;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
}
.ordersheet_proof_of_payment .proof_of_payment_tab > span input[type=radio]:checked + label {
  background: var(--main-point-btn-bg-color-hover);
  border-color: var(--main-point-btn-bg-color-hover);
  color: #fff;
  font-weight: 500;
}
.ordersheet_proof_of_payment .proof_of_payment_cont{
  padding-top: 5px;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax{
    padding-bottom: 15px;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row{position: relative; background-color: #f9f9f9; border-radius: 10px; padding: 30px;}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row + .proof_tax_row{margin-top: 20px;}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row .pr_tax{display: flex; z-index: 1; align-items: center; justify-content: flex-end; gap: 7px; position: absolute; top: 20px; right: 30px;}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row #proof_tax_add{display: block; width: 26px; height: 26px; background-color: var(--main-point-color-hover); border-radius: 50%; position: relative;}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row #proof_tax_add::before,.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row #proof_tax_add::after{content: ''; display: block; background-color: #fff; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row #proof_tax_add::before{width: 8px; height: 2px;}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row #proof_tax_add::after{width: 2px; height: 8px;}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row .proof_tax_remove{display: block; width: 26px; height: 26px; background-color: #e9e9e9; border-radius: 50%; position: relative;}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row .proof_tax_remove::before{content: ''; display: block; background-color: #999999; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 8px; height: 2px;}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row:nth-child(1) .proof_tax_remove{display: none;}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_cash{
    padding-bottom: 15px;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .input-box{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .input-box.w620{
  align-items: flex-start;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .input-box label{
  width: 120px;
  color: #000;
  margin-bottom: 0;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_cash .input-box{
    width: 550px;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_cash .input-box label{
    width: 160px;
    white-space : nowrap;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .proof_cash .input-box .settle_input{
    width: calc(100% - 160px);
}
.ordersheet_proof_of_payment .proof_of_payment_cont .input-box input{
  width: calc(100% - 120px);
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 16px;
  color: #222;
  padding: 0 15px;
  height: 45px;
  line-height: 45px;
  background-color: #fff;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .input-box .ordersheet_write_addr input{
  width: 100%;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .input-box input::placeholder {
  color: #999999;
  line-height: 45px;
}
.ordersheet_proof_of_payment .proof_of_payment_cont .input-box input:focus {
  color: var(--main-point-color-hover);
  border-color: var(--main-point-color-hover);
}
.ordersheet_payment .proof_cash .input-box .settle_input {
  padding: 0 15px;
  height: 46px;
  line-height: 44px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 16px;
  color: #999999; 
  width: calc(100% - 120px);
}
.ordersheet_payment .proof_cash .input-box select {
  appearance: none;
}
.ordersheet_payment .proof_cash .input-box span.arrow {
  width: 6px;
  height: 5px;
  display: block;
  position: absolute;
  top: 23px;
  right: 15px;
}
.ordersheet_payment .proof_cash .input-box span.arrow::before, .ordersheet_payment .proof_cash .input-box span.arrow::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #242424;
}
.ordersheet_payment .proof_cash .input-box span.arrow::before {
  right: 4px;
  transform: rotate(45deg);
}
.ordersheet_payment .proof_cash .input-box span.arrow::after {
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .ordersheet_proof_of_payment{
    position: relative;
    padding-top: 40px;
    /* margin-top: 30px; */
  }
  .ordersheet_proof_of_payment::before{
    content: '';
    display: block;
    width: 110%;
    height: 10px;
    background: #f9f9fa;
    position: absolute;
    left: -15px;
    top: 0;
  }
  .ordersheet_proof_of_payment .proof_of_payment_tab{
    margin: 0 -5px 0;
    padding-top: 25px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_tab > span{
    width: calc(50% - 12px);
    margin: 5px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_tab > span input[type=radio] + label{
    border-radius: 2.5px;
    min-width: initial;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont{
    padding-top: 15px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row{
    padding: 40px 15px 15px;
    border-radius: 2.5px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row .pr_tax{
    top: 15px;
    right: 15px;
    gap: 6px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row #proof_tax_add{
    width: 25px;
    height: 25px;
    background-color: #7145e4;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row #proof_tax_add::before{
    width: 9px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row #proof_tax_add::after{
    height: 9px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .proof_tax .proof_tax_row .proof_tax_remove{
    width: 25px;
    height: 25px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont > div{
    border-top: 1px solid #e7e7e7;
    padding-top: 20px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .input-box{
    width: 100%;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .input-box.mob_mar_top{
    margin-top: -7px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .input-box.mob_mar_bot{
    margin: 0;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .proof_cash .input-box{
    width: 100%;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .input-box label{
    width: 100%;
    margin-bottom: 10px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .proof_cash .input-box label{
    width: 100%;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .input-box input{
    width: 100%;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .proof_cash .input-box .settle_input{
    width: 100%;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .input-box input{    
    border-radius: 2.5px;
  }
  .ordersheet_payment .proof_cash .input-box .settle_input{
    width: 100%;    
    border-radius: 2.5px;
  }
  .ordersheet_payment .proof_cash .input-box span.arrow {
    display: none;
  }
}
@media (max-width: 480px) {
  .ordersheet_proof_of_payment .proof_of_payment_tab > span input[type=radio] + label{
    font-size: 15px;
    line-height: 41px;
    height: 43px;
  }
  .ordersheet_payment .proof_cash .input-box .settle_input{
    font-size: 14px;
    height: 40px;
    line-height: 38px;
  }
  .ordersheet_proof_of_payment .proof_of_payment_cont .input-box input{
    font-size: 14px;
    height: 40px;
    line-height: 38px;
  }
}


.regbtn-wrap {
  margin-top: 55px;
}
.regbtn-wrap #display_pay_button {
  text-align: center;
}
.regbtn-wrap #display_pay_button input {
  height: 60px;
  line-height: 58px;
  background: var(--main-point-btn-bg-color-hover);
  border-radius: 5px !important;
  min-width: 240px;
  width: auto;
  float: none;
  font-size: 17px;
  font-weight: 500;
  margin-right: 0;
  margin-left: 38%;
}
.regbtn-wrap #display_pay_button a {
  display: none !important;
}
@media (max-width: 991px) {
  .regbtn-wrap {
    margin-top: 35px;
  }
  /* 2024-09-03 (주)파이브센스_FIVESENSES.Corp. */
  .regbtn-wrap #show_req_btn{
    width: 100%;
  }
  /* 2024-09-04 (주)파이브센스_FIVESENSES.Corp. */
  .regbtn-wrap #show_pay_btn{
    width: 100%;
  }
  /* 2024-08-01 (주)파이브센스_FIVESENSES.Corp. */
  .regbtn-wrap #display_pay_button{
    padding-top: 0;
    padding-bottom: 0;
  }
  .regbtn-wrap #display_pay_button input {
    margin-left: 0;
    height: 45px !important;
    line-height: 45px !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 2.5px !important;
    padding: 0 10px !important;
  }
  .regbtn-wrap.fixed {
    width: 100%;
    background: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    margin-top: 0;
    padding: 10px 15px;
    border: 1px solid #ebebeb;
  }
  .regbtn-wrap.fixed #display_pay_button input {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .regbtn-wrap #display_pay_button input {
    height: 46px;
    line-height: 44px;
  }
}

.order_pop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 478px;
  padding: 40px 10px 30px 30px;
  background: #fff;
  border-radius: 20px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  scrollbar-3dLight-Color: #fff;
  scrollbar-base-color: #fff;
  scrollbar-Face-Color: #fff;
  scrollbar-Track-Color: #f0f0f0;
  scrollbar-DarkShadow-Color: #fff;
  scrollbar-Highlight-Color: #fff;
}
.order_pop.shippingChange2_pop{
    min-height: 603px;
}
.order_pop.shippingChange2_pop > .order_pop_btn{
    margin-top: 100px;
}
@media (max-width: 991px){
    .order_pop.shippingChange2_pop{
        min-height: auto;
    }
    .order_pop.shippingChange2_pop > .order_pop_btn{
        margin-top: 30px;
    }
}
.order_pop.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 480px) {
  .order_pop {
    width: calc(100% - 30px);
    padding: 25px 5px 15px 15px;
    border-radius: 10px;
  }
}
.order_pop * {
  scrollbar-3dLight-Color: #fff;
  scrollbar-base-color: #fff;
  scrollbar-Face-Color: #fff;
  scrollbar-Track-Color: #f0f0f0;
  scrollbar-DarkShadow-Color: #fff;
  scrollbar-Highlight-Color: #fff;
}
.order_pop ::-webkit-scrollbar {
  background: #fff;
  width: 6px;
  float: left;
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
}
.order_pop *::-webkit-scrollbar {
  background: #fff;
  width: 6px;
  float: left;
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
}
.order_pop ::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.order_pop *::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.order_pop ::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.order_pop *::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.order_pop ::-webkit-scrollbar-button {
  background: transparent;
  color: #fff;
}
.order_pop *::-webkit-scrollbar-button {
  background: transparent;
  color: #fff;
}
.order_pop ::-webkit-scrollbar-track {
  background: #fff;
}
.order_pop *::-webkit-scrollbar-track {
  background: #fff;
}
.order_pop ::-webkit-scrollbar-thumb {
  height: 50px;
  width: 5px;
  background: #eef1f4;
  border-radius: 10px;
}
.order_pop *::-webkit-scrollbar-thumb {
  height: 50px;
  width: 5px;
  background: #eef1f4;
  border-radius: 10px;
}
.order_pop > .order_pop_title {
  margin-bottom: 40px;
  font-size: 22px;
  color: var(--main-point-color);
  font-weight: 500;
  position: relative;
  line-height: 1em;
}
.order_pop > .order_pop_title .order_modify {
  position: absolute;
  right: 30px;
  top: 0;
  font-size: 16px;
  color: #222;
  font-weight: 300;
}
.order_pop > .order_pop_title .order_modify span {
  display: inline-block;
  padding-left: 10px;
}
@media (max-width: 480px) {
  .order_pop > .order_pop_title {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .order_pop > .order_pop_title .order_modify {
    font-size: 12px;
    right: 15px;
    top: 1px;
  }
}
.order_pop > .order_pop_content {
  padding-right: 10px;
}
.order_pop > .order_pop_btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
@media (max-width: 480px) {
  .order_pop > .order_pop_btn {
    margin-top: 30px;
  }
}
.order_pop > .order_pop_btn a {
  display: block;
  width: calc(50% - 5px);
  height: 50px;
  line-height: 48px;
  border-radius: 5px;
  border: 1px solid #b1b1b1;
  text-align: center;
  font-size: 16px;
  color: #333333;
  margin-right: 10px;
}
@media (max-width: 480px) {
  .order_pop > .order_pop_btn a {
    height: 40px;
    line-height: 38px;
    border-radius: 2.5px;
    font-size: 13px;
  }
}
.order_pop > .order_pop_btn a.order_pop_confirm {
  background: var(--main-point-btn-bg-color-hover);
  border-color: var(--main-point-btn-line-color-hover);
  color: #fff;
}
.order_pop > .order_pop_btn a:last-child {
  margin-right: 0;
}
.order_pop.shippingChange_pop .order_pop_btn {
  margin-top: 96px;
}
@media (max-width: 480px) {
  .order_pop.shippingChange_pop .order_pop_btn {
    margin-top: 51px;
  }
}
.order_pop .shipping_pop_content {
  overflow: hidden;
  overflow-y: auto;
  max-height: 384px;
}
@media (max-width: 480px) {
  .order_pop .shipping_pop_content {
    max-height: 40vh;
  }
}
.order_pop .shipping_pop_content .no_data{
    padding: 150px 0; 
    text-align: center; 
    font-size: 16px; 
    color: #666666;
}
.order_pop .shipping_pop_content .no_data img{
    display: block;
    margin: 0 auto 15px;
}
@media (max-width: 991px){
    .order_pop .shipping_pop_content .no_data{
        font-size: 12.5px; 
        padding: 113px 0;
    }
    .order_pop .shipping_pop_content .no_data img{
        width: 41px;
        height: 41px;
    }
}
.order_pop .shipping_pop_content .shipping_cont {
  margin-bottom: 40px;
}
.order_pop .shipping_pop_content .shipping_cont:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .order_pop .shipping_pop_content .shipping_cont {
    margin-bottom: 25px;
  }
}
.order_pop .shipping_pop_content .shipping_cont .shipping_btn {
  margin-left: 32px;
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.order_pop .shipping_pop_content .shipping_cont .shipping_btn a {
  display: block;
  width: 48px;
  height: 27px;
  line-height: 28px;
  background: #eeeeee;
  border-radius: 5px;
  color: #999999;
  font-size: 15px;
  text-align: center;
  margin-right: 7px;
  transition: all 0.2s ease;
}
.order_pop .shipping_pop_content .shipping_cont .shipping_btn a:hover {
  background: var(--main-point-btn-bg-color-hover);
  color: #fff;
}
.order_pop .shipping_pop_content .shipping_cont .shipping_btn a:last-child {
  margin-right: 0;
}
@media (max-width: 480px) {
  .order_pop .shipping_pop_content .shipping_cont .shipping_btn {
    margin-top: 10px;
  }
  .order_pop .shipping_pop_content .shipping_cont .shipping_btn a {
    width: 38px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    margin-right: 6px;
  }
}
.order_pop .shipping_pop_content label {
  align-items: flex-start;
  margin-right: 10px;
}
.order_pop .shipping_pop_content label .circle {
  top: 2px;
}
@media (max-width: 480px) {
  .order_pop .shipping_pop_content label .circle {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }
  .order_pop .shipping_pop_content label .circle::before {
    width: 2px;
    height: 6px;
    border-radius: 3px;
    top: 9px;
    left: 6px;
  }
  .order_pop .shipping_pop_content label .circle::after {
    width: 2px;
    height: 10px;
    border-radius: 5px;
    top: 5px;
    left: 11px;
  }
}
.order_pop .shipping_pop_content .shipping_right {
  width: calc(100% - 32px);
}
.order_pop .shipping_pop_content .shipping_right .shipping_name {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.order_pop .shipping_pop_content .shipping_right .shipping_name .name {
  font-size: 23px;
  color: #333333;
  font-weight: 500;
  line-height: 1.2em;
}
.order_pop .shipping_pop_content .shipping_right .shipping_name .sticker {
  font-size: 13px;
  color: var(--main-point-color-hover);
  border: 1px solid var(--main-point-line-color-hover);
  padding: 0 5.8px;
  height: 22px;
  line-height: 20px;
  border-radius: 11px;
  margin-left: 8px;
}
@media (max-width: 480px) {
  .order_pop .shipping_pop_content .shipping_right .shipping_name {
    margin-bottom: 15px;
  }
  .order_pop .shipping_pop_content .shipping_right .shipping_name .name {
    font-size: 18px;
  }
  .order_pop .shipping_pop_content .shipping_right .shipping_name .sticker {
    font-size: 10px;
    padding: 0 8px;
    height: 18px;
    line-height: 16px;
    position: relative;
    top: 2px;
  }
}
.order_pop .shipping_pop_content .shipping_right .shipping_tel_email {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #aaaaaa;
  margin-bottom: 15px;
}
.order_pop .shipping_pop_content .shipping_right .shipping_tel_email div {
  margin-right: 22px;
  position: relative;
}
.order_pop .shipping_pop_content .shipping_right .shipping_tel_email div::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #aaaaaa;
  position: absolute;
  top: 2px;
  right: -12px;
}
.order_pop .shipping_pop_content .shipping_right .shipping_tel_email div:last-child {
  margin-right: 0;
  line-height: 1em;
}
.order_pop .shipping_pop_content .shipping_right .shipping_tel_email div:last-child::after {
  display: none;
}
@media (max-width: 480px) {
  .order_pop .shipping_pop_content .shipping_right .shipping_tel_email {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .order_pop .shipping_pop_content .shipping_right .shipping_tel_email div {
    margin-right: 18px;
  }
  .order_pop .shipping_pop_content .shipping_right .shipping_tel_email div::after {
    height: 12px;
    right: -10px;
  }
}
.order_pop .shipping_pop_content .shipping_right .shipping_addr {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .order_pop .shipping_pop_content .shipping_right .shipping_addr {
    font-size: 12px;
  }
}
.order_pop .shipping_pop_content .no_address {
  min-height: 363px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order_pop .shipping_pop_content .no_address p {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}
@media (max-width: 480px) {
  .order_pop .shipping_pop_content .no_address {
    min-height: 271px;
  }
  .order_pop .shipping_pop_content .no_address p {
    font-size: 13px;
  }
}
.order_pop .shippingChange_pop_content {
  overflow: hidden;
  overflow-y: auto;
  max-height: 400px;
}
@media (max-width: 480px) {
  .order_pop .shippingChange_pop_content {
    max-height: 250px;
  }
}
.order_pop .shippingChange_pop_content .write_cont {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.order_pop .shippingChange_pop_content .write_cont.write_addr_cont {
  align-items: flex-start;
}
.order_pop .shippingChange_pop_content .write_cont.write_addr_cont .write_label {
  position: relative;
  top: 15px;
}
@media (max-width: 480px) {
  .order_pop .shippingChange_pop_content .write_cont.write_addr_cont .write_label {
    top: auto;
  }
}
.order_pop .shippingChange_pop_content .write_cont:last-child {
  margin-bottom: 0;
}
.order_pop .shippingChange_pop_content .write_cont.check_write_cont {
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .order_pop .shippingChange_pop_content .write_cont {
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
  .order_pop .shippingChange_pop_content .write_cont:last-child {
    margin-bottom: 0;
  }
}
.order_pop .shippingChange_pop_content .write_cont .write_label {
  width: 90px;
  font-size: 16px;
  color: #444444;
  font-weight: 300;
}
@media (max-width: 480px) {
  .order_pop .shippingChange_pop_content .write_cont .write_label {
    /* width: 100%; */
    font-size: 15px;
    margin-bottom: 10px;
    font-size: 13px;
    width: 70px;
  }
}
.order_pop .shippingChange_pop_content .write_cont .write_right {
  width: calc(100% - 90px);
}
@media (max-width: 480px) {
  .order_pop .shippingChange_pop_content .write_cont .write_right {
    /* width: 100%; */
    width: calc(100% - 70px);
  }
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_input {
  width: 100%;
  height: 45px;
  line-height: 43px;
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  font-size: 16px;
  font-weight: 300;
  color: #222;
  padding: 0 15px;
}
@media (max-width: 480px) {
  .order_pop .shippingChange_pop_content .write_cont .write_right .write_input {
    height: 40px;
    line-height: 38px;
    font-size: 13px;
    border-radius: 3px;
  }
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_input::placeholder {
  color: #999999;
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_input:focus {
  color: var(--main-point-color-hover);
  border-color: var(--main-point-line-color-hover);
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_error {
  font-size: 13px;
  color: #ff0000;
  font-weight: 300;
  margin-top: 10px;
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr {
  display: flex;
  margin-bottom: 8px;
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.first_addr .write_input {
  width: calc(100% - 130px);
}
@media (max-width: 480px) {
  .order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.first_addr .write_input {
    width: calc(100% - 85px);
  }
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.first_addr input[type=button] {
  width: 120px;
  height: 45px;
  line-height: 43px;
  background: var(--main-point-btn-bg-color-hover);
  border-color: var(--main-point-btn-line-color-hover);
  font-size: 16px;
  font-weight: 300;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  display: block;
  cursor: pointer;
  margin-left: 10px;
}
@media (max-width: 480px) {
  .order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.first_addr input[type=button] {
    width: 80px;
    margin-left: 5px;
    height: 40px;
    line-height: 38px;
    font-size: 12px;
    border-radius: 3px;
  }
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.third_addr {
  margin-bottom: 0;
}
.order_pop .shippingChange_pop_content .write_cont .write_right .write_addr.fourth_addr {
  display: none;
}

.order_pop_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.order_pop_bg.active {
  opacity: 1;
  visibility: visible;
}

#od_coupon_frm .order_pop, #sc_coupon_frm .order_pop {
  opacity: 1;
  visibility: visible;
  position: static;
  transform: translate(0, 0) rotate(0);
}
#od_coupon_frm .order_pop .od_coupon_ul, #sc_coupon_frm .order_pop .od_coupon_ul {
  width: 100%;
  height: auto;
  max-height: 220px;
}
#od_coupon_frm .order_pop .od_coupon_ul td, #sc_coupon_frm .order_pop .od_coupon_ul td {
  padding-bottom: 30px;
}

.od_coupon_tt {
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 40px;
}
.od_coupon_ul {
  height: 220px;
  overflow-y: scroll;
}
@media (max-width: 480px) {
  .od_coupon_ul {
    height: 180px;
  }
}
.od_coupon_li {
  margin-bottom: 30px;
  position: relative;
}
.od_coupon_li.no_coupon {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
@media (max-width: 480px) {
  .od_coupon_li.no_coupon {
    font-size: 12px;
  }
}
.od_coupon_li.radio_disabled .od_coupon_label {
  cursor: initial;
}
.od_coupon_li.radio_disabled .od_coupon_label .od_coupon_info_dc {
  color: #e1e1e1;
}
.od_coupon_li.radio_disabled .od_coupon_label .od_coupon_info_tt {
  color: #e1e1e1;
}
.od_coupon_li input[type=radio] {
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
}
.od_coupon_li input + .od_coupon_label {
  position: relative;
  cursor: pointer;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .od_coupon_li input + .od_coupon_label .circle {
    width: 21px;
    height: 21px;
  }
  .od_coupon_li input + .od_coupon_label .circle:before {
    width: 2px;
    height: 6px;
    top: 8px;
    left: 6px;
  }
  .od_coupon_li input + .od_coupon_label .circle:after {
    width: 2px;
    height: 9px;
    top: 5.5px;
    left: 10.2px;
  }
}
.od_coupon_li input + .od_coupon_label .od_coupon_info {
  line-height: 22px;
}
.od_coupon_li input + .od_coupon_label .od_coupon_info_dc {
  font-size: 23px;
  color: #333;
  font-weight: 500;
}
@media (max-width: 480px) {
  .od_coupon_li input + .od_coupon_label .od_coupon_info_dc {
    font-size: 18px;
  }
}
.od_coupon_li input + .od_coupon_label .od_coupon_info_tt {
  margin-top: 14px;
  font-size: 16px;
  color: #666;
}
@media (max-width: 480px) {
  .od_coupon_li input + .od_coupon_label .od_coupon_info_tt {
    font-size: 12px;
    margin-top: 9px;
  }
}
.od_coupon_li button {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #d6d6d6;
  background: url(../img/icon_check_off.png) no-repeat center center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.od_coupon_li button + .od_coupon_label {
  position: relative;
  padding-left: 30px;
}
.od_coupon_li button + .od_coupon_label .od_coupon_info {
  line-height: 22px;
}
.od_coupon_li button + .od_coupon_label .od_coupon_info_dc {
  font-size: 23px;
  color: #333;
  font-weight: 500;
}
.od_coupon_li button + .od_coupon_label .od_coupon_info_tt {
  margin-top: 14px;
  font-size: 16px;
  color: #666;
}
.od_coupon_btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.od_coupon_btn li {
  width: calc(50% - 5px);
  border: 1px solid #b1b1b1;
  height: 50px;
  line-height: 48px;
  text-align: center;
  border-radius: 25px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.od_coupon_btn li.main {
  background: var(--main-point-btn-bg-color-hover);
  color: #fff;
  border-color: var(--main-point-btn-bg-color-hover);
}
.od_coupon_btn li button {
  display: block;
  border: none;
  background: none;
  color: inherit;
  width: 100%;
}
@media (max-width: 480px) {
  .od_coupon_btn li {
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
}

.shop_agree_pop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  padding: 40px 10px 30px 30px;
  background: #fff;
  border-radius: 20px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  scrollbar-3dLight-Color: #fff;
  scrollbar-base-color: #fff;
  scrollbar-Face-Color: #fff;
  scrollbar-Track-Color: #f0f0f0;
  scrollbar-DarkShadow-Color: #fff;
  scrollbar-Highlight-Color: #fff;
}
.shop_agree_pop.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 480px) {
  .shop_agree_pop {
    width: calc(100% - 30px);
    padding: 25px 5px 15px 15px;
    border-radius: 10px;
  }
}
.shop_agree_pop * {
  scrollbar-3dLight-Color: #fff;
  scrollbar-base-color: #fff;
  scrollbar-Face-Color: #fff;
  scrollbar-Track-Color: #f0f0f0;
  scrollbar-DarkShadow-Color: #fff;
  scrollbar-Highlight-Color: #fff;
}
.shop_agree_pop ::-webkit-scrollbar {
  background: #fff;
  width: 6px;
  float: left;
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
}
.shop_agree_pop *::-webkit-scrollbar {
  background: #fff;
  width: 6px;
  float: left;
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
}
.shop_agree_pop ::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.shop_agree_pop *::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.shop_agree_pop ::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.shop_agree_pop *::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.shop_agree_pop ::-webkit-scrollbar-button {
  background: transparent;
  color: #fff;
}
.shop_agree_pop *::-webkit-scrollbar-button {
  background: transparent;
  color: #fff;
}
.shop_agree_pop ::-webkit-scrollbar-track {
  background: #fff;
}
.shop_agree_pop *::-webkit-scrollbar-track {
  background: #fff;
}
.shop_agree_pop ::-webkit-scrollbar-thumb {
  height: 50px;
  width: 5px;
  background: #eef1f4;
  border-radius: 10px;
}
.shop_agree_pop *::-webkit-scrollbar-thumb {
  height: 50px;
  width: 5px;
  background: #eef1f4;
  border-radius: 10px;
}
.shop_agree_pop > .shop_agree_pop_title {
  margin-bottom: 40px;
  font-size: 22px;
  color: #1b1b1b;
  font-weight: 500;
  position: relative;
}
@media (max-width: 480px) {
  .shop_agree_pop > .shop_agree_pop_title {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.shop_agree_pop > .shop_agree_pop_content {
  padding-right: 10px;
  overflow: hidden;
  overflow-y: auto;
  max-height: 365px;
}
.shop_agree_pop > .shop_agree_pop_btn {
  margin-top: 40px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .shop_agree_pop > .shop_agree_pop_btn {
    margin-top: 30px;
  }
}
.shop_agree_pop > .shop_agree_pop_btn a {
  display: block;
  width: calc(50% - 5px);
  height: 50px;
  line-height: 48px;
  border-radius: 25px;
  background: var(--main-point-btn-bg-color-hover);
  text-align: center;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 480px) {
  .shop_agree_pop > .shop_agree_pop_btn a {
    height: 40px;
    line-height: 38px;
    border-radius: 20px;
    font-size: 13px;
  }
}

.shop_agree_popup_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.shop_agree_popup_bg.active {
  opacity: 1;
  visibility: visible;
}

/* 
마이페이지 대시보드 전체 노출을 위해 따로 뺌
마이페이지 대시보드 html > skin > member > basic > mypage_dashboard.php
*/
.mypage_dashboard {
  border: 0;
  background: #fafafa;
  margin-bottom: 40px;
  padding: 30px;
  display: flex;
}

.mypage_dashboard.myinfo-wrap {
    overflow: visible;
    margin-bottom: 0;
}
.mypage_dashboard .mypage_dashboard_parent {
    width: 100%;
}
.mypage_dashboard .container_fix {
  display: flex;
}
.mypage_dashboard .quart_box {
  width: 19.231%;
  min-height: 150px;
  border-right: 0;
  background: #fff;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
}
.mypage_dashboard .quart_box:first-child {
  width: 39%;
}
.mypage_dashboard .quart_box .more-btn a {
  font-size: 15px;
  color: var(--main-point-color);
  font-weight: 400;
}
.mypage_dashboard .quart_box .more-btn a .arrow_box {
  display: inline-block;
  width: 7px;
  height: 13px;
  background-image: url(../img/arrow_box.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 12px;
}
.mypage_dashboard .quart_box .quart-description span {
  font-size: 20px;
  color: var(--main-point-color-hover);
  font-weight: 500;
  margin-top: 20px;
  display: block;
}
.mypage_dashboard .quart_box .left_info {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.mypage_dashboard .quart_box .left_info .icon_box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.mypage_dashboard .quart_box .left_info .icon_box .member_icon {
  display: block;
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}
.mypage_dashboard .quart_box .left_info .icon_box .member_icon img {
  display: block;
  width: 100%;
}
.mypage_dashboard .quart_box .left_info .text_box {
  display: flex;
  flex-direction: column;
}
.mypage_dashboard .quart_box .left_info .text_box .name_box {
  font-size: 20px;
  color: var(--main-point-color);
  font-weight: 400;
}
.mypage_dashboard .quart_box .left_info .text_box .level_text {
  font-size: 14px;
  color: #777;
  font-weight: 400;
  margin-top: 10px;
}
.mypage_dashboard .quart_box .right_info {
  position: relative;
}
.mypage_dashboard .quart_box .right_info a {
  display: block;
  width: 78px;
  padding: 6px 5px;
  border: 1px solid #d6d6d6;
  border-radius: 14px;
  font-size: 14px;
  color: #999;
  font-weight: 400;
  text-align: center;
  transition: 0.1s;
}
.mypage_dashboard .quart_box .right_info a:hover {
  border-color: var(--main-point-btn-line-color-hover);
  color: var(--main-point-btn-line-color-hover);
}
.mypage_dashboard .quart_box .right_info .edit_list_wrap {
  display: none;
}
.mypage_dashboard .quart_box .right_info .edit_list {
  width: 170px;
  position: absolute;
  z-index: 5;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
}
.mypage_dashboard .quart_box .right_info .edit_list::before {
  content: "";
  display: block;
  border: 16px solid #fff;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
  border-left: 0;
  border-bottom: 0;
}
.mypage_dashboard .quart_box .right_info .edit_list li a {
  font-size: 14px;
  color: var(--main-point-color);
  font-weight: 400;
  height: auto;
  line-height: 50px;
  border: 0;
  border-radius: 0;
  text-align: center;
  display: block;
  width: 100%;
}
.mypage_dashboard .quart_box .right_info .edit_list li a:hover {
  background: var(--main-point-bg-soft-color);
}
.mypage_dashboard .quart_info {
  flex-direction: unset;
  align-items: center;
}
.mypage_dashboard .quart_box + .quart_box {
  margin-left: 1.1023%;
}
@media (max-width: 991px) {
  .mypage_dashboard {
    background: #fff;
    padding: 0;
    margin-bottom: 0;
  }
  .mypage_dashboard .quart_box {
    width: 100%;
    padding: 35px 0;
    min-height: auto;
  }
  .mypage_dashboard .quart_box:first-child {
    width: 100%;
  }
  .mypage_dashboard .quart_box .left_info .icon_box {
    width: 90px;
    height: 90px;
    margin-right: 30px;
  }
  .mypage_dashboard .quart_box .left_info .icon_box .member_icon {
    display: block;
    width: 100%;
    height: 100%;
    background: #f0f0f0;
  }
  .mypage_dashboard .quart_box .left_info .text_box {
    display: flex;
    flex-direction: column;
  }
  .mypage_dashboard .quart_box .left_info .text_box .name_box {
    font-size: 20px;
    /* color: var(--main-point-color); */
    font-weight: 400;
  }
  .mypage_dashboard .quart_box .left_info .text_box .level_text {
    font-size: 14px;
    color: #777;
    font-weight: 400;
    margin-top: 10px;
  }
  .mypage_dashboard .quart_box .right_info {
    padding-left: 10px;
    padding-top: 10px;
  }
  .mypage_dashboard .quart_box .right_info a {
    width: 70px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    padding: 0 5px;
  }
  .mypage_dashboard .quart_box .right_info .edit_list_wrap {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
  }
  .mypage_dashboard .quart_box .right_info .edit_list {
    position: absolute;
    top: unset;
    bottom: 60px;
    left: 0;
    z-index: 10;
    box-shadow: 0 0 0;
    transform: none;
    width: 100%;
    background: transparent;
    padding: 0 15px;
  }
  .mypage_dashboard .quart_box .right_info .edit_list::before {
    display: none;
  }
  .mypage_dashboard .quart_box .right_info .edit_list li a {
    display: block;
    background: #dcdcdc;
    line-height: 60px;
    font-size: 18px;
    color: #777;
    font-weight: 400;
    text-align: center;
    border-top: 1px solid #bababa;
  }
  .mypage_dashboard .quart_box .right_info .edit_list li a:hover {
    color: #222;
    background: #e7e7e7;
  }
  .mypage_dashboard .quart_box .right_info .edit_list li:first-child a {
    border-top: 0;
    border-radius: 10px 10px 0 0;
  }
  .mypage_dashboard .quart_box .right_info .edit_list li:nth-child(4) a {
    border-radius: 0 0 10px 10px;
  }
  .mypage_dashboard .quart_box .right_info .edit_list .cancel_btn {
    display: block;
    background: #fff;
    line-height: 60px;
    font-size: 18px;
    color: #1b1b1b;
    font-weight: 500;
    border-radius: 15px;
    text-align: center;
    margin-top: 15px;
    overflow: hidden;
  }
  .mypage_dashboard .quart_box .right_info .edit_list .cancel_btn:hover {
    background: #fff;
  }
  .mypage_dashboard .quart_box + .quart_box {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .mypage_dashboard .quart_box {
    padding: 28px 0;
  }
  .mypage_dashboard .quart_box .left_info .icon_box {
    width: 80px;
    height: 80px;
    margin-right: 25px;
  }
  .mypage_dashboard .quart_box .left_info .text_box .name_box {
    font-size: 15px;
  }
  .mypage_dashboard .quart_box .left_info .text_box .level_text {
    font-size: 13px;
  }
  .mypage_dashboard .quart_box .right_info .edit_list {
    position: absolute;
    top: unset;
    bottom: 55px;
    left: 0;
    z-index: 10;
    box-shadow: 0 0 0;
    transform: none;
  }
  .mypage_dashboard .quart_box .right_info .edit_list li a {
    font-size: 16px;
    line-height: 49px;
  }
  .mypage_dashboard .quart_box .right_info .edit_list .cancel_btn {
    font-size: 16px;
    line-height: 49px;
    border-radius: 2.5px;
    margin-top: 6px;
  }
}

.profil_wrap {
  display: none;
}
.profil_wrap.reg_profile {
  display: block !important;
}
.profil_wrap .profil_container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 620px;
  max-width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
}
.profil_wrap .profil_close {
  width: 100%;
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media (max-width:991px){
    .profil_wrap .profil_close{
        margin-bottom: 0;
    }
}
.profil_wrap .profil_close .profil_close_btn {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  flex-grow: 1;
}
@media (max-width:991px){
    .profil_wrap .profil_close .profil_close_btn{
        width: 15px;
        height: 15px;
    }
}
.profil_wrap .profil_close .profil_close_btn span {
  display: block;
  width: 100%;
  height: 100%;
}
.profil_wrap .profil_close .profil_close_btn span::before {
  content: "";
  display: block;
  width: 1px;
  height: 21px;
  background: #cfcfcf;
  position: absolute;
  top: 0;
  right: 10px;
  transform: rotate(-45deg);
}
.profil_wrap .profil_close .profil_close_btn span::after {
  content: "";
  display: block;
  width: 1px;
  height: 21px;
  background: #cfcfcf;
  position: absolute;
  top: 0;
  right: 10px;
  transform: rotate(45deg);
}
@media (max-width:991px){
    .profil_wrap .profil_close .profil_close_btn span::before{
        height: 17.5px;
        width: 2px;
    }
    .profil_wrap .profil_close .profil_close_btn span::after{
        height: 17.5px;
        width: 2px;
    }
}
.profil_wrap .profil_box .title h2 {
  font-size: 30px;
  color: #1b1b1b;
  font-weight: 600;
}
.profil_wrap .profil_box .profil_cont .profil_img {
  position: relative;
  margin: 40px auto 60px;
  width: 220px;
}
.profil_wrap .profil_box .profil_cont .profil_img .img_container {
  width: 100%;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
}
.profil_wrap .profil_box .profil_cont .profil_img .img_container img {
  display: block;
  width: 100%;
}
.profil_wrap .profil_box .profil_cont .profil_img .img_file {
  position: absolute;
  bottom: 0;
  right: 0;
}
.profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file {
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
}
.profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file img {
  width: 100%;
}
.profil_wrap .profil_box .profil_cont .profil_txt {
  text-align: center;
}
.profil_wrap .profil_box .profil_cont .profil_txt p {
  font-size: 17px;
  color: #333;
  font-weight: 400;
  line-height: 32px;
}
.profil_wrap .profil_box .profil_cont .profil_btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.profil_wrap .profil_box .profil_cont .profil_btn .pbtn {
  width: 49.108%;
  height: 53px;
  line-height: 51px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  border: 0;
  border-radius: 5px;
  background: var(--main-point-btn-bg-color-hover);
  text-align: center;
}
.profil_wrap .profil_box .profil_cont .profil_btn .pbtn.profil_none {
  border: 1px solid #dcdcdc;
  color: #222;
  background: #fff;
}
.profil_wrap .profil_box .profil_cont .profil_btn .pbtn + .pbtn {
  margin-left: 1.784%;
}
@media (max-width: 991px) {
  .profil_wrap .profil_box .profil_cont .profil_btn .pbtn + .pbtn {
    margin-left: 1.56%;
  }
}
.profil_wrap .add_box {
  display: none;
  width: 170px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 82px;
}
.profil_wrap .add_box .add_ul {
  width: 170px;
  max-width: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
}
.profil_wrap .add_box .add_ul::before {
  content: "";
  display: block;
  border: 16px solid #fff;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-left: 0;
  border-bottom: 0;
}
.profil_wrap .add_box .add_ul li {
  text-align: center;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  line-height: 50px;
  position: relative;
  z-index: 2;
}
.profil_wrap .add_box .add_ul li a {
  display: block;
  width: 100%;
}
.profil_wrap .add_box .add_ul li:hover {
  background: #e8edf3;
}
.profil_wrap .add_box .add_ul li:hover a {
  color: #000;
}
.profil_wrap .add_box .add_ul .edit_li label {
  width: 100%;
  cursor: pointer;
}
.profil_wrap .add_box .add_ul .edit_li input[type=file] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}
@media (max-width: 991px) {
  .profil_wrap .profil_container {
    width: 95%;
    padding: 15px 15px 30px;
    border-radius: 10px;
  }
  .profil_wrap .profil_box .title h2 {
    font-size: 21px;
  }
  .profil_wrap .profil_box .profil_cont .profil_img {
    width: 150px;
    margin: 16px auto 30px;
  }
  .profil_wrap .profil_box .profil_cont .profil_img .img_container {
    height: 150px;
  }
  .profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file {
    width: 35px;
    height: 35px;
  }
  .profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file img {
    display: block;
    width: 100%;
  }
  .profil_wrap .profil_box .profil_cont .profil_txt p {
    font-size: 17px;
    line-height: 22px;
  }
  .profil_wrap .profil_box .profil_cont .profil_btn {
    margin-top: 30px;
  }
  .profil_wrap .profil_box .profil_cont .profil_btn .pbtn {
    height: 50px;
    line-height: 48px;
    font-size: 16px;
    border-radius: 2.5px;
  }
  .profil_wrap .add_box {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    transform: none;
    top: unset;
  }
  .profil_wrap .add_box .add_ul {
    position: absolute;
    top: unset;
    bottom: 55px;
    left: 0;
    z-index: 10;
    box-shadow: 0 0 0;
    transform: none;
    background: transparent;
    width: calc(100% - 30px);
    left: 15px;
  }
  .profil_wrap .add_box .add_ul::before {
    display: none;
  }
  .profil_wrap .add_box .add_ul li label {
    border: 1px solid #bababa;
  }
  .profil_wrap .add_box .add_ul li a {
    border: 1px solid #bababa;
    display: block;
    background: #dcdcdc;
    line-height: 60px;
    font-size: 18px;
    color: #777;
    font-weight: 400;
    text-align: center;
    border-top: 1px solid #bababa;
    border-top: 0;
  }
  .profil_wrap .add_box .add_ul li a:hover {
    color: #222;
    background: #e7e7e7;
  }
  .profil_wrap .add_box .add_ul li label {
    display: block;
    background: #dcdcdc;
    line-height: 60px;
    font-size: 18px;
    color: #777;
    font-weight: 400;
    text-align: center;
    border-top: 1px solid #bababa;
    border-top: 0;
  }
  .profil_wrap .add_box .add_ul li label:hover {
    color: #222;
    background: #e7e7e7;
  }
  .profil_wrap .add_box .add_ul li:hover {
    background: transparent;
  }
  .profil_wrap .add_box .add_ul li.edit_li {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }
  .profil_wrap .add_box .add_ul li.delete_img a {
    border-radius: 0 0 10px 10px;
  }
  .profil_wrap .add_box .add_ul .cancel_btn {
    display: block;
    background: #fff;
    line-height: 60px;
    font-size: 18px;
    color: #1b1b1b;
    font-weight: 500;
    border-radius: 15px;
    text-align: center;
    margin-top: 15px;
    overflow: hidden;
  }
  .profil_wrap .add_box .add_ul .cancel_btn:hover {
    background: #fff;
  }
}
@media (max-width: 480px) {
  .profil_wrap .profil_box .title h2 {
    font-size: 18px;
  }
  .profil_wrap .profil_box .profil_cont .profil_img {
    width: 130px;
    margin: 13px auto 30px;
  }
  .profil_wrap .profil_box .profil_cont .profil_img .img_container {
    height: 130px;
  }
  .profil_wrap .profil_box .profil_cont .profil_txt p {
    font-size: 13px;
  }
  .profil_wrap .profil_box .profil_cont .profil_btn .pbtn {
    height: 50px;
    line-height: 48px;
    font-size: 14px;
  }
  .profil_wrap .add_box .add_ul {
    position: absolute;
    top: unset;
    bottom: 55px;
    left: 0;
    z-index: 10;
    box-shadow: 0 0 0;
    transform: none;
    left: 15px;
  }
  .profil_wrap .add_box .add_ul li a {
    line-height: 49px;
    font-size: 16px;
  }
  .profil_wrap .add_box .add_ul li label {
    line-height: 49px;
    font-size: 16px;
  }
  .profil_wrap .add_box .add_ul .cancel_btn {
    display: block;
    background: #fff;
    line-height: 49px;
    font-size: 16px;
    color: #1b1b1b;
    font-weight: 500;
    border-radius: 15px;
    text-align: center;
    margin-top: 15px;
    overflow: hidden;
    border-radius: 2.5px;
    margin-top: 5px;
  }
}

.profil_bg {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

/*.popup_edit{
    display:none;
    .edit_bg{position:fixed;left:0;top:0;width:100%;height:100%;z-index:10;background:rgba(0,0,0,0.5);}
    .edit_wrap{
        width:100%;position:fixed;left:0;bottom:50px;z-index:15;
        .container_fix{display:flex;flex-direction:column;}
        .select_ul{
            li{
                a{display:block;background:#dcdcdc;line-height:60px;font-size:20px;color:#666;font-weight:400;border-radius:15px;text-align:center}
            }
        }
        .cancel_btn{background:#fff;font-size:20px;color:#1b1b1b;font-weight:500;margin-top:15px;line-height:60px;border-radius:15px;border:0}
    }
    @include responsive-480(){
        .edit_wrap{
            bottom:25px;
            .select_ul{
                li{
                    a{line-height:50px;font-size:16px;border-radius:10px;}
                }
            }
            .cancel_btn{font-size:16px;margin-top:8px;line-height:50px;border-radius:10px}
        }        
    }
}
*/
/*
마이페이지 좌측 윙
마이페이지 좌측 윙 html > skin > member > basic > mypage_wing.php
*/
.mypage_wing {
  width: auto;
  display: flex;
  gap: 50px;
}
.mypage_wing .mypage-sections01 {
  width: 200px;
}
.mypage_wing .mypage-sections01 h1 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 500;
  color: var(--main-point-color);
}
.mypage_wing .mypage-sections01 ul {
  width: 100%;
  display: block;
  border: 1px solid #f2f2f2;
}
.mypage_wing .mypage-sections01 ul li {
  height: 50px;
  line-height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid #f2f2f2;
  transition: all 200ms linear;
  display: flex;
  align-items: center;
}
.mypage_wing .mypage-sections01 ul li:last-child {
  border: none;
}
.mypage_wing .mypage-sections01 ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: #777;
  line-height: 1.5;
}
.mypage_wing .mypage-sections01 ul li a span {
  width: 5px;
  height: 12px;
  display: block;
  position: relative;
}
.mypage_wing .mypage-sections01 ul li a span::before, .mypage_wing .mypage-sections01 ul li a span::after {
  content: "";
  width: 110%;
  height: 1px;
  position: absolute;
  background: #a1a1a1;
  transition: all 200ms linear;
}
.mypage_wing .mypage-sections01 ul li a span::before {
  top: 3px;
  transform: rotate(45deg);
}
.mypage_wing .mypage-sections01 ul li a span::after {
  bottom: 3px;
  transform: rotate(-45deg);
}
.mypage_wing .mypage-sections01 ul li:hover {
  background: #fafafa;
}
.mypage_wing .mypage-sections01 ul li:hover a {
  color: var(--main-point-color-hover);
}
.mypage_wing .mypage-sections01 ul li:hover a span::before, .mypage_wing .mypage-sections01 ul li:hover a span::after {
  background: var(--main-point-color-hover);
}
.mypage_wing .mypage-sections02 {
  width: calc(100% - 200px);
}
.mypage_wing .mypage-sections02 section .head {
  padding: 0;
  border: none;
}
.mypage_wing .mypage-sections02 section .head .orderform_title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.mypage_wing .mypage-sections02 section .head .orderform_title a {
  font-size: 17px;
  font-weight: 400;
  color: #666;
}

/* 마이페이지 html > skin > member > basic > mypage.php */
.mypage_style ul, .mypage_style li, .mypage_style ol {
  list-style: none;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-table-head .section-cell {
  font-size: 16px;
  color: var(--main-point-color);
  font-weight: 400;
  border-bottom: 1px solid #eee;
  padding: 22px 0;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-table-body .section-cell {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  border-bottom: 1px solid #eee;
  padding: 22px 0;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-table-body .section-cell a{
  color: #666;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell {
  width: 25%;
  vertical-align: middle;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_it_info {
  width: 20%;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_it_info .img {
  margin-bottom: 5px;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_it_info .description {
  display: block;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_it_info .description p {
  font-size: 14px;
  margin-top: 7px;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_it_info .description p + p {
  margin-top: 5px;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_date {
  width: 20%;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num {
  width: 20.95%;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num button.order_cancel {
  border-radius: 5px !important;
  margin-top: 10px;
  background: var(--main-point-btn-bg-color-hover);
  border-color: var(--main-point-btn-line-color-hover);
  outline: none;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num #sod_fin_cancelfrm_0 {
  width: 500px;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num .input-group button {
  background: var(--main-point-btn-bg-color-hover);
  border-color: var(--main-point-btn-line-color-hover);
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num .input-group input:focus {
  border-color: var(--main-point-line-color-hover);
  box-shadow: none;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_num #sod_fin_cancelfrm_0
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_price {
  width: 18.57%;
}
.mypage_style .mypage-table .mypage-sections.mypage_sections .section_table .section-cell.od_status {
  width: 20.95%;
}
.mypage_style .mob_mypage {
  display: none;
}
.mypage_style .mob_mypage .mob_section01 .myicon_list a span.cart_count{
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--main-point-bg-color-hover);
    text-align: center;
    line-height: 14.5px;
    font-size: 9px;
    font-weight: 500;
    color: #fff;
    position: absolute;
    right: 1px;
    bottom: -4px;
}
@media (max-width: 991px) {
  .mypage_style .pc_mypage {
    display: none;
  }
  .mypage_style .mob_mypage {
    display: block;
  }
  .mypage_style .mob_mypage .mob_section .mob_container {
    padding: 40px 15px 20px;
  }
  .mypage_style .mob_mypage .mob_section::before {
    content: "";
    display: block;
    width: 100%;
    height: 12px;
    background: #f9f9fa;
  }
  .mypage_style .mob_mypage .mob_section .section_tit h1 {
    font-size: 20px;
    color: var(--main-point-color);
    font-weight: 600;
    margin-bottom: 15px;
  }
  .mypage_style .mob_mypage .mob_section .section_li a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    position: relative;
    border-bottom: 1px solid #e1e1e1;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .list_name {
    flex-grow: 1;
    font-size: 16px;
    color: #333;
    font-weight: 400;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .more_btn {
    font-size: 15px;
    color: var(--main-point-color-hover);
    font-weight: 400;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .more_btn .more_txt {
    font-size: 17px;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .arrow_span {
    position: relative;
    right: 10px;
    margin-left: 35px;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .arrow_span::before {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background: #666;
    position: absolute;
    top: 5px;
    right: 0;
    transform: rotate(-45deg);
  }
  .mypage_style .mob_mypage .mob_section .section_li a .arrow_span::after {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background: #666;
    position: absolute;
    top: 10px;
    right: 0;
    transform: rotate(45deg);
  }
  .mypage_style .mob_mypage .mob_section .section_li:last-child a {
    border-bottom: 0;
  }
  .mypage_style .mob_mypage .mob_section01 .mob_container {
    padding: 40px 0;
  }
  .mypage_style .mob_mypage .mob_section01 .mob_myicon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
  .mypage_style .mob_mypage .mob_section01 .myicon_list a {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .mypage_style .mob_mypage .mob_section01 .myicon_list a span {
    display: block;
  }
  .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    /* background: #f7f8fa; */
    border-radius: 20px;
    position: relative;
  }
  .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_box img {
    height: 35px;
  }
  .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_txt {
    font-size: 16px;
    color: var(--main-point-color);
    font-weight: 400;
    margin-top: 15px;
  }
  .mypage_style .mob_mypage .mob_section01 .myicon_list a span.cart_count{
    display: block;
    width: 13.5px;
    height: 13.5px;
    border-radius: 50%;
    background: var(--main-point-bg-color-hover);
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 13px;
    position: absolute;
    bottom: 11px;
    right: 12px;
  }
  .mypage_style .mob_mypage .mob_section04 .mob_container {
    padding: 0 15px;
  }
  .mypage_style .mob_mypage .mob_section04::after {
    content: "";
    display: none;
    width: 100%;
    height: 70px;
    background: #eff2f5;
  }
}
@media (max-width: 480px) {
  .mypage_style .mob_mypage .mob_section .mob_container {
    padding: 30px 15px 7px;
  }
  .mypage_style .mob_mypage .mob_section::before {
    content: "";
    display: block;
    width: 100%;
    height: 9px;
    background: #f9f9fa;
  }
  .mypage_style .mob_mypage .mob_section .section_tit h1 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .mypage_style .mob_mypage .mob_section .section_li a {
    padding: 21px 0;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .list_name {
    font-size: 14px;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .more_btn {
    font-size: 12px;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .more_btn .more_txt {
    font-size: 14px;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .arrow_span {
    margin-left: 20px;
    right: 4px;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .arrow_span::before {
    width: 1px;
    height: 7px;
    top: 4px;
  }
  .mypage_style .mob_mypage .mob_section .section_li a .arrow_span::after {
    width: 1px;
    height: 7px;
    top: 8.5px;
  }
  .mypage_style .mob_mypage .mob_section01 .mob_container {
    padding: 20px 0 30px;
  }
  .mypage_style .mob_mypage .mob_section01 .mob_myicon {
    gap: 40px;
  }
  .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_box {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    position: relative;
  }
  .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_box img {
    height: 25px;
  }
  .mypage_style .mob_mypage .mob_section01 .myicon_list a span.icon_txt {
    font-size: 13px;
    margin-top: 0px;
  }
  .mypage_style .mob_mypage .mob_section04 .mob_container {
    padding: 0 15px;
  }
  .mypage_style .mob_mypage .mob_section04::after {
    height: 50px;
  }
}

.none-item {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  border-bottom: 1px solid #eee;
  padding: 27px 0;
}

/* 개인정보 수정 
html > skin > member > basic > member_confirm.php 
html > skin > member > basic > register_form.php
*/
.mypassword_confirm {
  width: 100%;
  display: flex;
  gap: 50px;
}
.mypassword_confirm .password_wrap {
  width: calc(100% - 200px);
}
.mypassword_confirm .password_wrap .orderform_title p {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  font-weight: 400;
  line-height: 1.5;
}
.mypassword_confirm .password_wrap .orderform_title p strong {
  color: #222;
  font-weight: 500;
  font-size: 16px;
}
.mypassword_confirm .password_wrap .confirm_wrap {
  width: 600px;
  max-width: 100%;
  margin: 40px auto 0;
}
@media (max-width: 991px) {
  .mypassword_confirm {
    gap: 0;
    margin-top: 50px;
  }
  .mypassword_confirm .password_wrap {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .mypassword_confirm .password_wrap .orderform_title p {
    font-size: 13px;
  }
  .mypassword_confirm .password_wrap .orderform_title p strong {
    font-size: 14px;
  }
  .mypassword_confirm .password_wrap .confirm_wrap {
    margin: 20px auto 0;
  }
  .mypassword_confirm .password_wrap .confirm_wrap p {
    font-size: 14px;
  }
  .mypassword_confirm .password_wrap .confirm_wrap .confirm_input input {
    line-height: 39px;
    border-radius: 3px;
  }
  .mypassword_confirm .password_wrap .confirm_wrap .confirm_input .confirm_btn_box .btn_confirm {
    font-size: 13px;
    line-height: 39px;
    border-radius: 3px;
  }
  .mypassword_confirm .password_wrap .btn_back a {
    font-size: 14px;
  }
}

.register_style.edit_mem {
  width: 100%;
  display: flex;
  gap: 50px;
}
.register_style.edit_mem .mypage_register {
  width: calc(100% - 200px);
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box {
  margin: 40px 0;
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img {
  margin: 0 auto;
  width: 120px;
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img .img_container {
  padding-bottom: 100%;
  height: 0;
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img .img_file {
  right: 7px;
  bottom: 4px;
}
.register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file {
  background: var(--main-point-bg-color-hover);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width:991px){
    .register_style.edit_mem .mypage_register .profil_wrap .profil_box .profil_cont .profil_img .img_file .add_file{
        width: 30px;
        height: 30px;
    }
}
.register_style.edit_mem .mypage_register .register_tt {
  font-size: 24px;
  font-weight: 500;
  padding-top: 8px;
  padding-bottom: 26px;
  border-bottom: 1px solid #444444;
  margin-bottom: 40px;
}
.register_style.edit_mem .mypage_register .area-box {
  float: none;
  width: 57.273%;
  margin-right: 0;
  margin: 0 auto;
}
.register_style.edit_mem .mypage_register .area-box .regbtn-wrap {
  width: 240px;
  margin: 60px auto 0;
}
.register_style.edit_mem .mypage_register .area-box .regbtn-wrap #btn_submit {
  height: 60px;
  line-height: 58px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
}
.register_style.edit_mem .mypage_register .input-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.register_style.edit_mem .mypage_register .input-box label {
  width: 135px;
  font-size: 16px;
  color: #333;
  font-weight: 300;
}
.register_style.edit_mem .mypage_register .input-box .sns-wrap-reg {
  width: calc(100% - 135px);
}
@media (max-width: 991px) {
  .register_style.edit_mem .mypage_register .input-box .sns-wrap-reg {
    width: 100%;
  }
}
.register_style.edit_mem .mypage_register .input-box .re_input_box {
  width: calc(100% - 135px);
}
.register_style.edit_mem .mypage_register .input-box .re_input_box input {
  width: 100%;
  font-size: 16px;
  color: #333;
  font-weight: 300;
  padding: 0 10px;
  border: 1px solid #d6d6d6;
  height: 46px;
  line-height: 44px;
  border-radius: 5px;
}
.register_style.edit_mem .mypage_register .input-box .re_input_box input::placeholder {
  font-size: 16px;
  color: #999;
  font-weight: 300;
}
.register_style.edit_mem .mypage_register .input-box .re_input_box.icon_input {
  margin: 40px 0;
}
.register_style.edit_mem::After {
  display: none;
}

@media (max-width: 991px) {
  .no_container {
    padding: 0;
  }
  .no_container .at-content {
    padding: 0;
  }
  .mypage.container_fix .at-content {
    padding: 0;
  }
  .register_style.edit_mem {
    gap: 0;
  }
  .register_style.edit_mem .mypage_register {
    width: 100%;
  }
  .register_style.edit_mem .mypage_register .area-box {
    width: 100%;
  }
  .register_style.edit_mem .mypage_register .area-box .regbtn-wrap {
    width: 180px;
    margin: 50px auto 0;
  }
  .register_style.edit_mem .mypage_register .area-box .regbtn-wrap #btn_submit {
    height: 50px;
    line-height: 48px;
    font-size: 16px;
  }
  .register_style.edit_mem .mypage_register .input-box {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .register_style.edit_mem .mypage_register .input-box label {
    width: 100%;
    margin-bottom: 20px;
    font-weight: 400;
  }
  .register_style.edit_mem .mypage_register .input-box .re_input_box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .register_style.edit_mem .mypage_register .area-box .regbtn-wrap {
    width: 160px;
  }
  .register_style.edit_mem .mypage_register .area-box .regbtn-wrap #btn_submit {
    height: 40px;
    line-height: 38px;
    font-size: 13px;
  }
  .register_style.edit_mem .mypage_register .input-box {
    margin-bottom: 22px;
  }
  .register_style.edit_mem .mypage_register .input-box label {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .register_style.edit_mem .mypage_register .input-box .re_input_box input {
    font-size: 12px;
    padding: 0 12px;
    height: 40px;
    line-height: 38px;
  }
  .register_style.edit_mem .mypage_register .input-box .re_input_box input::placeholder {
    font-size: 12px;
  }
  .register_style.edit_mem .mypage_register .input-box .re_input_box.icon_input {
    margin: 40px 0;
  }
}
/* 장바구니 html > skin > apms > order > basic > cart.skin.php */
#btn-print{line-height: 1em; padding: 17px 20.5px;}
#btn-print:hover{background: #aaaaaa !important; border: 1px solid #aaaaaa !important;}
#btn-print i{top: 1px; margin-right: 2px;}
@media (max-width: 991px) {
    #mbtn-print{
      color: #333333 !important;
      border: 1px solid #333333;
      background-color: #fff;
      border-radius: 3px !important;
      font-size: 13px;
      padding: 0;
      line-height: 43px;
      height: 45px;
      font-weight: 500;
    }
}
.cart_wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-self: auto;
  padding-top: 20px;
}
.cart_wrap .cart_left {
  width: 70%;
}
.cart_wrap .cart_left .cart_head {
  width: 100%;
  border-bottom: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 23px;
}
.cart_wrap .cart_left .cart_head.bottom {
  border-bottom: 0;
  margin-top: 20px;
}
.cart_wrap .cart_left .cart_head .radio_check .text {
  font-size: 18px;
  color: var(--main-point-color);
  font-weight: 500;
}
.cart_wrap .cart_left .cart_head .radio_check .ct_totle {
  display: inline-block;
}
.cart_wrap .cart_left .cart_head .cart_delete button.shop_btn {
  font-size: 17px;
  color: #666;
  font-weight: 400;
  width: auto;
  height: auto;
  display: inline-block;
  border: 0;
  padding: 0;
  padding-left: 25px;
}
.cart_wrap .cart_left .cart_head .cart_delete button.shop_btn:hover {
  background-color: #fff;
}
.cart_wrap .cart_left .cart_body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.cart_wrap .cart_left .cart_body > li {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
}
.cart_wrap .cart_left .cart_body > li.no_cart_list {
  display: block;
  text-align: center;
  padding: 0;
}
.cart_wrap .cart_left .cart_body .cart_check {
  width: 5.835%;
}
.cart_wrap .cart_left .cart_body .cart_check .radio_check input + label .circle {
  margin-right: 0;
}
.cart_wrap .cart_left .cart_body .cart_content {
  width: 94.565%;
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.cart_wrap .cart_left .cart_body .cart_content .item_img {
  width: 130px;
  height: 130px;
  min-width: 130px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .cart_wrap .cart_left .cart_body .cart_content .item_img {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 5px;
  }
}
.cart_wrap .cart_left .cart_body .cart_content .item_img img {
  height: auto;
  max-width: inherit;
}
@media (max-width: 991px) {
    .cart_wrap .cart_left .cart_body .cart_content .item_img img{
        max-width: 100%; 
        height: 100%;
    }
  }
.cart_wrap .cart_left .cart_body .cart_content .item_detail {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 25px;
  padding-top: 0;
  padding-right: 30px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .it_sub_name {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height:36.38px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .it_name {
  font-size: 18px;
  line-height: 1.4em;
  color: var(--main-point-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 51px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap {
  padding: 0;
  margin-top: 10px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li {
  border-bottom: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4em;
  color: #666;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 39px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li + li {
  margin-top: 7px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li span {
  display: inline-block;
  position: relative;
  padding-left: 18px;
}
.cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li span::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background: #c7c7c7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-10px);
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice {
  width: 124px;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice button {
  width: 100%;
  height: 37px;
  line-height: 35px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  font-weight: 400;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice button:hover {
  color: #fff;
  border-color: var(--main-point-btn-bg-color-hover);
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price {
  width: 160px;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price > div {
  text-align: right;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price .sale_price {
  font-size: 20px;
  font-weight: 600;
  color: var(--main-point-color);
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price .origin_price {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  text-decoration: line-through;
  margin-top: 5px;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_price .won {
  font-weight: 400;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_delete {
  margin-left: 20px;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_delete .delete_arrow {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  cursor: pointer;
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_delete .delete_arrow::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #666;
  position: absolute;
  top: 0;
  right: 7px;
  transform: rotate(-45deg);
}
.cart_wrap .cart_left .cart_body .cart_content .cart_item_delete .delete_arrow::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #666;
  position: absolute;
  top: 0;
  right: 7px;
  transform: rotate(45deg);
}

.cart_wrap .cart_right {
  width: 25.67%;
  position: relative;
  min-height: 500px;
}
.cart_wrap .cart_right .right_title {
  margin-bottom: 21px;
}
@media (max-width: 991px) {
  .cart_wrap .cart_right .right_title {
    margin-bottom: 22px;
  }
}
.cart_wrap .cart_right .right_title h1 {
  font-size: 24px;
  color: var(--main-point-color);
  font-weight: 500;
  text-align: left;
}
.cart_wrap .cart_right .price_wrap {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  border: 1px solid #f2f2f2;
  padding: 30px 30px 35px;
  background-color: #fafafa;
}
.cart_wrap .cart_right .price_wrap .price_cont {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 17px;
}
.cart_wrap .cart_right .price_wrap .price_cont .cont_txt {
  flex-grow: 1;
  font-size: 16px;
  color: #4c4c4c;
  font-weight: 400;
}
.cart_wrap .cart_right .price_wrap .price_cont .price_txt {
  font-size: 18px;
  color: #4c4c4c;
  font-weight: 400;
  text-align: right;
}
.cart_wrap .cart_right .price_wrap .price_cont .price_txt .won {
  font-weight: 400;
  margin-left: -3px;
  display: inline-block;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price {
  flex-direction: column;
}
@media (max-width: 991px) {
  .cart_wrap .cart_right .price_wrap .price_cont.sub_price {
    margin-top: -7px;
  }
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .price_cont {
  margin-bottom: 0;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .sale_price {
  margin-top: 8px;
}
@media (max-width: 480px) {
    .cart_wrap .cart_right .price_wrap .price_cont.sub_price .sale_price {
      margin-top: 6px;
    }
  }
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .origin_price, .cart_wrap .cart_right .price_wrap .price_cont.sub_price .sale_price {
  width: 100%;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .cont_txt, .cart_wrap .cart_right .price_wrap .price_cont.sub_price .price_txt {
  font-size: 14px;
  color: #999;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .cont_txt {
  position: relative;
  padding-left: 15px;
}
.cart_wrap .cart_right .price_wrap .price_cont.sub_price .cont_txt::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #dcdcdc;
  border-right: 0;
  border-top: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom {
  margin-bottom: 0;
  border-top: 1px solid #f2f2f2;
  padding-top: 20px;
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom > div {
  padding: 0;
  border-bottom: 0;
  width: auto;
  float: none;
  text-align: unset;
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt {
  font-size: 24px;
  font-weight: 600;
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt font{
    font-weight: 700;
}
.cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt .won {
  font-size: 18px;
}
.cart_wrap .cart_right .cart_buy {
  width: 100%;
}
.cart_wrap .cart_right .cart_buy .cart_buy_btn .form-group{
    margin-bottom: 10px;
}
@media (max-width: 991px){
  .cart_wrap .cart_right .cart_buy .cart_buy_btn .form-group{
    margin-bottom: 0;
  }
}
.cart_wrap .cart_right .cart_buy .cart_buy_btn .buy-btn {
  margin-top: 20px;
  height: 60px;
  line-height: 58px;
  border: 0;
  border-radius: 5px !important;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}
.cart_wrap .cart_right .cart_buy .cart_buy_btn.none_cart_buy .buy-btn {
  background: rgb(221, 221, 221);
  color: #fff;
}
.cart_wrap .cart_right .cart_buy .cart_buy_btn.fixed {
  width: 100%;
  /* position: fixed; */
  left: 0;
  bottom: 0;
  /* padding: 10px 15px 0; */
  padding: 10px 0 0;
  z-index: 10;
  margin: 0;
  background: #fff;
  /* border-top: 1px solid #ebebeb; */
}
.cart_wrap .cart_right .cart_buy .cart_btn_1 .btn{
    font-size: 16px;
    font-weight: 500;
    color: var(--main-point-color-hover) !important;
    background-color: #fff;
    border: 1px solid var(--main-point-btn-line-color-hover);
    display: block;
    line-height: 58px;
    height: 60px;
    border-radius: 5px !important;
    padding: 0;
    transition: 0.2s;
    width: 100%;
    outline: none;
}
.cart_wrap .cart_right .cart_buy .cart_btn_1 .btn:hover{
    color: #fff !important;
    background-color: var(--main-point-btn-bg-color-hover);
}
@media (max-width:991px){
    .cart_wrap .cart_right .cart_buy .cart_btn_1{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
    .cart_wrap .cart_right .cart_buy .cart_btn_1 .btn,
    .cart_wrap .cart_right .cart_buy .cart_btn_1 button{
        flex: 1;
    }
    .cart_wrap .cart_right .cart_buy .cart_btn_1 .btn{
      font-size: 13px;
      border-radius: 3px !important;
      line-height: 43px;
      height: 45px;
    }
}
.cart_wrap .cart_right .cart_scroll {
  position: absolute;
  top: 0;
  width: 100%;
}
.cart_wrap .cart_right .cart_scroll.fixed {
  position: fixed;
  top: 20px;
}
.cart_wrap .cart_right .cart_Wing {
  position: sticky;
  top: 150px;
  position: -webkit-sticky;
}
@media (max-width: 1200px) {
  .cart_wrap .cart_left {
    width: 70%;
  }
  .cart_wrap .cart_right {
    width: 27%;
    /* margin-bottom: 30px; */
  }
  .cart_wrap .cart_right .cart_scroll {
    position: relative;
  }
}
@media (max-width: 991px) {
  .cart_wrap {
    flex-direction: column;
    gap: 0;
  }
  .cart_wrap .cart_left {
    width: 100%;
  }
  .cart_wrap .cart_left .cart_head {
    border-bottom: 0;
    padding: 0 15px;
    margin-bottom: 40px;
    padding-top: 25px;
  }
  .cart_wrap .cart_left .cart_head.mob_head.fixed {
    width: 100%;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 20;
    padding: 15px 15px;
    border: 1px solid #f2f2f2;
    border-top: 0;
  }
  .cart_wrap .cart_left .cart_head .radio_check {
    flex-grow: 1;
  }
  .cart_wrap .cart_left .cart_head .radio_check .text {
    font-size: 16px;
  }
  .cart_wrap .cart_left .cart_head .cart_delete {
    position: sticky;
    top: 0;
    right: 0;
  }
  .cart_wrap .cart_left .cart_head .cart_delete button.shop_btn {
    font-size: 13px;
  }
  .cart_wrap .cart_left .cart_body::before {
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: 9px;
    background: #f9f9fa;
    position: relative;
    left: -15px;
  }
  .cart_wrap .cart_left .cart_body::after {
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: 9px;
    background: #f9f9fa;
    position: relative;
    left: -15px;
  }
  .cart_wrap .cart_left .cart_body > li {
    padding: 30px 0 0;
    border-bottom: 1px solid #e7e7e7;
    flex-wrap: nowrap;
    align-items: flex-start;
    position: relative;
  }
  .cart_wrap .cart_left .cart_body > li:last-child {
    padding-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .cart_wrap .cart_left .cart_body > li:last-child .cart_content {
    border-bottom: 0;
  }
  .cart_wrap .cart_left .cart_body .cart_check {
    width: 8.921%;
  }
  .cart_wrap .cart_left .cart_body .cart_content {
    flex-wrap: wrap;
    /* border-bottom: 1px solid #e7e7e7; */
    padding-bottom: 30px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .item_detail {
    width: calc(100% - 65px);
    padding-left: 17px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .item_detail .it_sub_name {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 14px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .item_detail .it_name {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 21px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li {
    font-size: 13px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 15.5px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_option {
    margin-top: 20px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice button {
    margin-bottom: 0;
    border-radius: 2.5px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_price {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .sale_price {
    order: 2;
    margin-bottom: 0;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .origin_price {
    order: 1;
    margin-right: 11px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_delete {
    position: absolute;
    top: 30px;
    right: 0;
  }
  .cart_wrap .cart_right {
    width: 100%;
    margin-top: 40px;
    padding: 0 15px;
    min-height: auto;
  }
  .cart_wrap .cart_right .right_title h1 {
    font-size: 18px;
    font-weight: 600;
  }
  .cart_wrap .cart_right .price_wrap {
    border: 0;
    padding: 0;
    background-color: #fff;
  }
  .cart_wrap .cart_right .price_wrap .price_cont .price_txt .won {
    font-size: 16px;
  }
  .cart_wrap .cart_right .cart_buy .cart_buy_btn .buy-btn {
    height: 50px;
    line-height: 48px;
    margin-top: 0;
  }
  .cart_wrap .cart_right .cart_buy .buy-btn-wrap {
    padding: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .cart_wrap .cart_left .cart_head {
    margin-bottom: 15px;
  }
  .cart_wrap .cart_left .cart_head .radio_check .text {
    font-size: 15px;
  }
  .cart_wrap .cart_left .cart_head .cart_delete button.shop_btn {
    font-size: 13px;
    padding-left: 16px;
  }
  .cart_wrap .cart_left .cart_body .cart_content {
    padding-bottom: 20px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .item_detail .it_sub_name {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .item_detail .it_name {
    font-size: 14px;
    font-weight: 500;
  }
  .cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap {
    margin-top: 4px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .item_detail .option_wrap li {
    font-size: 11px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_option {
    margin-top: 15px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice {
    width: 105px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_option .btn_revice button {
    font-size: 12px;
    height: 30px;
    line-height: 28px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_price {
    margin-top: 14px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .sale_price {
    font-size: 15.5px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .sale_price .won {
    font-size: 12.5px;
  }
  .cart_wrap .cart_left .cart_body .cart_content .cart_item_price .origin_price {
    font-size: 12px;
    margin-right: 8px;
  }
  .cart_wrap .cart_right {
    margin-top: 30px;
  }
  .cart_wrap .cart_right .right_title h1 {
    font-size: 16px;
  }
  .cart_wrap .cart_right .price_wrap .price_cont .cont_txt {
    font-size: 15px;
  }
  .cart_wrap .cart_right .price_wrap .price_cont .price_txt {
    font-size: 16px;
    color: #000;
  }
  .cart_wrap .cart_right .price_wrap .price_cont .price_txt .won {
    font-size: 13px;
  }
  .cart_wrap .cart_right .price_wrap .price_cont.sub_price .cont_txt {
    width: 70%;
    font-size: 12px;
  }
  .cart_wrap .cart_right .price_wrap .price_cont.sub_price .price_txt {
    width: 30%;
  }
  .cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt {
    font-size: 20px;
  }
  .cart_wrap .cart_right .price_wrap .price_cont.price_bottom .price_txt .won {
    font-size: 14px;
  }
  .cart_wrap .cart_right .cart_buy .cart_buy_btn .buy-btn {
    height: 45px;
    line-height: 43px;
    font-size: 13px;
    border-radius: 3px !important;
  }
}

@media (max-width: 991px) {
  .cart_style {
    padding: 0;
    margin-bottom: 0;
  }
}
/* 옵션모달창 html > skin > apms > order > basic > cartoption.skin.php */
.mod_option_wrap {
  scrollbar-3dLight-Color: #fff;
  scrollbar-base-color: #fff;
  scrollbar-Face-Color: #fff;
  scrollbar-Track-Color: #f0f0f0;
  scrollbar-DarkShadow-Color: #fff;
  scrollbar-Highlight-Color: #fff;
}
.mod_option_wrap .modal-content {
  box-shadow: 0 0 0;
  border: 0;
  border-radius: 20px;
}
.mod_option_wrap .modal-content .modal_body {
  padding: 50px 20px 30px 30px;
}
.mod_option_wrap .modal-content .modal_body form .padding_b {
  padding-right: 10px;
  padding-top: 20px;
}
.mod_option_wrap .modal-content .modal_body form .point_b{
  font-size: 14px;
  font-weight: 400;
  color: var(--main-point-color-hover);
  text-align: right;
}
.mod_option_wrap .modal-content .modal_body form .modal_scroll {
  max-height: 50vh;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .mod_option_wrap .modal-content .modal_body {
    padding: 35px 10px 15px 15px;
  }
  .mod_option_wrap .modal-content .modal_body form .padding_b{
    padding-right: 5px;
    font-size: 15px;
  }
  .mod_option_wrap .modal-content .modal_body form .modal_scroll {
    padding-right: 5px;
  }
}
.mod_option_wrap .option_form .option_close {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 30px;
  right: 30px;
}
.mod_option_wrap .option_form .option_close span {
  display: block;
  width: 100%;
  height: 100%;
}
.mod_option_wrap .option_form .option_close span::before {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: #999999;
  position: absolute;
  top: 0;
  right: 10px;
  transform: rotate(-45deg);
}
.mod_option_wrap .option_form .option_close span::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: #999999;
  position: absolute;
  top: 0;
  right: 10px;
  transform: rotate(45deg);
}
.mod_option_wrap .option_form .modal_it_name {
  margin-bottom: 30px;
}
.mod_option_wrap .option_form .modal_it_name p {
  font-size: 16px;
  line-height: 1.4em;
  color: var(--main-point-color);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 44.78px;
}
.mod_option_wrap .option_form .modal_it_name p#tit_price{
  margin-top: 5px;
  display: flex;
  align-items: center;
}
.mod_option_wrap .option_form .modal_it_name p#tit_price #tit_tot_price{
  font-size: 18px;
  font-weight: 700;
  color: var(--main-point-color);
  letter-spacing: -0.01em;
}
.mod_option_wrap .option_form .modal_it_name p#tit_price .won{
  font-size: 14px;
  font-weight: 700;
  color: var(--main-point-color);
  margin-left: 2px;
}
@media(max-width:991px){
	.mod_option_wrap .option_form .modal_it_name p#tit_price{margin-top: 3px;}
	.mod_option_wrap .option_form .modal_it_name p#tit_price #tit_tot_price{font-size: 16px;}
}
.mod_option_wrap .option_form .option_tit {
  font-size: 18px;
  color: #222;
  font-weight: 500;
  margin-bottom: 15px;
}
.mod_option_wrap .option_form .option_tit.option02_box {
  margin-top: 30px;
}
.mod_option_wrap .option_form .option_list_box {
  border: 0;
  margin: 0;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f2f2f2;
}
/* .mod_option_wrap .option_form .option_list_box + .opt-tbl{
  padding-top: 15px;
} */
.mod_option_wrap .option_form .option_list_box ul, .mod_option_wrap .option_form .option_list_box li, .mod_option_wrap .option_form .option_list_box ol {
  list-style: none;
}
.mod_option_wrap .option_form .option_list_box .option_sel {
  display: flex;
  /* flex-direction: column; */
  width: 100%;
  margin-bottom: 5px;
}
.mod_option_wrap .option_form .option_list_box .option_sel:last-child {
    margin-bottom: 0;
}
@media(max-width:991px){
    .mod_option_wrap .option_form .option_list_box{
        margin-top: 15px;
        padding-top: 15px;
    }
  .mod_option_wrap .option_form .option_list_box .option_sel{
    margin-bottom: 5px;
  }
  .mod_option_wrap .option_form .option_list_box + .opt-tbl{
    padding-top: 15px;
  }
}

.mod_option_wrap .option_form .option_list_box .option_sel > li {
    width: 100%;
}

.mod_option_wrap .option_form .option_list_box .option_sel .option_name {
  font-size: 15px;
  color: #666666;
  font-weight: 400;
  /* margin-bottom: 10px; */
  margin-bottom: 0;
  min-width: 100px;
  max-width: 100px;
  line-height: 54px;
}

.mod_option_wrap .option_form .option_list_box .option_sel .td_sit_sel{
  width: calc(100% - 100px);
}
@media(max-width:991px){
  .mod_option_wrap .option_form .option_list_box .option_sel .td_sit_sel{
    width: calc(100% - 100px);
  }
}
.mod_option_wrap .option_form .option_list_box .option_sel select {
  box-shadow: 0 0 0;
  border: 1px solid #f2f2f2;
  border-radius: 5px !important;
  height: 54px;
  line-height: 52px;
  padding: 0 18px;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none; /* 크롬 화살표 없애기 */
  -moz-appearance: none; /* 파이어폭스 화살표 없애기 */
  appearance: none;
  background: url(../img/icon_select_arrow.png) no-repeat right 20px center;
  /* background-position: 96% 50%;
  background-size: auto;
  background-repeat: no-repeat; */
}
.mod_option_wrap .option_form .option_list_box .option_sel li+li{
  width: calc(100% - 77px);
}
@media(max-width:991px){
  .mod_option_wrap .option_form .option_list_box .option_sel li+li{
    width: calc((100% - 110px));
  }
}
.mod_option_wrap .option_form .change_btn button {
  width: 100%;
  height: 53px;
  line-height: 51px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 0;
  border-radius: 5px !important;
}
.mod_option_wrap .option_form #it_sel_option {
  margin-top: 20px;
}
.mod_option_wrap .option_form #it_sel_option ul {
  margin-bottom: 0;
}
.mod_option_wrap .option_form #it_sel_option #it_opt_added li {
  border: 0;
  /* border-bottom: 1px solid #f2f2f2; */
  margin-bottom: 0;
  padding: 0;
  /* margin-bottom: 30px; */
  position: relative;
}
.mod_option_wrap .option_form #it_sel_option #it_opt_added li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.mod_option_wrap .option_form #it_sel_option #it_opt_added li+li{
  /* position: relative;
  top: -2px; */
  /* margin-top: -3px; */
  margin-top: 15px;
}
/* .mod_option_wrap .option_form #it_sel_option #it_opt_added li+li .row{
    padding-top: 30px;
    border-radius: 0;
} */
/* 2024-08-30 (주)파이브센스_FIVESENSES.Corp. 장바구니 재작업 */
.mod_option_wrap .option_form #it_sel_option .row {
    margin-left: 0;
    margin-right: 0;
    background-color: #f7f7f7;
    border-radius: 5px;
    padding: 20px;
}
/* .mod_option_wrap .option_form #it_sel_option .row {
  margin-left: 0;
  margin-right: 0;
  // display: flex;
  // flex-direction: column;
  border: 1px solid #eeeeee;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}
.mod_option_wrap .option_form #it_sel_option #it_opt_added li:last-child .row{
  border-radius: 0 0 5px 5px;
}
.mod_option_wrap .option_form #it_sel_option #it_opt_added li:first-child .row{
  border-radius: 5px;
}
.mod_option_wrap .option_form #it_sel_option .it_opt_list:first-child .row{
  border-radius: 5px;
}
.mod_option_wrap .option_form #it_sel_option .row span {
  font-size: 14px;
  color: #222222;
  font-weight: 400;
  line-height: 1.4em;
} */
/* .mod_option_wrap .option_form #it_sel_option .row .op_tt span.it_opt_subj{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 39px;
} */
.mod_option_wrap .option_form #it_sel_option .row .op_group{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box {
  padding: 0;
  width: calc(100% - 100px);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box+ .op_box{
  width: 100px;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box label{
  display: flex;
  align-items: center;
  justify-content: right;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box label .sale_price{
  color: var(--main-point-color);
  font-size: 18px;
  font-weight: 600;
  /* margin-right: 6px; */
  line-height: 1em;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box label .sale_price .won{
  color: var(--main-point-color);
  font-size: 16px;
  font-weight: 600;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box label .origin_price .won,
.mod_option_wrap .option_form #it_sel_option .row .op_box label .origin_price{
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  text-decoration: line-through;
  line-height: 1em;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button {
  width: 33px;
  height: 36px;
  border-radius: 0 !important;
  background: #fff;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  outline: none;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button span {
  width: 14px !important;
  height: 14px !important;
  position: relative;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_plus span::before {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  background: #333333;
  position: absolute;
  top: 1px;
  right: 4px;
  transform: rotate(0);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_plus span::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #333333;
  position: absolute;
  top: 5px;
  right: 0;
  transform: rotate(0);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_minus span::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #dddddd;
  position: absolute;
  top: 6px;
  right: 0;
  transform: rotate(0);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_opt_del span::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #727272;
  position: absolute;
  top: 0;
  right: 5px;
  transform: rotate(-45deg);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_opt_del span::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #727272;
  position: absolute;
  top: 0;
  right: 5px;
  transform: rotate(45deg);
}
.mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 {
  /* padding: 30px 0; */
  float: none;
  margin-left: auto;
  position: static;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 .input-group {
  display: flex;
  align-items: center;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
  position: static;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 .input-group > div{
  display: block;
}
.mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 .input-group > div.input-group-btn.it_del{
  position: static;
}
@media(max-width:991px){
  .mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 .input-group > div.input-group-btn.it_del{
    width: 0;
  }
}
.mod_option_wrap .option_form #it_sel_option .row .plus_group {
  width: 33px;
}
.mod_option_wrap .option_form #it_sel_option .row .input_group {
  width: calc(100% - 66px);
}
.mod_option_wrap .option_form #it_sel_option .row > .input_group {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
}
.mod_option_wrap .option_form #it_sel_option .row > .input_group .option_group + .option_group {
    margin-top: 15px;
}
.mod_option_wrap .option_form #it_sel_option .row .input_group input {
  padding: 0;
  height: 36px;
  line-height: 34px;
  border: 0;
  box-shadow: 0 0 0;
  text-align: center;
  font-size: 14px;
  color: #3a3a3a;
  font-weight: 600;
}
.mod_option_wrap .option_form #it_sel_option .row .input_group input::placeholder {
  font-size: 24px;
  color: #222;
  font-weight: 400;
}
.mod_option_wrap .option_form #it_sel_option .row .it_group {
  width: auto;
  display: flex;
  align-items: center;
}
.mod_option_wrap .option_form #it_sel_option .row .del_group {
  position: absolute;
  /* top: -39px; */
  /* right: -10px; */
  top: 10px;
  right: 13px;
  width: 30px;
}
@media (max-width: 991px){
    .mod_option_wrap .option_form #it_sel_option .row .del_group{
        /* top: -36px;
        right: -12px; */
        top: 8px;
        right: 6px;
    }
}
.mod_option_wrap .option_form #it_sel_option .row .op_tt{
    padding-bottom: 10px;
    width: calc(100% - 40px);
}
@media (max-width: 991px){
    .mod_option_wrap .option_form #it_sel_option .row .op_tt{
        padding-bottom: 0;
    }
}
.mod_option_wrap .option_form #it_sel_option .row .op_tt label{
    display: flex;
    font-size: 14px;
}
.mod_option_wrap .option_form #it_sel_option .row span.it_opt_subj{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    /* height: 18.19px; */
    max-width: 70%;
  }
.mod_option_wrap .option_form #it_sel_option .row .del_group.input-group-btn .it_opt_del{
  background-color: transparent;
}
.mod_option_wrap .option_form #it_sel_option .row .it_group button.it_qty_minus {
  border: none;
}
.mod_option_wrap .option_form #it_sel_option .row .it_group button.it_opt_del {
  margin-left: 14px;
  border: 0;
  background: #f3f3f3;
  position: absolute;
  /* top: -50px; */
  /* right: -14px; */
  /* right: -245px; */
  top: 10px;
  right: 13px;
  background-color: transparent;
  z-index: 10;
}
@media (max-width:991px){
  .mod_option_wrap .option_form #it_sel_option .row .it_group button.it_opt_del{
    top: 8px;
    right: 6px;
  }
}
.mod_option_wrap .option_form .tot_price {
  font-size: 16px;
  color: var(--main-point-color);
  font-weight: 600;
  text-align: right;
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1em;
}
.mod_option_wrap .option_form .tot_price div {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  top: -1px;
}
.mod_option_wrap * {
  scrollbar-3dLight-Color: #fff;
  scrollbar-base-color: #fff;
  scrollbar-Face-Color: #fff;
  scrollbar-Track-Color: #f0f0f0;
  scrollbar-DarkShadow-Color: #fff;
  scrollbar-Highlight-Color: #fff;
}
.mod_option_wrap ::-webkit-scrollbar {
  background: #fff;
  width: 6px;
  float: left;
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
}
.mod_option_wrap *::-webkit-scrollbar {
  background: #fff;
  width: 5px;
  float: left;
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
}
.mod_option_wrap ::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.mod_option_wrap *::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.mod_option_wrap ::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.mod_option_wrap *::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.mod_option_wrap ::-webkit-scrollbar-button {
  background: transparent;
  color: #fff;
}
.mod_option_wrap *::-webkit-scrollbar-button {
  background: transparent;
  color: #fff;
}
.mod_option_wrap ::-webkit-scrollbar-track {
  background: #fff;
}
.mod_option_wrap *::-webkit-scrollbar-track {
  background: #fff;
}
.mod_option_wrap ::-webkit-scrollbar-track {
  width: 5px;
  background: #dbdbdb;
  border-radius: 10px;
}
.mod_option_wrap ::-webkit-scrollbar-thumb {
  height: 50px;
  width: 5px;
  background: #dbdbdb;
  border-radius: 10px;
}
.mod_option_wrap *::-webkit-scrollbar-thumb {
  height: 50px;
  width: 5px;
  background: #dbdbdb;
  border-radius: 10px;
}
/* 2024-07-25 (주)파이브센스_FIVESENSES.Corp */
.mod_option_wrap .option_body .op_warp{display: flex; flex-wrap: wrap; gap: 5px;}
.mod_option_wrap .option_body .option_name{position: relative; margin-bottom: 15px;}
.mod_option_wrap .option_body .option_name > label {font-size: 14px; font-weight: 500; color: #666;}
.mod_option_wrap .option_body .op_warp input[type=radio].it_option{display: none;}
.mod_option_wrap .option_body .op_warp label{margin-bottom: 5px; /*flex: 1;*/ min-width: calc(33% - 5px); color: #888; font-size: 13px; font-weight: 300; line-height: 1.4em; border: 1px solid #eeeeee; margin-right: 2.5px; background-color: #fff; box-sizing: border-box; display: flex; align-items: center; justify-content: center; padding: 7px 10px; cursor: pointer; transition: all 0.3s ease 0s; word-break: break-all; height: 100%; border-radius: 2px;}
.mod_option_wrap .option_body .op_warp label:hover{color:#333333; border: 1px solid #000000;}
.mod_option_wrap .option_body .op_warp input[disabled] + label{cursor: not-allowed;}
.mod_option_wrap .option_body .op_warp input:checked + label{color:#333333; border: 1px solid #000000;}

.mod_option_wrap .it_opt_list .option_li{display: flex; flex-wrap: wrap; gap: 5px;}
.mod_option_wrap .it_opt_list .option_name{position: relative; margin-bottom: 15px;}
.mod_option_wrap .it_opt_list .option_name > label {font-size: 14px; font-weight: 500; color: #666;}
.mod_option_wrap .it_opt_list .option_li div{margin-bottom: 5px; flex: 1; min-width: calc(33% - 5px);}
.mod_option_wrap .it_opt_list .option_li input[type=radio].it_custom{display: none;}
.mod_option_wrap .it_opt_list .option_li label{margin-bottom: 5px; width: 100%; color: #888; font-size: 13px; font-weight: 300; line-height: 1.4em; border: 1px solid #f2f2f2; margin-right: 2.5px; background-color: #fff; box-sizing: border-box; display: flex; align-items: center; justify-content: center; padding: 7px 10px; cursor: pointer; transition: all 0.3s ease 0s; word-break: break-all; height: 100%; border-radius: 2px;}
.mod_option_wrap .it_opt_list .option_li label:hover{color:#333333; border: 1px solid #000000;}
.mod_option_wrap .it_opt_list .option_li input[disabled] + label{cursor: not-allowed;}
.mod_option_wrap .it_opt_list .option_li input:checked + label{color:#333333; border: 1px solid #000000;}

.mod_option_wrap .option_list_box .td_sit_sel{display: flex; flex-wrap: wrap; gap: 5px;}
.mod_option_wrap .option_list_box .option_radio + .option_radio{margin-top: 20px;}
.mod_option_wrap .option_list_box .option_name{position: relative; margin-bottom: 15px;}
.mod_option_wrap .option_list_box .option_name > label {font-size: 14px; font-weight: 500; color: #666;}
.mod_option_wrap .option_list_box .td_sit_sel div{margin-bottom: 5px; /*flex: 1;*/ min-width: calc(33% - 5px);}
.mod_option_wrap .option_list_box .td_sit_sel input[type=radio].it_supply{display: none;}
.mod_option_wrap .option_list_box .td_sit_sel label{margin-bottom: 5px; width: 100%; color: #888; font-size: 13px; font-weight: 300; line-height: 1.4em; border: 1px solid #eeeeee; margin-right: 5px; background-color: #fff; box-sizing: border-box; display: flex; align-items: center; justify-content: center; padding: 7px 10px; cursor: pointer; transition: all 0.3s ease 0s; word-break: break-all; height: 100%; border-radius: 2px;}
.mod_option_wrap .option_list_box .td_sit_sel label:hover{color:#333333; border: 1px solid #000000;}
.mod_option_wrap .option_list_box .td_sit_sel input[disabled] + label{cursor: not-allowed;}
.mod_option_wrap .option_list_box .td_sit_sel input:checked + label{color:#333333; border: 1px solid #000000;}

@media (max-width: 991px) {
  .mod_option_wrap {
    top: unset;
    bottom: -100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }
  .mod_option_wrap.mob {
    display: block;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }
  .mod_option_wrap .modal-dialog {
    margin: 0;
    transform: translate3d(0, 0, 0) !important;
  }
  .mod_option_wrap .modal-content {
    border-radius: 10px 10px 0 0;
    box-shadow: -4px -16px 98px 0 rgba(0, 0, 0, 0.06);
  }
  .mod_option_wrap .modal_body {
    padding: 50px 15px 15px;
  }
  .mod_option_wrap .option_form .modal_it_name p {
    font-size: 16px;
  }
  .mod_option_wrap .option_form .option_close {
    width: 15px;
    height: 15px;
    right: 15px;
    /* transform: translateX(-50%); */
    top: 20px;
  }
  .mod_option_wrap .option_form .option_close span {
    /* border: 1px solid #666;
    border-bottom: 0;
    border-left: 0; */
    position: relative;
    /* transform: rotate(135deg); */
  }
  .mod_option_wrap .option_form .option_close span::before {
    /* display: none; */
    height: 20px;
  }
  .mod_option_wrap .option_form .option_close span::after {
    /* display: none; */
    height: 20px;
  }
  .mod_option_wrap .option_form .option_tit {
    font-size: 14px;
  }
  .mod_option_wrap .option_form .option_list_box .option_sel .option_name {
    font-size: 15px;
    line-height: 35px;
    width: 110px;
  }
  .mod_option_wrap .option_form .option_list_box .option_sel select {
    height: 40px;
    line-height: 38px;
    padding: 0 15px;
    font-size: 15px;
    /* background-image: url(../img/moption_arrow.png);
    background-position: 96% 50%;
    background-size: 3%;
    background-repeat: no-repeat; */
    background: url(../img/mmoption_arrow.png) no-repeat right 12.5px center;
    background-size: 9px 5px;
    border-radius: 2.5px !important;
  }
  .mod_option_wrap .option_form #it_sel_option {
    margin-top: 40px;
  }
  .mod_option_wrap .option_form #it_sel_option #it_opt_added li {
    margin-bottom: 15px;
  }
  .mod_option_wrap .option_form #it_sel_option .row{
    /* padding: 21px 15px; */
    padding: 15px 17px 18px 20px;
    border-radius: 2.5px;
  }
  .mod_option_wrap .option_form #it_sel_option .row span {
    font-size: 15px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button {
    width: 30px;
    height: 30px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-7{
    padding-top: 10px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 {
    /* padding: 20px 0 26px; */
    padding-top: 20px;
    margin: 0;
  }
  .mod_option_wrap .option_form #it_sel_option .row .plus_group {
    width: 30px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .input_group {
    width: calc(100% - 60px);
  }
  .mod_option_wrap .option_form #it_sel_option .row > .input_group {
    width: 100%;
  }
  .mod_option_wrap .option_form #it_sel_option .row .input_group input {
    height: 30px;
    line-height: 28px;
    font-size: 13.5px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .input_group input::placeholder {
    font-size: 13.5px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .it_group {
    width: 30px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .it_group button.it_opt_del {
    margin-left: 8px;
  }
  .mod_option_wrap .option_form .tot_price {
    font-size: 17px;
    margin-bottom: 25px;
  }
  .mod_option_wrap .option_form .tot_price div {
    font-size: 19px;
  }
  .mod_option_wrap .option_form .change_btn button {
    height: 45px;
    line-height: 43px;
    font-size: 15px;
    border-radius: 3px !important;
  }
  /* 2024-09-02 (주)파이브센스_FIVESENSES.Corp. */
  .mod_option_wrap .it_opt_list .option_name > label{
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .mod_option_wrap .modal_body {
    padding: 40px 15px 15px;
  }
  .mod_option_wrap .option_form .option_close {
    width: 15px;
    height: 15px;
    top: 15px;
  }
  .mod_option_wrap .option_form .modal_it_name {
    margin-bottom: 20px;
  }
  .mod_option_wrap .option_form .modal_it_name p {
    font-size: 15px;
  }
  .mod_option_wrap .option_form .option_tit {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .mod_option_wrap .option_form .option_tit.option02_box {
    margin-top: 20px;
  }
  .mod_option_wrap .option_form .option_list_box .option_sel .option_name {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .mod_option_wrap .option_form .option_list_box .option_sel select {
    height: 35px;
    line-height: 33px;
    font-size: 13px;
  }
  .mod_option_wrap .option_form #it_sel_option {
    margin-top: 12px;
  }
  .mod_option_wrap .option_form #it_sel_option .row span {
    font-size: 13px;
    font-weight: 400;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box.col-sm-5 {
    padding: 10px 0 0;
    width: 93.5px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button {
    width: 30px;
    height: 30px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button span {
    width: 10px !important;
    height: 10px !important;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_plus span::before {
    height: 10px;
    right: 3.55px;
    top: 0;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_plus span::after {
    width: 10px;
    bottom: 3.55px;
    top: initial;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_qty_minus span::before {
    width: 10px;
    top: 5px;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_opt_del span::before {
    height: 11px;
    right: 3.55px;
    background: #666;
  }
  .mod_option_wrap .option_form #it_sel_option .row .op_box .input-group-btn button.it_opt_del span::after {
    height: 11px;
    right: 3.55px;
    background: #666;
  }
  .mod_option_wrap .option_form .tot_price {
    font-size: 17px;
    margin-bottom: 14px;
  }
  .mod_option_wrap .option_form .tot_price div {
    font-size: 19px;
  }
  .mod_option_wrap .option_form .change_btn button {
    height: 46px;
    line-height: 44px;
    font-size: 15px;
  }
}

/* 적립금 html > skin > apms > member > basic > point.skin.php */
.point_wrap {
  width: 100%;
  display: flex;
  gap: 50px;
}
.point_wrap .point_content {
  width: calc(100% - 200px);
}
.point_wrap .point_content .point_box {
  border: 1px solid #f2f2f2;
  margin-bottom: 40px;
  padding: 50px 80px;
  display: flex;
  align-items: center;
}
.point_wrap .point_content .point_box .text {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  flex-grow: 1;
}
.point_wrap .point_content .point_box .number {
  font-size: 22px;
  color: var(--main-point-color-hover);
  font-weight: 500;
}
.point_wrap .point_content .point_skin {
  width: 100%;
  border-top: 1px solid #444;
}
.point_wrap .point_content .point_skin .section-cell {
  text-align: center;
  font-size: 16px;
  color: var(--main-point-color);
  font-weight: 400;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}
.point_wrap .point_content .point_skin .section-cell.date, .point_wrap .point_content .point_skin .section-cell.expire-date, .point_wrap .point_content .point_skin .section-cell.point01, .point_wrap .point_content .point_skin .section-cell.point02 {
  width: 14.286%;
}
.point_wrap .point_content .point_skin .section-cell.content {
  width: 42.856%;
  text-align: left;
  padding-left: 35px;
}
.point_wrap .point_content .point_skin .section-cell.expire-date.red {
  color: #de1f1f;
}
.point_wrap .point_content .point_skin .section-cell.no_list {
  width: 100%;
  color: var(--main-point-color);
}
.point_wrap .point_content .point_head {
  display: flex;
  align-items: center;
}
.point_wrap .point_content .point_cont {
  display: flex;
  flex-direction: column;
}
.point_wrap .point_content .point_cont li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.point_wrap .point_content .point_cont .section-cell {
  color: #666;
  border-bottom: 0;
}
.point_wrap .point_content .point_cont .section-cell.content {
  color: #222;
}
.point_wrap .point_content .point_cont .section-cell.expire-date {
    color: var(--main-point-color-hover);
}
.point_wrap .point_content .point_footer {
  background: #f7f7f7;
  border-radius: 12px;
}
.point_wrap .point_content .point_footer .point_total {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 16px;
  color: #666;
  padding: 16px 0;
  font-weight: 400;
}
.point_wrap .point_content .point_footer .point_total .total_txt {
  width: 71.428%;
}
.point_wrap .point_content .point_footer .point_total .total_point {
  width: 14.286%;
}
.point_wrap .orderform_title {
  border-bottom: 0;
}
.point_wrap .orderform_title span {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  margin-left: 15px;
}
.point_wrap .text-center {
  margin: 50px 0 40px;
}
.point_wrap .text-center .pagination {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .point_wrap {
    display: block;
    gap: 0;
  }
  .point_wrap .point_content {
    width: 100%;
  }
  .point_wrap .point_content .point_box {
    border: 0;
    margin-bottom: 0;
    margin-top: 35px;
    /* padding: 17px 0; */
    padding: 0;
    height: 46px;
    line-height: 43px;
    display: block;
    background: var(--main-point-bg-color-hover);
    border-radius: 20px;
    text-align: center;
  }
  .point_wrap .point_content .point_box > div {
    display: inline-block;
    vertical-align: middle;
  }
  .point_wrap .point_content .point_box .text {
    color: #fff;
    font-size: 16px;
  }
  .point_wrap .point_content .point_box .number {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding-left: 10px;
    margin-left: 10px;
    position: relative;
  }
  .point_wrap .point_content .point_box .number::after {
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background: #fff;
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
  }
  .point_wrap .point_content .point_skin {
    border-top: 0;
  }
  .point_wrap .point_content .point_skin .section-cell {
    font-size: 16px;
    padding: 16px 0;
  }
  .point_wrap .point_content .point_skin .section-cell.date, .point_wrap .point_content .point_skin .section-cell.expire-date, .point_wrap .point_content .point_skin .section-cell.point01, .point_wrap .point_content .point_skin .section-cell.point02 {
    width: 19%;
  }
  .point_wrap .point_content .point_skin .section-cell.content {
    width: 43%;
    text-align: center;
    padding-left: 0;
  }
  .point_wrap .point_content .point_head {
    background: #f7f7f7;
    border-radius: 12px;
  }
  .point_wrap .point_content .point_head .section-cell {
    border-bottom: 0;
  }
  .point_wrap .point_content .point_cont li:last-child {
    border-bottom: 0;
  }
  .point_wrap .point_content .point_cont .section-cell {
    line-height: 1.2;
  }
  .point_wrap .point_content .point_cont .section-cell.content {
    text-align: left;
    padding-left: 10px;
  }
  .point_wrap .point_content .point_cont .section-cell.content span {
    display: block;
  }
  .point_wrap .point_content .point_cont .section-cell.content span.mob_date {
    color: #666;
    margin-bottom: 7px;
  }
  .point_wrap .point_content .point_footer .point_total .total_txt {
    width: 62%;
  }
  .point_wrap .point_content .point_footer .point_total .total_point {
    width: 19%;
  }
  .point_wrap .text-center {
    margin: 25px 0 50px;
  }
}
@media (max-width: 480px) {
  .point_wrap .point_content .point_box {
    margin-top: 25px;
    /* padding: 13px 0; */
  }
  .point_wrap .point_content .point_box .text {
    font-size: 14px;
    font-weight: 400;
  }
  .point_wrap .point_content .point_box .number {
    font-size: 14px;
    font-weight: 500;
  }
  .point_wrap .point_content .point_box .number::after{
    top: 52%;
  }
  .point_wrap .point_content .point_skin .section-cell {
    font-size: 11px;
    padding: 16px 0;
  }
  .point_wrap .point_content .point_head {
    border-radius: 6px;
  }
  .point_wrap .point_content .point_cont .section-cell.content span {
    display: block;
    font-size: 13px;
  }
  .point_wrap .point_content .point_cont .section-cell.content span.mob_date {
    font-size: 11px;
  }
  .point_wrap .point_content .point_footer {
    border-radius: 5px;
  }
  .point_wrap .point_content .point_footer .point_total {
    font-size: 11px;
    padding: 12px 0;
  }
}

/* 쿠폰 html > skin > apms > member > basic > coupon.skin.php */
.coupon_wrap {
  display: flex;
  gap: 50px;
}
.coupon_wrap .coupon_content {
  width: calc(100% - 200px);
}
.coupon_wrap .coupon_content .orderform_title {
  border-bottom: 0;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
}
.coupon_wrap .coupon_content .orderform_title span{
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    margin-left: 15px;
    margin-top: -3px;
}
@media(max-width:1200px){
  .coupon_wrap .coupon_content .orderform_title{display: block;}
  .coupon_wrap .coupon_content .orderform_title span{display: block; margin-left: 0; margin-top: 20px;}
}
@media(max-width:991px){
    .coupon_wrap .coupon_content .orderform_title{display: none;}
}
.coupon_wrap .coupon_content .coupon_skin {
  width: 100%;
  display: table;
  border-top: 1px solid #444;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell {
  text-align: center;
  font-size: 16px;
  color: #999;
  font-weight: 500;
  border-bottom: 1px solid #e1e1e1;
  padding: 19px 0;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.subject {
  width: 42.856%;
  padding: 20px 0 20px 30px;
  text-align: left;
}
.coupon_wrap .coupon_content .coupon_skin .coupon_head .section-cell.subject{
    text-align: center !important;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.date {
  width: 23.81%;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.target {
  width: 19.048%;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.price {
  width: 14.286%;
}
.coupon_wrap .coupon_content .coupon_skin .section-cell.no_list {
  width: 100%;
}
.coupon_wrap .coupon_content .coupon_head {
  width: 100%;
  display: flex;
  align-items: center;
}
.coupon_wrap .coupon_content .coupon_cont ul, .coupon_wrap .coupon_content .coupon_cont li, .coupon_wrap .coupon_content .coupon_cont ol {
  list-style: none;
}
.coupon_wrap .coupon_content .coupon_cont li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
}
.coupon_wrap .coupon_content .coupon_cont li.no_list div {
  width: 100%;
  color: var(--main-point-color);
}
.coupon_wrap .coupon_content .coupon_cont .section-cell {
  border-bottom: 0;
  color: #666;
  font-weight: 400;
}
.coupon_wrap .coupon_content .coupon_cont .section-cell.subject {
  color: var(--main-point-color);
  font-weight: 400;
}
.coupon_wrap .coupon_content .coupon_cont li.no_list div .no_data{color: #666666;font-size: 16px;line-height: 1em;text-align: center;}
.coupon_tab {display: flex; gap: 7px;	margin-bottom: 50px;}
.coupon_tab .coupon_tab_item a {width: auto; padding: 0 24px; height: 40px; display: flex; justify-content: center; align-items: center;  border-radius: 20px; border: 1px solid #e1e1e1; color: #999; font-size: 14px; font-weight: 500;}
.coupon_tab .coupon_tab_item a span{margin-left: 3px;}
.coupon_tab .coupon_tab_item.active a {border: 1px solid var(--main-point-btn-line-color-hover); color: #fff; background: var(--main-point-btn-bg-color-hover);}
.title_group .toggle_title {cursor: pointer;}
.coupon_wrap .coupon_tit_box{display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px;}
.coupon_wrap .register_coupon{width: 40%;}
.coupon_wrap .register_coupon input{font-size: 14px; border: 1px solid #e1e1e1; line-height: 38px; width: calc(100% - 98px); border-radius: 3px; padding: 0 20px;}
.coupon_wrap .register_coupon input::placeholder{color: #999999;}
.coupon_wrap .register_coupon button{background-color: #999999; border: 1px solid #999999; border-radius: 3px; color: #fff; font-size: 14px; line-height: 38px; width: 91px; margin-left: 1px;}
@media(max-width:1200px){
  .coupon_wrap .coupon_tit_box{align-items: flex-end;}
}
.present_coupon.off_coupon{border-top: 1px solid #444444; padding-top: 36px; padding-bottom: 40px;}
.present_coupon.off_coupon .coupon_item + li{margin-top: 20px;}
.present_coupon.off_coupon .coupon_item .wrap{display: flex; align-items: center; border: 1px solid #e1e1e1; border-radius: 10px; padding: 40px 50px 35px; position: relative;}
.present_coupon.off_coupon .coupon_item .coupon_img{border-radius: 50%; overflow: hidden; border: 1px solid #f6f6f6; margin-right: 30px;}
.present_coupon.off_coupon .coupon_item .coupon_info .cate{color: var(--main-point-color-hover); font-size: 11px; font-weight: 500; line-height: 1em; padding: 1.5px 5px; border-radius: 3px; background-color: #f3effe;}
.present_coupon.off_coupon .coupon_item .coupon_info .title{color: #222222; font-size: 19px; font-weight: 500; line-height: 1em; padding: 15px 0 20px;}
.present_coupon.off_coupon .coupon_item .coupon_info > div{color: #666666; font-size: 13px; font-weight: 400; line-height: 1.6em;}
.present_coupon.off_coupon .coupon_item .coupon_info > div span{color: #aaaaaa; margin-right: 20px;}
.present_coupon.off_coupon .coupon_item .sharing_btn{position: absolute; top: 50%; right: 50px; margin-top: -11px;}
.present_coupon.off_coupon .coupon_item .sharing_btn a{color: #381e1f; font-size: 13px; line-height: 1em; padding: 9.5px 16px; background-color: #fae100; border-radius: 19px;}
.present_coupon.off_coupon .coupon_item .off{display: none;}
.present_coupon.off_coupon .coupon_item.used .wrap::after{content: ''; display: block; position: absolute; border-radius: 10px; top: 0; left: 0; width: 100%; height: 100%; background-color: #cccccc; opacity: 0.25;}
.present_coupon.off_coupon .coupon_item.used .coupon_info .cate{color: #999999; background-color: #e5e5e5;}
.present_coupon.off_coupon .coupon_item.used .coupon_info .title{color: #888888;}
.present_coupon.off_coupon .coupon_item.used .coupon_info > div{color: #888888;}
.present_coupon.off_coupon .coupon_item.used .coupon_info > div span{color: #888888;}
.present_coupon.off_coupon .coupon_item.used .sharing_btn a{color: #999; background-color: #e1e1e1;}
.present_coupon.off_coupon .coupon_item.used .on{display: none;}
.present_coupon.off_coupon .coupon_item.used .off{display: inline-block;}

.present_coupon.off_coupon .coupon_item .wrap .no_data{color: #666666;font-size: 16px;line-height: 1em;padding: 21.25px 0 0;text-align: center;}

@media (max-width: 991px) {
	 .title_group {position: relative; margin-bottom: 35px;}
	 .title_group .toggle_title {display: block;text-align: center;width: 100%;padding: 15px;font-size: 13px;color: #fff;/* border-bottom: 1px solid #b0c620; */background: #b69a71;position: relative;font-weight: 500;border-radius: 22.5px;}
	 .title_group .toggle_title::before {position: absolute; content: ''; top:50%; right: 20px; transform: translateY(-50%); background: url('/img/coupon_arrow.png');width: 11px; height: 6px;}
	 .title_group .toggle_title.on::before {transform: translateY(-50%) rotate(180deg);}
	 .title_group .title_list {display: none; position: absolute;width: 100%;z-index: 3;background: #fff;top: calc(100% + 8px);padding: 25px;text-align: center;border-radius: 10px;border: 1px solid #eeeeee;flex-direction: column;gap: 20px;}
	 .title_group .title_list.on {display: flex;}
	 .title_group .title_list .title {font-size: 13px;}
     .present_coupon.off_coupon .coupon_item .wrap .no_data{font-size: 13px;}
     .coupon_wrap .coupon_content .coupon_cont li.no_list div .no_data{font-size: 13px;}
}
@media (max-width: 991px) {
  .coupon_wrap {
    display: block;
    gap: 0;
    margin-bottom: 50px;
  }
  .coupon_wrap .coupon_content {
    width: 100%;
  }
  .coupon_wrap .coupon_content .coupon_skin {
    border-top: 0;
  }
  .coupon_wrap .coupon_content .coupon_skin .section-cell {
    font-size: 16px;
    padding: 16px 0;
    text-align: center;
    color: #222222;
  }
  .coupon_wrap .coupon_content .coupon_skin .section-cell.subject {
    width: 55%;
    padding: 9.5px 0;
    text-align: center;
  }
  .coupon_wrap .coupon_content .coupon_skin .section-cell.target {
    width: 25%;
  }
  .coupon_wrap .coupon_content .coupon_skin .section-cell.price {
    width: 25%;
  }
  .coupon_wrap .coupon_content .coupon_head {
    background: #f6f6f6;
    border-radius: 12px;
  }
  .coupon_wrap .coupon_content .coupon_head .section-cell {
    border-bottom: 0;
  }
  .coupon_wrap .coupon_content .coupon_cont .section-cell {
    line-height: 1.2;
    border-bottom: 0;
    color: #666;
  }
  .coupon_wrap .coupon_content .coupon_cont .section-cell.subject {
    text-align: left;
    padding: 15px 0 15px 10px;
  }
  .coupon_wrap .coupon_content .coupon_cont .section-cell.subject span {
    display: block;
    font-size: 13px;
  }
  .coupon_wrap .coupon_content .coupon_cont .section-cell.subject span.mob_date {
    color: #666;
    margin-bottom: 5px;
    font-size: 11px;
  }

  .coupon_tab{position: relative; padding-bottom: 10px; margin-bottom: 20px;}
  .coupon_tab::after{content: ''; display: block; background-color: #eeeeee; width: calc(100% + 30px); height: 1px; position: absolute; left: -15px; bottom: 0;}
  .coupon_tab .coupon_tab_item a{padding: 0 12px; height: 30px; color: #5d5e68; border: 1px solid #f3f3f6; background-color: #f3f3f6;}
  .coupon_tab .coupon_tab_item.active a{border: 1px solid var(--main-point-bg-soft-color-active); background-color: var(--main-point-bg-soft-color-active);}
  .coupon_wrap .coupon_tit_box{padding-bottom: 20px;}
  .coupon_wrap .register_coupon{width: 100%;}
  .coupon_wrap .register_coupon input{font-size: 12px; border: 1px solid #e6e6e6; padding: 0 15px; border-radius: 2.5px; width: calc(100% - 85px); line-height: 31px;}
  .coupon_wrap .register_coupon button{border: 1px solid #666; background-color: #666; font-size: 12px; border-radius: 2.5px; width: 80px; line-height: 31px; margin-left: 2px;}
  .present_coupon.off_coupon{padding-top: 0; border: none;}
  .present_coupon.off_coupon .coupon_item .wrap{padding: 22px 20px 20px;}
  .present_coupon.off_coupon .coupon_item + li{margin-top: 10px;}
  .present_coupon.off_coupon .coupon_item .coupon_img{width: 95px; height: 95px; margin-right: 18px; min-width: 95px;}
  .present_coupon.off_coupon .coupon_item .coupon_info .cate{font-size: 10px; padding: 1.5px 3px;}
  .present_coupon.off_coupon .coupon_item .coupon_info .title{font-size: 15px; line-height: 1.2em; padding: 8px 0 14px;}
  .present_coupon.off_coupon .coupon_item .coupon_info > div {font-size: 12px;}
  .present_coupon.off_coupon .coupon_item .coupon_info > div span{color: #999; margin-right: 12px;}
  .present_coupon.off_coupon .coupon_item .sharing_btn{top: 15px; right: 15px; margin-top: 0;}
  .present_coupon.off_coupon .coupon_item .sharing_btn a{padding: 0; display: block; width: 28px; height: 28px; border-radius: 50%;}
  .present_coupon.off_coupon .coupon_item .sharing_btn a img{width: 100%;}
  .present_coupon.off_coupon .coupon_item img.on{display: inline-block;}
  .present_coupon.off_coupon .coupon_item.used .sharing_btn a img.off{display: inline-block;}
}
@media (max-width: 480px) {
  .coupon_wrap .coupon_content .coupon_skin .section-cell {
    font-size: 12px;
    padding: 9.5px 0;
  }
  .coupon_wrap .coupon_content .coupon_head {
    border-radius: 6px;
  }
}

/* 배송지 관리 html > skin > apms > order > basic > orderaddress.skin.php */
.orderaddress_wrap {
  display: flex;
  gap: 50px;
}
.orderaddress_wrap .address_content {
  width: calc(100% - 200px);
}
.orderaddress_wrap .address_content .sod_orderaddr {
  width: 100%;
  display: table;
  border-top: 1px solid #444;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell {
  text-align: center;
  font-size: 16px;
  color: var(--main-point-color);
  font-weight: 400;
  border-bottom: 1px solid #eee;
  padding: 22px 0;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_txt {
  width: 63.138%;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_name {
  width: 10.953%;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_tel {
  width: 18.765%;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_del {
  width: 7.144%;
}
.orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_del a {
  background-color: #fff;
  border-color: #fff;
  padding: 0;
}
.orderaddress_wrap .address_content .title_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.orderaddress_wrap .address_content .orderform_title {
  border-bottom: 0;
}
.orderaddress_wrap .address_content .orderform_title span {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  margin-left: 15px;
}
.orderaddress_wrap .address_content .title_box .modify{
    font-size: 16px;
    color: var(--main-point-color-hover);
    position: relative;
}
.orderaddress_wrap .address_content .title_box .modify::after{
    content: "";
    width: 100%;
    height: 1px;
    background: var(--main-point-color-hover);
    position: absolute;
    bottom: -5px;
    left: 0;
}
@media (max-width: 991px){
    .orderaddress_wrap .address_content .title_box .modify{
        font-size: 13px;
        margin-bottom: 20px;
        margin-left: 9px;
    }
}
.orderaddress_wrap .address_content .address_head {
  width: 100%;
  display: flex;
  align-items: center;
}
.orderaddress_wrap .address_content .address_cont ul, .orderaddress_wrap .address_content .address_cont li, .orderaddress_wrap .address_content .address_cont ol {
  list-style: none;
}
.orderaddress_wrap .address_content .address_cont li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
}
@media (max-width: 480px) {
  .orderaddress_wrap .address_content .address_cont li.no_list {
    min-height: calc(100vh - 210px);
    justify-content: center;
  }
}
.orderaddress_wrap .address_content .address_cont li.no_list div {
  width: 100%;
}
.orderaddress_wrap .address_content .address_cont li.no_list div img{
    display: block;
    margin: 0 auto 15px;
}
@media (max-width: 991px){
    .orderaddress_wrap .address_content .address_cont li.no_list div img{
        width: 41px;
        height: 41px;
    }
}
.orderaddress_wrap .address_content .address_cont .section-cell {
  border-bottom: 0;
  color: #666;
}
.orderaddress_wrap .address_content .address_cont .section-cell.add_txt {
  padding-left: 20px;
  text-align: left;
}
.orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div {
  display: inline-block;
  line-height: 1.2em;
}
.orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon span {
  display: block;
  font-size: 13px;
  color: #444;
  font-weight: 500;
  background: #f7f7f7;
  padding: 6px 8px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .orderaddress_wrap {
    gap: 0;
  }
  .orderaddress_wrap .address_content {
    width: 100%;
  }
  .orderaddress_wrap .address_content .sod_orderaddr {
    border-top: 0;
  }
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell {
    padding: 5px 0;
    text-align: left;
    font-size: 13px;
  }
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_txt {
    width: 90%;
  }
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_name {
    width: 17%;
    border-right: 1px solid #e0e0e0;
    margin-right: 4%;
  }
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_tel {
    width: 65%;
  }
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_del {
    width: auto;
  }
  .orderaddress_wrap .address_content .address_cont li {
    flex-wrap: wrap;
    position: relative;
    padding: 20px 0 20px 9px;
  }
  .orderaddress_wrap .address_content .address_cont li:first-child {
    padding-top: 0;
  }
  .orderaddress_wrap .address_content .address_cont li.no_list div {
    text-align: center;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_txt {
    padding-left: 0;
    text-align: left;
    color: #444;
    font-size: 15px;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div {
    display: block;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon {
    width: 70px;
    text-align: center;
    margin-bottom: 10px;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon span {
    font-size: 10px;
    padding: 6px 0;
    border-radius: 9px;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_del {
    position: absolute;
    right: 10px;
    top: 20px;
    padding: 0;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_del img {
    height: 20px;
  }
  .orderaddress_wrap .address_content .address_head {
    display: none;
  }
}
@media (max-width: 480px) {
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell {
    padding: 5px 0;
    font-size: 11px;
  }
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_txt {
    width: 90%;
  }
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_name {
    width: 17%;
    border-right: 1px solid #e0e0e0;
    margin-right: 4%;
  }
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_tel {
    width: 65%;
  }
  .orderaddress_wrap .address_content .sod_orderaddr .section-cell.add_del {
    width: auto;
  }
  .orderaddress_wrap .address_content .address_cont li {
    padding: 20px 0 20px 9px;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_txt {
    font-size: 13px;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon {
    width: 65px;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_txt > div.add_icon span {
    font-size: 10px;
    padding: 4px 0;
    border-radius: 8px;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_del {
    top: 20px;
  }
  .orderaddress_wrap .address_content .address_cont .section-cell.add_del img {
    height: 20px;
  }
}

/****************************
서브 > 상품상세페이지
html > skin > apms > item > Miso-basic4 > item.skin.php
****************************/
.item_detail.item-wrap {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap {
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .mobile_divide {
    padding-bottom: 0px;
    position: relative;
  }
  .item_detail.item-wrap .mobile_divide:after {
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: 9px;
    background: #eff2f5;
    position: absolute;
    bottom: 0;
    left: -15px;
  }
}
.item_detail.item-wrap .item-head {
  margin-bottom: 80px;
}
.item_detail.item-wrap .item-body {
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head {
    margin-bottom: 0;
  }
}
.item_detail.item-wrap .item-head .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row {
    flex-direction: column;
    padding-bottom: 8px;
  }
  .item_detail.item-wrap .item-head .row .thumb_big {
    width: calc(100% + 30px);
    position: relative;
    left: -15px;
  }
  .item_detail.item-wrap .item-head .row .thumb_big img {
    width: 100%;
    aspect-ratio: 1 / 1;
  }
}
.item_detail.item-wrap .item-head .row .img-container {
  width: 46.15%;
  float: none;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .img-container {
    width: 100%;
    overflow: visible;
  }
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb {
  padding: 0;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb {
    padding: 12px 0;
  }
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb ul {
  margin: 0 -4px;
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb ul li {
  margin: 10px 0 0 0;
  /* display: inline-block; */
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb ul li a {
  position: relative;
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb ul li a::after{content:""; display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,.02); z-index: 2;}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb ul li {
    border-radius: 4px;
    overflow: hidden;
  }
  .item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb ul li img {
    width: 64px;
    height: 64px;
    border-radius: 2.5px;
  }
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb ul .active {
  /* border: 1px solid var(--main-point-line-color-hover); */
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap #sit_pvi_thumb ul .active img {
    border: 2px solid var(--main-point-line-color-hover);
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap button {
    text-align: center;
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap button.btn_prev {
  text-align: left;
}
.item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap button.btn_next {
  
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .img-container .thumb_tab_wrap button {
    display: none;
  }
}
.item_detail.item-wrap .item-head .row .form-container {
  width: 53.85%;
  float: none;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container {
    width: 100%;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text {
  padding-left: 17.14%;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text {
    padding: 50px 0 0px;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .label-tack {
    display: block;
    padding: 0;
    /* margin-bottom: 10px; */
  }
  .item_detail.item-wrap .item-head .row .form-container .text .mob_tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .mob_tab li {
    width: calc(50% - 4px);
  }
  .item_detail.item-wrap .item-head .row .form-container .text .mob_tab li a {
    text-align: center;
    height: 43px;
    line-height: 41px;
    font-size: 14px;
    display: block;
    background: rgba(214, 214, 214, 0.2);
    border-radius: 5px;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .mob_tab li a img {
    height: 13px;
    margin-right: 6px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .item_tt {
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px){
    .item_detail.item-wrap .item-head .row .form-container .text .item_tt{
        align-items: flex-start;
    }
}
.item_detail.item-wrap .item-head .row .form-container .text .item_tt .item_name {
  color: var(--main-point-color);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4em;
  padding-right: 40px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .item_tt .item_name {
    font-size: 20px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .item_tt .btn_share{
  position: relative;
  margin-left: 12px;
}

@media (max-width: 991px){
  .item_detail.item-wrap .item-head .row .form-container .text .item_tt .btn_box a img{
    width: 20px;
  }
}
@media (max-width: 480px){
  .item_detail.item-wrap .item-head .row .form-container .text .item_tt .btn_box a img{
    width: 15px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .desc {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 1.4em;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .desc {
    padding-top: 15px;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .price {
  margin: 35px 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .price {
    display: none;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .price .real_price {
  color: var(--main-point-color);
  font-size: 18px;
  font-weight: 300;
}
.item_detail.item-wrap .item-head .row .form-container .text .price .real_price .num {
  font-size: 26px;
  font-weight: 400;
  display: inline-block;
  /* margin-right: 5px; */
}
.item_detail.item-wrap .item-head .row .form-container .text .price .origin_price {
  display: none;
}
.item_detail.item-wrap .item-head .row .form-container .text .price .percent {
  display: none;
}
.item_detail.item-wrap .item-head .row .form-container .text .price .btn_share {
  display: block;
  padding-right: 12px;
}
.item_detail.item-wrap .item-head .row .form-container .text .option-line {
  width: 100%;
  height: 1px;
  border-color: #ebebeb;
  margin: 20px 0;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .option-line {
    margin: 10px 0;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .option-line.top {
  border-color: #222;
  margin: 28px 0;
}
.item_detail.item-wrap .item-head .row .form-container .text .option-line.top.mg40 {
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .item_detail.item-wrap .item-head .row .form-container .text .option-line.top.mg40 {
        display: none;
    }
}
@media (max-width: 480px) {
    .item_detail.item-wrap .item-head .row .form-container .text .option-line.top {
        margin: 15px 0 15px;
    }
}
.item_detail.item-wrap .item-head .row .form-container .text .it_option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_tt {
  padding-top: 0;
  color: #222;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  width: 150px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .it_option{
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_tt {
    font-size: 12px;
    line-height: 30px;
    width: 90px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con {
  padding-top: 0;
  color: #666;
  font-size: 14px;
  line-height: 30px;
  width: calc(100% - 150px);
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con {
    font-size: 12px;
    line-height: 30px;
    width: calc(100% - 90px);
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con.price_con .origin_price {
  font-size: 17px;
  display: inline-block;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con.price_con .origin_price {
    font-size: 12px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con.price_con .real_price {
  display: inline-block;
  color: #222;
  font-size: 18px;
  font-weight: 500;
  margin-left: 13px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con.price_con .real_price {
    font-size: 15px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con.price_con .real_price .num {
  display: inline-block;
}
.item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con.price_con .percent {
  display: inline-block;
  margin-left: 15px;
  color: #fa193e;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con.price_con .percent {
    font-size: 15px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con select {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 5px !important;
  height: 50px;
  line-height: 48px;
  padding: 0 20px;
  appearance: none;
  background: url(../../img/icon_drop.png) no-repeat calc(100% - 20px) center;
  color: #999;
  font-size: 15px;
  box-shadow: none;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .it_option .it_option_con select {
    height: 35px;
    line-height: 33px;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 13px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con {
  margin-top: 13px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ebebeb;
    position: fixed;
    bottom: 62px;
    left: 0;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .btn_payview {
    height: 8px;
    border: none;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .btn_payview a {
    display: none;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .btn_payview.active {
    padding: 13px 0;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .btn_payview.active a {
    display: block;
    height: 6px;
    position: relative;
    top: -4px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .btn_payview.active a:after {
    display: none;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con.open {
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -5px 65px rgba(0, 0, 0, 0.6);
    bottom: -55px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab > div{width: 100%;}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab {
    display: none;
    max-height: 88vh;
    overflow-y: auto;
    padding-bottom: 10px;
    transition: padding-top 0.2s;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .ov_box{
    transition: padding-top 0.2s;

  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab.on .ov_box{
    padding-top: 100px;
  }
  /* 2024-08-19 (주)파이브센스_FIVESENSES.Corp. */
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab.on_2 .ov_box{
    padding-top: 50px;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab > div.ov_box{
    max-height: 60vh;
    overflow-y: auto;
    padding-top: 5px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab #it_sel_option {
  width: 100%;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel {
    flex-direction: column;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li {
  list-style: none;
  width: 100%;
  margin-bottom: 12px;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li.option_name {
  /* width: 105px; */
  display: none;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li.option_name {
    width: 100%;
    font-size: 15px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li.option_name label {
  line-height: 32px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li:last-child {
  /* width: calc(100% - 105px); */
  width: 100%;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li:last-child {
    width: 100%;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel select {
  width: 100%;
  border-radius: 5px !important;
  height: 45px;
  line-height: 43px;
  padding: 0 40px 0 12px;
  appearance: none;
  background: url(../../img/icon_drop.png) no-repeat calc(100% - 15px) center;
  color: #666; 
  font-size: 14px; 
  font-weight: 400; 
  border: 1px solid #f2f2f2;
  box-shadow: none;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel select:focus{
  border: 1px solid var(--main-point-line-color-hover);
  background: url(../../img/icon_drop_on.png) no-repeat calc(100% - 15px) center;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel select {
    height: 35px;
    line-height: 33px;
    border-radius: 4px;
    background: url(../img/micon_drop.png) no-repeat calc(100% - 18px) center; 
    background-size: 8px 5px; 
    padding: 0 30px 0 17px; 
    font-size: 12.5px;
  }  
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel select:focus{
    background: url(../../img/micon_drop_on.png) no-repeat calc(100% - 18px) center;
    background-size: 8px 5px; 
  }
}

/* 2024-08-19 (주)파이브센스_FIVESENSES.Corp. */
/* .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li.option_name{} */
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li.option_name{display: block; width: 0; margin: 0; position: relative;}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li.option_name label{display: none;}
.item_detail.item-wrap .pay_tab .option_sel div.preview_option{position: absolute; top: -27px; left: -175px; width: 162px; /*height: 160px;*/ box-shadow: 0 0 15px 5px rgba(61,61,61,0.1); border: 1px solid #0c0c0c; background-color: #fff;}
.item_detail.item-wrap .pay_tab .option_sel div.preview_option::before{content: ''; display: block; position: absolute; border-style: solid; border-width: 8px 0px 8px 8px; border-color: transparent #0c0c0c; width: 0; z-index: 1; right: -8px; top: 12px;}
.item_detail.item-wrap .pay_tab .option_sel div.preview_option::after{content: ''; display: block; position: absolute; border-style: solid; border-width: 7px 0px 7px 7px; border-color: transparent #fff; width: 0px; z-index: 1; right: -7px; top: 13px;}
.item_detail.item-wrap .pay_tab .option_sel div.preview_option img{width: 100%;}
@media (max-width: 991px){
    .item_detail.item-wrap .item-head .row .form-container .text .pay_con .pay_tab .option_sel li.option_name{width: 0 !important;}
    .item_detail.item-wrap .pay_tab .option_sel div.preview_option{width: 80px; height: 80px; left: 0; top: -105px; box-shadow: 0 0 10px 0px rgba(61,61,61,0.1);}
    .item_detail.item-wrap .pay_tab .option_sel div.preview_option::before{transform: rotate(90deg); top: auto; right: auto; left: 8px; bottom: -12px;}
    .item_detail.item-wrap .pay_tab .option_sel div.preview_option::after{transform: rotate(90deg); top: auto; right: auto; left: 8px; bottom: -11px; border-width: 8px 0px 8px 8px;}
  }

.item_detail.item-wrap .pay_tab .option_radio{width: 100%; margin-bottom: 15px;}
.item_detail.item-wrap .pay_tab .option_radio .option_name{position: relative; margin-bottom: 15px;}
.item_detail.item-wrap .pay_tab .option_radio .option_name > label {font-size: 14px; font-weight: 500; color: #999;}
.item_detail.item-wrap .pay_tab .list-group .option_radio .option_name > label {color: #666;}
.item_detail.item-wrap .pay_tab .option_radio div.preview_option{position: absolute; top: -11px; left: -175px; width: 162px; /*height: 160px;*/ box-shadow: 0 0 15px 5px rgba(61,61,61,0.1); border: 1px solid #0c0c0c; background-color: #fff;}
.item_detail.item-wrap .pay_tab .option_radio div.preview_option::before{content: ''; display: block; position: absolute; border-style: solid; border-width: 8px 0px 8px 8px; border-color: transparent #0c0c0c; width: 0; z-index: 1; right: -8px; top: 12px;}
.item_detail.item-wrap .pay_tab .option_radio div.preview_option::after{content: ''; display: block; position: absolute; border-style: solid; border-width: 7px 0px 7px 7px; border-color: transparent #fff; width: 0px; z-index: 1; right: -7px; top: 13px;}
.item_detail.item-wrap .pay_tab .option_radio div.preview_option img{width: 100%;}
.item_detail.item-wrap .pay_tab .option_radio .op_warp{display: flex; flex-wrap: wrap;}
.item_detail.item-wrap .pay_tab .option_radio .op_warp > div{margin-bottom: 5px;}
.item_detail.item-wrap .pay_tab .option_radio .op_warp input[type=radio].it_option{display: none;}
.item_detail.item-wrap .pay_tab .option_radio .op_warp label{width: 114px; color: #888; font-size: 14px; font-weight: 300; line-height: 1.4em; border: 1px solid #eeeeee; margin-right: 5px; background-color: #fff; box-sizing: border-box; display: flex; align-items: center; justify-content: center; padding: 9.25px 10px; cursor: pointer; transition: all 0.3s ease 0s; word-break: break-all; height: 100%;}
.item_detail.item-wrap .pay_tab .option_radio .op_warp label:hover{color:#333333; border: 1px solid #000000;}
.item_detail.item-wrap .pay_tab .option_radio .op_warp input[disabled] + label{cursor: not-allowed;}
.item_detail.item-wrap .pay_tab .option_radio .op_warp input:checked + label{color:#333333; border: 1px solid #000000;}
.item_detail.item-wrap .pay_tab .option_radio .td_sit_sel{display: flex; flex-wrap: wrap;}
.item_detail.item-wrap .pay_tab .option_radio .td_sit_sel > div{margin-bottom: 5px;}
.item_detail.item-wrap .pay_tab .option_radio .td_sit_sel input[type=radio].it_supply{display: none;}
.item_detail.item-wrap .pay_tab .option_radio .td_sit_sel label{width: 145px; color: #888; font-size: 14px; font-weight: 300; line-height: 1.4em; border: 1px solid #eeeeee; margin-right: 5px; background-color: #fff; box-sizing: border-box; display: flex; align-items: center; justify-content: center; padding: 9.25px 10px; cursor: pointer; transition: all 0.3s ease 0s; word-break: break-all; height: 100%;}
.item_detail.item-wrap .pay_tab .option_radio .td_sit_sel label:hover{color:#333333; border: 1px solid #000000;}
.item_detail.item-wrap .pay_tab .option_radio .td_sit_sel input:checked + label{color:#333333; border: 1px solid #000000;}
.item_detail.item-wrap #it_sel_option .list-group{width: 100%;}
.item_detail.item-wrap #it_sel_option .list-group .option_li{display: flex; flex-wrap: wrap; gap: 5px;}
.item_detail.item-wrap #it_sel_option .list-group .option_li div{margin-bottom: 5px; flex: 1; min-width: 25%;}
.item_detail.item-wrap #it_sel_option .list-group .option_li input[type=radio].it_custom{display: none;}
.item_detail.item-wrap #it_sel_option .list-group .option_li label{margin-bottom: 5px; width: 100%; color: #888; font-size: 13px; font-weight: 300; line-height: 1.4em; border: 1px solid #eeeeee; margin-right: 5px; background-color: #fff; box-sizing: border-box; display: flex; align-items: center; justify-content: center; padding: 7px 10px; cursor: pointer; transition: all 0.3s ease 0s; word-break: break-all; height: 100%; border-radius: 2px;}
.item_detail.item-wrap #it_sel_option .list-group .option_li label:hover{color:#333333; border: 1px solid #000000;}
.item_detail.item-wrap #it_sel_option .list-group .option_li input[disabled] + label{cursor: not-allowed;}
.item_detail.item-wrap #it_sel_option .list-group .option_li input:checked + label{color:#333333; border: 1px solid #000000;}

@media (max-width: 991px){
  .item_detail.item-wrap .pay_tab .option_radio{margin-bottom: 25px;}
  .item_detail.item-wrap .pay_tab .option_radio .option_name{margin-bottom: 10px;}
  .item_detail.item-wrap .pay_tab .option_radio .option_name > label{color: #666;}
  .item_detail.item-wrap .pay_tab .option_radio div.preview_option{width: 80px; height: 80px; left: 0; top: -90px; box-shadow: 0 0 10px 0px rgba(61,61,61,0.1);}
  .item_detail.item-wrap .pay_tab .option_radio div.preview_option::before{transform: rotate(90deg); top: auto; right: auto; left: 8px; bottom: -12px;}
  .item_detail.item-wrap .pay_tab .option_radio div.preview_option::after{transform: rotate(90deg); top: auto; right: auto; left: 8px; bottom: -11px; border-width: 8px 0px 8px 8px;}
  .item_detail.item-wrap .pay_tab .option_radio .op_warp label{width: 105px; margin-right: 4px; margin-bottom: 4px; padding: 7.5px 10px; font-weight: 500; font-size: 13px;}
  .item_detail.item-wrap .pay_tab .option_radio .td_sit_sel label{margin-right: 4px; margin-bottom: 4px; padding: 7.5px 10px; font-weight: 500; font-size: 13px;}
  .item_detail.item-wrap #it_sel_option .list-group .option_li label{margin-right: 4px; margin-bottom: 4px; padding: 5px 10px; font-weight: 500; font-size: 13px;}
}

.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group {
  margin-top: 17px;
  width: 100%;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item {
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 5px !important;
  margin-top: 12px;
  padding: 10px 20px !important;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item {
    background: none;
    border: none;
    padding: 0 !important;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-7, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_tit {
  padding: 0;
  /* width: 64.535%; */
  width: 100%;
  padding-right: 20px;
  line-height: 15px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-7, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_tit {
    width: 100%;
    padding-right: 0;
    margin-bottom: 12px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-7 .it_opt_subj, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_tit .it_opt_subj {
  font-size: 15px;
  line-height: 2.1;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-7 .it_opt_subj, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_tit .it_opt_subj {
    font-size: 13px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-5, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_count {
  padding: 0;
  width: 35.465%;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-5 input, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_count input {
  height: 32px;
  line-height: 30px;
  padding: 0 20px;
  text-align: center;
  border: 1px solid #eaeaea;
  border-radius: 0 0 0 0 !important;
  font-size: 14px;
  color: #222;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-5 input, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_count input {
    background: none;
    border: none;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-5, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_count {
    width: 100%;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-5 .input-group, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_count .input-group {
    width: 100%;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-5 .input-group-btn.plus_group, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_count .input-group-btn.plus_group {
    width: 28px;
    height: 28px;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col-sm-5 .input-group-btn.minus_group, .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .col_count .input-group-btn.minus_group {
    width: 28px;
    height: 28px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn {
  height: 32px;
  line-height: 30px;
  padding: 0;
  width: 30px;
  background: #fafafa;
  border: 1px solid #eaeaea;
  outline: none;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn {
    height: 28px;
    line-height: 26px;
    line-height: initial;
    width: 28px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn.it_qty_plus {
  border-radius: 5px 0 0 5px !important;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn.it_qty_plus {
    border-radius: 50% !important;
    background: #fff;
    border: 1px solid #c7c7c7;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn.it_qty_minus {
  border-radius: 5px 0 0 5px !important;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn.it_qty_minus {
    border-radius: 50% !important;
    background: #fff;
    border: 1px solid #333;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn.it_qty_minus.radius {
  border-radius: 0 5px 5px 0 !important;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn.it_qty_minus.radius {
    border-radius: 50% !important;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn.it_opt_del {
  border-radius: 0 5px 5px 0 !important;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .btn.it_opt_del {
    border-radius: 50% !important;
    /* background: #f3f3f3; */
    margin-left: 10px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa {
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: top;
  line-height: 1;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-plus-circle:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 1px;
  transform: translate(-3px, 0) rotate(0);
  background: #555;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-plus-circle:before {
    background: #c7c7c7;
    width: 8px;
    transform: translate(-4.5px, 0) rotate(0);
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-plus-circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 7px;
  transform: translate(0, -3px) rotate(0);
  background: #555;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-plus-circle:after {
    background: #c7c7c7;
    height: 8px;
    transform: translate(-1px, -3.5px) rotate(0);
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-minus-circle:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 1px;
  transform: translate(-4px, 0) rotate(0);
  background: #555;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-minus-circle:before {
    background: #333;
    width: 8px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-times-circle {
  transform: translate(0, 0) rotate(45deg);
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-times-circle:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-4.5px, 0) rotate(0);
  background: #555;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-times-circle:before {
    background: #666;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-times-circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 10px;
  transform: translate(0, -4.5px) rotate(0);
  background: #555;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .list-group .list-group-item .row .fa-times-circle:after {
    background: #666;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .price-sum {
  width: 100%;
  margin: 45px 0 33px;
  color: var(--main-point-color);
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .price-sum {
    margin: 24px 0;
    font-size: 12px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .price-sum b {
  margin-left: 10px;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .price-sum b span {
  font-family: 'Pretendard';
  color: var(--main-point-color);
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .price-sum b span {
    font-size: 18px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .price-sum b .won {
  color: var(--main-point-color);
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  margin-left: 0px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .price-sum b .won {
    font-size: 12px;
    margin-left: 0;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-footer {
  margin-top: 15px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-footer {
    margin-top: 0;
    padding: 0 15px 9px;
    background: #fff;
    position: relative;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li {
  /* width: 10.34%; */
  width: calc(50% - 5.5px);
  margin: 0;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li img {
    height: 18px;
  }
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li {
    width: 8.3%;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li img {
    height: 14px;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li.btn_cart {
  /* margin: 0 1.72%; */
  margin-right: 11px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li.btn_cart {
    margin: 0 5% 0 2.6%;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .mitem-form-btn {
    margin-top: 10px;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li.btn_cart input {
    text-indent: -999em;
    background: url(../img/icon_cart.png) no-repeat center center;
    background-size: 18px 22px;
    border: 1px solid #efefef;
  }
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .mitem-form-btn li.btn_cart input {
    text-indent: 0;
    background: none;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li.btn_cart.btn_b_off input {
  border: 1px solid #e1e1e1;
  color: #999999;
  cursor: not-allowed;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li.btn_cart input {
    background-size: 14px 17px;
    /* background-image: url(../img/micon_cart.png); */
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li.btn_buy {
  margin: 0;
  /* width: 75.88%; */
  width: calc(50% - 5.5px);
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li.btn_buy {
    width: 75.75%;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li.btn_buy input {
  background: var(--main-point-btn-bg-color-hover);
  color: #fff;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li.btn_buy.btn_b_off input{
    background: #e1e1e1;
    border: 1px solid #e1e1e1;
    color: #999999;
    cursor: not-allowed;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .download_sian_btn{
    border: 1px solid var(--main-point-btn-line-color-hover);
    color: #fff;
    background-color: var(--main-point-btn-bg-color-hover);
    border-radius: 5px;
    transition: 0.3s; 
    outline: none;
    font-weight: 700;
    font-size: 17px;
    line-height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    text-align: center;
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .download_sian_btn img{
  display: inline-block;
}
@media (max-width: 991px) {
    .item_detail.item-wrap .item-head .row .form-container .text .pay_con .download_sian_btn {
      line-height: 43px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 2.5px;
      margin-top: 10px;
      margin-bottom: 5px;
    }
    .item_detail.item-wrap .item-head .row .form-container .text .pay_con .download_sian_btn img{
      width: 11px;
    }
  }
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li a {
  border: 1px solid #e2e2e2;
  border-radius: 5px !important;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li a {
    border: none;
    border-radius: 2.5px !important;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li a:hover {
  border-color: var(--main-point-color-hover);
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li input {
  color: var(--main-point-color-hover);
  border: 1px solid var(--main-point-btn-line-color-hover);
  border-radius: 5px !important;
  transition: 0.3s;
  outline: none;
  font-weight: 700;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li input {
    border: none;
  }
}
.item_detail.item-wrap .item-head .row .form-container .text .pay_con .item-form-btn li input:hover {
  border-color: var(--main-point-btn-line-color-hover);
}
.item_detail.item-wrap .item_detail_tab .tabs .tabs_box {
  height: 58px;
  line-height: 56px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item_detail_tab .tabs .tabs_box {
    height: 46px;
    line-height: 44px;
  }
}
.item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top {
  margin: 0;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li {
    width: auto !important;
  }
}
.item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li + li {
  margin-left: 20px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li + li {
    margin-left: 15px;
  }
}
.item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li span {
  height: 100%;
  color: #888;
  font-size: 16px;
  font-weight: 300;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li span {
    padding: 0 10px;
    height: 46px;
    line-height: 44px;
  }
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li span {
    font-size: 14px;
    padding: 0 2px;
  }
}
.item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li.on span {
  color: var(--main-point-color-hover);
  font-weight: 500;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li.on span {
    color: var(--main-point-color-hover);
  }
}
.item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li.on span::after {
  background: var(--main-point-line-color-hover);
  height: 2px;
}
.item_detail.item-wrap .item_detail_tab .tabs .tab-content {
  padding: 0;
}
@media (max-width: 991px) {
    .item_detail.item-wrap .item_detail_tab .tabs .tabs_box ul.tabs-top li.on span::after{
        bottom: -1px;
    }
  .item_detail.item-wrap .item_detail_tab .tabs .tab-content {
    padding: 0 15px !important;
  }
}
.item_detail.item-wrap .tab_etc {
  padding-top: 80px;
  margin-top: 80px;
  border-top: 1px solid #d7d7d7;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .tab_etc {
    margin-top: 0;
    padding: 0 0 9px;
    border-top: none;
  }
}
.item_detail.item-wrap .tab_etc .item_table_tt {
  font-size: 20px;
  font-weight: 600;
  color: var(--main-point-color);
  text-align: center;
  margin-bottom: 38px;
}
.item_detail.item-wrap .tab_etc .it_detail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #f6f6f6 0%, #f6f6f6 16.92%, #fff 16.92%, #fff 50%, #f6f6f6 50%, #f6f6f6 66.92%, #fff 66.92%, #fff 100%);
}
@media (max-width: 991px) {
  .item_detail.item-wrap .tab_etc .it_detail {
    background: #f6f6f6;
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
}
.item_detail.item-wrap .tab_etc .it_detail li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .tab_etc .it_detail li {
    width: 100%;
    position: relative;
  }
  .item_detail.item-wrap .tab_etc .it_detail li:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
    height: 1px;
    background: #e1e1e1;
  }
  .item_detail.item-wrap .tab_etc .it_detail li:last-child:after {
    display: none;
  }
}
.item_detail.item-wrap .tab_etc .it_detail li .it_detail_tt {
  width: 33.84%;
  border: none;
  padding: 0 20px;
  color: #666;
  font-size: 14px;
  line-height: 50px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .tab_etc .it_detail li .it_detail_tt {
    font-size: 10px;
    padding: 15px 15px;
    line-height: 1.4;
  }
}
.item_detail.item-wrap .tab_etc .it_detail li .it_detail_con {
  width: 66.16%;
  border: none;
  padding: 0 20px;
  font-size: 14px;
  line-height: 3.57;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .tab_etc .it_detail li .it_detail_con {
    font-size: 10px;
    padding: 15px 15px;
    line-height: 1.4;
  }
}
.item_detail.item-wrap .tab_etc .delivery_box .tbox-head {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 16px !important;
}
.item_detail.item-wrap .tab_etc .delivery_box.delivery_bae {
  margin-top: 50px;
}
.item_detail.item-wrap .tab_etc .delivery_box.delivery_ch {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .tab_etc .delivery_box.delivery_bae {
    margin-top: 0;
  }
  .item_detail.item-wrap .tab_etc .delivery_box.delivery_ch {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .tab_etc {
    padding-top: 0;
  }
  .item_detail.item-wrap .tab_etc .item_delivery:first-child .tbox-body {
    padding: 0;
  }
  .item_detail.item-wrap .tab_etc .item_delivery:last-child .tbox-head:after {
    display: none;
  }
  .item_detail.item-wrap .tab_etc .item_delivery.on .tbox-head {
    background-image: url(../img/icon_detail_drop_on.png);
  }
  .item_detail.item-wrap .tab_etc .item_delivery.on .tbox-head:after {
    display: none;
  }
  .item_detail.item-wrap .tab_etc .item_delivery.on .tbox-body {
    display: block;
  }
  .item_detail.item-wrap .tab_etc .item_delivery .tbox-head {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    padding: 18px 0 !important;
    background: url(../img/icon_detail_drop.png) no-repeat 100% center/13px 6px;
    position: relative;
    cursor: pointer;
  }
  .item_detail.item-wrap .tab_etc .item_delivery .tbox-head:after {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 30px);
    left: -15px;
    bottom: 0;
    height: 1px;
    background: #efefef;
  }
  .item_detail.item-wrap .tab_etc .item_delivery .tbox-body {
    margin-bottom: 0;
    display: none;
    padding: 40px 0;
  }
}
.item_detail.item-wrap .review_banner {
  background: #f6f6f6;
  padding: 45px 0 55px;
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .review_banner {
    padding: 18px 0 21px;
    margin-bottom: 25px;
    border-radius: 5px;
  }
  .item_detail.item-wrap .review_banner .txt {
    font-size: 13px;
    line-height: 17.5px;
  }
}
.item_detail.item-wrap .review_banner .btn_write {
  margin-top: 23px;
  height: 56px;
  line-height: 54px;
  border-radius: 28px;
  background: var(--main-point-btn-bg-color-hover);
}
@media (max-width: 991px) {
  .item_detail.item-wrap .review_banner .btn_write {
    height: 34px;
    line-height: 32px;
    font-size: 12px;
    margin-top: 12px;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default {
    position: relative;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default.link_con {
    margin-top: 35px;
  }
}
.item_detail.item-wrap .panel.panel-default h3, .item_detail.item-wrap .panel.panel-default .panel-title {
  color: var(--main-point-color);
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 9px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default h3, .item_detail.item-wrap .panel.panel-default .panel-title {
    font-size: 18px;
    padding-bottom: 3px;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default .m-review-panel {
    border-top-width: 1px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star {
  width: 50.56%;
  padding-left: 184px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star {
    width: 50%;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star .grade_total {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star .grade_total {
    font-size: 10px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star .grade_total span {
  color: var(--main-point-color);
  font-weight: 400;
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star .grade_star {
  max-width: initial;
  width: auto;
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star .grade_star .fa {
  font-size: 32px;
  font-weight: 500;
  color: var(--main-point-color-hover);
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star .grade_star .fa {
    font-size: 23px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star .grade_num {
  margin-left: 30px;
  font-size: 38px;
  font-weight: 600;
  color: #222;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table_cell_star .grade_num {
    margin-left: 0;
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table-cell {
    width: 50%;
    padding: 5px 0;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table-cell ul {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: initial;
  margin-bottom: 20px;
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table-cell ul li {
  margin: 0 20px;
  float: none;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table-cell ul li {
    margin: 0 10px;
  }
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table-cell ul li:before {
    width: 7px;
  }
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table-cell ul li:after {
    width: 0px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table-cell ul li .point_num {
  bottom: -20px;
  font-size: 14px;
  color: #222;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .table-row .table-cell ul li .point_num {
    font-size: 11px;
    width: 17px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review {
  width: 31.93%;
  padding: 0 70px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review {
    width: 100%;
    padding: 20px 15px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review .simple_wrap {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review .simple_wrap {
    margin-bottom: 15px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review .simple_wrap:last-child {
  margin-bottom: 0;
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review .simple_wrap .left_text {
  width: 82px;
  font-size: 16px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review .simple_wrap .left_text {
    font-size: 13px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review .simple_wrap .center_icon {
  width: 110px;
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review .simple_wrap .center_icon img {
  display: none;
}
.item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review .simple_wrap .right_text {
  width: 85px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .review-body .item-simple-review .simple_wrap .right_text {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .photo_review {
    margin: 20px 0;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .photo_review ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item_detail.item-wrap .panel.panel-default #itemuse .photo_review ul li {
  float: none;
  width: 9.23%;
  margin-right: 0.84%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .photo_review ul li {
    width: 18.18%;
    margin-right: 2.27%;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .photo_review ul li.last_more_btn {
  margin-right: 0;
}
.item_detail.item-wrap .panel.panel-default #itemuse .photo_review ul li.last_more_btn button {
  font-size: 16px;
  line-height: 1.25;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .photo_review ul li.last_more_btn button {
    font-size: 10px;
    line-height: 15px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li {
  padding: 40px 0;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li {
    padding: 20px 0;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .it_review_tit {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .it_review_tit {
    margin-bottom: 15px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .it_review_tit .thema-color {
  font-size: 27px;
  font-weight: 600;
  color: #ddd;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .it_review_tit .thema-color {
    font-size: 16px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .it_review_tit .thema-color .fa-star-o:before {
  content: "\f005";
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .it_review_tit .thema-color .fa-star:before {
  color: var(--main-point-color-hover);
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .user {
  color: #999;
  font-size: 17px;
  font-weight: 600;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .user {
    margin-top: 0;
    margin-left: 16px;
    font-size: 11px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .date {
  color: #999;
  font-size: 17px;
  font-weight: 600;
  margin-left: 20px;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .date {
    margin-left: 8px;
    font-size: 11px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .content-box .content_title {
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .content-box .content_title {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .content-box .content-txt {
  color: #444;
  font-size: 16px;
  line-height: 1.75;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .content-box .content-txt {
    font-size: 13px;
    line-height: 19px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .thumb-box {
  margin-top: 33px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .thumb-box {
    margin-top: 20px;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .thumb-box .thumb-img {
  margin-right: 6px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .thumb-box .thumb-img {
    width: 22.72%;
    margin-right: 0.98%;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .thumb-box .thumb-img + .thumb-img {
  margin-left: 6px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .list-board .board-list > li .thumb-box .thumb-img + .thumb-img {
    margin-left: 0.98%;
  }
}
.item_detail.item-wrap .panel.panel-default #itemuse .use-btn {
  margin-bottom: 0;
}
.item_detail.item-wrap .panel.panel-default #itemuse .use-btn .pull-right {
  margin: 8px 0 0;
}
.item_detail.item-wrap .panel.panel-default #itemuse .use-btn .pull-right .btn-group .btn {
  border-radius: 5px !important;
  background: #f6f6f6;
  color: #333;
  min-width: 110px;
  border: none;
  height: 40px;
  line-height: 38px;
}
.item_detail.item-wrap .panel.panel-default #itemuse .use-btn .pull-right .btn-group .btn_write {
  background: var(--main-point-btn-bg-color-hover);
  color: #fff;
  padding: 0 28px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .use-btn .pull-right {
    margin-top: 35px;
  }
  .item_detail.item-wrap .panel.panel-default #itemuse .use-btn .pull-right .btn-group .btn {
    border-radius: 3px !important;
    min-width: auto;
    padding: 0 20px;
    height: 30px;
    line-height: 28px;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default #itemuse .use-btn {
    margin-top: 0;
  }
}
.item_detail.item-wrap .panel.panel-default.qa_panel {
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default.qa_panel {
    margin-top: 35px;
    margin-bottom: 0;
  }
}
.item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .list-board .num {
  display: table-cell;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .list-board .num {
    width: 11.8%;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .list-board .subj {
    width: 53.48%;
    padding-left: 10px;
  }
}
.item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .list-board .name {
  display: table-cell;
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .list-board .name {
    width: 13.93%;
  }
}
@media (max-width: 991px) {
  .item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .list-board .hit {
    width: 20.79%;
  }
}
.item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .list-board .img-resize .thumb-box {
  display: flex;
  justify-content: flex-start;
  padding-top: 20px;
}
.item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .list-board .img-resize .thumb-box > div + div {
  margin-left: 5px;
}
.item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .div-head {
  border-top-width: 1px;
}
.item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .pull-right {
  margin: 8px 0 0;
}
.item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .pull-right .btn-group .btn {
  border-radius: 5px !important;
  background: #f6f6f6;
  color: #333;
  min-width: 110px;
  border: none;
  height: 40px;
  line-height: 38px;
}
.item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .pull-right .btn-group .btn_write {
  background: var(--main-point-btn-bg-color-hover);
  color: #fff;
  padding: 0 28px;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .pull-right {
    margin-top: 35px;
  }
  .item_detail.item-wrap .panel.panel-default.qa_panel #itemqa .pull-right .btn-group .btn {
    border-radius: 3px !important;
    min-width: auto;
    padding: 0 20px;
    height: 30px;
    line-height: 28px;
    font-size: 11px;
  }
}
.item_detail.item-wrap .panel.panel-default .item-page {
  padding: 22px 0 0;
  margin: 0;
}
@media (max-width: 480px) {
  .item_detail.item-wrap .panel.panel-default .item-page {
    padding-top: 15px;
  }
}

/****************************
서브 > 상품상세페이지 > 상품 리뷰 모달
html > shop > ajax.itemreviewmodal.php
****************************/
.item_detail .review_write, .item_detail .qa_write {
  display: none;
}

.it_detail_modal {
  max-width: 100%;
  z-index: 1001;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  scrollbar-3dLight-Color: #fff;
  scrollbar-base-color: #fff;
  scrollbar-Face-Color: #fff;
  scrollbar-Track-Color: #f0f0f0;
  scrollbar-DarkShadow-Color: #fff;
  scrollbar-Highlight-Color: #fff;
}
@media (max-width: 991px) {
  .it_detail_modal {
    bottom: 0;
    top: initial;
    left: 0;
    right: 0;
    transform: translate(0, 0) rotate(0);
    /* z-index: 101; */
  }
}
.it_detail_modal.active {
  opacity: 1;
  visibility: visible;
}
.it_detail_modal_bg {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  width: 100%;
}
.it_detail_modal_bg.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .it_detail_modal_bg {
    /* z-index: 100; */
  }
}
.it_detail_modal.no_review_img {
  width: 800px;
}
.it_detail_modal .rv_modal {
  max-width: 100%;
  background: #fff;
  padding: 35px 25px 35px 30px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .it_detail_modal.no_review_img{width: 100%;}
  .it_detail_modal .rv_modal {
    width: 100%;
    padding: 50px 0 0;
    border-radius: 20px 20px 0 0;
  }
  .it_detail_modal .rv_modal.qa_write{
    padding: 30px 0 0;
  }
}
.it_detail_modal .rv_modal_tt {
  border-bottom: 1px solid #f4f4f4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal_tt {
    justify-content: flex-start;
    padding: 0 25px 0px 25px;
    margin-bottom: 0;
    border: none;
  }
}
.it_detail_modal .rv_modal_tt h2 {
  color: #222;
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal_tt h2 {
    font-size: 19px;
    padding-bottom: 19px;
  }
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal_tt h2 {
    font-size: 16px;
  }
}
.it_detail_modal .rv_modal_tt .btn_close_modal {
  display: block;
  width: 21px;
  height: 21px;
  position: relative;
}
.it_detail_modal .rv_modal_tt .btn_close_modal span {
  display: block;
  width: 27px;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.it_detail_modal .rv_modal_tt .btn_close_modal span:after {
  content: "";
  display: block;
  width: 27px;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal_tt .btn_close_modal {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .it_detail_modal .rv_modal_tt .btn_close_modal span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    transform: none;
    background: none;
  }
  .it_detail_modal .rv_modal_tt .btn_close_modal span::before, .it_detail_modal .rv_modal_tt .btn_close_modal span::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: auto;
    left: auto;
    transform: none;
    background: #ccc;
  }
  .it_detail_modal .rv_modal_tt .btn_close_modal span::before {
    transform: rotate(45deg);
  }
  .it_detail_modal .rv_modal_tt .btn_close_modal span::after {
    transform: rotate(-45deg);
  }
}
.it_detail_modal .rv_modal.review_write {
  width: 800px;
  display: block;
}
.it_detail_modal .rv_modal.qa_write {
  width: 800px;
  display: block;
}
@media (max-width: 991px) {
    .it_detail_modal .rv_modal.review_write{
        width: 100%;
    }
    .it_detail_modal .rv_modal.qa_write {
        width: 100%;
    }
}
.it_detail_modal .rv_modal .rv_con {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_con {
    flex-direction: column;
    padding: 0 25px 65px;
    max-height: 80vh;
    overflow-y: scroll;
  }
}
.it_detail_modal .rv_modal .rv_con .rv_img {
  width: 370px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_con .rv_img {
    order: 2;
    width: 100%;
  }
}
.it_detail_modal .rv_modal .rv_con .rv_img_big {
  overflow: hidden;
}
.it_detail_modal .rv_modal .rv_con .rv_img_big ul li img {
  width: 100%;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_con .rv_img_big {
    position: relative;
    padding-bottom: 15px;
  }
  .it_detail_modal .rv_modal .rv_con .rv_img_big .swiper-pagination {
    bottom: 0px;
  }
  .it_detail_modal .rv_modal .rv_con .rv_img_big .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #bfbfbf;
    margin: 0 2.5px;
    opacity: 1;
  }
  .it_detail_modal .rv_modal .rv_con .rv_img_big .swiper-pagination-bullet-active {
    background: var(--main-point-bg-color-hover);
  }
}
.it_detail_modal .rv_modal .rv_con .rv_img_thumb {
  margin-top: 8px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_con .rv_img_thumb {
    display: none;
  }
}
.it_detail_modal .rv_modal .rv_con .rv_img_thumb ul li {
  width: 40px;
  height: 40px;
}
.it_detail_modal .rv_modal .rv_con .rv_img_thumb ul li img {
  width: 100%;
  overflow: hidden;
}
.it_detail_modal .rv_modal .rv_con .rv_txt {
  width: 100%;
  margin-left: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_con .rv_txt {
    order: 1;
    width: 100%;
    margin-left: 0;
  }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top {
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .star {
  color: #ffc600;
  font-size: 17px;
  letter-spacing: 0.075em;
  margin-bottom: 8px;
}
@media (max-width: 991px){
  .it_detail_modal .rv_modal .rv_con .rv_txt_top .star{
    margin-bottom: 13px;
  }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_tt {
  font-size: 17px;
  color: #1b1b1b;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_img {
  background: #e7e7e7;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 16px;
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_img {
    width: 40px;
    height: 40px;
    margin-right: 14px;
  }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_img img {
  width: 100%;
  overflow: hidden;
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_txt .writer_name {
  color: #222;
  font-size: 13px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_txt .writer_name {
    font-size: 13px;
    font-weight: 600;
  }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_txt .writer_date {
  color: #999;
  font-size: 13px;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .rv_con .rv_txt_top .rv_writer_txt .writer_date {
    font-size: 11px;
  }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_bottom {
  width: 100%;
  padding-top: 25px;
  height: 100%;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_con .rv_txt_bottom {
    padding: 15px 0;
    height: 130px;
    margin-bottom: 15px;
  }
}
.it_detail_modal .rv_modal .rv_con .rv_txt_bottom .rv_txt_con {
  overflow-y: scroll;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  height: 20vh;
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .rv_con .rv_txt_bottom .rv_txt_con {
    font-size: 14px;
    line-height: 2em;
  }
}
.it_detail_modal .rv_modal .rv_btn_sec {
  margin-top: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_btn_sec {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
}
.it_detail_modal .rv_modal .rv_btn_sec li {
  display: block;
  background: #f6f6f6;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_btn_sec li {
    width: 100%;
    border-radius: 0;
  }
}
.it_detail_modal .rv_modal .rv_btn_sec li a, .it_detail_modal .rv_modal .rv_btn_sec li button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 58px;
  min-width: 180px;
  text-align: center;
  height: 60px;
  line-height: 58px;
  color: #333;
  font-size: 17px;
  font-weight: 400;
  border: none;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_btn_sec li a, .it_detail_modal .rv_modal .rv_btn_sec li button {
    width: 100%;
    min-width: auto;
    font-size: 15px;
    height: 48px;
    line-height: 46px;
  }
}
.it_detail_modal .rv_modal .rv_btn_sec li.main {
  background: var(--main-point-btn-bg-color-hover);
  margin-left: 6px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .rv_btn_sec li.main {
    margin-left: 0;
  }
}
.it_detail_modal .rv_modal .rv_btn_sec li.main a, .it_detail_modal .rv_modal .rv_btn_sec li.main button {
  color: #fff;
  background: inherit;
}
.it_detail_modal .rv_modal .use_form {
  overflow-y: scroll;
  max-height: 80vh;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form {
    height: 70vh;
    overflow-y: scroll;
    padding-right: 0;
  }
}
.it_detail_modal .rv_modal .use_form .use_tt {
  color: #1b1b1b;
  font-size: 15px;
  font-weight: 500;
  width: 115px;
}
.it_detail_modal .rv_modal .use_form_star {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e7e7e7;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_star {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 40px);
  }
}
.it_detail_modal .rv_modal .use_form_star_con {
  width: calc(100% - 115px);
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_star_con {
    text-align: right;
  }
}
.it_detail_modal .rv_modal .use_form_star_con i {
  color: #ffc600;
  font-size: 17px;
}
.it_detail_modal .rv_modal .use_form_table {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_table {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 40px);
  }
}
.it_detail_modal .rv_modal .use_form_table li {
  width: 33.33333%;
  position: relative;
  padding: 0 10px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_table li {
    width: 100%;
    padding: 12px 0;
  }
}
.it_detail_modal .rv_modal .use_form_table li:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  background: #d7d7d7;
  height: 100px;
}
.it_detail_modal .rv_modal .use_form_table li:last-child:after {
  display: none;
}
.it_detail_modal .rv_modal .use_form_table li h5 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_table li h5 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input {
  display: none;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input + label {
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input + label p {
  font-size: 12px;
  color: #666666;
  font-weight: 500;
  margin-top: 5px;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input + label span {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_table li .table_radio_box > div input + label span {
    width: 28px;
    height: 28px;
    background-size: cover !important;
  }
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio01 input + label span {
  background: url("../img/review_good_off.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio01 input:checked + label span {
  background: url("../img/review_good.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio02 input + label span {
  background: url("../img/review_normal_off.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio02 input:checked + label span {
  background: url("../img/review_normal.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio03 input + label span {
  background: url("../img/review_bad_off.png") no-repeat;
}
.it_detail_modal .rv_modal .use_form_table li .table_radio_box > div.table_radio03 input:checked + label span {
  background: url("../img/review_bad.png") no-repeat;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_review {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 40px);
  }
}
.it_detail_modal .rv_modal .use_form_review_top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_review_top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }
}
.it_detail_modal .rv_modal .use_form_review_top_select {
  width: calc(100% - 115px);
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_review_top_select {
    width: 100%;
    margin-top: 20px;
  }
}
.it_detail_modal .rv_modal .use_form_review_top_select select {
  color: #999999;
  font-size: 14px;
  width: 100%;
  appearance: none;
  height: 45px;
  line-height: 43px;
  border: none;
  padding: 0 16px;
  background: #f1f1f1 url(../img/icon_review_drop.png) no-repeat calc(100% - 15px) center;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_review_bot {
    margin-bottom: 80px;
  }
}
.it_detail_modal .rv_modal .use_form_review_bot .mem_info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.it_detail_modal .rv_modal .use_form_review_bot .mem_info input {
  width: calc(50% - 7.5px);
}
.it_detail_modal .rv_modal .use_form_review_bot input, .it_detail_modal .rv_modal .use_form_review_bot textarea {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 48px;
  box-shadow: none;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #ddd;
  /*border:{top:none; left:none; right:none; bottom:1px solid #e7e7e7}*/
  font-size: 16px;
  font-weight: 300;
}
.it_detail_modal .rv_modal .use_form_review_bot textarea{resize: none;}
.it_detail_modal .rv_modal .use_form_review_bot input::placeholder, .it_detail_modal .rv_modal .use_form_review_bot textarea::placeholder {
  color: #999999;
}
.it_detail_modal .rv_modal .use_form_review_bot input[type=file], .it_detail_modal .rv_modal .use_form_review_bot textarea[type=file] {
  display: none;
  appearance: none;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .use_form_review_bot input[type=file] + label img, .it_detail_modal .rv_modal .use_form_review_bot textarea[type=file] + label img {
    height: 17px;
  }
}
.it_detail_modal .rv_modal .use_form_review_bot input:focus, .it_detail_modal .rv_modal .use_form_review_bot input:active, .it_detail_modal .rv_modal .use_form_review_bot textarea:focus, .it_detail_modal .rv_modal .use_form_review_bot textarea:active {
  border-bottom-color: var(--main-point-line-color-hover);
}
.it_detail_modal .rv_modal .use_form_review_bot textarea {
  height: 160px;
  overflow-y: scroll;
  line-height: 1.8;
  margin-top: 10px;
}
.it_detail_modal .rv_modal .qa_form {
  max-height: 80vh;
  overflow-y: scroll;
  padding: 0;
}
.it_detail_modal .rv_modal .qa_form_head {
  background: #f7f7f7;
  text-align: center;
  padding: 30px 0 25px;
  margin-bottom: 12px;
}
.it_detail_modal .rv_modal .qa_form_head span {
  display: block;
  width: 25px;
  height: 25px;
  line-height: 23px;
  margin: 0 auto 10px;
  background: var(--main-point-bg-color-hover);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
.it_detail_modal .rv_modal .qa_form_head p {
  color: #1b1b1b;
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .qa_form_head {
    display: flex;
    align-items: center;
    padding: 20px 17px;
    margin: 0 25px 15px;
  }
  .it_detail_modal .rv_modal .qa_form_head span {
    width: 23px;
    height: 23px;
    line-height: 20px;
    margin: 0;
    margin-right: 15px;
    font-size: 13px;
  }
  .it_detail_modal .rv_modal .qa_form_head p {
    line-height: 20px;
    font-size: 14px;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .qa_form_head span {
    width: 21px;
    height: 21px;
    line-height: 19px;
    margin-right: 10px;
    font-size: 11px;
  }
  .it_detail_modal .rv_modal .qa_form_head p {
    line-height: 16px;
    font-size: 11.5px;
  }
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .qa_form_body {
    padding: 0 25px;
    margin-bottom: 80px;
  }
}
.it_detail_modal .rv_modal .qa_form_body_content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}
.it_detail_modal .rv_modal .qa_form_body_content label {
  color: #1b1b1b;
  font-size: 15px;
  font-weight: 500;
  width: 65px;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .qa_form_body_content label {
    font-size: 16px;
  }
  .it_detail_modal .rv_modal .qa_form_body_content label img {
    height: 17px;
  }
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .qa_form_body_content label {
    font-size: 16px;
  }
}
.it_detail_modal .rv_modal .qa_form_body_content input, .it_detail_modal .rv_modal .qa_form_body_content textarea {
  width: calc(100% - 65px);
  height: 53px;
  line-height: 51px;
  border: none;
  font-size: 16px;
}
.it_detail_modal .rv_modal .qa_form_body_content input::placeholder, .it_detail_modal .rv_modal .qa_form_body_content textarea::placeholder {
  color: #a7a7a7;
}
.it_detail_modal .rv_modal .qa_form_body_content input + span, .it_detail_modal .rv_modal .qa_form_body_content textarea + span {
  display: block;
  width: 100%;
  height: 1px;
  background: #e7e7e7;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.it_detail_modal .rv_modal .qa_form_body_content input:focus + span, .it_detail_modal .rv_modal .qa_form_body_content input:active + span, .it_detail_modal .rv_modal .qa_form_body_content textarea:focus + span, .it_detail_modal .rv_modal .qa_form_body_content textarea:active + span {
  background: var(--main-point-line-color-hover);
}
.it_detail_modal .rv_modal .qa_form_body_content input[type=file], .it_detail_modal .rv_modal .qa_form_body_content textarea[type=file] {
  display: none;
  appearance: none;
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .qa_form_body_content input, .it_detail_modal .rv_modal .qa_form_body_content textarea {
    height: 50px;
    line-height: 48px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .qa_form_body_content input, .it_detail_modal .rv_modal .qa_form_body_content textarea {
    font-size: 15px;
  }
}
.it_detail_modal .rv_modal .qa_form_body_content textarea {
  width: 100%;
  resize: none;
  height: 160px;
  overflow-y: scroll;
  line-height: 1.6;
}
.it_detail_modal .rv_modal .qa_form_body .qa_secret {
  margin-top: 20px;
  position: relative;
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .qa_form_body .qa_secret {
    margin-top: 15px;
  }
}
.it_detail_modal .rv_modal .qa_form_body .qa_secret input + label {
  color: #666;
  font-size: 14px;
  line-height: 20px;
}
.it_detail_modal .rv_modal .qa_form_body .qa_secret input + label .circle {
  width: 20px;
  height: 20px;
}
.it_detail_modal .rv_modal .qa_form_body .qa_secret input + label .circle:before {
  top: 8px;
  left: 5px;
}
.it_detail_modal .rv_modal .qa_form_body .qa_secret input + label .circle:after {
  top: 4px;
  left: 10px;
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .qa_form_body .qa_secret input + label {
    font-size: 12px;
  }
  .it_detail_modal .rv_modal .qa_form_body .qa_secret input + label .circle {
    width: 12.5px;
    height: 12.5px;
    background-size: 60%;
  }
  .it_detail_modal .rv_modal .qa_form_body .qa_secret input + label .circle:before {
    top: 4px;
    left: 3px;
  }
  .it_detail_modal .rv_modal .qa_form_body .qa_secret input + label .circle:after {
    top: 2.5px;
    left: 6.2px;
    height: 5px;
  }
}
@media (max-width: 991px) {
  .it_detail_modal .rv_modal .qa_form_body .qa_secret input {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .it_detail_modal .rv_modal .qa_form_body .qa_secret input {
    font-size: 12px;
  }
}
.it_detail_modal .rv_modal .add_img {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 25px 0;
  padding-bottom: 25px;
  border-bottom: 1px solid #e7e7e7;
}
.it_detail_modal .rv_modal .add_img_li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 80%;
}
.it_detail_modal .rv_modal .add_img_li li {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  margin: 0 10px 10px 0;
  position: relative;
}
.it_detail_modal .rv_modal .add_img_li li img {
  width: 100%;
}
.it_detail_modal .rv_modal .add_img_li li .btn_del_img {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  border: 1px solid #e5e5e5;
  right: 5px;
  top: 5px;
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
}
.it_detail_modal .rv_modal .add_img_li li .btn_del_img:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1px;
  height: 8px;
  background: #151515;
}
.it_detail_modal .rv_modal .add_img_li li .btn_del_img:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 1px;
  height: 8px;
  background: #151515;
}
.it_detail_modal .rv_modal .add_img_btn {
  width: 20%;
  text-align: right;
}
.it_detail_modal * {
  scrollbar-3dLight-Color: #fff;
  scrollbar-base-color: #fff;
  scrollbar-Face-Color: #fff;
  scrollbar-Track-Color: #f0f0f0;
  scrollbar-DarkShadow-Color: #fff;
  scrollbar-Highlight-Color: #fff;
}
.it_detail_modal ::-webkit-scrollbar {
  background: #fff;
  width: 6px;
  float: left;
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
}
.it_detail_modal *::-webkit-scrollbar {
  background: #fff;
  width: 6px;
  float: left;
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 10px;
}
.it_detail_modal ::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.it_detail_modal *::-webkit-scrollbar-button:start:decrement {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.it_detail_modal ::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.it_detail_modal *::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 10px;
  background: #fff;
  background-position: center;
}
.it_detail_modal ::-webkit-scrollbar-button {
  background: transparent;
  color: #fff;
}
.it_detail_modal *::-webkit-scrollbar-button {
  background: transparent;
  color: #fff;
}
.it_detail_modal ::-webkit-scrollbar-track {
  background: #fff;
}
.it_detail_modal *::-webkit-scrollbar-track {
  background: #fff;
}
.it_detail_modal ::-webkit-scrollbar-thumb {
  height: 50px;
  width: 5px;
  background: #d6d6d6;
  border-radius: 10px;
}
.it_detail_modal *::-webkit-scrollbar-thumb {
  height: 50px;
  width: 5px;
  background: #d6d6d6;
  border-radius: 10px;
}

.orderform_item {
  position: relative;
  margin-bottom: 65px;
}
.orderform_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .orderform_item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .orderform_item::after {
    content: "";
    width: 200%;
    height: 9px;
    position: absolute;
    bottom: -6px;
    left: -15px;
    background: #eff2f5;
  }
}

.orderform_title.orderform_item{padding-bottom: 20px;}
.orderform_item .orderform_title .print-hide.orderform_item{margin: 0;}
.orderform_item .orderform_title .print-hide .btn{color: #666666 !important; background-color: #f5f5f5; border: 1px solid #f5f5f5; border-radius: 3px !important; font-size: 14px; font-weight: 600; transition: 0.2s; outline: none;}
.orderform_item .orderform_title .print-hide .btn:hover{background-color: #f0f0f0;}

.orderform_info_inner {
  padding: 11px 20px 0 20px;
}
.orderform_info_inner > div {
  display: flex;
}
@media (max-width: 991px) {
  .orderform_info_inner {
    padding: 0;
  }
  .orderform_item .orderform_title .print-hide{
    text-align: center;
  }
  .orderform_item .orderform_title .orderinquiryview_tt{padding-top: 30px;}
}
@media (max-width: 480px) {
    .orderform_item .orderform_title .print-hide .btn{width: calc(33.3% - 3px); padding: 6px 10px;}
}

.orderform_title {
  padding-bottom: 25px;
  font-size: 24px;
  font-weight: 500;
  color: var(--main-point-color);
  border-bottom: 1px solid #444;
  line-height: 1em;
}
@media (max-width: 991px) {
  .orderform_title {
    padding-bottom: 17px;
    font-size: 18px;
    font-weight: bold;
    border: none;
  }
}
@media (max-width: 480px) {
  .orderform_title {
    font-size: 15px;
  }
}

.left_tit {
  width: 115px;
  line-height: 38px;
  font-size: 16px;
  font-weight: 300;
  color: #666;
}
@media (max-width: 991px) {
  .left_tit {
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .left_tit {
    width: 85px;
    font-size: 15px;
    font-weight: 400;
  }
}

.right_tit {
  line-height: 38px;
  font-size: 16px;
  font-weight: 300;
  color: var(--main-point-color);
}
@media (max-width: 991px) {
  .right_tit {
    line-height: 32px;
    font-size: 15px;
    font-weight: 400;
  }
}
.right_tit span {
  margin-left: -4px;
}
@media (max-width: 991px) {
  .right_tit {
    width: calc(100% - 85px);
    font-size: 14px;
  }
}

.orderinquiryview {
  display: flex;
  gap: 50px;
}
@media (max-width: 991px) {
  .orderinquiryview {
    gap: 0;
  }
}
.orderinquiryview.guest {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .orderinquiryview.guest {
    margin-top: 80px;
  }
}
@media (max-width: 480px) {
  .orderinquiryview.guest {
    margin-top: 50px;
  }
}
.orderinquiryview > div:last-child {
  width: 100%;
}
.orderinquiryview form > .orderform_title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding-bottom: 20px;
}
@media (max-width: 991px) {
    .orderinquiryview form > .orderform_title{
        display: block;
        padding-bottom: 0;
    }
}
@media (max-width: 991px) {
  .orderinquiryview .orderform_title.orderinquiry_tt {
    text-align: center;
    padding: 20px 0 30px;
    /* margin-bottom: 9px; */
    font-size: 17px;
    font-weight: 500;
  }
}
.orderinquiryview .delivery_info_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .orderinquiryview .delivery_info_inner {
    flex-flow: column;
    align-items: flex-start;
  }
}
.orderinquiryview .delivery_info_inner > div:first-child {
  display: flex;
  flex-flow: column;
}
.orderinquiryview .delivery_info_inner > div:first-child div {
  display: flex;
}

.delivery-confirm,
.go_to_review {
    width: auto;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    border: 1px solid #d6d6d6;
    color: #333;
    padding: 0px 13px;
}
.orderinquiryview .delivery_info_inner .lookup {
  width: auto;
  display: block;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .orderinquiryview .delivery_info_inner .lookup {
    width: 100%;
    margin-top: 7px;
    font-size: 12px;
  }
}
.orderinquiryview .delivery_info_inner .lookup a {
  border: 1px solid #d6d6d6;
  display: block;
  color: #333;
  height: 42px;
  line-height: 40px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .orderinquiryview .delivery_info_inner .lookup a {
    height: 35px;
    line-height: 33px;
    font-size: 12px;
  }
}
.orderinquiryview .delivery_info_inner p {
  line-height: 38px;
  font-size: 16px;
  font-weight: 300;
  color: var(--main-point-color);
}
@media (max-width: 991px) {
  .orderinquiryview .delivery_info_inner p {
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .orderinquiryview .delivery_info_inner p {
    font-size: 15px;
    font-weight: 400;
  }
}

.orderinquiryview form > .rf_box#refund_com_btn {
    text-align: center;
}

.orderinquiryview form > .rf_box#refund_com_btn .re_button {
    font-size: 16px;
    padding: 8px 13px;
    margin-right: 10px;
}

@media (max-width: 991px) {
    .orderinquiryview form > .rf_box#refund_com_btn .re_button {
        font-size: 13px;
        padding: 5px 10px;
        margin-right: 5px;
    }
  }

.orderinquiryview form > .rf_box .re_button{
    color: #666;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
    outline: none;
    padding: 5px 10px;
    margin-right: 5px;
}
.orderinquiryview form > .rf_box .re_button:hover{
    background-color: #f0f0f0;
}
@media (max-width: 991px) {
    .orderinquiryview form > .rf_box .re_button{
        margin-bottom: 20px;
    }
  }

.orderinquiryview .order_info_inner button.copy {
  width: 76px;
  height: 26px;
  line-height: 24px;
  margin: -1px 0 0 10px;
  font-size: 13px;
  font-weight: 400;
  background: var(--main-point-btn-bg-color-hover);
  border: none;
  border-radius: 13px;
  color: #fff;
}
.orderinquiryview .order_info_inner > div:last-child .right_tit {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .orderinquiryview .order_info_inner > div:last-child .right_tit {
    flex-direction: column;
    align-items: flex-start;
  }
}
.orderinquiryview .order_info_inner > div:last-child .right_tit button.copy {
  margin-left: 15px;
}
@media (max-width: 991px) {
  .orderinquiryview .order_info_inner > div:last-child .right_tit button.copy {
    margin-left: 0;
  }
}
.orderinquiryview .orderer_info.receipt {
  position: relative;
}
@media (max-width: 991px) {
  .orderinquiryview .orderer_info.receipt {
    padding-bottom: 30px;
  }
  .orderinquiryview .orderer_info.receipt::after {
    content: "";
    width: 200%;
    height: 9px;
    position: absolute;
    bottom: 0;
    left: -15px;
    background: #eff2f5;
  }
}
.orderinquiryview .orderer_info.receipt .orderform_info_inner {
  padding: 14px 20px 15px 20px;
}
@media (max-width: 991px) {
  .orderinquiryview .orderer_info.receipt .orderform_info_inner {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .orderer_info.receipt .orderform_info_inner > div:nth-child(3) .right_tit {
    line-height: 25px;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .orderer_info.orderform_item .orderform_info_inner > div:nth-child(3) .right_tit {
    line-height: 25px;
  }
}
.orderinquiryview .product_info {
  padding: 60px 0 50px;
  border: 1px solid #eee;
  border-left: 0;
  border-right: 0;
}
@media (max-width: 991px) {
  .orderinquiryview .product_info {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .orderinquiryview .product_info .order_cancel {
    display: flex;
    flex-flow: column;
  }
}
.orderinquiryview .product_info .order_cancel button {
  width: 301px;
  height: 71px;
  line-height: 69px;
  margin: 0 auto;
  padding: 0;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  border: 1px solid #999;
  border-radius: 5px;
  background: none;
}
@media (max-width: 991px) {
  .orderinquiryview .product_info .order_cancel button {
    width: 100%;
    height: 40px;
    line-height: 38px;
    order: 2;
    font-size: 14px;
  }
}
.orderinquiryview .product_info .explanation {
  line-height: 26px;
  display: flex;
  flex-flow: column;
  place-items: center;
  margin-top: 9px;
  font-size: 13px;
  font-weight: 300;
  color: #999;
}
@media (max-width: 991px) {
  .orderinquiryview .product_info .explanation {
    line-height: 18px;
    flex-flow: initial;
    justify-content: space-between;
    place-items: flex-start;
    margin-bottom: 15px;
    font-size: 13px;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .product_info .explanation {
    line-height: 15px;
    font-size: 11px;
  }
}
.orderinquiryview .product_info .explanation a {
  display: flex;
  place-items: center;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: var(--main-point-color-hover);
}
@media (max-width: 991px) {
  .orderinquiryview .product_info .explanation a {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .product_info .explanation a {
    font-size: 12px;
  }
}
.orderinquiryview .product_info .explanation a span {
  width: 6px;
  height: 12px;
  display: block;
  position: relative;
  margin-left: 6px;
}
.orderinquiryview .product_info .explanation a span::before, .orderinquiryview .product_info .explanation a span::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: var(--main-point-color-hover);
}
.orderinquiryview .product_info .explanation a span::before {
  top: 4px;
  transform: rotate(45deg);
}
.orderinquiryview .product_info .explanation a span::after {
  bottom: 3px;
  transform: rotate(-45deg);
}
.orderinquiryview .refund_form_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 15px;
  column-gap: 40px;
  padding: 24px 20px 40px 20px;
}
.orderinquiryview .refund_form_inner > div {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .orderinquiryview .refund_form_inner > div {
    flex-flow: column;
  }
}
@media (max-width: 991px) {
  .orderinquiryview .refund_form_inner {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 7px;
    column-gap: 0;
    padding: 10px 0px 20px 0px;
  }
}
.orderinquiryview .refund_form span {
  width: 115px;
  line-height: 46px;
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: #333;
}
@media (max-width: 991px) {
  .orderinquiryview .refund_form span {
    line-height: 32px;
    font-size: 14px;
  }
}
.orderinquiryview .refund_form span.arrow {
  width: 6px;
  height: 5px;
  display: block;
  position: absolute;
  top: 23px;
  right: 15px;
}
.orderinquiryview .refund_form span.arrow::before, .orderinquiryview .refund_form span.arrow::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #242424;
}
.orderinquiryview .refund_form span.arrow::before {
  right: 4px;
  transform: rotate(45deg);
}
.orderinquiryview .refund_form span.arrow::after {
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .orderinquiryview .refund_form span.arrow {
    top: 53px;
  }
}
.orderinquiryview .refund_form select, .orderinquiryview .refund_form input {
  width: calc(100% - 115px);
  height: 46px;
  line-height: 44px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #d6d6d6;
  border-radius: 5px !important;
  color: #000;
  box-shadow: none;
}
.orderinquiryview .refund_form select::placeholder, .orderinquiryview .refund_form input::placeholder {
  font-size: 16px;
  font-weight: 300;
  color: #999;
}
@media (max-width: 991px) {
  .orderinquiryview .refund_form select, .orderinquiryview .refund_form input {
    width: 100%;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
  .orderinquiryview .refund_form select::placeholder, .orderinquiryview .refund_form input::placeholder {
    font-size: 14px;
  }
}
.orderinquiryview .refund_form select {
  appearance: none;
  color: #999;
}
.orderinquiryview .refund_form button.refund_confirm {
  width: 240px;
  height: 60px;
  line-height: 58px;
  display: block;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  background: var(--main-point-btn-bg-color-hover);
  border: none;
  border-radius: 30px;
  box-shadow: none;
}
@media (max-width: 991px) {
  .orderinquiryview .refund_form button.refund_confirm {
    width: 150px;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
}
.orderinquiryview .refund_form .refund_info.incomplete {
  display: flex;
  padding-bottom: 40px;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .orderinquiryview .refund_form .refund_info.incomplete {
    flex-flow: column;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info {
    position: relative;
    margin-bottom: 36px;
    padding-bottom: 1px;
  }
  .orderinquiryview .order_product_info::after {
    content: "";
    width: 200%;
    height: 9px;
    position: absolute;
    bottom: -10px;
    left: -15px;
    background: #eff2f5;
  }
}
.orderinquiryview .order_product_info .order_product_box + .order_product_box{
    border-top: 1px solid #eeeeee;
}
.orderinquiryview .order_product_info .order_product_inner {
  display: flex;
  place-items: center;
  justify-content: space-between;
  position: relative;
  padding: 30px 20px;
  /* border-bottom: 1px solid #eee; */
}
.orderinquiryview .order_product_info .order_product_inner > a {
  display: flex;
  align-items: center;
}
.orderinquiryview .order_product_info .order_product_inner > a .check_box{
    margin-right: 10px;
}
.orderinquiryview .order_product_info .order_product_inner > a .image img {
  object-fit: contain;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner > a .image img {
        object-fit: cover;
    }
}
.orderinquiryview .order_product_info .order_product_inner > a .content {
  margin-left: 23px;
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content {
    margin-left: 14px;
  }
}
.orderinquiryview .order_product_info .order_product_inner > a .content_subname {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  color: #666;
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content_subname {
    margin-bottom: 7px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content_subname {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 5px;
  }
}
.orderinquiryview .order_product_info .order_product_inner > a .content_name {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  color: var(--main-point-color);
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content_name {
    margin-bottom: 9px;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 17.5px;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content_name {
    font-size: 13px;
    line-height: 17.5px;
    font-weight: 500;
    margin-bottom: 5px;
  }
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul {
  display: flex;
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt {
    margin-bottom: 13px;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt {
    margin-bottom: 5px;
  }
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt li {
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #666;
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt + .content_opt{
  margin-top: 5px;
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt li::after {
  content: "";
  width: 1px;
  height: 14px;
  position: absolute;
  top: 2px;
  right: 0;
  background: #c7c7c7;
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt li.qty { width:100px; }
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt li::after {
    height: 11px;
    top: 4px;
  }
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt li:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt li {
    line-height: 17px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_opt li {
    font-size: 11px;
  }
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price {
  align-items: flex-end;
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child {
  display: flex;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #1b1b1b;
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child {
    align-items: flex-end;
    margin-right: 5px;
    font-size: 15.5px;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child {
    font-size: 15.5px;
  }
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child span {
  display: block;
  font-weight: 500;
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child span {
    font-size: 19px;
    font-weight: 600;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:first-child span {
    font-size: 19px;
    font-weight: 600;
  }
}
.orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:last-child {
  font-size: 14px;
  font-weight: 300;
  color: #666;
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:last-child {
    font-size: 14.5px;
    font-weight: 400;
  }
}
@media (max-width: 480px) {
  .orderinquiryview .order_product_info .order_product_inner > a .content ul.content_price li:last-child {
    font-size: 14.5px;
  }
}
@media (max-width: 991px) {
  .orderinquiryview .order_product_info .order_product_inner {
    flex-flow: column;
    place-items: flex-start;
    padding: 30px 0 ;
    /* padding-bottom: 30px; */
    /* margin-bottom: 20px; */
  }
  .orderinquiryview .order_product_info .order_product_inner:last-child {
    border: none;
  }
}
.orderinquiryview .order_product_info .order_product_inner .ord_btn button{
    display: block;
}
.orderinquiryview .order_product_info .order_product_inner button.review-btn {
  width: 114px;
  height: 42px;
  line-height: 40px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #fff !important;
  background-color: var(--main-point-btn-bg-color-hover) !important;
  border: 1px solid var(--main-point-btn-line-color-hover);
  border-radius: 5px;
  text-align: center;
  background: none;
}
.orderinquiryview .order_product_info .order_product_inner button.review-btn:hover {
  background: none;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .order_product_inner .ord_btn{
        width: 100%;
    }
    .orderinquiryview .order_product_info .order_product_inner button.review-btn {
        width: 100%;
        height: 40px;
        line-height: 38px;
        margin-top: 15px;
        font-size: 13px;
        border-radius: 2.5px;
    }
}
@media (max-width: 480px) {
  .orderinquiryview .order_product_info .order_product_inner button.review-btn {
    height: 35px;
    line-height: 33px;
    font-size: 13px;
  }
}
.orderinquiryview .order_product_info .present_coupon.off_coupon{
    border: none;
    padding: 0 20px;
    margin-top: -5px;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .orderinquiryview .order_product_info .present_coupon.off_coupon {
    padding: 0;
    margin-top: -15px;
  }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
주문내역 조회페이지
html > skin > apms > order > basic > orderinquiry.skin.php
(기존에 있던 페이지는 221223 날짜로 백업함.)
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.orderinquiry_style {
  width: 100%;
  display: flex;
  gap: 50px;
}
.orderinquiry_style > div:last-child {
  width: 100%;
}
.orderinquiry_style .orderform_title {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .orderinquiry_style .orderform_title.orderinquiry_tt {
    text-align: center;
    padding: 20px 0 35px;
    margin-bottom: 9px;
    font-size: 17px;
    font-weight: 500;
  }
}
.orderinquiry_style .orderinquiry_form .od_wrap {
  margin-bottom: 75px;
}
@media (max-width: 991px) {
  .orderinquiry_style .orderinquiry_form .od_wrap {
    margin-bottom: 29px;
  }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 20px 20px;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 991px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_href {
    padding: 20px 0;
    border: none;
  }
  .orderinquiry_style .orderinquiry_form .od_wrap .od_href::before, .orderinquiry_style .orderinquiry_form .od_wrap .od_href::after {
    content: "";
    width: 200%;
    position: absolute;
    left: -15px;
  }
  .orderinquiry_style .orderinquiry_form .od_wrap .od_href::before {
    height: 9px;
    top: -8px;
    background: #eff2f5;
  }
  .orderinquiry_style .orderinquiry_form .od_wrap .od_href::after {
    height: 1px;
    bottom: 0;
    background: #e7e7e7;
  }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href h1 {
  font-size: 20px;
  font-weight: bold;
  color: var(--main-point-color);
}
@media (max-width: 991px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_href h1 {
    display: flex;
    font-size: 18px;
  }
  .orderinquiry_style .orderinquiry_form .od_wrap .od_href h1 .num {
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_href h1 {
    font-size: 17px;
  }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a {
  display: flex;
  place-items: center;
  position: relative;
  font-size: 15px;
  font-weight: 300;
  color: #666;
}
@media (max-width: 991px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_href a p {
    display: none;
  }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a span {
  width: 7px;
  height: 12px;
  display: block;
  position: relative;
  margin-left: 10px;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a span::before, .orderinquiry_style .orderinquiry_form .od_wrap .od_href a span::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #666;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a span::before {
  top: 4px;
  transform: rotate(50deg);
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_href a span::after {
  bottom: 2px;
  transform: rotate(-50deg);
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info {
  display: flex;
  justify-content: space-between;
  place-items: center;
  padding: 27px 20px 0;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info > div:first-child {
  display: flex;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin-left: 23px;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div {
  display: flex;
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div div {
  line-height: 28px;
  font-size: 15px;
  font-weight: 300;
}
@media (max-width: 991px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div div {
    line-height: 32px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div div {
    font-size: 14px;
    font-weight: 400;
  }
  .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div:last-child div{
    font-weight: 400;
  }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div .left {
  width: 93px;
  color: #666;
}
@media (max-width: 991px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div .left {
    width: 88px;
    font-weight: 400;
  }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div .right {
  color: var(--main-point-color);
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner > div .right span {
  margin-left: -4px;
}
@media (max-width: 991px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_info_inner {
    margin-left: 0;
  }
}
.orderinquiry_style .orderinquiry_form .od_wrap .od_info .od_status {
  line-height: 28px;
  font-size: 15px;
  font-weight: 400;
  color: var(--main-point-color);
  text-align: right;
}
@media (max-width: 991px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_info .od_status {
    line-height: 32px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .orderinquiry_style .orderinquiry_form .od_wrap .od_info {
    padding: 18px 0 0;
    display: block;
  }
}
.draftview_btn{
  width: 114px;
  height: 42px;
  line-height: 40px;
  font-size: 14px;
  color: #333333;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  margin-top: 10px;
  transition: 0.2s;
}
.draftview_btn:hover{
    background-color: #f7f9fa;
}
.draftview_btn.off,
.draftview_btn.off:hover{
  color: #757575;
  background-color: #e1e1e1;
  border: 1px solid #e1e1e1;
  cursor: not-allowed;
}
@media (max-width: 991px) {
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info .od_status button{
        display: block;
        font-size: 13px;
        border-radius: 2.5px;
        line-height: 33px;
    }
    .orderinquiry_style .orderinquiry_form .od_wrap .od_info .od_status .review-btn{
        width: 100%;
        background-color: var(--main-point-btn-bg-color-hover);
        border: 1px solid var(--main-point-btn-line-color-hover);
        color: #fff;
        margin-top: 10px;
    }
    .draftview_btn{
        width: 100%;
        font-size: 13px;
        border-radius: 2.5px;
        height: 35px;
        line-height: 33px;
        margin-top: 5px;
    }
}
.orderinquiry_style .orderinquiry_form .od_info_none {
  width: 100%;
  font-size: 16px;
  color: #666;
  text-align: center;
}
@media (max-width: 991px) {
  .orderinquiry_style {
    gap: 0;
  }
  .orderinquiry_style .orderinquiry_form .od_info_none {
    font-size: 13px;
    padding: 5px 0 30px;
  }
}
.orderinquiry_style .present_coupon.off_coupon{border-top: none; padding: 0 20px; margin-top: -50px; margin-bottom: 75px;}
@media (max-width: 991px) {
    .orderinquiry_style .present_coupon.off_coupon{padding: 0; margin-top: -15px; margin-bottom: 29px;}
  }

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
로그인 페이지
html > skin > member > basic > login.skin.php
(기존에 있던 페이지는 230102 날짜로 백업함.)
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.custom-login {
  padding-bottom: 0;
}
.custom-login .member-login .nav-tabs {
  display: flex;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 3px;
}
.custom-login .member-login .nav-tabs li {
  border: 1px solid #d6d6d6;
  float: initial;
  border-radius: 3px 0 0 3px;
  overflow: hidden;
}
.custom-login .member-login .nav-tabs li + li {
  margin-left: -1px;
  border-radius: 0 3px 3px 0;
}
.custom-login .member-login .nav-tabs li a {
  height: 58px;
  line-height: 56px;
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #999;
  border: none;
}
@media (max-width: 991px) {
  .custom-login .member-login .nav-tabs li a {
    height: 46px;
    line-height: 44px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .nav-tabs li a {
    height: 41px;
    line-height: 39px;
    font-size: 13px;
  }
}
.custom-login .member-login .nav-tabs li.active {
  border-color: var(--main-point-btn-line-color-hover);
  border: 1px solid var(--main-point-btn-line-color-hover);
  position: relative;
  z-index: 1;
}
.custom-login .member-login .nav-tabs li.active a {
  color: var(--main-point-color-hover);
}
.custom-login .member-login .nav-tabs li:first-child a::after {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.custom-login .member-login .nav-tabs li:last-child a::after {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
@media (max-width: 991px) {
  .custom-login .member-login .nav-tabs {
    margin-bottom: 14px;
    border-radius: 0;
  }
  .custom-login .member-login .nav-tabs li:nth-child(1) {
    border-radius: 3px 0 0 3px;
    overflow: hidden;
  }
  .custom-login .member-login .nav-tabs li:nth-child(1) a {
    border-radius: 3px 0 0 3px;
  }
  .custom-login .member-login .nav-tabs li:nth-child(2) {
    border-radius: 0 3px 3px 0;
    overflow: hidden;
  }
  .custom-login .member-login .nav-tabs li:nth-child(2) a {
    border-radius: 3px 0 0 3px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .nav-tabs {
    margin-bottom: 9px;
  }
}
.custom-login .member-login .tab-content .form-group {
  margin-bottom: 12px;
}
.custom-login .member-login .tab-content .form-group input {
  height: 58px;
  line-height: 56px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 3px !important;
  border: 1px solid #d6d6d6;
}
.custom-login .member-login .tab-content .form-group input::placeholder {
  color: #999;
}
.custom-login .member-login .tab-content .form-group input:first-child {
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .form-group input {
    height: 46px;
    line-height: 44px;
    padding: 0 15px;
    font-size: 14px;
  }
  .custom-login .member-login .tab-content .form-group input:first-child {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .tab-content .form-group input {
    height: 41px;
    line-height: 39px;
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .form-group {
    margin-bottom: 8px;
  }
}
.custom-login .member-login .tab-content .mb_id_form {
  margin-bottom: 14px;
}
.custom-login .member-login .tab-content .mb_pw_form {
  margin-bottom: 12px;
}
.custom-login .member-login .tab-content .login-opt {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-bottom: 35px;
}
.custom-login .member-login .tab-content .login-opt input {
  display: none;
}
.custom-login .member-login .tab-content .login-opt input + label {
  position: relative;
  padding-left: 23px;
  font-size: 13px;
  font-weight: 400;
  color: #999;
  cursor: pointer;
}
.custom-login .member-login .tab-content .login-opt input + label::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/img/login_check.png) no-repeat;
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .login-opt input + label::after {
    width: 15px;
    height: 15px;
    background: url(/img/mlogin_check.png) no-repeat;
    background-size: 15px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .tab-content .login-opt input + label::after {
    width: 11px;
    height: 11px;
    background-size: 11px;
  }
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .login-opt input + label {
    padding-left: 24px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .tab-content .login-opt input + label {
    padding-left: 16px;
    font-size: 11px;
  }
}
.custom-login .member-login .tab-content .login-opt input:checked + label::after {
  background: url(../img/login_checked_on.png) no-repeat;
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .login-opt input:checked + label::after {
    background: url(../img/mlogin_checked_on.png) no-repeat;
    background-size: 15px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .tab-content .login-opt input:checked + label::after {
    background-size: 11px;
  }
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .login-opt {
    gap: 15px;
    margin-bottom: 21px;
  }
}
.custom-login .member-login .tab-content .lost-box {
  display: flex;
  justify-content: center;
}
.custom-login .member-login .tab-content .lost-box a {
  display: block;
  position: relative;
  margin: 0;
  margin-right: 33px;
  padding: 0;
  padding-right: 33px;
  font-size: 16px;
  font-weight: 400;
  color: #444;
}
.custom-login .member-login .tab-content .lost-box a::after {
  content: "";
  width: 1px;
  height: 14px;
  position: absolute;
  top: 2px;
  right: 0;
  background: #ddd;
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .lost-box a::after {
    height: 12px;
    top: 1px;
    right: -1px;
  }
}
.custom-login .member-login .tab-content .lost-box a:last-child {
  margin: 0;
  padding: 0;
}
.custom-login .member-login .tab-content .lost-box a:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .lost-box a {
    margin-right: 17px;
    padding-right: 17px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .tab-content .lost-box a {
    font-size: 12.5px;
  }
}
.custom-login .member-login .tab-content .or {
  position: relative;
  z-index: 1;
  margin: 50px 0 40px;
  font-size: 16px;
  font-weight: 400;
  color: #999;
  background: #fff;
  text-align: center;
}
.custom-login .member-login .tab-content .or::before, .custom-login .member-login .tab-content .or::after {
  content: "";
  width: calc(100% - 280px);
  height: 1px;
  position: absolute;
  top: 8px;
  z-index: -1;
  background: #e3e3e3;
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .or::before, .custom-login .member-login .tab-content .or::after {
    width: 45%;
    top: 6px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .tab-content .or::before, .custom-login .member-login .tab-content .or::after {
    width: 41%;
  }
}
.custom-login .member-login .tab-content .or::before {
  left: 0;
}
.custom-login .member-login .tab-content .or::after {
  right: 0;
}
@media (max-width: 991px) {
  .custom-login .member-login .tab-content .or {
    margin: 38px 0;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .tab-content .or {
    margin: 29px 0;
    font-size: 12px;
  }
}
.custom-login .member-login .register-form #captcha {
  /* display: flex !important; */
}
.custom-login .member-login .register-form #captcha_img {
  border-radius: 5px 0 0 5px;
}
.custom-login .member-login .register-form #captcha_key {
  border-radius: 0 5px 5px 0;
}
.custom-login .member-login .register-form #captcha_info {
  display: block;
  width: 100%;
  text-align: center;
  margin: 20px 0 40px !important;
}
.custom-login .member-login .login-btn {
  height: 58px;
  line-height: 56px;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.custom-login .member-login .login-btn button {
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background: var(--main-point-btn-bg-color-hover);
  border: none;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .custom-login .member-login .login-btn button {
    height: 46px;
    line-height: 44px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .login-btn button {
    height: 41px;
    line-height: 39px;
    font-size: 13.5px;
  }
}
@media (max-width: 991px) {
  .custom-login .member-login .login-btn {
    margin-bottom: 6px;
  }
}
@media (max-width: 991px) {
  .custom-login .member-login {
    max-width: 100%;
  }
}
.custom-login #sns_login {
  margin: 0;
  padding: 0;
}
.custom-login #sns_login a {
  height: 60px;
  line-height: 58px;
  display: block;
  position: relative;
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 3px;
}
.custom-login #sns_login a:last-child {
  margin-bottom: 0;
}
.custom-login #sns_login a img {
  position: absolute;
  left: 36px;
}
@media (max-width: 991px) {
  .custom-login #sns_login a img {
    left: 24px;
  }
}
.custom-login #sns_login a.naver, .custom-login #sns_login a.apple, .custom-login #sns_login a.facebook, .custom-login #sns_login a.twitter {
  color: #fff;
}
.custom-login #sns_login a.kakao {
  color: #3a2020;
  background: #ffe800;
}
.custom-login #sns_login a.kakao img {
  top: 19px;
}
@media (max-width: 991px) {
  .custom-login #sns_login a.kakao img {
    height: 18px;
    top: 14px;
  }
}
@media (max-width: 480px) {
  .custom-login #sns_login a.kakao img {
    height: 15px;
  }
}
.custom-login #sns_login a.naver {
  background: #21bc6f;
}
.custom-login #sns_login a.naver img {
  top: 20px;
}
@media (max-width: 991px) {
  .custom-login #sns_login a.naver img {
    height: 13px;
    top: 16px;
    left: 26px;
  }
}
@media (max-width: 480px) {
  .custom-login #sns_login a.naver img {
    height: 13px;
    top: 15px;
  }
}
.custom-login #sns_login a.apple {
  background: #000;
}
.custom-login #sns_login a.apple img {
  top: 17px;
}
@media (max-width: 991px) {
  .custom-login #sns_login a.apple img {
    height: 19px;
    top: 11px;
  }
}
@media (max-width: 480px) {
  .custom-login #sns_login a.apple img {
    height: 17px;
    top: 12px;
  }
}
.custom-login #sns_login a.google {
  background: #fff;
  color: #222;
  border: 1px solid #dcdcdc;
}
.custom-login #sns_login a.google img {
  top: 18px;
  left: 33px;
}
@media (max-width: 991px) {
  .custom-login #sns_login a.google img {
    height: 19px;
    top: 12px;
    left: 21px;
  }
}
@media (max-width: 480px) {
  .custom-login #sns_login a.google img {
    height: 17px;
    left: 22px;
  }
}
.custom-login #sns_login a.facebook {
  background: #445d99;
}
.custom-login #sns_login a.facebook img {
  top: 18px;
}
@media (max-width: 991px) {
  .custom-login #sns_login a.facebook img {
    height: 18px;
    top: 13px;
    left: 27px;
  }
}
.custom-login #sns_login a.twitter {
  background: #2aa8e0;
}
.custom-login #sns_login a.twitter img {
  top: 20px;
  left: 31px;
}
@media (max-width: 991px) {
  .custom-login #sns_login a.twitter img {
    height: 15px;
    top: 14px;
    left: 23px;
  }
}
@media (max-width: 480px) {
  .custom-login #sns_login a.twitter img {
    height: 13px;
  }
}
@media (max-width: 991px) {
  .custom-login #sns_login a {
    height: 44px;
    line-height: 44px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .custom-login #sns_login a {
    font-size: 13px;
  }
}
.custom-login .social-login-sheet {
  max-width: 500px;
  display: flex;
  flex-flow: column;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .custom-login .social-login-sheet {
    margin-top: 0;
  }
}
.custom-login .member-login .floating,
.custom-login .social-login-sheet .floating {
  width: 230px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: #f2f2f2;
  border-radius: 22px;
  animation: ani 0.6s linear infinite alternate;
  /* transition: opacity 0.3s; */
}
@keyframes ani {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 5px);
  }
}
.custom-login .member-login .floating::after,
.custom-login .social-login-sheet .floating::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -17px;
  border-style: solid;
  border-width: 9px;
  border-left-width: 7px;
  border-right-width: 7px;
  border-color: #f2f2f2 transparent transparent transparent;
}
@media (max-width: 991px) {
  .custom-login .member-login .floating,
  .custom-login .social-login-sheet .floating {
    width: 190px;
    height: 35px;
    padding: 0;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .custom-login .member-login .floating,
  .custom-login .social-login-sheet .floating {
    width: 127px;
    padding: 2px 17px 0 17px;
    height: 22px;
    line-height: 22px;
    font-size: 10px;
  }
}
.custom-login .social-login-sheet a {
  width: 100%;
  height: 60px;
  line-height: 58px;
  display: block;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-radius: 3px;
}
.custom-login .social-login-sheet a img {
  position: absolute;
  left: 36px;
}
@media (max-width: 991px) {
  .custom-login .social-login-sheet a img {
    left: 24px;
  }
}
.custom-login .social-login-sheet a.kakao {
  background: #ffe800;
  color: #3a2020;
}
.custom-login .social-login-sheet a.kakao img {
  top: 19px;
}
@media (max-width: 991px) {
  .custom-login .social-login-sheet a.kakao img {
    height: 18px;
    top: 14px;
  }
}
.custom-login .social-login-sheet a.naver {
  background: #21bc6f;
}
.custom-login .social-login-sheet a.naver img {
  top: 20px;
}
@media (max-width: 991px) {
  .custom-login .social-login-sheet a.naver img {
    height: 13px;
    top: 16px;
    left: 26px;
  }
}
.custom-login .social-login-sheet a.apple {
  background: #000;
}
.custom-login .social-login-sheet a.apple img {
  top: 17px;
}
@media (max-width: 991px) {
  .custom-login .social-login-sheet a.apple img {
    height: 19px;
    top: 11px;
  }
}
.custom-login .social-login-sheet a.google {
  color: #222;
  border: 1px solid #dcdcdc;
}
.custom-login .social-login-sheet a.google img {
  top: 18px;
  left: 33px;
}
@media (max-width: 991px) {
  .custom-login .social-login-sheet a.google img {
    height: 19px;
    top: 12px;
    left: 21px;
  }
}
.custom-login .social-login-sheet a.facebook {
  background: #445d99;
}
.custom-login .social-login-sheet a.facebook img {
  top: 18px;
}
@media (max-width: 991px) {
  .custom-login .social-login-sheet a.facebook img {
    height: 18px;
    top: 13px;
    left: 27px;
  }
}
.custom-login .social-login-sheet a.twitter {
  background: #2aa8e0;
}
.custom-login .social-login-sheet a.twitter img {
  top: 20px;
  left: 31px;
}
@media (max-width: 991px) {
  .custom-login .social-login-sheet a.twitter img {
    height: 15px;
    top: 14px;
    left: 23px;
  }
}
@media (max-width: 991px) {
  .custom-login .social-login-sheet a {
    height: 44px;
    line-height: 42px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .custom-login .social-login-sheet a {
    height: 42px;
    line-height: 40px;
  }
}
.custom-login .email_login_chi {
  margin: 30px 0 0px;
  text-align: center;
}
.custom-login .email_login_chi a {
  font-size: 16px;
  color: #444;
  position: relative;
}
@media (max-width: 991px) {
  .custom-login .email_login_chi a {
    font-size: 13px;
  }
}
.custom-login .email_login_chi a + a {
  padding-left: 18px;
  margin-left: 15px;
  display: inline-block;
}
.custom-login .email_login_chi a + a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background: #ddd;
}
@media (max-width: 991px) {
  .custom-login {
    padding-bottom: 0;
  }
}

.lost-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.lost-modal .back {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
}
.lost-modal form {
  width: 640px;
  /* min-height: 567px; */
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  padding: 60px 30px 30px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
}
.lost-modal form .lost-close {
  width: 27px;
  height: 27px;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 1;
  cursor: pointer;
}
.lost-modal form .lost-close:hover {
  opacity: 1;
}
.lost-modal form .lost-close span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
}
.lost-modal form .lost-close span::before, .lost-modal form .lost-close span::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #ccc;
}
.lost-modal form .lost-close span::before {
  transform: rotate(45deg);
}
.lost-modal form .lost-close span::after {
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
    .lost-modal form .lost-close span::before, .lost-modal form .lost-close span::after{
        /* height: 2px; */
    }
  .lost-modal form .lost-close {
    width: 17px;
    height: 17px;
    top: 15px;
    right: 15px;
  }
  .lost-modal form #mod_option_btn.option_btn{
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e6e6e6;
    border-radius: 2px;
    width: 40px;
    height: 4px;
  }
}
.lost-modal form h1 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1em;
  color: #1b1b1b;
}
@media (max-width: 991px) {
  .lost-modal form h1 {
    margin-bottom: 20px;
    font-size: 19px;
  }
}
@media (max-width: 480px) {
  .lost-modal form h1 {
    margin-bottom: 21px;
    font-size: 17px;
  }
}
.lost-modal form p {
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}
.lost-modal form p.text2{
    font-size: 14px;
    margin-top: 15px;
}
.lost-modal form p.text3{
    font-size: 12px;
    margin-top: 8px;
    color: #999999;
    line-height: 1em;
}
@media (max-width: 991px) {
  .lost-modal form p {
    line-height: 24px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .lost-modal form p {
    line-height: 19px;
    font-size: 13px;
  }
  .lost-modal form .tab_cont_pas p.text2{
    margin-bottom: 5px;
  }
  .lost-modal form p.text3{
    font-size: 11px;
    line-height: 16px;
  }
  .lost-modal form .tab_cont_pas p.text3{
    margin-top: 0;
  }
}
.lost-modal form .id_ch_btn{display: block; color: var(--main-point-color-hover); font-size: 12px; line-height: 1em; margin-top: 8px; text-decoration: underline;text-underline-offset : 5px;}
.lost-modal form .bot {margin: 40px 0 0;}
.lost-modal form .bot .tab_btn ul{display: flex;}
.lost-modal form .bot .tab_btn li{flex: 1; border-bottom: 1px solid #e6e6e6; padding-bottom: 20px; text-align: center; color: #999999; font-size: 15px; font-weight: 500; line-height: 1em; cursor: pointer;}
.lost-modal form .bot .tab_btn li.on{border-color: var(--main-point-color-hover); color: var(--main-point-color-hover);}
.lost-modal form .bot .tab_cont{display: none;}
.lost-modal form .bot .tab_cont.on{display: block;}
.lost-modal form .bot .sub_tab > ul{display: flex; margin-top: 20px;}
.lost-modal form .bot .sub_tab > ul li{flex: 1; /*transition: 0.2s;*/ border: 1px solid #e1e1e1; line-height: 48px; text-align: center; color: #666666; background-color: #fff; font-size: 13px; cursor: pointer;}
.lost-modal form .bot .sub_tab > ul li:nth-child(2){border-left: 1px solid transparent; border-right: 1px solid transparent;}
.lost-modal form .bot .sub_tab > ul li:hover{background-color: #fafafa;}
.lost-modal form .bot .sub_tab > ul li.on{background-color: var(--main-point-color-hover); border-color: var(--main-point-color-hover); color: #fff;}
.lost-modal form .bot .sub_cont{background-color: #f6f6f6; border-radius: 5px; margin-top: 20px; padding: 30px 30px 40px;}
.lost-modal form .bot .sub_cont .cer_li{display: none;}
.lost-modal form .bot .sub_cont .cer_li.on{display: block;}
.lost-modal form .bot .step{display: none;}
.lost-modal form .bot .step.active{display: block;}
.lost-modal form .bot .input_box{display: flex; align-items: center; margin-top: 25px;}
.lost-modal form .bot .tab_cont_pas .input_box + .input_box{margin-top: 16px;}
.lost-modal form .bot .input_box .timer_box{position: relative; width: calc(100% - 124px);}
.lost-modal form .bot .input_box .timer_box input{width: 100%;}
.lost-modal form .bot .cer_num .input_box{margin-top: 10px;}
.lost-modal form .bot .cer_num .input_box + .input_box{margin-top: 15px;}
.lost-modal form .bot .input_box label{width: 124px; text-align: left; color: #333333; font-size: 16px;}
@media (max-width: 991px) {
  .lost-modal form .bot .input_box{display: block;}
  .lost-modal form .bot .input_box label{width: 100%; margin-bottom: 13px;}
  .lost-modal form .bot .cer_num .input_box{margin-top: 0;}
  .lost-modal form .bot .cer_num .flost_timer_wrap .input_box{margin-top: 22px;}
  .lost-modal form .bot .cer_num .input_box + .input_box{margin-top: 22px;}
  .lost-modal form .bot .input_box.msg-wrap{margin-top: 5px !important;}
  .lost-modal form .bot .input_box .timer_box{width: 100%;}
  .lost-modal form .bot .tab_cont_pas .input_box + .input_box{margin-top: 20px;}
  .lost-modal form .bot .sub_tab > ul li{font-size: 13px; line-height: 15px; padding: 5px; display: flex; align-items: center; justify-content: center;}
}
@media (max-width: 480px) {
  .lost-modal form .id_ch_btn{font-size: 11px; text-underline-offset: 3px; margin-top: 4px; margin-bottom: 15px;}
  .lost-modal form .bot .input_box{margin-top: 13px;}
  .lost-modal form .bot .tab_btn li{font-size: 14px; padding-bottom: 12px;}
  .lost-modal form .bot .sub_tab > ul{margin-top: 15px;}
  .lost-modal form .bot .sub_tab > ul li{font-size: 11px;}
  .lost-modal form .bot .sub_tab > ul li:first-child{border-radius: 2.5px 0 0 2.5px !important;}
  .lost-modal form .bot .sub_tab > ul li:last-child{border-radius: 0 2.5px 2.5px 0 !important;}
  .lost-modal form .bot .input_box label{font-size: 14px;}
}
.lost-modal form .bot input {
  width: calc(100% - 124px);
  height: 46px;
  line-height: 44px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  box-shadow: none;
  transition: 0.2s;
}
.lost-modal form .bot .cer_num input:focus{
    border: 1px solid var(--main-point-line-color-hover);
}
.lost-modal form .bot input.hp{
    width: calc(100% - 250px);
    margin-right: 5px;
}
.lost-modal form .bot input::placeholder {
  color: #999999;
}
@media (max-width: 991px) {
  .lost-modal form .bot input {
    height: 46px;
    line-height: 50px;
    font-size: 14px;
    width: 100%;
  }
  .lost-modal form .bot input.hp{width: 100%; margin-right: 0;}
  .lost-modal form .bot .sub_cont{padding: 25px 15px 15px; margin-top: 15px; background-color: #f9f9f9; overflow-y: auto; max-height: 60vh;}
}
@media (max-width: 480px) {
  .lost-modal form .bot input {
    height: 40px;
    line-height: 40px;
    padding: 0;
    padding-left: 12px;
    font-size: 12px;
    border-radius: 2.5px;
  }
}
.lost-modal form .bot .input_box .msg-box{
    color: #ff0000;
}
.lost-modal form .bot .input_box .timer{
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 16px;
    font-weight: 600;
    transform: translateY(-50%);
}
.lost-modal form .bot .input_box .txt{
    font-size: 13px;
    font-weight: 400;
}
@media (max-width: 991px) {
  .lost-modal form .bot .input_box .msg-box.txt{
    text-align: left;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .lost-modal form .bot .input_box .timer{
    font-size: 12px;
  }
}
.lost-modal form .bot .captcha_sheet {
  margin-top: 19px;
}
.lost-modal form .bot .captcha_sheet .captcha {
  display: flex;
  justify-content: center;
  gap: 7px;
}
.lost-modal form .bot .captcha_sheet .captcha .captcha_imgbox {
  width: 240px;
  height: 45px;
  line-height: 45px;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .lost-modal form .bot .captcha_sheet .captcha .captcha_imgbox {
    width: auto;
    flex: 1;
    height: 41px;
    line-height: 39px;
    padding: 0 15px;
    text-align: center;
    border-radius: 5px;
  }
}
@media (max-width: 480px) {
  .lost-modal form .bot .captcha_sheet .captcha .captcha_imgbox {
    border-radius: 2.5px;
  }
}
.lost-modal form .bot .captcha_sheet .captcha #modal_captcha_img {
  width: auto;
  /* height: auto; */
  height: 100%;
  border: none;
}
@media (max-width: 991px) {
  .lost-modal form .bot .captcha_sheet .captcha #modal_captcha_img {
    width: auto;
    /* margin-right: -15px; */
  }
}
.lost-modal form .bot .captcha_sheet .captcha .capcha_aid {
  width: 22px;
  display: flex;
  flex-flow: column;
  margin: 0;
}
.lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_mp3, .lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_reload {
  flex: 1;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  border: none;
  text-indent: -9999px;
}
@media (max-width: 991px) {
  .lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_mp3, .lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_reload {
    width: 100%;
    height: 50%;
    background-size: 100% 100%;
    background-position: bottom;
  }
  .lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_mp3 span, .lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_reload span {
    width: 100%;
    height: 100%;
    background-size: cover;
  }
}
.lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_mp3 {
  background: url(/img/modal_captcha_mp3.jpg) no-repeat #e3e3e3;
  background-size: cover;
}
@media (max-width: 991px) {
  .lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_mp3 {
    background-size: 22px;
    background-position: center center;
    background-image: url(/img/mmodal_captcha_mp3.png);
    background-color: transparent;
  }
}
.lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_reload {
  background: url(/img/modal_captcha_reload.jpg) no-repeat #e3e3e3;
  background-size: cover;
}
@media (max-width: 991px) {
  .lost-modal form .bot .captcha_sheet .captcha .capcha_aid #modal_captcha_reload {
    background-size: 22px;
    background-position: center center;
    background-image: url(/img/mmodal_captcha_reload.png);
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .lost-modal form .bot .captcha_sheet .captcha .capcha_aid {
    height: 41px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lost-modal form .bot .captcha_sheet .captcha #modal_captcha_key {
  width: 240px;
  height: 45px;
  line-height: 45px;
  margin: 0;
  padding: 0 25px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .lost-modal form .bot .captcha_sheet .captcha #modal_captcha_key {
    width: auto;
    flex: 1;
    height: 41px;
    line-height: 39px;
    padding: 0 15px;
    border-radius: 5px;
    background-color: #fff !important;
  }
}
@media (max-width: 991px) {
  .lost-modal form .bot .captcha_sheet .captcha {
    gap: 30px;
    position: relative;
  }
}
@media (max-width: 991px) {
  .lost-modal form .bot .captcha_sheet {
    margin-top: 18px;
  }
}
.lost-modal form .bot #modal_captcha_info {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
  text-align: center;
}
@media (max-width: 991px) {
  .lost-modal form .bot #modal_captcha_info {
    margin-top: 12px;
    font-size: 13px;
    /* text-align: left; */
  }
}
@media (max-width: 480px) {
  .lost-modal form .bot #modal_captcha_info {
    margin-top: 7px;
    font-size: 10px;
  }
}
@media (max-width: 991px) {
  .lost-modal form .bot {
    margin: 22px 0 0px;
  }
}
.lost-modal form .confirm {
  width: 100%;
  height: 50px;
  line-height: 48px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  background: var(--main-point-btn-bg-color-hover);
  transition: 0.2s;
}
.lost-modal form .confirm:hover{
    /* background: #703df1; */
    opacity: 0.92;
}
.lost-modal form .cer_me .confirm{
    height: 62px;
    line-height: 60px;
}
.lost-modal form .cer_num .hp_btn{
    width: 120px;
    min-height: 46px;
    line-height: 1.2em;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    background: var(--main-point-btn-bg-color-hover);
    transition: 0.2s;
    color: #fff;
    padding: 5px;
    border: 1px solid var(--main-point-btn-line-color-hover);
}
.lost-modal form .cer_num .hp_btn.again_btn{
    background: #999999;
    border-color: #999999;
}
.lost-modal form .cer_num .hp_btn:hover{
    /* background: #703df1; */
    opacity: 0.92;
}
.lost-modal form .cer_num .hp_btn.again_btn:hover{
  background: #999999;
}
.lost-modal form .confirm .confirm_btn {
    color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  margin: 30px auto 0;
  background: none;
  border: none;
}
@media (max-width: 991px) {
  .lost-modal form .cer_num .hp_btn{width: 100%; margin-top: 8px;}
  .lost-modal form .confirm {
    height: 46px;
    line-height: 44px;
    font-size: 15px;
    border-radius: 5px;
  }
}
@media (max-width: 480px) {
  .lost-modal form .cer_num .hp_btn{border-radius: 2.5px;}
  .lost-modal form .confirm {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 2.5px;
  }
  .lost-modal form .cer_me .confirm{
    height: 40px;
    line-height: 38px;
  }
  .lost-modal form .confirm .confirm_btn{
    margin-top: 17px;
  }
}
@media (max-width: 991px) {
  .lost-modal form {
    position: absolute;
    /* width: 81%; */
    width: 100%;
    min-height: auto;
    padding: 55px 18px 15px;
    border-radius: 10px 10px 0 0;
    top: auto;
    left: 0;
    transform: none;
    bottom: 0;
  }
}
@media (max-width: 480px) {
  .lost-modal form {
    /* padding: 40px 20px; */
  }
}
.lost-modal.active {
  opacity: 1;
  visibility: visible;
}

/* 240516 */
.at-html.login-intro #thema_wrapper{
    background-color: #f7f7f7;
}
.at-html.login-intro .point_color{color: var(--main-point-color-hover);}
.at-html.login-intro .sub_text{
    display: none;
}
.at-html.login-intro .at-body > .container_fix{
    max-width: 1360px;
}
.at-html.login-intro .at-body .at-content{
    /* padding: 96px 0 0; */
    padding: 50px 0 0;
}
.at-html.login-intro .login_intro_img{
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  min-width: 430px;
}
.at-html.login-intro .login_intro_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.at-html.login-intro .custom-login{
    max-width: inherit;
}
.at-html.login-intro .login-body{
    display: flex;
    width: 100%;
}
.at-html.login-intro .member-login, .at-html.login-intro .non-members-login{
    /* max-width: 460px; */
    max-width: 715px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    padding: 44px 9.526% 47px;
    border-radius: 0 20px 20px 0;
}
.at-html.login-intro .member-login h4{
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
    margin-bottom: 30px;
}
.at-html.login-intro .member-login h4.intro_closed_mall{padding-top: 19px;}
.at-html.login-intro .custom-login .member-login .nav-tabs li a{
    height: 50px;
    line-height: 48px;
}
.at-html.login-intro .custom-login .member-login .nav-tabs{
    margin-bottom: 10px;
}
.at-html.login-intro .custom-login .member-login .tab-content .form-group input{
    height: 50px;
    line-height: 48px;
    margin-bottom: 10px;
    padding: 0 20px;
}
.at-html.login-intro .custom-login .member-login .tab-content .login-opt{
    padding-top: 10px;
    margin-bottom: 25px;
}
.at-html.login-intro .custom-login .member-login .login-btn{
    height: 50px;
    line-height: 48px;
    margin-bottom: 15px;
}
.at-html.login-intro .custom-login .member-login .login-btn button{
    font-size: 16px;
    font-weight: 500;
}
.at-html.login-intro .custom-login .member-login .tab-content .or{
    margin: 35px 0 20px;
}
.at-html.login-intro .custom-login .member-login .tab-content .lost-box a{
    color: #444;
}
.at-html.login-intro .custom-login .member-login .floating, .at-html.login-intro .custom-login .social-login-sheet .floating{
    width: 200px;
    height: 35px;
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}
.at-html.login-intro .custom-login #sns_login a{
    height: 45px;
    line-height: 43px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
}
.at-html.login-intro .custom-login #sns_login a.kakao img{
    top: 13px;
}
.at-html.login-intro .custom-login #sns_login a.naver img{
    top: 13px;
}
.at-html.login-intro .custom-login #sns_login a.google img{
    top: 11px;
}
.at-html.login-intro .custom-login #sns_login a.facebook img{
    top: 11px;
}
.at-html.login-intro .intro_adult_text{
    padding-top: 10px;
}
.at-html.login-intro .intro_adult_text p{
    font-size: 14px;
    color: #666666;
    text-align: center;
    line-height: 1.6em;
}
.at-html.login-intro .intro_adult_text a{
    font-weight: 500;
    color: #010101;
    text-decoration: underline;
    text-underline-offset : 5px;
}
@media (max-width: 1400px){
    .at-html.login-intro .member-login, .at-html.login-intro .non-members-login{
        padding: 44px 2.526% 40px;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .or::before{
        height: 1em;
        background-color: #fff;
        left: 50%;
        transform: translateX(-50%);
        width: 10%;
        top: 0;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .or::after{
        width: 100%;
        z-index: -2;
    }
}
@media (max-width: 1200px){
    .at-html.login-intro .login_intro_img{
        max-width: 715px;
        margin: 0 auto;
    }
}
@media (max-width: 991px){
    .at-html.login-intro #thema_wrapper{
        background-color: #fff;
    }
    .at-html.login-intro .at-body .at-content{
        padding-top: 30px;
    }
    .login-body{
        display: block;
    }
    .at-html.login-intro .login-body{
        display: block;
    }
    .at-html.login-intro .login_intro_img{
        text-align: center;
        color: #999999;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.6em;
        padding:0 9.526% 0;
        min-width: auto;
    }
    .at-html.login-intro .login_intro_img > .intro_adult{
        border-bottom: 1px solid #d6d6d6;
        padding-bottom: 25px;
    }
    .at-html.login-intro .login_intro_img .intro_adult img{
        width: 56px;
        margin: 0 auto 12px;
        display: inline-block;
    }
    .at-html.login-intro .login_intro_img .intro_closed_mall img{
        width: auto;
        margin: 0 auto;
        display: inline-block;
    }
    .at-html.login-intro .member-login, .at-html.login-intro .non-members-login{
        box-shadow: none;
        padding-top: 35px;
        padding: 44px 9.526% 40px;
    }
    .at-html.login-intro .member-login h4{
        text-align: center;
        font-size: 15px;
        margin-bottom: 20px;
    }
    .at-html.login-intro .custom-login .member-login .nav-tabs li a{
        height: 40px;
        line-height: 38px;
    }
    .at-html.login-intro .custom-login .member-login .nav-tabs li:nth-child(1) a{
        border-radius: 4px 0 0 4px;
    }
    .at-html.login-intro .custom-login .member-login .nav-tabs li:nth-child(2) a{
        border-radius: 0 4px 4px 0;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .form-group input{
        height: 40px;
        line-height: 38px;
        border-radius: 4px !important;
        padding: 0 15px;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .login-opt{
        justify-content: center;
        padding-top: 5px;
        margin-bottom: 20px;
    }
    .at-html.login-intro .custom-login .member-login .login-btn{
        height: 40px;
        line-height: 40px;
        margin-bottom: 18px;
    }
}
@media (max-width: 480px){
    .at-html.login-intro .custom-login .member-login .tab-content .login-opt input + label::after{
        width: 13px;
        height: 13px;
        background-size: 13px;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .login-opt input + label{
        font-size: 12px;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .or{
        margin: 30px 0 20px;
        font-size: 13px;
    }
    .at-html.login-intro .custom-login .member-login .tab-content .or::before{
        width: 20%;
    }
    .at-html.login-intro .custom-login .member-login .floating, .at-html.login-intro .custom-login .social-login-sheet .floating{
        font-size: 11px;
        width: 140px;
        height: 24px;
        padding: 2px 15px 0;
    }
    .at-html.login-intro .custom-login #sns_login a{
        font-size: 13px;
    }
    .at-html.login-intro .intro_adult_text p{
        font-size: 12px;
    }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
회원가입 페이지
html > skin > member > basic > register_form.skin.php
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.register-wrap {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  padding-bottom: 20px;
}
@media (max-width: 991px){
    .at-content.register_cont{
        padding-bottom: 0;
    }
    .register-wrap{
        padding-bottom: 0;
    }
}
.register-wrap .register_sheet .reg_tab {
  display: flex;
  justify-content: center;
  gap: 13px;
  position: relative;
  padding: 0 88px;
}
.register-wrap .register_sheet .reg_tab li {
  height: 60px;
  line-height: 58px;
  flex: 1;
  margin-bottom: 59px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
}
.register-wrap .register_sheet .reg_tab li a {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: #999;
  text-align: center;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_tab li a {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_tab li a {
    font-size: 13px;
  }
}
.register-wrap .register_sheet .reg_tab li.active {
  background: var( --main-point-btn-bg-color-hover);
  border-color: var(--main-point-btn-line-color-hover);
}
.register-wrap .register_sheet .reg_tab li.active a {
  font-weight: 500;
  color: #fff;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_tab li {
    height: 47px;
    line-height: 45px;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_tab li {
    height: 41px;
    line-height: 39px;
  }
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_tab {
    gap: 10px;
    padding: 0;
    padding-bottom: 38px;
    margin-bottom: 60px;
  }
  .register-wrap .register_sheet .reg_tab::after {
    content: "";
    width: 200%;
    height: 18px;
    position: absolute;
    bottom: 0;
    background: #eff2f5;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_tab {
    padding-bottom: 25px;
    margin-bottom: 35px;
  }
  .register-wrap .register_sheet .reg_tab::after {
    height: 9px;
  }
}
.register-wrap .register_sheet .reg_form {
  max-width: 660px;
  margin: 0 auto;
}
.register-wrap .register_sheet .reg_form_com {
  margin-bottom: 40px;
  padding: 0 20px 40px 20px;
  border-bottom: 1px solid #d6d6d6;
}
.register-wrap .register_sheet .reg_form_com .input-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.register-wrap .register_sheet .reg_form_com .input-box.reg_form_name{
  align-items: flex-start;
  margin-bottom: 20px;
}
.register-wrap .register_sheet .reg_form_com .input-box.reg_form_name label{
  line-height: 46px;
}
.register-wrap .register_sheet .reg_form_com .input-box.addr{
  align-items: flex-start;
}
.register-wrap .register_sheet .reg_form_com .input-box.addr label{
  line-height: 46px;
}
.register-wrap .register_sheet .reg_form_com .input-box input {
  width: calc(100% - 136px);
  height: 46px;
  line-height: 44px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 300;
  box-shadow: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}
.register-wrap .register_sheet .reg_form_com .input-box input::placeholder {
  color: #999;
}
.register-wrap .register_sheet .reg_form_com .input-box .re_input_box #daum_juso_pagemb_zip{max-height: 400px;}
.register-wrap .register_sheet .reg_form_com .input-box.addr #daum_juso_pagecom_zip{max-height: 400px;}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_com .input-box input {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2.5px;
  }
  /* 2024-08-01 (주)파이브센스_FIVESENSES.Corp. */
  .register-wrap .register_sheet .reg_form_com .input-box.reg_form_name label{
    line-height: 1em;
  }
}
@media (max-width: 480px) {
    /* 2024-08-07 (주)파이브센스_FIVESENSES.Corp. */
  .register-wrap .register_sheet .reg_form_com .input-box input {
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    font-size: 12px;
    /* padding-top: 3px; */
  }
}
.register-wrap .register_sheet .reg_form_com .input-box textarea {
  line-height: 21px;
  padding: 15px;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_com .input-box textarea {
    line-height: 19px;
    font-size: 13px;
  }
}
.register-wrap .register_sheet .reg_form_com .input-box label {
  width: 136px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_com .input-box label {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form_com .input-box label {
    font-size: 13.5px;
  }
}
.register-wrap .register_sheet .reg_form_com .input-box-msg {
  align-items: flex-end;
  flex-flow: column;
}
.register-wrap .register_sheet .reg_form_com .input-box-msg div {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_com .input-box-msg div {
    display: block;
  }
}
.register-wrap .register_sheet .reg_form_com .input-box-msg .nick,
.register-wrap .register_sheet .reg_form_com .input-box-msg .hp {
  flex-flow: column;
  align-items: flex-end;
}
.register-wrap .register_sheet .reg_form_com .input-box-msg .nick .txt {
  /* color: #999; */
  color: #ff0000;
}
.register-wrap .register_sheet .reg_form_com .input-box .msg-box {
  width: calc(100% - 136px);
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  margin-top: 12px;
  display: none;
}
.register-wrap .register_sheet .reg_form_com .input-box .msg-box.txt {
  margin-top: 12px;
  display: block;
  /* color: #999; */
  /* 2024-08-07 (주)파이브센스_FIVESENSES.Corp. */
  color: #ff0000;
}
.register-wrap .register_sheet .reg_form_com .input-box .msg-box.txt.gray{
    color: #999;
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form_com .input-box .msg-box.txt {
    margin-top: 6px;
  }
}
.register-wrap .register_sheet .reg_form_com .input-box .msg-box.id, .register-wrap .register_sheet .reg_form_com .input-box .msg-box.pw {
  color: #ff0000;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_com .input-box .msg-box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form_com .input-box .msg-box {
    font-size: 11px;
  }
}
.register-wrap .register_sheet .reg_form_com .input-box:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_com .input-box {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_com {
    position: relative;
    margin-bottom: 30px;
    padding: 0 0 40px 0;
    border: none;
  }
  .register-wrap .register_sheet .reg_form_com::after {
    content: "";
    width: 200%;
    height: 18px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #eff2f5;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form_com {
    padding: 0 0 30px 0;
  }
  .register-wrap .register_sheet .reg_form_com::after {
    height: 9px;
  }
}
.register-wrap .register_sheet .reg_form_com .reg_form_name.input-box .reg_form_name_box {
  width: calc(100% - 136px);
}
.register-wrap .register_sheet .reg_form_com .reg_form_name.input-box input {
  width: 100%;
}
.register-wrap .register_sheet .reg_form_com .reg_form_name .cert-box {
  width: 100%;
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.register-wrap .register_sheet .reg_form_com .reg_form_name button.win_btn {
  width: 100%;
  background: #bfbfbf;
  border-color: #bfbfbf;
  border-radius: 5px !important;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  padding: 10px 10px;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.register-wrap .register_sheet .reg_form_com .reg_form_name button.win_btn:hover {
  background: var(--main-point-btn-bg-color-hover);
  border-color: var(--main-point-btn-line-color-hover);
}
.register-wrap .register_sheet .reg_form_com .reg_form_name .msg-box {
  width: 100%;
  margin-top: 10px;
  font-size: 13px;
  color: #999;
  font-weight: 400;
  line-height: 20px;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_com .reg_form_name.input-box .reg_form_name_box {
    width: 100%;
  }
  .register-wrap .register_sheet .reg_form_com .reg_form_name .cert-box {
    margin-top: 15px;
  }
  .register-wrap .register_sheet .reg_form_com .reg_form_name button.win_btn {
    width: 49%;
    font-size: 15px;
    padding: 10px 10px;
  }
  .register-wrap .register_sheet .reg_form_com .reg_form_name button + button {
    /* margin-left: 2%; */
  }
  .register-wrap .register_sheet .reg_form_com .reg_form_name .msg-box {
    margin: 5px 0 20px;
    font-size: 13px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form_com .reg_form_name .cert-box {
    margin-top: 10px;
  }
  .register-wrap .register_sheet .reg_form_com .reg_form_name button.win_btn {
    font-size: 14px;
    font-weight: 500;
    padding: 9px 10px;
  }
  .register-wrap .register_sheet .reg_form_com .reg_form_name .msg-box {
    font-size: 10px;
    line-height: 15px;
    margin-top: 6px;
  }
}
.register-wrap .register_sheet .reg_form_per .input-box-msg.email > div:last-child {
  justify-content: flex-end;
  color: #ff0000;
}
.register-wrap .register_sheet .reg_form_per .input-box-msg.email > div.email_msg {
  width: calc(100% - 136px);
  flex-direction: column;
}
.register-wrap .register_sheet .reg_form_per .input-box-msg.email > div.email_msg > div {
  width: 100%;
  /* color: #999; */
  color: #ff0000;
  font-weight: 400;
  margin-bottom: 5px;
}
.register-wrap .register_sheet .reg_form_per .input-box-msg.email > div.email_msg > div:last-child {
  margin-bottom: 0;
}
.register-wrap .register_sheet .reg_form_per .input-box.addr .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.homepage .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.tel .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.signature .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.profile .re_input_box,
.register-wrap .register_sheet .reg_form_per .input-box.recommend .re_input_box {
  width: calc(100% - 136px);
}
.register-wrap .register_sheet .reg_form_per .input-box.addr .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.homepage .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.tel .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.signature .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.profile .re_input_box input,
.register-wrap .register_sheet .reg_form_per .input-box.recommend .re_input_box input {
  width: 100%;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_per .input-box.addr .re_input_box,
  .register-wrap .register_sheet .reg_form_per .input-box.homepage .re_input_box,
  .register-wrap .register_sheet .reg_form_per .input-box.tel .re_input_box,
  .register-wrap .register_sheet .reg_form_per .input-box.signature .re_input_box,
  .register-wrap .register_sheet .reg_form_per .input-box.profile .re_input_box,
  .register-wrap .register_sheet .reg_form_per .input-box.recommend .re_input_box {
    width: 100%;
  }
}
.register-wrap .register_sheet .reg_form_bui {
  display: none;
}
.register-wrap .register_sheet .reg_form_bui .addr {
  align-items: flex-start;
}
.register-wrap .register_sheet .reg_form_bui .addr label {
  /* padding-top: 16px; */
}
.register-wrap .register_sheet .reg_form_bui .addr > div {
  width: calc(100% - 136px);
}
.register-wrap .register_sheet .reg_form_bui .addr > div input {
  width: 100%;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form_bui .addr > div {
    width: 100%;
  }
}
.register-wrap .register_sheet .reg_form_bui.active {
  display: block;
}
.register-wrap .register_sheet .reg_form .reg_terms {
  padding: 0 20px;
}
.register-wrap .register_sheet .reg_form .reg_terms h1 {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form .reg_terms h1 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .reg_terms h1 {
    font-size: 13px;
  }
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box {
  padding: 0;
  padding-bottom: 23px;
  border: none;
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box .check-input + label {
  line-height: 1;
  padding-left: 0px;
  font-size: 16px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box .check-input + label::after {
  display: none;
  /*
  content:""; width:20px; height:20px; position:absolute; background:url(/img/terms_check.png) no-repeat; background-size:20px;
  @include responsive-991{
      width:17px; height:17px; background-size:17px;
  }*/
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form .reg_terms .check-box .check-input + label {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .reg_terms .check-box .check-input + label {
    font-size: 13.5px;
  }
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow {
  width: 8px;
  height: 7px;
  display: block;
  position: absolute;
  top: 7px;
  right: 0;
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::before, .register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #333333;
  transition: all 100ms linear;
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::before {
  right: 6px;
  transform: rotate(45deg);
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::before {
    right: 4px;
  }
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow::after {
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow {
    right: 2px;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .reg_terms .check-box .arrow {
    width: 6px;
  }
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box .detail-content {
  height: 0;
  line-height: 22px;
  display: block;
  margin-top: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  overflow-y: auto;
  font-size: 13px;
  font-weight: 300;
  border: none;
  background: #f8f8f8;
  color: #999;
  transition: all 250ms linear;
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box.active .arrow::before {
  transform: rotate(-45deg);
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box.active .arrow::after {
  transform: rotate(45deg);
}
.register-wrap .register_sheet .reg_form .reg_terms .check-box.active .detail-content {
  height: 145px;
  margin-top: 20px;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form .reg_terms .check-box {
    padding-bottom: 19px;
    margin-bottom: 19px;
    border-bottom: 1px solid #e1e1e1;
  }
  .register-wrap .register_sheet .reg_form .reg_terms .check-box:nth-child(7) {
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .reg_terms .check-box {
    padding-bottom: 16px;
    margin-bottom: 17px;
  }
}
.register-wrap .register_sheet .reg_form .reg_terms #captcha_info {
    color: #555555;
    font-size: 15px;
    font-weight: 400;
    margin-top: 14px;
    display: block;
    text-align: center;
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .reg_terms #captcha_info {
    margin-top: 8px;
    font-size: 10px;
  }
}
.register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap {
  width: 240px;
  margin: 0 auto;
  margin-top: 80px;
}
.register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap #btn_submit {
  border-radius: 5px;
  width: 100%;
  height: 60px;
  line-height: 58px;
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}
.register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap #btn_submit.regbtn{
    border-radius: 5px;
}
.register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap.register_btn #btn_submit.regbtn{
    border-radius: 30px;
}
@media (max-width: 991px) {
    .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap #btn_submit.regbtn{
        border-radius: 2.5px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap.register_btn #btn_submit.regbtn{
        border-radius: 50px;
    }
    .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap #btn_submit {
        width: 100%;
        padding: 0 45px;
        height: 46px;
        line-height: 44px;
        font-size: 15px;
    }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap #btn_submit {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap {
    width: 100%;
    margin-top: 50px;
  }
  .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap.edit {
    width: auto;
  }
  .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap.edit #btn_submit {
    width: auto;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .reg_terms .regbtn-wrap {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form .reg_terms {
    padding: 0;
  }
}
.register-wrap .register_sheet .reg_form .captcha_sheet {
  padding: 0 24px;
  margin-top: 36px;
}
.register-wrap .register_sheet .reg_form .captcha_sheet #captcha {
  display: flex !important;
  gap: 3px;
}
.register-wrap .register_sheet .reg_form .captcha_sheet #captcha .captcha_imgbox {
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #ddd;
}
.register-wrap .register_sheet .reg_form .captcha_sheet #captcha .captcha_imgbox #captcha_img {
  border: none;
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet #captcha .captcha_imgbox {
    width: auto;
    flex: 1;
    height: 56px;
    border-radius: 5px;
  }
}
.register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid {
  width: 45px;
  height: 90px;
  position: relative;
}
.register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_mp3, .register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_reload {
  width: 100%;
  height: 45px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
}
.register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_mp3 span, .register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_reload span {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: auto;
  right: auto;
  background-size: cover;
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_mp3, .register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_reload {
    height: 50%;
  }
}
.register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_reload {
  top: auto;
  bottom: 0;
  background-size: 45px;
  background-position: bottom;
}
.register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_reload span {
  top: 0;
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_reload span {
    background: none;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid #captcha_reload {
    background: url(/img/modal_captcha_reload.jpg) no-repeat;
    background-size: 28px;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet #captcha .capcha_aid {
    width: 28px;
    height: 56px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.register-wrap .register_sheet .reg_form .captcha_sheet #captcha #captcha_key {
  width: calc(100% - 275px) !important;
  height: 90px;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet #captcha #captcha_key {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet #captcha #captcha_key {
    width: auto !important;
    flex: 1;
    height: 56px;
    background: #fff !important;
    border: 1px solid #ddd;
    border-left: 1px solid #ddd;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet #captcha {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet {
    padding: 0;
    margin-top: 31px;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .captcha_sheet {
    margin-top: 25px;
  }
}
.register-wrap .register_sheet .reg_form .regis_interest {
  position: relative;
  margin: 0;
  margin-top: 10px;
  padding: 40px 0 0;
  font-size: 16px;
  font-weight: 400;
  border: none;
  color: #444;
}
.register-wrap .register_sheet .reg_form .regis_interest::after {
  content: "";
  width: 200%;
  height: 18px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #eff2f5;
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .regis_interest::after {
    height: 9px;
  }
}
@media (max-width: 480px) {
  .register-wrap .register_sheet .reg_form .regis_interest {
    padding: 30px 0 0;
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .register-wrap {
    max-width: 100%;
  }
}

/* 2024-08-06 (주)파이브센스_FIVESENSES.Corp. */
.register-wrap .register_sheet .input-box.with-button input {margin-right: 5px; width: calc(100% - 261px) !important; }
.register-wrap .register_sheet .input-box .hp_req {width: 120px; min-height: 46px; font-size: 15px; font-weight: 400; border-radius: 5px; background: var(--main-point-btn-bg-color-hover); transition: 0.2s; color: #fff; padding: 5px;  }
.register-wrap .register_sheet .input-box .hp_req.again {background: #999999;}
.register-wrap .register_sheet .input-box .hp_req.hp_chk {background: #999999;}
.register-wrap .register_sheet .input-box.with-timer {position:relative;}
.register-wrap .register_sheet .input-box.with-timer .timer {position: absolute; font-size: 16px; font-weight: 600; transform: translateY(-50%); top: 50%; right: 140px; color: red;}
@media (max-width: 991px) {
	.register-wrap .register_sheet .input-box.with-button input {
		width: 100% !important;
		font-size: 14px;
		font-weight: 500;
		border-radius: 2.5px;
	}
	.register-wrap .register_sheet .input-box .hp_req {
		width: 100%; 
		margin-top:5px; 
	}

	.register-wrap .register_sheet .input-box.with-timer .timer {
		right: 15px;
		top: 50px;
	}
}
/* 2024-08-07 (주)파이브센스_FIVESENSES.Corp. */
@media (max-width: 480px){
    .register-wrap .register_sheet .input-box.with-button input{height: 40px; line-height: 40px; padding: 0 12px; font-size: 12px; /*padding-top: 3px;*/}
    .register-wrap .register_sheet .input-box .hp_req{font-size: 14px;}
    .register-wrap .register_sheet .input-box.with-timer .timer{top: 47px;}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
회원가입 완료 페이지
html > skin > member > basic > register_result.skin.php
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.register_result_sheet {
  padding-top: 100px;
}
.register_result_sheet .txt-box {
  text-align: center;
}
.register_result_sheet .txt-box h1 {
  line-height: 42px;
  font-size: 30px;
  font-weight: 400;
  color: var(--main-point-color);
}
.register_result_sheet .txt-box h1 span {
  font-weight: bold;
}
@media (max-width: 991px) {
  .register_result_sheet .txt-box h1 {
    line-height: 36px;
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .register_result_sheet .txt-box h1 {
    line-height: 28px;
    font-size: 22px;
  }
}
.register_result_sheet .txt-box p {
  line-height: 25px;
  margin-top: 25px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
}
@media (max-width: 991px) {
  .register_result_sheet .txt-box p {
    line-height: 22px;
    font-size: 14px;
    margin-top: 13px;
  }
}
@media (max-width: 480px) {
  .register_result_sheet .txt-box p {
    line-height: 20px;
    font-size: 12px;
    font-weight: 300;
  }
}
.register_result_sheet .info-box {
  margin-top: 25px;
  text-align: center;
}
.register_result_sheet .info-box p {
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  color: var(--main-point-color-hover);
}
.register_result_sheet .info-box p span {
  font-weight: 500;
}
@media (max-width: 991px) {
  .register_result_sheet .info-box p {
    line-height: 21px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .register_result_sheet .info-box p {
    line-height: 20px;
    font-size: 13px;
  }
}
.register_result_sheet .alert-box {
  line-height: 24px;
  padding: 21px 20px;
  font-size: 13px;
  font-weight: 300;
  background: #fafafa;
  color: #999;
  text-align: center;
  max-width: 1100px;
  margin: 40px auto 0;
}
@media (max-width: 991px) {
  .register_result_sheet .alert-box {
    padding: 15px;
    margin: 31px auto 0;
  }
}
@media (max-width: 991px) {
  .register_result_sheet {
    padding-top: 43px;
  }
}

.register_result_btn {
  margin: 40px 0 50px !important;
}
@media (max-width: 991px) {
  .register_result_btn {
    margin: 30px 0 0 !important;
  }
}
.register_result_btn a {
  height: 60px;
  line-height: 58px;
  padding: 0 57px;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  border-radius: 30px !important;
}
@media (max-width: 991px) {
  .register_result_btn a {
    height: 42px;
    line-height: 40px;
    padding: 0 42px;
    font-size: 14px;
  }
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
개인정보, 회원가입약관
html > page > privacy, provision.php
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.terms_select_box {
  display: flex;
  width: 150px;
  justify-content: flex-end;
  margin-left: auto;
  position: relative;
  margin-top: 20px;
}
.terms_select_box > a {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding-left: 12px;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  font-size: 12px;
  color: #666666;
  position: relative;
  background: #fff;
}
.terms_select_box > a span.arrow {
  position: absolute;
  width: 9px;
  height: 5px;
  display: block;
  top: 11px;
  right: 12px;
  transition: all 0.3s;
}
.terms_select_box > a span.arrow::before {
  content: "";
  width: 1px;
  height: 6px;
  background: #a1a1a1;
  position: absolute;
  top: 0;
  left: 2px;
  transform: rotate(-45deg);
}
.terms_select_box > a span.arrow::after {
  content: "";
  width: 1px;
  height: 6px;
  background: #a1a1a1;
  position: absolute;
  top: 0;
  right: 2px;
  transform: rotate(45deg);
}
.terms_select_box .select_box {
  border-radius: 3px;
  border: 1px solid #eaeaea;
  width: 100%;
  max-height: 180px;
  padding: 15px 12px;
  position: absolute;
  top: 29px;
  background: #fff;
  box-shadow: 0px 11px 59px 0 rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  overflow: hidden;
  overflow-y: auto;
}
.terms_select_box .select_box > li {
  margin-bottom: 20px;
}
.terms_select_box .select_box > li a {
  font-size: 12px;
  color: #999999;
}
.terms_select_box .select_box > li:last-child {
  margin-bottom: 0;
}
.terms_select_box .select_box > li:hover a, .terms_select_box .select_box > li.active a {
  color: var(--main-point-color-hover);
}
.terms_select_box.active a span.arrow {
  transform: rotate(180deg);
}
.terms_select_box.active .select_box {
  opacity: 1;
  visibility: visible;
}

.file-modal{z-index: 1000 !important;}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
90일 비밀번호 변경 모달
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.change-modal{width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: 1001; opacity: 0; visibility: hidden; transition: 0.3s ease;}
.change-modal.active{opacity: 1; visibility: visible;}
.change-modal .back {width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: 9; background: rgba(0,0,0,0.5);}
.change-modal form{width: 640px; position: relative; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 11; padding: 60px 30px 40px; background-color: #fff; border-radius: 20px; text-align: center;}
.change-modal form h1{font-size: 26px; font-weight: 600; line-height: 1em; color: #1b1b1b;}
.change-modal form .change-close {width: 27px; height: 27px; position: absolute; top: 30px; right: 30px; opacity: 1; cursor: pointer;}
.change-modal form .change-close span{width: 100%; height: 100%; display: flex; align-items: center; position: absolute;}
.change-modal form .change-close span::before,.change-modal form .change-close span::after{content: ''; width: 100%; height: 1px; position: absolute; background-color: #ccc;}
.change-modal form .change-close span::before{transform: rotate(45deg);}
.change-modal form .change-close span::after{transform: rotate(-45deg);}
.change-modal form .bot {margin: 40px 0 0;}
.change-modal form .bot .password_icon{width: 72px; height: 72px; background-color: #f6f6f6; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto;}
.change-modal form .bot .text_row01{color: #333; font-size: 18px; line-height: 26px; margin: 15px auto 25px;}
.change-modal form .bot .text_row02{color: #666666; font-size: 15px; line-height: 23px;}
.change-modal form .bot .btn_wrap{margin-top: 35px;}
.change-modal form .bot .btn_wrap .btn{font-size: 17px; line-height: 48px; width: 180px; text-align: center; border-radius: 5px !important; padding: 0 12px;}
.change-modal form .bot .btn_wrap .btn.btn_reg_custom{color: #333; background-color: #f6f6f6;}
.change-modal form .bot .btn_wrap .btn.now_btn{color: #fff; background-color: var(--main-point-color-hover); margin-left: 10px;}
@media (max-width:991px){
  .change-modal form{position: absolute; top: auto; left: 0; bottom: 0; transform: none; width: 100%; border-radius: 10px 10px 0 0; padding: 52px 13px 13px;}
  .change-modal form .option_btn{position: absolute; top: 10px; left: 50%; transform: translateX(-50%); background-color: #e6e6e6; border-radius: 2px; width: 40px; height: 4px;}
  .change-modal form h1{font-size: 17px;}
  .change-modal form .change-close {width: 17px;height: 17px;top: 15px;right: 15px;}
  .change-modal form .bot{margin: 18px 0 0;}
  .change-modal form .bot .password_icon{width: 48px; height: 48px;}
  .change-modal form .bot .password_icon img{height: 22px;}
  .change-modal form .bot .text_row01{font-size: 14px; line-height: 19px; margin: 10px auto 15px;}
  .change-modal form .bot .text_row02{font-size: 13px; line-height: 16px;}
  .change-modal form .bot .btn_wrap{margin-top: 30px;}
  .change-modal form .bot .btn_wrap .btn{width: calc(50% - 10px); font-size: 14px; line-height: 43px; border-radius: 2.5px !important;}
}
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
비밀번호 실패 알럿창
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/* 2024-08-07 (주)파이브센스_FIVESENSES.Corp. */
.alert_custom_wrap.pas_alert .custom_box{width: 355px;}
/* .alert_custom_wrap.pas_alert_v1 .custom_box .custom_cont{padding: 38px 15px 30px;}
.alert_custom_wrap.pas_alert_v2 .custom_box .custom_cont{padding: 20px 30px 30px;} */
/* .alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_cont{color: #666; font-size: 16px; padding: 0;} */
.alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_cont{padding: 0;}
.alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_cont p{color: #1b1b1b; font-size: 18px; font-weight: 600; margin-bottom: 20px;}
.alert_custom_wrap.pas_alert_v2 .custom_box .custom_cont .alert_cont p{margin-top: 12px;}
.alert_custom_wrap.pas_alert_v2 .custom_box .alert_custom_btn{padding: 0 30px 30px; border-top: none;}
/* .alert_custom_wrap.pas_alert_v1 .custom_box .alert_custom_btn .alert_btn{font-size: 16px; padding: 20px 0;} */
.alert_custom_wrap.pas_alert_v2 .custom_box .alert_custom_btn .alert_btn{color: #fff; background-color: var(--main-point-color-hover); border-radius: 5px !important; font-size: 17px; padding: 16.5px 0; width: 100%; cursor: pointer;}
/* .alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_close span:nth-child(1),
.alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_close span:nth-child(2){width: 1px;} */
@media (max-width:991px){
  /* .alert_custom_wrap.pas_alert_v1 .custom_box{width: calc(100% - 30px); border-radius: 10px;} */
  .alert_custom_wrap.pas_alert_v1 .custom_box{width: 69%; border-radius: 10px;}
  .alert_custom_wrap.pas_alert_v2 .custom_box{top: auto; left: 0; bottom: 0; transform: none; width: 100%; border-radius: 10px 10px 0 0;}
  .alert_custom_wrap.pas_alert_v2 .custom_box .custom_cont{padding: 13px 15px 18px;}
  .alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_close{width: 17px; height: 17px; top: 0; right: 0;}
  .alert_custom_wrap.pas_alert .option_btn{position: absolute;top: 10px;left: 50%;transform: translateX(-50%);background-color: #e6e6e6;border-radius: 2px;width: 40px;height: 4px;}
  .alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_cont{font-size: 14px; line-height: 19px;}
  .alert_custom_wrap.pas_alert .custom_box .custom_cont .alert_cont p{font-size: 16px; margin-bottom: 17px;}
  .alert_custom_wrap.pas_alert_v2 .custom_box .custom_cont .alert_cont p{margin-top: 23px;}
  .alert_custom_wrap.pas_alert_v2 .custom_box .alert_custom_btn{padding: 0 15px 15px;}
  .alert_custom_wrap.pas_alert_v1 .custom_box .alert_custom_btn .alert_btn{font-size: 14px; padding: 15px 0;}
  .alert_custom_wrap.pas_alert_v2 .custom_box .alert_custom_btn .alert_btn{font-size: 14px; padding: 15.5px 0; border-radius: 2.5px !important; font-weight: 600;}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
시안확인 모달창
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.it_draft_modal{position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1001; transition: 0.3s;}
.it_draft_modal.it_draftvi_modal{opacity: 0; visibility: hidden;}
.it_draft_modal.it_draftvi_modal.active{opacity: 1; visibility: visible;}
.it_draft_modal .it_draft_modal_bg{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6);}
.it_draft_modal .it_draft_view{position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 20px; width: 100%; max-width: 1200px; height: 80vh; z-index: 1; overflow: hidden;}
.it_draft_modal .it_draft_view .dr_modal_tt{background-color: var(--main-point-line-color-hover); display: flex; align-items: center; justify-content: space-between; padding: 28px 30px;}
.it_draft_modal .it_draft_view .dr_modal_tt h2{color: #fff; font-size: 24px; font-weight: 600; line-height: 1em;}
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span{display: block; width: 20px; height: 20px; cursor: pointer; position: relative;}
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::before,
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::after{content: ''; display: block; width: 2px; height: 26px; background-color: #fff; position: absolute; top: 50%; left: 50%;}
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::before{transform: translate(-50%,-50%) rotate(45deg);}
.it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::after{transform: translate(-50%,-50%) rotate(-45deg);}
.it_draft_modal .it_draft_view .dr_cont{background-color: #fff; padding: 0 12px 0 60px; height: calc(80vh - 80px);}
.it_draft_modal .it_draft_view .dr_wrap{overflow-y: auto; height: 100%; padding-right: 42px;}
.it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-button{background-color: #fff;}
.it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-track{background-color: #fff;}
.it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-thumb{background-color: #e6e6e6;}
.it_draft_modal .it_draft_view .dr_it_row.row1{display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 50px;}
.it_draft_modal.re_correction_modal .it_draft_view .dr_it_row.row1{padding-top: 0;}
.it_draft_modal .it_draft_view .dr_it_row.row1 .dr_info{flex: 1;}
.it_draft_modal .it_draft_view .dr_it_row .dr_tit{color: #333333; font-size: 16px; font-weight: 600; line-height: 1em; margin-bottom: 10px;}
.it_draft_modal .it_draft_view .dr_it_row .it_text{color: #666666; font-size: 14px; background-color: #f8f8f8; border-radius: 5px; padding: 16px 20px;}
.it_draft_modal .it_draft_view .dr_it_row.row2{margin-top: 30px;}
.it_draft_modal .it_draft_view .draft_skin{padding-bottom: 50px;}
.it_draft_modal .it_draft_view .draft_skin .draft_head{display: flex; align-items: center; background-color: #f8f8f8; border-radius: 5px; color: #999999; font-size: 14px; font-weight: 600;}
.it_draft_modal .it_draft_view .draft_skin .draft_head .dr_cell{padding: 16px 0; line-height: 1em;}
.it_draft_modal .it_draft_view .draft_skin .draft_body > li{display: flex; align-items: stretch; border-bottom: 1px solid #e7e7e7; position: relative;}
.it_draft_modal .it_draft_view .draft_skin .draft_body > li.on{border: 1px solid var(--main-point-line-color-hover); border-radius: 5px;}
.it_draft_modal .it_draft_view .draft_skin .dr_cell{text-align: center;}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell{display: flex; align-items: center; justify-content: center; font-size: 13px;}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell + .dr_cell{border-left: 1px solid #e7e7e7;}
.it_draft_modal .it_draft_view .draft_skin .dr_num{width: 5.6%;}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num{color: #999999; font-weight: 600;}
.it_draft_modal .it_draft_view .draft_skin .dr_con{width: 46.469%;}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con{text-align: left; padding: 17px; color: #333333; line-height: 22px; font-weight: 300;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft{width: 31.599%; }
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_draft{padding: 30px 19px 20px;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .img_box{border-radius: 5px; overflow: hidden;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft img{width: 300px;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box{margin-top: 10px; display: flex; align-items: center; justify-content: center;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn{border-radius: 5px !important; font-size: 13px; line-height: 38px; transition: 0.2s; padding: 0 12px;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn{border: 1px solid #d6d6d6; background-color: #fff; flex: 1; outline: none;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn:hover{background-color: #f7f9fa;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn + .btn{margin-left: 6px;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn.down_btn{background-color: var(--main-point-btn-bg-color-hover); color: #fff; width: 100%; margin-top: 5px;}
.it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn.none_btn{cursor: default; width: 100%; background-color: #e1e1e1; border: 1px solid #e1e1e1; color: #757575;}
.it_draft_modal .it_draft_view .draft_skin .dr_name{width: 7.625%;}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_name{padding: 10px; color: var(--main-point-color); font-weight: 300;}
.it_draft_modal .it_draft_view .draft_skin .dr_date{width: 7.81%;}
.it_draft_modal .it_draft_view .draft_skin .draft_body .dr_date{padding: 10px; color: var(--main-point-color); font-weight: 300;}
.it_draft_modal .it_draft_view .draft_skin .draft_body .confirmed_on{display: none;}
.it_draft_modal .it_draft_view .draft_skin .draft_body .on .confirmed_on{display: block; position: absolute; top: -1px; left: -1px; background-color: var(--main-point-color-hover); color: #fff; font-size: 14px; font-weight: 500; padding: 9px 11px; line-height: 1em; border-radius: 5px 0 5px 0;}
/* .it_draft_modal .it_draft_view .draft_skin .draft_body .on::after{content: ''; display: block; border: 1px solid var(--main-point-btn-line-color-hover); position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 5px;pointer-events: none;} */
.it_draft_modal .it_draft_view .draft_skin .dr_info_none{color: #999999; font-size: 14px; text-align: center; padding: 60px 0; border-bottom: 1px solid #e7e7e7;}
.it_draft_modal .it_draft_view .draft_skin .dr_info_none img{display: inline-block; margin-bottom: 15px;}

.it_draft_modal.re_correction_modal{opacity: 0; visibility: hidden; transition: 0.3s;}
.it_draft_modal.re_correction_modal.active{opacity: 1; visibility: visible;}
.it_draft_modal.re_correction_modal .btn{outline: none;}
.it_draft_modal.re_correction_modal .it_draft_view .dr_cont{padding: 50px 60px 60px; overflow:scroll;}
.it_draft_modal.re_correction_modal .it_draft_view .dr_wrap{overflow-y: visible; padding-right: 0;}
.it_draft_modal.re_correction_modal .dr_it_btn{margin-top: 30px; padding-bottom:30px; display: flex; align-items: center; justify-content: center; gap: 10px;}
.it_draft_modal.re_correction_modal .dr_it_btn li{display: block;}
.it_draft_modal.re_correction_modal .dr_it_btn .btn{width: 230px; line-height: 53px; border: 1px solid var(--main-point-btn-line-color-hover); background-color: var(--main-point-btn-bg-color-hover); border-radius: 5px !important; color: #fff; font-size: 17px; font-weight: 600;}
.it_draft_modal.re_correction_modal .dr_it_btn .btn.btn_close_modal{background-color: #fff; color: var(--main-point-color-hover);}
/* 에디터 삽입 전 임시 css */
.it_draft_modal.re_correction_modal .editor_box {height: 315px; width: 100%;}

.it_draft_modal.it_upload_modal {opacity: 0;visibility: hidden;transition: 0.3s;}
.it_draft_modal.it_upload_modal.active {opacity: 1;visibility: visible;}
.it_draft_modal.it_upload_modal .it_draft_view{height: auto;}
.it_draft_modal.it_upload_modal .it_draft_view .dr_cont{height: auto;}
.it_draft_modal.it_upload_modal .dr_it_btn{margin-top: 30px; padding-bottom:30px; display: flex; align-items: center; justify-content: center; gap: 10px;}
.it_draft_modal.it_upload_modal .dr_it_btn li{display: block;}
.it_draft_modal.it_upload_modal .dr_it_btn .btn{width: 230px; line-height: 53px; border: 1px solid var(--main-point-btn-line-color-hover); background-color: var(--main-point-btn-bg-color-hover); border-radius: 5px !important; color: #fff; font-size: 17px; font-weight: 600; outline: none;}
.it_draft_modal.it_upload_modal .dr_it_btn .btn.btn_close_modal{background-color: #fff; color: var(--main-point-color-hover);}
.it_draft_modal.it_upload_modal label.left_file {border-radius: 5px 0 0 5px;margin: 0;border: 1px solid #e1e1e1;color: #757575;font-size: 13px;background-color: #f2f2f2;text-align: center;height: 39px;line-height: 39px;cursor: pointer;width: 73px;float: left;}
.it_draft_modal.it_upload_modal input[type=file] {display: none;}
.it_draft_modal.it_upload_modal .right_file {width: calc(100% - 73px);float: left;}
.it_upload_modal div.right_file input {outline: none;padding: 0 15px;margin-bottom: 25px;border-radius: 0 5px 5px 0;display: block;border: 1px solid #e1e1e1;border-left: none;width: 100%;font-size: 13px;height: 39px;line-height: 39px;}
.it_draft_modal.it_upload_modal .dr_alert {text-align: center; font-size: 12px; color: #aaaaaa; line-height: 1.4em;}
@media (max-width:991px){
  .it_draft_modal .it_draft_view{height: 100vh; border-radius: 0;}
  .it_draft_modal .it_draft_view .form{height: 100%;}
  .draftview_btn.off, .draftview_btn.off:hover{color: #999;}  
  .it_draft_modal .it_draft_view .dr_modal_tt{padding: 17.5px 18px;}
  .it_draft_modal .it_draft_view .dr_modal_tt h2{font-size: 17px;}
  .it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span{width: 15px; height: 15px;}
  .it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::before, .it_draft_modal .it_draft_view .dr_modal_tt .btn_close_modal span::after{background-color: #ccc; height: 20px; width: 1px;}
  .it_draft_modal .it_draft_view .dr_cont{background-color: #f3f5f7; padding: 0 15px; height: 100%;}
  .it_draft_modal .it_draft_view .dr_wrap{padding-right: 0;}
  .it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar{width: 0;}
  .it_draft_modal .it_draft_view .dr_it_row.row1{display: block; padding-top: 35px;}
  .it_draft_modal .it_draft_view .dr_it_row.row1 .dr_info + .dr_info{margin-top: 18px;}
  .it_draft_modal .it_draft_view .dr_it_row .dr_tit{font-size: 16px;}
  .it_draft_modal .it_draft_view .dr_it_row .it_text{background-color: #fff; font-size: 15px; padding: 12.75px 15px; border-radius: 2.5px;}
  .it_draft_modal.it_draftvi_modal .it_draft_view .dr_it_row.row2 .dr_tit{margin-bottom: 0;}
  .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box{display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px;}
  .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box .mo_text{position: relative;}
  .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box .mo_text p{display: inline-block; font-size: 14px; color: #000000; font-weight: 500; margin-right: 22px;}
  .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box.open .mo_text p{display: none;}
  .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box .arr{display: inline-block; border-bottom: 1px solid #999999; border-right: 1px solid #999999; width: 8px; height: 8px; transform: rotate(45deg); position: absolute; top: 3px; right: 2px; transition: 0.2s;}
  .it_draft_modal .it_draft_view .dr_it_row.row2 .mob_box.open .arr{transform: rotate(225deg); top: 0px;}
  .it_draft_modal .it_draft_view .draft_skin{padding-bottom: 100px;}
  .it_draft_modal .it_draft_view .draft_skin.off{display: none;}
  .it_draft_modal .it_draft_view .draft_skin .draft_head{background-color: #fff;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body{padding-bottom: 30px;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body > li{display: block; background-color: #fff; border: none; border-radius: 2.5px; padding: 0 15px 15px;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body > li + li{margin-top: 20px;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell{width: 100%; display: block;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell + .dr_cell{border: none;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_cell .dr_mtt{color: #222222; font-size: 13px; font-weight: 500; text-align: left; padding: 12px 0;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num{display: flex; justify-content: space-between; border-bottom: 1px solid #f2f2f2;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num ul{display: flex; align-items: center;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num li{color: #222; font-size: 13px; font-weight: 300; position: relative;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num li + li {padding-left: 6px; margin-left: 6px;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_num li + li::before {content: ''; display: inline-block; position: absolute; top: 50%; margin-top: -6px; left: 0; width: 1px; height: 12px; background-color: #e6e6e6;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con{padding: 0;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con .text_wrap{background-color: #f7f7f7; border-radius: 2.5px; padding: 15px 5px 15px 15px; height: 160px;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con .text{overflow-y: auto; height: 100%;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con .text::-webkit-scrollbar{width: 4px;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_con .text::-webkit-scrollbar-thumb{background-color: #e1e1e1;}
  .it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-button{background-color: #f7f7f7;}
  .it_draft_modal .it_draft_view .dr_wrap::-webkit-scrollbar-track{background-color: #f7f7f7;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .dr_draft{padding: 15px 0 0;}
  .it_draft_modal .it_draft_view .draft_skin .dr_draft .img_box{border-radius: 2.5px; line-height: 33px;}
  .it_draft_modal .it_draft_view .draft_skin .dr_draft img{width: 100%;}
  .it_draft_modal .it_draft_view .draft_skin .dr_draft .btn{border-radius: 2.5px !important;}
  .it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn {width: calc(50% - 3px);}
  .it_draft_modal .it_draft_view .draft_skin .dr_draft .btn_box .btn + .btn{margin-left: 3px;}
  .it_draft_modal .it_draft_view .draft_skin .draft_body .on .confirmed_on{padding: 7px 8px; left: 0px;}
  .it_draft_modal .it_draft_view .draft_skin .dr_info_none{border-radius: 2.5px; background-color: #fff; border: none; padding: 40px 0;}
  .it_draft_modal .it_draft_view .draft_skin .dr_info_none img{width: 38px; margin-bottom: 10px;}

  .it_draft_modal.re_correction_modal .it_draft_view .dr_wrap{overflow-y: auto; height: 93vh; padding-bottom: 30px; padding-top: 35px;}
  .it_draft_modal .it_draft_view .dr_it_row.row2{margin-top: 18px;}
  .it_draft_modal.re_correction_modal .it_draft_view .dr_cont{padding: 0 15px;}
  /* .it_draft_modal.re_correction_modal .editor_box p{height: 400px;} */
  .it_draft_modal.re_correction_modal .dr_it_btn{margin-top: 15px;}
  .it_draft_modal.re_correction_modal .dr_it_btn li{flex: 1;}
  .it_draft_modal.re_correction_modal .dr_it_btn .btn{width: 100%; font-size: 15px; line-height: 31px; border-radius: 2.5px;}
  .it_draft_modal.re_correction_modal .dr_it_btn .btn.btn_close_modal{margin: 0;}

  .it_draft_modal.it_upload_modal .it_draft_view{height: 100vh;}
  .it_draft_modal.it_upload_modal .it_draft_view .dr_cont{height: calc(100vh - 52px);}
  .it_draft_modal.it_upload_modal .dr_it_btn{margin-top: 15px;}
  .it_draft_modal.it_upload_modal .dr_it_btn li{flex: 1;}
  .it_draft_modal.it_upload_modal .dr_it_btn .btn{width: 100%; font-size: 15px; line-height: 31px; border-radius: 2.5px;}
  .it_draft_modal.it_upload_modal .dr_it_btn .btn.btn_close_modal{margin: 0;}
  .it_upload_modal div.right_file input{background-color: #fff;}
}
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
마이페이지 > 온라인견적서
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.online_contact_wrap{width: 100%; display: flex; gap: 50px;}
.online_contact_wrap .online_contact_content{width: calc(100% - 200px);}
.online_contact_wrap .oc_wrap{margin-bottom: 50px;}
.online_contact_wrap .oc_wrap tr{border-bottom: 1px solid #e1e1e1;}
.online_contact_wrap .oc_wrap th{color: #999999; font-size: 16px; font-weight: 500; line-height: 1em; padding: 21.25px 0; text-align: center;}
.online_contact_wrap .oc_wrap .name_txt{width: 50%;}
.online_contact_wrap .oc_wrap .date_txt{width: 15%;}
.online_contact_wrap .oc_wrap .ca_txt{width: 15%;}
.online_contact_wrap .oc_wrap .status_txt{position: relative; text-align: center; width: 20%;}
.online_contact_wrap .oc_wrap th .icon_box{display: inline-block;}
.online_contact_wrap .oc_wrap th .icon_box img{position: relative; transform: translateY(3px); display: block;}
.online_contact_wrap .oc_wrap td{color: #666666; font-size: 16px; line-height: 1em; padding: 21.25px 0; text-align: center;}
.online_contact_wrap .oc_wrap td.name_txt{color: var(--main-point-color); text-align: left;}
.online_contact_wrap .oc_wrap td.name_txt a{color:var(--main-point-color); padding-left: 30px; overflow: hidden; text-overflow: ellipsis; white-space: normal; word-wrap: break-word; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;}
.online_contact_wrap .oc_wrap .status_txt span{font-size: 12px; font-weight: 500; line-height: 1em; padding: 5px 7px; border-radius: 3px;}
.online_contact_wrap .oc_wrap .status_txt span.green_sc{color: #1bc75c; background-color: #e4f9ec;}
.online_contact_wrap .oc_wrap .status_txt span.blue_sc{color: #18a5ff; background-color: #e6f5ff;}
.online_contact_wrap .oc_wrap .status_txt span.purple_sc{color: #7145e4; background-color: #f2eefd;}
.online_contact_wrap .oc_wrap .status_txt span.red_sc{color: #ff657f; background-color: #ffeeec;}
.online_contact_wrap .oc_wrap .status_txt span.gray_sc{color: #9d9d9d; background-color: #f4f4f4;}
.online_contact_wrap .oc_wrap .status_caption{background-color: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.2); border-radius: 5px; padding: 10px; position: absolute; top: 90%; left: 50%; transform: translateX(-50%); z-index: 5; opacity: 0; visibility: hidden; text-align: left; transition: all .5s;}
.online_contact_wrap .oc_wrap .status_txt:hover .status_caption{opacity: 1; visibility: visible;}
.online_contact_wrap .oc_wrap .status_caption p{color: #666666; font-size: 14px; line-height: 22px; white-space : nowrap; font-weight: 400;}
.online_contact_wrap .oc_wrap .status_caption p a{color: #245bf6; text-decoration: underline; text-underline-offset : 3px; font-size: 14px;}
@media(max-width:991px){
  .online_contact_wrap{gap: 0;}
  .online_contact_wrap .oc_wrap{margin-bottom: 30px;}
  .online_contact_wrap .online_contact_content{width: 100%;}
  .orderform_title.online_contact_tt{text-align: center; padding-bottom: 30px; font-size: 21px;}
  .online_contact_wrap .oc_wrap tr.th_row{border-bottom: none; }
  .online_contact_wrap .oc_wrap th{background-color: #f6f6f6;}
  .online_contact_wrap .oc_wrap th.name_txt{border-radius: 6px 0 0 6px;}
  .online_contact_wrap .oc_wrap th.status_txt{border-radius: 0 6px 6px 0;}
  .online_contact_wrap .oc_wrap th .icon_box img{width: 12px; transform: none;}
  .online_contact_wrap .oc_wrap td .date_txt{padding-left: 10px; color: #666666; margin-bottom: 10px; display: block; width: 100%;}
  .online_contact_wrap .oc_wrap td.name_txt a{padding-left: 10px;}
  .online_contact_wrap .oc_wrap .no_list td{font-size: 13px; padding: 30px 0;}
  .online_contact_wrap .oc_wrap .status_caption{left: auto; right: 0; transform: none;}
}
@media(max-width:480px){
  .online_contact_wrap .oc_wrap th{font-size: 12px; padding: 10px 0;}
  .online_contact_wrap .oc_wrap .date_txt{font-size: 11px}
  .online_contact_wrap .oc_wrap td .date_txt{margin-bottom: 5px;}
  .online_contact_wrap .oc_wrap td.name_txt a{font-size: 13px;}
  .online_contact_wrap .oc_wrap .ca_txt{font-size: 12px;}
  .online_contact_wrap .oc_wrap .status_txt span{font-size: 10px; padding: 4px 5px; white-space: nowrap; position: relative; top: -3px;}
  .online_contact_wrap .oc_wrap td{padding: 13.25px 0;}
  .online_contact_wrap .oc_wrap th .icon_box img{transform: translateY(2px);}
  .online_contact_wrap .oc_wrap .status_caption{top: 80%; padding: 13px; border-radius: 2.5px;}
  .online_contact_wrap .oc_wrap .status_caption p{font-size: 12px; line-height: 17px;}
}

/* 교환사유 */
.refund_view_style>div{display: flex;}
.refund_view_style>div .left_tit{width: 150px; padding-left: 15px;}
.refund_view_style>div .right_tit{width: calc(100% - 150px);}
.refund_view_style>div .right_tit select{width:30%;height: 38px; border-radius: 5px; padding: 0 10px;}
.btn_cke_sc{font-size: 13px; line-height: 1.4em;font-weight: 400;}

@media (max-width: 991px){
	.refund_view_style>div{display: block;}
	.refund_view_style>div .left_tit{width:100%;}
	.refund_view_style>div .right_tit{width:100%;}
	.refund_view_style>div .right_tit select{width:100%;}
}
/* 교환반품 */
.refund_view_style .section_table{width: 1200px;}
.refund_view_style .item_table_box .section-table-head{display: flex;}
.refund_view_style .item_table_box .section-table-head .section-cell{width: 10.578%;font-size: 16px;color: var(--main-point-color);font-weight: 400;border-bottom: 1px solid #eee;padding: 22px 15px;display: flex; align-items: center; justify-content: center;}
.refund_view_style .item_table_box .section-table-head .section-cell.re_info{width: 27%;}
.refund_view_style .item_table_box .section-table-body .refund_li{display: flex;}
.refund_view_style .item_table_box .section-table-body .section-cell{width: 10.578%;display: flex; align-items: center; justify-content: center; font-size: 14px;vertical-align: middle;color: #666;font-weight: 400;border-bottom: 1px solid #eee;padding: 22px 15px;}
.refund_view_style .item_table_box .section-table-body .section-cell.re_info{display: flex; align-items: center; justify-content: flex-start; width: 27%;}
.refund_view_style .item_table_box .section-table-body .section-cell.re_info img{min-width: 100px;}
.refund_view_style .item_table_box .section-table-body .section-cell.re_info .shop_info{text-align: left; margin-left: 15px;}
.refund_view_style .item_table_box .section-table-body .section-cell.re_info .shop_info .name{font-size: 16px; line-height: 1.4em;}
.refund_view_style .item_table_box .section-table-body .section-cell.re_info .shop_info .option{line-height: 1.4em;}
.refund_view_style .item_table_box .section-table-body .section-cell.re_info .shop_info .qty{line-height: 1.4em;}
.refund_view_style .item_table_box .section-table-body .section-cell a{color: var(--main-point-color);}
.refund_view_style .item_table_box .section-table-body ul, .refund_view_style .item_table_box .section-table-body li{list-style: none;}
.refund_info_wrap.refund_step01 {padding-top: 50px;}
.refund_info_wrap.refund_step01 .orderform_title{display: flex; align-items: center; justify-content: space-between;}
.refund_info_wrap.refund_step01 .re_button{color: #666;background-color: #f5f5f5;border: 1px solid #f5f5f5;border-radius: 3px;font-size: 14px;font-weight: 600;transition: 0.2s;outline: none;padding: 5px 10px;margin-right: 5px;}
.refund_info_wrap.refund_step01 .re_button:hover{background-color: #f0f0f0;}
.refund_info_wrap .refund_info{padding-top: 15px;}
.refund_info_wrap .refund_info > div{display: flex; align-items: flex-start;}
.refund_view_style .bottom_btn{text-align: center;padding: 20px 0;}
.refund_view_style .bottom_btn button{width: 301px;height: 50px;line-height: 48px;margin: 0 auto;padding: 0;font-size: 14px;font-weight: 500;color: #222;border: 1px solid #f6f6f6;border-radius: 5px;background: #f6f6f6; transition: 0.2s;}
.refund_view_style .bottom_btn button:hover{background-color: #f0f0f0;}
.refund_info_wrap.refund_step02{padding-bottom: 50px;}
.refund_info_wrap.refund_step02 .refund_info {margin-top: 5px;}
.refund_info_wrap.refund_step02 .left_tit{line-height: 46px;}
.refund_info_wrap.refund_step02 .rf_content .left_tit{padding-top: 20px;}
.refund_info_wrap.refund_step02 .rigiht_tit{width: calc(100% - 115px); position: relative;}
.refund_info_wrap.refund_step02 .rigiht_tit.select_wrap{width: 100%;max-width: 460px;}
.refund_info_wrap.refund_step02 .rigiht_tit select{padding: 0 15px;height: 46px;line-height: 44px;border: 1px solid #d6d6d6;border-radius: 5px;font-size: 16px;color: #999999;width: 100%;max-width: 460px;appearance: none;}
.refund_info_wrap.refund_step02 .rigiht_tit .arrow{width: 6px;height: 5px;display: block;position: absolute;top: 23px;right: 15px;}
.refund_info_wrap.refund_step02 .rigiht_tit .arrow::before,.refund_info_wrap.refund_step02 .rigiht_tit .arrow::after{content: "";width: 100%;height: 1px;position: absolute;background: #242424;}
.refund_info_wrap.refund_step02 .rigiht_tit .arrow::before{right: 4px;transform: rotate(45deg);}
.refund_info_wrap.refund_step02 .rigiht_tit .arrow::after{transform: rotate(-45deg);}

@media (max-width: 1200px) {
	  .refund_view_style .table_wrap{overflow-x: auto;}
	  .refund_view_style .section_table{padding-bottom: 20px;}
    .refund_info_wrap.refund_step01 {padding-top: 20px;}
}
@media (max-width: 991px){
    .refund_view_style .orderform_title{border-bottom: 1px solid #444;}
    .refund_view_style .bottom_btn button {width: 100%;height: 40px;line-height: 38px;-webkit-box-ordinal-group: 3;-ms-flex-order: 2;order: 2;font-size: 14px;}
	  .refund_view_style .item_table_box .section-table-head .section-cell{font-size: 12px; white-space: nowrap; padding: 12px 15px;}
	  .refund_view_style .item_table_box .section-table-head .section-cell.re_info{width: 24%;}
    .refund_view_style .item_table_box .section-table-body .section-cell{font-size: 12px; white-space: nowrap;}
    .refund_view_style .item_table_box .section-table-body .section-cell.re_info .shop_info{width: calc(100% - 100px);}
    .refund_view_style .item_table_box .section-table-body .section-cell.re_info div,
    .refund_view_style .item_table_box .section-table-body .section-cell.re_info a{overflow: hidden;text-overflow: ellipsis;white-space: normal;word-wrap: break-word;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}
    .refund_view_style .item_table_box .section-table-body .section-cell.re_info{width: 24%;}
    .refund_view_style .item_table_box .section-table-body .section-cell.re_info .shop_info .name{font-size: 13px;}
    .refund_info_wrap .refund_info > div{display: block;}
    .refund_info_wrap .refund_info > div + div{margin-top: 10px;}
    .refund_info_wrap .left_tit{width: 100%;}
    .refund_info_wrap .rigiht_tit{width: 100%;}
    .refund_info_wrap.refund_step02 .rf_content .left_tit{padding-top: 0px;}
    .refund_info_wrap.refund_step02 .rigiht_tit{width: 100%;}
}

/* 관리자 추가인증 */
/* 2024-08-22 (주)파이브센스_FIVESENSES.Corp. */
body.admin-login *{font-family: 'Noto Sans KR', sans-serif;}
body.admin-login .hidden{display: none !important;}
body.admin-login ul{padding: 0; margin: 0;}
body.admin-login .lost-modal *{box-sizing: border-box;}
body.admin-login .lost-modal ul, body.admin-login .lost-modal li{list-style: none; display: flex; align-items: center; justify-content: center; padding: 5px 0; min-height: 48px;}
body.admin-login .lost-modal form .bot .sub_tab > ul li{line-height: 1.2em;}
body.admin-login #captcha{display: flex !important; justify-content: center; gap: 7px;}
body.admin-login #captcha .captcha_imgbox{width: 160px;height: 60px;line-height: 60px;overflow: hidden;border: 1px solid #d6d6d6;background-color: #fff;border-radius: 5px;text-align: center;}
body.admin-login #captcha .captcha_imgbox #captcha_img{width: auto; height: 100%; border: none;display: inline-block;}
body.admin-login #captcha .capcha_aid{width: 31px; display: flex; flex-flow: column; margin: 0;}
body.admin-login #captcha #captcha_mp3{left: 165px;}
body.admin-login #captcha #captcha_reload{left: 165px;}
body.admin-login #captcha #captcha_key {height: 60px;line-height: 60px;margin: 0;padding: 0 25px;border: 1px solid #d6d6d6;border-radius: 5px;}
body.admin-login #captcha_info{display: block;margin-top: 10px;font-size: 14px;font-weight: 400;color: #aaa;text-align: center;}
.alert_custom_wrap.pas_alert.pas_alert_admin .custom_box { width: 640px; }
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont {width: 640px; box-sizing: border-box;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .tit{color: #1b1b1b; font-size: 26px; line-height: 1em; font-weight: bold;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .cont_box{padding: 40px 30px; background-color: #f6f6f6; border-radius: 5px; margin-top: 40px;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .alert_cont p{color: #666666; font-size: 16px; line-height: 26px; margin-bottom: 0; font-weight: 400;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step1{padding-top: 20px;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont input[type=radio]{display: none;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .radio_ch{display: block; width: 17px; height: 17px; border-radius: 50%; background-color: #fff; border: 1px solid #d6d6d6; position: relative; margin-right: 6px;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont input:checked + .radio_ch::after{content: ''; display: block; width: 9px; height: 9px; border-radius: 50%; background-color: var(--main-point-btn-bg-color-hover); border: 1px solid var(--main-point-btn-bg-color-hover); position: absolute; top: 3px; left: 3px;}
.alert_custom_wrap.pas_alert_admin .custom_box .method label{color: #666666; font-size: 16px; line-height: 26px; margin-bottom: 0; font-weight: 400; display: flex; align-items: center; justify-content: center;}
.alert_custom_wrap.pas_alert_admin .custom_box #modal_captcha_info{display: block;margin-top: 15px;font-size: 14px;line-height: 1em; font-weight: 400;color: #aaa;text-align: center;}
.pas_alert_admin .alert_btn {width:100% !important;}
.pas_alert_admin .confirm_btn {width: 100%;height: 50px;line-height: 50px;font-size: 17px;font-weight: 500;border-radius: 5px;background: var(--main-point-btn-bg-color-hover);color: #fff;transition: 0.2s;border: none;outline: none; margin-top: 25px; transition: 0.2s;}
.pas_alert_admin .confirm_btn:hover {/*background-color: #703df1;*/ opacity: 0.8;}
.pas_alert_admin .confirm_btn.again_btn{background-color: #999999;}
.pas_alert_admin .confirm_btn.again_btn:hover{background-color: #999999;}
.pas_alert_admin .captcha_sheet {margin-top: 25px;}
.pas_alert_admin .captcha_sheet .captcha {display: flex;justify-content: center;gap: 7px;}
.pas_alert_admin .captcha_sheet .captcha .captcha_imgbox {width: 240px;height: 45px;line-height: 45px;overflow: hidden;border: 1px solid #d6d6d6;background-color: #fff;border-radius: 5px;padding: 0 25px;}
.pas_alert_admin .captcha_sheet .captcha .captcha_imgbox img{width: auto;height: 100%;}
.pas_alert_admin .captcha_sheet .captcha .capcha_aid {width: 22px;display: flex;flex-flow: column;margin: 0;}
.pas_alert_admin .captcha_sheet .captcha #modal_captcha_key {width: 240px;height: 45px;line-height: 45px;margin: 0;padding: 0 25px;border: 1px solid #d6d6d6;border-radius: 5px;box-sizing: border-box;}
.pas_alert_admin .captcha_sheet .captcha .capcha_aid #modal_captcha_mp3 {background: url(/img/modal_captcha_mp3.jpg) no-repeat #e3e3e3;background-size: 100%;}
.pas_alert_admin .captcha_sheet .captcha .capcha_aid #modal_captcha_reload {background: url(/img/modal_captcha_reload.jpg) no-repeat #e3e3e3;background-size: 100%;}
.pas_alert_admin .captcha_sheet .captcha .capcha_aid #modal_captcha_mp3, .pas_alert_admin .captcha_sheet .captcha .capcha_aid #modal_captcha_reload {flex: 1;position: relative;top: auto;right: auto;bottom: auto;left: auto;border: none;text-indent: -9999px;box-sizing: border-box;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2{margin-top: 30px; padding-top: 30px; border-top: 1px solid #e1e1e1;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input_box{display: flex; align-items: center;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .timer_wrap{position: relative; width: calc(100% - 124px);}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input_box > label{width: 124px; text-align: left;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input-sm{width: 100%;height: 46px;line-height: 44px;padding: 0 15px;font-size: 16px;font-weight: 400;border: 1px solid #e1e1e1;border-radius: 5px;box-shadow: none;transition: 0.2s; outline: none; box-sizing: border-box;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input-sm:focus{border: 1px solid var(--main-point-line-color-hover);}
.pas_alert_admin .msg-box{color: #ff0000; font-size: 13px; line-height: 1em;}
.pas_alert_admin .msg-box.txt{margin-left: 124px; text-align: left; margin-top: 12px;}
.alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .timer_box .timer{position: absolute;top: 50%;right: 15px;font-size: 16px;font-weight: 600;transform: translateY(-50%);}
@media (max-width: 991px) {
    body.admin-login .lost-modal ul, body.admin-login .lost-modal li{width: 100%;}
    body.admin-login .lost-modal form .bot .cer_num .input_box{text-align: left;}
    body.admin-login .lost-modal form .bot .input_box label{display: block; margin-bottom: 13px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont{padding: 15px 18px;}
    .alert_custom_wrap.pas_alert_admin .custom_box{bottom: 0; top: auto; left: 0; transform: none; border-radius: 10px 10px 0 0;}
    .alert_custom_wrap.pas_alert.pas_alert_admin .custom_box { width: 100%; }
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont {width: 100%;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .cont_box{border-radius: 5px; margin-top: 25px; padding: 25px 17px 15px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .tit{font-size: 16px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .alert_cont p{font-size: 13px; line-height: 19px;}
    .pas_alert_admin .captcha_sheet .captcha #modal_captcha_key{background: #fff !important; width: auto; flex: 1; padding: 0 20px;}
    .pas_alert_admin .captcha_sheet .captcha .captcha_imgbox{width: auto; flex: 1; padding: 0 20px;}
    .alert_custom_wrap.pas_alert_admin .custom_box #modal_captcha_info{margin-top: 10px; font-size: 10px;}
    .pas_alert_admin .confirm_btn{height: 45px; line-height: 45px; font-size: 14px; margin-top: 20px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2{margin-top: 20px; padding-top: 20px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input_box{display: block;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input_box > label{width: 100%; font-size: 14px; padding-bottom: 15px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .input-sm{font-size: 12px; height: 40px; line-height: 38px; border-radius: 2.5px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .timer_wrap{width: 100%;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step2 .timer_box .timer{font-size: 12px;}
    .pas_alert_admin .msg-box.txt{margin-left: 0; margin-top: 6px; font-size: 11px;}
}
@media (max-width: 480px) {
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont{padding: 15px 18px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .alert_close_wrap{margin-bottom: 25px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .method label{font-size: 13px; line-height: 19px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .step1{padding-top: 15px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont .radio_ch{width: 15px; height: 15px;}
    .alert_custom_wrap.pas_alert_admin .custom_box .custom_cont input:checked + .radio_ch::after{width: 9px; height: 9px; top: 2px; left: 2px;}
    .pas_alert_admin .captcha_sheet{margin-top: 20px;}
}

/* 2024-08-02 (주)파이브센스_FIVESENSES.Corp. */
.div-panel.panel-group .panel-heading > .is_checkbox{position: absolute; top: 50%; transform: translateY(-50%); z-index: 1;}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
검은바 알럿창
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
.bar_alert_wrap{position: fixed; z-index: 999999; top: 54px; left: 50%; transform: translateX(-50%); background-color: rgba(51,51,51,0.8); border-radius: 3px; color: #fff; font-size: 13px; line-height: 1em; padding: 10px 19px; cursor: default;}
@media (max-width:991px){
    .bar_alert_wrap {top: auto; bottom: 60px; width: calc(100% - 62px); text-align: center; font-size: 15px; background-color: rgba(17,17,17,0.8); padding: 15px 19px; border-radius: 2.5px;}
}

/* 2024-08-19 (주)파이브센스_FIVESENSES.Corp. 재입고알림 모달창 */
.soldout_sms_pop{position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; background-color: rgba(0, 0, 0, 0.5); display: none;}
.soldout_sms_pop .sol_m_con{position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background-color: #fff; border-radius: 20px; padding: 34px 30px 40px; max-width: 640px;}
.soldout_sms_pop .sol_m_con .modal_title{display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eeeeee; padding-bottom: 26px;}
.soldout_sms_pop .sol_m_con .modal_title .mo_tt{color: #222222; font-size: 26px; font-weight: 600; line-height: 1em;}
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close{width: 22px; height: 22px; position: relative; border: none; background-color: transparent;}
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close::before,
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close::after{content: ''; display: block; width: 105%; height: 1px; background-color: #cfcfcf; position: absolute; top: 50%; left: 50%;}
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close::before{transform: translate(-50%,-50%) rotate(45deg);}
.soldout_sms_pop .sol_m_con .modal_title .sol_m_close::after{transform: translate(-50%,-50%) rotate(-45deg);}
.soldout_sms_pop .sol_m_con .mo_subject{color: #222222; font-size: 15px; font-weight: 500; line-height: 1em;}
.soldout_sms_pop .sol_m_con .user .input-box{display: flex; align-items: center;}
.soldout_sms_pop .sol_m_con .user .input-box.it_name_box{padding: 25px 0 15px; margin-bottom: 15px; border-bottom: 1px solid #eeeeee;}
.soldout_sms_pop .sol_m_con .user .input-box .mo_subject{width: 102px;}
.soldout_sms_pop .sol_m_con .user .input-box .mo_cont{width: calc(100% - 102px);}
.soldout_sms_pop .sol_m_con .user .input-box p.mo_cont{color: #333333; font-size: 14px; line-height: 1.2em;}
.soldout_sms_pop .sol_m_con .user .input-box input.mo_cont{background-color: #f6f6f6; border-radius: 5px; font-size: 14px; padding: 0 15px; height: 45px; border: none;}
.soldout_sms_pop .sol_m_con .user .input-box input.mo_cont::placeholder{color: #999999;}
.soldout_sms_pop .sol_m_con .privacy_box{border: 1px solid #eeeeee;border-radius: 5px;padding: 20px 10px 25px 25px;margin-top: 14px;margin-bottom: 12px;height: 140px;overflow: hidden;}
.soldout_sms_pop .sol_m_con .privacy{height: 115px;overflow-y: scroll;overflow-x: hidden; outline: none;}
.soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar{width: 8px;}
.soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar-thumb{background-color: #d6d6d6;}
.soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar-track{background-color: #fff;}
.soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar-button{background-color: #fff;}
.soldout_sms_pop .sol_m_con .check-box{border: none; padding-top: 40px; padding-bottom: 38px;}
.soldout_sms_pop .sol_m_con .check-box .check-input + label:after{background: url(/img/mo_check_off.jpg) no-repeat 0 0; width: 17px; height: 17px;}
.soldout_sms_pop .sol_m_con .check-box .check-input:checked + label:after{background: url(/img/mo_check_on.jpg) no-repeat 0 0;}
.soldout_sms_pop .sol_m_con .check-box .check-label{color: #666; font-size: 13px; font-weight: 300;}
.soldout_sms_pop .sol_m_con .check-box .check-label p{line-height: 1em;}
.soldout_sms_pop .sol_m_con .btns{display: flex; align-items: center; justify-content: center; gap: 10px;}
.soldout_sms_pop .sol_m_con .btns a{color: #333333; background-color: #f6f6f6; font-size: 17px; border-radius: 5px; border: 1px solid #f6f6f6; display: block; padding: 13px 54.5px;}
.soldout_sms_pop .sol_m_con .btns a.btn-send{color: #fff; background-color: var(--main-point-btn-bg-color-hover); border: 1px solid var(--main-point-btn-line-color-hover);}
@media (max-width:991px){
    .soldout_sms_pop .sol_m_con{width: 100%; top: auto; bottom: 0; left: 0; transform: none; border-radius: 10px 10px 0 0; padding: 10px 15px 15px; max-width: 100%;}
    .soldout_sms_pop .sol_m_con .pay_bar{background-color: #e6e6e6;width: 40px;height: 4px;border-radius: 2px;margin: 0 auto;}
    .soldout_sms_pop .sol_m_con .modal_title{margin-top: 40px; position: relative; border-bottom: none;}
    .soldout_sms_pop .sol_m_con .modal_title .mo_tt{font-size: 17px;}
    .soldout_sms_pop .sol_m_con .modal_title .sol_m_close{position: absolute; top: -40px; right: 0;}
    .soldout_sms_pop .sol_m_con .mo_subject{color: #000; font-size: 14px; font-weight: 400;}
    .soldout_sms_pop .sol_m_con .user .input-box.it_name_box{padding: 0 0 20px; border-bottom: 1px solid #d7d7d7;}
    .soldout_sms_pop .sol_m_con .user .input-box.it_phone_box{display: block;}
    .soldout_sms_pop .sol_m_con .user .input-box p.mo_cont{width: calc(100% - 55px);}
    .soldout_sms_pop .sol_m_con .user .input-box .img_box{width: 40px; height: 40px; border-radius: 2.5px; margin-right: 15px; overflow: hidden;}
    .soldout_sms_pop .sol_m_con .user .input-box .img_box img{width: 100%;}
    .soldout_sms_pop .sol_m_con .user .input-box input.mo_cont{border: 1px solid #d6d6d6; background-color: #ffffff; width: 100%; height: 40px; border-radius: 2.5px; margin-top: 10px;}
    .soldout_sms_pop .sol_m_con .privacy_box{margin-top: 10px; border: 1px solid #d6d6d6; border-radius: 2.5px; padding: 15px 5px 15px 15px;}
    .soldout_sms_pop .sol_m_con .privacy::-webkit-scrollbar{width: 4px;}
    .soldout_sms_pop .sol_m_con .check-box{padding-top: 38px; padding-bottom: 30px;}
    .soldout_sms_pop .sol_m_con .check-box .check-input + label{padding-left: 20px;}
    .soldout_sms_pop .sol_m_con .check-box .check-input + label:after{background: url(/img/m_mo_check_off.jpg) no-repeat; background-size: 11px 11px; width: 11px; height: 11px;}
    .soldout_sms_pop .sol_m_con .check-box .check-input:checked + label:after{background: url(/img/m_mo_check_on.jpg) no-repeat; background-size: 11px 11px;}
    .soldout_sms_pop .sol_m_con .btns a{padding: 14.5px 15px; flex: 1; text-align: center; border: 1px solid #e1e1e1; background-color: #fff; border-radius: 2.5px; color: #999999; font-size: 14px; font-weight: 700;}
}

/* custom.css end */