@charset "UTF-8";
/* ★ sozomall.css 파일 수정 금지★ */
/***** 소조몰 공통 스타일 *****/
:root {
  /* color */
  --sozo-main: #86bc43;
  --sozo-sub: #f8fbf4;
  --sozo-sub02: #0da085;
  --sozo-gray: #f4f4f4;
  --sozo-gray02: #999;
  --sozo-gray03: #d9d9d9;
  --sozo-gray04: #f4f4f4;
  --sozo-color01: #f7fff0;
  --sozo-border: #d9d9d9;
  --sozo-border02: #ededed;
  --sozo-border03: #777;
  --sozo-txt01: #999;
  --sozo-txt02: #616161;
  --sozo-txt03: #666;
  --sozo-red: #cd3939;
  --font-thin: "Pretendard-Thin";
  --font-EL: "Pretendard-ExtraLight";
  --font-light: "Pretendard-Light";
  --font-regular: "Pretendard";
  --font-medium: "Pretendard-Medium";
  --font-SB: "Pretendard-SemiBold";
  --font-bold: "Pretendard-Bold";
  --font-EB: "Pretendard-ExtraBold";
  --font-black: "Pretendard-Black";
}

/***** 공통 *****/
html, body {
  color: #333;
}

.page_wrap {
  width: 1280px;
  margin: 0 auto;
}

.none_data {
  line-height: 150px;
  text-align: center;
  font-size: 14px;
}

.radio_type {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.radio_type input[type=radio] {
  position: absolute;
  left: -99999999999px;
}
.radio_type input[type=radio] + span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--sozo-border);
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 5px;
  background-color: #fff;
}
.radio_type input[type=radio]:checked + span {
  position: relative;
  background-color: var(--sozo-main);
  border: 0;
}
.radio_type input[type=radio]:checked + span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}
.radio_type.none_txt {
  display: block;
}
.radio_type.none_txt span {
  margin: 0 !important;
}
.radio_type02 {
  width: 100%;
  font-size: 14px;
  text-align: center;
}
.radio_type02 input[type=radio] {
  position: absolute;
  left: -99999999999px;
}
.radio_type02 input[type=radio] + span {
  width: 100%;
  border: 1px solid var(--sozo-border02);
  border-radius: 4px;
  line-height: 40px;
  box-sizing: border-box;
  display: inline-block;
}
.radio_type02 input[type=radio]:checked + span {
  border-color: var(--sozo-main);
  background-color: var(--sozo-color01);
  color: var(--sozo-main);
}

.check_type {
  font-size: 14px;
  display: flex;
  align-items: center;
  height: 20px;
}
.check_type input[type=checkbox] {
  position: absolute;
  left: -99999999999px;
}
.check_type input[type=checkbox] + span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  box-sizing: border-box;
  margin-right: 5px;
  background-color: #fff;
}
.check_type input[type=checkbox]:checked + span {
  border: 0;
  background: var(--sozo-main);
  position: relative;
}
.check_type input[type=checkbox]:checked + span::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: 25% 25%;
  position: absolute;
  top: 7px;
  left: 4px;
}
.check_type.none_txt {
  display: block;
}
.check_type.none_txt span {
  margin: 0 !important;
}

.input_type {
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  padding: 0 15px;
  outline: 0;
  font-size: 14px;
}
.input_type:focus {
  border-color: var(--sozo-main);
}
.input_type:read-only {
  background-color: #f7f7f7;
}
.input_type:read-only:focus {
  border-color: var(--sozo-border);
}
.input_type::placeholder {
  color: #bcbcbc;
}
.input_desc {
  margin-top: 5px;
  color: var(--sozo-txt03);
}
.input_desc.success {
  color: var(--sozo-main);
}
.input_desc.fail {
  color: var(--sozo-red);
}
.input_box {
  display: flex;
  align-items: baseline;
  font-size: 14px;
  color: var(--sozo-txt03);
}
.input_box.star .label span {
  position: relative;
}
.input_box.star .label span::after {
  content: "*";
  display: block;
  color: var(--sozo-red);
  position: absolute;
  top: -5px;
  right: -10px;
}
.input_box.middle {
  align-items: center;
}
.input_box .label {
  width: 180px;
}
.input_box .label span {
  position: relative;
}
.input_box dd {
  width: calc(100% - 180px);
}
.input_box dd .wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}
.input_box dd .wrap.file {
  display: block;
}
.input_box dd .wrap.file label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.input_box dd .wrap + .input_type {
  margin-top: 5px;
}
.input_box .input_type {
  width: calc(100% - 105px);
}
.input_box input[type=file] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.input_box.email {
  position: relative;
}
.input_box.email .emailSelInner {
  position: absolute;
  right: 107px;
}
.input_box.email .emailSelInner .select_option {
  border: 0;
  width: 200px;
  height: 38px;
  position: relative;
}
.input_box.email .emailSelInner .select_option::after {
  content: "";
  border: 1px solid var(--sozo-txt01);
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
}
.input_box.email .emailSelInner .select_option.focus::after {
  transform: rotate(-135deg);
  top: 17px;
}
.input_box.email .emailSelInner .select_option .active_cont {
  height: 38px;
  background: none;
  border: 0;
}
.input_box.email .emailSelInner .select_option .active_cont .txt {
  color: var(--sozo-txt03);
}
.input_box.email .emailSelInner .select_option .option_list {
  border: 1px solid var(--sozo-border);
  top: 38px;
}
.input_box.email .emailSelInner .select_option .option_list li {
  color: var(--sozo-txt03);
}
.input_box.select dd {
  display: flex;
}
.input_box.select dd .select_input {
  width: 150px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.input_box.select dd .select_input .cust_chk {
  margin: 0;
}
.input_box.select dd .select_input + .input_type {
  width: calc(100% - 255px);
}
.input_box .tooltip_wrap {
  position: relative;
}
.input_box .tooltip_wrap .tooltip_cont {
  background-color: var(--sozo-sub02);
  color: #fff;
  padding: 15px;
  line-height: 20px;
  position: absolute;
  width: 300px;
  z-index: 2;
  left: 25px;
  top: 0;
  display: none;
}
.input_box .tooltip_wrap img {
  cursor: pointer;
}
.input_box .tooltip_wrap img:hover + .tooltip_cont {
  display: block;
}
.input_box.use_balance dd .select_input {
  width: 100%;
}
.input_box.use_balance dd.layer_wrap {
  display: block;
}

.calendar_wrap {
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  width: 150px;
  height: 35px;
  line-height: 35px;
  box-sizing: border-box;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calendar_wrap input {
  border: 0;
  width: 100%;
  height: 30px;
  outline: none;
  padding-left: 10px;
  border-radius: 4px;
}
.calendar_wrap img {
  cursor: pointer;
}

.btn {
  display: block;
  background-color: var(--sozo-main);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  font-weight: normal;
  cursor: pointer;
  font-size: 14px;
}
.btn_wrap {
  text-align: center;
}
.btn_wrap.half {
  display: flex;
  gap: 10px;
}
.btn_table {
  margin-top: 10px;
}
.btn_table.align_right {
  display: flex;
  justify-content: flex-end;
}
.btn_login {
  line-height: 55px;
  font-size: 22px;
}
.btn_more01 {
  width: 130px;
  height: 35px;
  border: 1px solid #333;
  border-radius: 20px;
  text-align: center;
  line-height: 35px;
  font-size: 16px;
  color: #333;
  display: block;
}
.btn_more02 {
  font-size: 14px;
  color: #7e7e7e;
  line-height: 18px;
  border-bottom: 1px solid #b3b3b3;
}
.btn_detail {
  padding: 0 10px;
  line-height: 20px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  font-size: 12px;
  color: #848484;
  display: inline-block;
  height: 20px;
  font-weight: normal;
  background-color: #fff;
  padding-right: 20px;
  position: relative;
  cursor: pointer;
}
.btn_detail::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #a1a1a1;
  position: absolute;
  right: 10px;
  top: 7px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.btn_middle {
  width: 120px;
  line-height: 35px;
  font-size: 14px;
}
.btn_middle_auto {
  width: auto;
  padding: 0 15px;
  line-height: 35px;
  font-size: 14px;
}
.btn_big {
  width: 240px;
  line-height: 45px;
  font-size: 16px;
}
.btn_s {
  width: 80px;
  font-size: 14px;
  line-height: 27px;
}
.btn_gray {
  background-color: var(--sozo-gray);
  color: #333;
}
.btn_gray02 {
  background-color: var(--sozo-gray02);
  color: #fff;
}
.btn_cancel {
  background-color: var(--sozo-gray02);
  color: #fff;
}
.btn_sub01 {
  background-color: var(--sozo-sub02);
  color: #fff;
}
.btn_w100 {
  width: 100%;
}
.btn_input {
  width: 100px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 4px;
  background-color: #999;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 0;
  cursor: pointer;
}
.btn_big_auto {
  line-height: 50px;
  font-size: 16px;
  width: max-content;
  padding: 0 35px;
}
.btn.auto {
  width: max-content;
  padding: 0 15px;
}
.btn_center {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.btn_center a {
  margin: 0 auto;
}
.btn_center.half a {
  display: inline-block;
  margin: 0;
}
.btn_line {
  display: inline-block;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  line-height: 30px;
  padding: 0 15px;
  color: var(--sozo-txt01);
  cursor: pointer;
}
.btn_line_big {
  width: 240px;
  line-height: 45px;
  font-size: 16px;
  display: block;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  padding: 0 15px;
  color: var(--sozo-txt01);
  cursor: pointer;
  text-align: center;
}
.btn_top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 10;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
.btn_top .arrow_line {
  width: 10px;
  height: 10px;
  border-color: #fff;
}

.flex_btn {
  display: flex;
  align-items: center;
  gap: 5px;
}
.flex_btn a {
  margin: 0;
}

.cust { /* 로그인, 회원가입, 아이디&비밀번호 찾기 */ }
.cust_chk {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 22px;
}
.cust_chk span {
  display: block;
}
.cust_chk .on {
  width: 22px;
  height: 22px;
  background: transparent url("../images/icon/ico_chk.png") 0 0 repeat;
  border: 0;
}
.cust_chk input[type=checkbox] {
  display: none;
}
.cust_chk input[type=checkbox]:checked + .on {
  background: transparent url("../images/icon/ico_chk_on.png") 0 0 repeat;
  background-position: 0;
}
.cust_chk input[type=radio] {
  display: none;
}
.cust_chk input[type=radio]:checked + .on {
  background: transparent url("../images/icon/ico_chk_on.png") 0 0 repeat;
  background-position: 0;
}

.layer_wrap {
  position: relative;
}
.layer_wrap .block_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.num_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.num_btn_wrap button {
  width: 30px;
  height: 30px;
  background-color: #ddd;
  color: #666;
  text-align: center;
  font-size: 14px;
}
.num_btn_wrap button.left {
  border-radius: 4px 0 0 4px;
}
.num_btn_wrap button.right {
  border-radius: 0 4px 4px 0;
}
.num_btn_wrap button:focus {
  outline: none;
}
.num_btn_wrap input {
  width: 60px;
  height: 30px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-width: 1px 0;
  text-align: center;
  outline: none;
  font-family: var(--font-medium);
  font-weight: normal;
}

.mwon {
  margin-left: 3px;
}

.txt_b {
  font-family: var(--font-bold);
}
.txt_b .mwon {
  font-family: var(--font-regular);
}

.cart_mini {
  display: block;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: transparent url("/images/icon/icon_cart_mini.png") no-repeat center center;
  cursor: pointer;
}

.del_mini {
  display: block;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0;
  background: transparent url("/images/icon/ico_close.png") no-repeat center center;
  background-size: 50%;
  margin: 0 auto;
  cursor: pointer;
}

.detail_mini {
  display: block;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0;
  background: transparent url("/../images/icon/icon_search_g.png") no-repeat center center;
  background-size: 50%;
  margin: 0 auto;
  cursor: pointer;
}

.select_option {
  position: relative;
}
.select_option .active_cont {
  width: 100%;
  height: 35px;
  line-height: 35px;
  border: 1px solid var(--sozo-border);
  padding: 0 15px;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
}
.select_option .option_list {
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 2;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0;
  text-align: left;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  visibility: hidden;
  transition: height 0.3s;
}
.select_option .option_list li {
  line-height: 26px;
  padding: 0 15px;
}
.select_option .option_list li:hover {
  background-color: var(--sozo-gray03);
}
.select_option::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sozo-gray02);
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
  position: absolute;
  right: 15px;
  top: 12px;
}
.select_option.focus .active_cont {
  border-color: var(--sozo-main);
}
.select_option.focus .option_list {
  height: 150px;
  padding: 10px 0;
  height: 150px;
  overflow: auto;
  visibility: visible;
  transition: height 0.3s;
}
.select_option.focus::after {
  transform: rotate(-135deg);
  top: 17px;
  border-color: var(--sozo-main);
}

.textarea_type {
  width: 100%;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  resize: vertical;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 10px;
}
.textarea_type:focus {
  outline: none;
  border-color: var(--sozo-main);
}
.textarea_type::placeholder {
  font-size: 14px;
}
.textarea_type:read-only:focus {
  border-color: var(--sozo-border);
}

/* 아이콘 CSS */
.arrow_triangle {
  display: inline-block;
  border: 40px solid transparent;
}
.arrow_triangle.left {
  border-right-color: #333;
}
.arrow_triangle.right {
  border-left-color: #333;
}
.arrow_triangle.top {
  border-bottom-color: #333;
}
.arrow_triangle.bottom {
  border-top-color: #333;
}
.arrow_line {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #333;
}
.arrow_line.top {
  border-width: 2px 2px 0 0;
  transform: rotate(315deg);
}
/* Badge */
.badge {
  display: inline-block;
  line-height: 20px;
  padding: 0 10px;
  color: #fff;
  margin-right: 3px;
  font-size: 12px;
}
.badge.type01 {
  background-color: #bfb0d3;
}
.badge.type02 {
  background-color: #90c5d3;
}
.badge.type03 {
  background-color: #eb8ca2;
}
.badge.type04 {
  background-color: #a9dbba;
}
.badge.type05 {
  background-color: #f4c28c;
}

/* 로딩 스피너 */
#loadingBar {
  position: fixed;
  top: 40%;
  left: 50%;
}

#loading_spinner {
  position: relative;
  width: 60px;
  height: 75px;
  margin: auto;
}
#loading_spinner .loading_bg {
  position: absolute;
  background-color: rgb(255, 255, 255);
  width: 10px;
  height: 23px;
  border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  transform: scale(0.4);
  -o-transform: scale(0.4);
  -ms-transform: scale(0.4);
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  animation-name: fadeG;
  -o-animation-name: fadeG;
  -ms-animation-name: fadeG;
  -webkit-animation-name: fadeG;
  -moz-animation-name: fadeG;
  animation-duration: 1.2s;
  -o-animation-duration: 1.2s;
  -ms-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
}
#loading_spinner #rotate_01 {
  left: 0;
  top: 27px;
  animation-delay: 0.45s;
  -o-animation-delay: 0.45s;
  -ms-animation-delay: 0.45s;
  -webkit-animation-delay: 0.45s;
  -moz-animation-delay: 0.45s;
  transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}
#loading_spinner #rotate_02 {
  left: 8px;
  top: 10px;
  animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}
#loading_spinner #rotate_03 {
  left: 25px;
  top: 3px;
  animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  -ms-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -moz-animation-delay: 0.75s;
  transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
}
#loading_spinner #rotate_04 {
  right: 8px;
  top: 10px;
  animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}
#loading_spinner #rotate_05 {
  right: 0;
  top: 27px;
  animation-delay: 1.05s;
  -o-animation-delay: 1.05s;
  -ms-animation-delay: 1.05s;
  -webkit-animation-delay: 1.05s;
  -moz-animation-delay: 1.05s;
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
}
#loading_spinner #rotate_06 {
  right: 8px;
  bottom: 7px;
  animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  -ms-animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
}
#loading_spinner #rotate_07 {
  bottom: 0;
  left: 25px;
  animation-delay: 1.35s;
  -o-animation-delay: 1.35s;
  -ms-animation-delay: 1.35s;
  -webkit-animation-delay: 1.35s;
  -moz-animation-delay: 1.35s;
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}
#loading_spinner #rotate_08 {
  left: 8px;
  bottom: 7px;
  animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  -ms-animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
}

/* HTML: <div class="loader_circle"></div> */
.loader_circle {
  width: 50px;
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #86bc43) content-box;
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0deg, #000 1deg 20deg, rgba(0, 0, 0, 0) 21deg 36deg), radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: l4 1s infinite steps(10);
}

@keyframes l4 {
  to {
    transform: rotate(1turn);
  }
}
/* 로딩 스피너 Animation */
@keyframes fadeG {
  0% {
    background-color: rgb(0, 0, 0);
  }
  100% {
    background-color: rgb(255, 255, 255);
  }
}
@-o-keyframes fadeG {
  0% {
    background-color: rgb(0, 0, 0);
  }
  100% {
    background-color: rgb(255, 255, 255);
  }
}
@-ms-keyframes fadeG {
  0% {
    background-color: rgb(0, 0, 0);
  }
  100% {
    background-color: rgb(255, 255, 255);
  }
}
@-webkit-keyframes fadeG {
  0% {
    background-color: rgb(0, 0, 0);
  }
  100% {
    background-color: rgb(255, 255, 255);
  }
}
@-moz-keyframes fadeG {
  0% {
    background-color: rgb(0, 0, 0);
  }
  100% {
    background-color: rgb(255, 255, 255);
  }
}
.list_wrap {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.list_wrap .table_default {
  border-top: 0;
}
.list_wrap #thead_fix {
  width: 100%;
}
.list_wrap #thead_fix th {
  position: sticky;
  top: 1px;
  border-top: 1px solid var(--sozo-border);
}

.scroll_y::-webkit-scrollbar {
  height: 5px;
  position: absolute;
  right: 0;
}
.scroll_y::-webkit-scrollbar-thumb {
  border-radius: 20px;
}
.scroll_y::-webkit-scrollbar-track {
  background-color: #fff;
}

.gs_paging_box {
  text-align: center;
  margin-top: 40px;
}
.gs_paging_box a {
  display: inline-block;
  font-size: 0;
  background-color: var(--sozo-gray);
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.gs_paging_box a.strPg::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #999;
  transform: rotate(45deg);
  border-width: 0 0 2px 2px;
  right: 10px;
  position: absolute;
  top: 9px;
}
.gs_paging_box a.strPg::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #999;
  transform: rotate(45deg);
  border-width: 0 0 2px 2px;
  right: 3px;
  position: absolute;
  top: 9px;
}
.gs_paging_box a.prevBox .prevPg, .gs_paging_box a.prevBox .etc {
  display: none;
}
.gs_paging_box a.prevBox::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #999;
  transform: rotate(45deg);
  border-width: 0 0 2px 2px;
  left: 12px;
  position: absolute;
  top: 9px;
}
.gs_paging_box a.nextBox .nextPg, .gs_paging_box a.nextBox .etc {
  display: none;
}
.gs_paging_box a.nextBox::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #999;
  transform: rotate(45deg);
  border-width: 2px 2px 0 0;
  right: 12px;
  position: absolute;
  top: 9px;
}
.gs_paging_box a.endPg::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #999;
  transform: rotate(45deg);
  border-width: 2px 2px 0 0;
  right: 15px;
  position: absolute;
  top: 9px;
}
.gs_paging_box a.endPg::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #999;
  transform: rotate(45deg);
  border-width: 2px 2px 0 0;
  right: 8px;
  position: absolute;
  top: 9px;
}
.gs_paging_box a.sitebg2 {
  font-size: 14px;
  background-color: var(--sozo-main) !important;
  color: #fff;
  line-height: 30px;
}
.gs_paging_box a.sitebg2::after {
  display: none;
}
.gs_paging_box .gs_paging {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.board-default.pageTb .golink {
  display: none;
}
.board-default .boardListSearch .search_area {
  margin-top: 30px;
}
.board-default .boardListSearch .search_area .select {
  width: 180px;
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--sozo-border);
  padding: 0 15px;
  border-radius: 4px;
  box-sizing: border-box;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  background: transparent url("/images/icon/icon_arrow04.png") 95% center no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.board-default .boardListSearch .search_area .select:focus {
  outline: none;
  border-color: var(--sozo-main);
}
.board-default .boardListSearch .search_area .select::-ms-expand {
  display: none;
}
.board-default .boardListSearch .search_area .select::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sozo-gray02);
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
  position: absolute;
  right: 15px;
  top: 12px;
}
.board-default .boardListSearch .search_area .input_type {
  width: 400px;
}

.commuPostWrap .commuBox {
  border: 1px solid var(--sozo-border);
  border-width: 1px 0;
}
.commuPostWrap .commuBox .titleSec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  border-bottom: 1px solid var(--sozo-border);
}
.commuPostWrap .commuBox .titleSec .postTitle {
  font-size: 20px;
  font-family: var(--font-bold);
}
.commuPostWrap .commuBox .titleSec .postTime {
  font-size: 14px;
  color: var(--sozo-txt02);
}
.commuPostWrap .commuBox .contentSec {
  padding: 30px 0;
}

/***** 로그인 *****/
.jkmall_login_wrap {
  width: 100%;
  height: 100vh;
  background: transparent url("../data/jinkoonsh/login/jk_login_bg.jpg") 0 0 repeat;
  background-size: 100%;
  position: relative;
  text-align: center;
}
.jkmall_login_wrap .bg_obj_box img {
  position: absolute;
}
.jkmall_login_wrap .bg_obj_box .login_obj01 {
  width: 25%;
  height: auto;
  top: 0;
  left: 0;
}
.jkmall_login_wrap .bg_obj_box .login_obj02 {
  width: 23%;
  height: auto;
  top: 0;
  right: 0;
}
.jkmall_login_wrap .bg_obj_box .login_obj03 {
  width: 25%;
  height: auto;
  bottom: 0;
  left: 0;
}
.jkmall_login_wrap .bg_obj_box .login_obj04 {
  width: 19%;
  height: auto;
  bottom: 0;
  right: 0;
}
.jkmall_login_wrap .jkmall_login {
  width: 892px;
  height: 634px;
  background: transparent url("../data/jinkoonsh/login/jk_login_box.png") 0 0 no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.jkmall_login_wrap .jkmall_login .input_box {
  width: 340px;
  margin: 240px auto 0;
  padding-left: 40px;
}
.jkmall_login_wrap .jkmall_login .input_box input {
  width: 100%;
  height: 60px;
  border: 1px solid #1a215f;
  background: transparent;
  padding: 0 30px;
  font-size: 18px;
  line-height: 60px;
  box-sizing: border-box;
  margin-bottom: 10px;
  color: #1a215f;
  font-weight: 600;
  outline: 0;
}
.jkmall_login_wrap .jkmall_login .input_box input::placeholder {
  color: #1a215f;
  font-size: 18px;
}
.jkmall_login_wrap .jkmall_login .input_box .login_btn {
  width: 100%;
  height: 60px;
  line-height: 60px;
  display: block;
  background: transparent url("../data/jinkoonsh/login/jk_login_btn_bg.jpg") 0 0 no-repeat;
  background-size: cover;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}
.jkmall_login_wrap .jkmall_login .login_txt {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  margin-top: 15px;
}
.jkmall_login_wrap .jkmall_login .login_txt li {
  position: relative;
  padding: 0 10px 0 5px;
}
.jkmall_login_wrap .jkmall_login .login_txt li::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
}
.jkmall_login_wrap .jkmall_login .login_txt li:last-child::after {
  display: none;
}
.jkmall_login_wrap .jkmall_login .login_txt li a {
  font-size: 18px;
  color: #343a71;
}

.sozo_login {
  width: 100%;
  height: calc(100vh - 150px);
  background: transparent url("../images/bg/bg_login.png") repeat 0 0;
  background-size: cover;
  position: relative;
}
.sozo_login .bg_obj {
  width: 300px;
  height: auto;
  position: absolute;
  bottom: -35px;
  right: -140px;
  z-index: 3;
}
.sozo_login .login_cont_wrap {
  width: 1140px;
  height: 640px;
  background: transparent url("../images/bg/bg_login_cont.png") no-repeat 0 0;
  background-size: 100%;
  display: flex;
  padding: 60px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sozo_login .login_cont_wrap .left {
  width: 50%;
  padding: 30px 60px 0 0;
  box-sizing: border-box;
}
.sozo_login .login_cont_wrap .left .benefit_wrap .tit {
  width: 100%;
  padding: 15px 20px;
  background-color: #f3f4f6;
  border-radius: 10px;
  color: #52575d;
  font-size: 22px;
  font-weight: bold;
  box-sizing: border-box;
}
.sozo_login .login_cont_wrap .left .benefit_wrap .list li {
  padding: 25px 0 25px 50px;
  border-bottom: 1px solid var(--sozo-border02);
  position: relative;
}
.sozo_login .login_cont_wrap .left .benefit_wrap .list li p {
  font-size: 18px;
}
.sozo_login .login_cont_wrap .left .benefit_wrap .list li p.dec {
  margin-top: 10px;
  font-size: 14px;
}
.sozo_login .login_cont_wrap .left .benefit_wrap .list li:nth-child(1)::before {
  content: "1";
}
.sozo_login .login_cont_wrap .left .benefit_wrap .list li:nth-child(2)::before {
  content: "2";
}
.sozo_login .login_cont_wrap .left .benefit_wrap .list li:nth-child(3)::before {
  content: "3";
}
.sozo_login .login_cont_wrap .left .benefit_wrap .list li:nth-child(4) {
  border-bottom: 0;
}
.sozo_login .login_cont_wrap .left .benefit_wrap .list li:nth-child(4)::before {
  content: "4";
}
.sozo_login .login_cont_wrap .left .benefit_wrap .list li::before {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 36px;
  color: #afdc8a;
}
.sozo_login .login_cont_wrap .left .benefit_wrap02 .tit {
  font-size: 22px;
}
.sozo_login .login_cont_wrap .left .benefit_wrap02 .list li {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--sozo-border02);
  padding: 20px 0;
}
.sozo_login .login_cont_wrap .left .benefit_wrap02 .list li:last-child {
  border-bottom: 0;
}
.sozo_login .login_cont_wrap .left .benefit_wrap02 .list li .ico_wrap {
  width: 72px;
  text-align: center;
}
.sozo_login .login_cont_wrap .left .benefit_wrap02 .list li dl dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.sozo_login .login_cont_wrap .left .benefit_wrap02 .list li dl dd {
  font-size: 14px;
}
.sozo_login .login_cont_wrap .right {
  width: 50%;
  padding-left: 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sozo_login .login_cont_wrap .right .login_wrap {
  width: 400px;
}
.sozo_login .login_cont_wrap .right .login_wrap .logo {
  display: block;
  margin: 0 auto 25px;
}
.sozo_login .login_cont_wrap .right .login_wrap .input_wrap {
  border: 1px solid var(--sozo-border03);
  border-radius: 8px;
  padding: 15px;
  box-sizing: border-box;
  margin-bottom: 10px;
  transition: all 0.5s;
}
.sozo_login .login_cont_wrap .right .login_wrap .input_wrap label {
  font-size: 16px;
  line-height: normal;
  display: block;
  margin-bottom: 5px;
}
.sozo_login .login_cont_wrap .right .login_wrap .input_wrap input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 16px;
}
.sozo_login .login_cont_wrap .right .login_wrap .input_wrap.on {
  border-color: var(--sozo-main);
  transition: all 0.5s;
}
.sozo_login .login_cont_wrap .right .login_wrap .cust_chk {
  margin-top: 15px;
}
.sozo_login .login_cont_wrap .right .login_wrap .btn_login {
  margin: 15px 0 20px;
}
.sozo_login .login_cont_wrap .right .login_wrap .sub_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sozo_login .login_cont_wrap .right .login_wrap .sub_btn li::after {
  content: "|";
  font-size: 16px;
  margin: 0 5px;
}
.sozo_login .login_cont_wrap .right .login_wrap .sub_btn li:last-child::after {
  display: none;
}
.sozo_login .login_cont_wrap .right .login_wrap .sub_btn li a {
  font-size: 16px;
  color: #333;
}
.sozo_login .login_cont_wrap .btn_remote {
  width: 100%;
  text-align: center;
  color: var(--sozo-txt03);
  font-size: 14px;
  margin-top: 30px;
}
.sozo_login .login_cont_wrap .btn_remote a {
  border-bottom: 1px solid #666;
  color: inherit;
}
.sozo_login .bg_move {
  width: 100%;
  height: 100%;
  position: relative;
}
.sozo_login .bg_move .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.8s ease-in-out;
}
.sozo_login .bg_move .bg01 {
  background: transparent url("../images/bg/bg_login01.jpg") no-repeat 0 0;
}
.sozo_login .bg_move .bg01.on {
  opacity: 1;
}
.sozo_login .bg_move .bg02 {
  background: transparent url("../images/bg/bg_login02.jpg") no-repeat 0 0;
}
.sozo_login .bg_move .bg02.on {
  opacity: 1;
}
.sozo_login .bg_move .bg03 {
  background: transparent url("../images/bg/bg_login03.jpg") no-repeat 0 0;
}
.sozo_login .bg_move .bg03.on {
  opacity: 1;
}

/***** 회원가입 및 아이디&비밀번호 찾기 *****/
.join_cont_wrap {
  width: 100%;
  background-color: #f5f5f5;
}
.join_cont_wrap.find {
  padding: 100px 0;
}
.join_cont_wrap .tit_wrap {
  width: 500px;
  margin: 0 auto;
}
.join_cont_wrap .tit_wrap ul {
  display: flex;
  align-items: center;
}
.join_cont_wrap .tit_wrap ul li {
  width: 100%;
  line-height: 60px;
  text-align: center;
  border-bottom: 1px solid var(--sozo-border);
}
.join_cont_wrap .tit_wrap ul li.on {
  background-color: #fff;
  border: 1px solid var(--sozo-border);
  border-bottom: 0;
  font-family: var(--font-bold);
  border-radius: 4px 4px 0 0;
}
.join_cont_wrap .input_wrap {
  background-color: #fff;
  border: 1px solid var(--sozo-border);
  border-top: 0;
  padding: 20px;
}
.join_cont_wrap .input_wrap .info_input {
  margin-bottom: 20px;
}
.join_cont_wrap .input_wrap .info_input dt {
  text-indent: 5px;
  margin-bottom: 5px;
}
.join_cont_wrap .input_wrap .info_input label {
  color: var(--sozo-txt03);
  font-size: 14px;
}
.join_cont_wrap .input_wrap .btn_wrap {
  margin-bottom: 10px;
}
.join_cont_wrap .input_wrap .txt {
  text-align: center;
  padding: 70px 0;
  font-size: 16px;
}
.join_cont_wrap .input_wrap .txt .point {
  font-family: var(--font-bold);
}
.join_cont_wrap .input_wrap.id {
  border-radius: 0 4px 4px 4px;
}
.join_cont_wrap .input_wrap.pw {
  border-radius: 4px 0 4px 4px;
}
.join_cont_wrap .phone_sms_wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.join_cont_wrap .phone_sms_wrap .displayCount {
  width: 120px;
  text-align: center;
  font-size: 16px;
}
.join_cont_wrap .phone_sms_wrap .btn_input {
  width: 120px;
}
.join_cont_wrap .pw_change_noti {
  width: 100%;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  color: var(--sozo-txt03);
  margin-bottom: 20px;
  background-color: #eee;
}
.join_header {
  padding: 20px 0;
}
.join_header .cont {
  width: 900px;
  margin: 0 auto;
}
.join_header .cont img {
  width: auto;
  height: 50px;
  display: block;
  margin-bottom: 15px;
}
.join_header .cont dl {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.join_header .cont dl dt {
  font-size: 30px;
  font-family: var(--font-bold);
}
.join_header .cont dl dd {
  font-size: 20px;
}
.join_step {
  width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}
.join_step ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.join_step ul li {
  width: 120px;
  text-align: center;
  position: relative;
}
.join_step ul li::after {
  content: "";
  display: block;
  width: 330px;
  height: 1px;
  background: transparent url("/../images/bg/bg_stepline.png") repeat-x 0 0;
  position: absolute;
  top: 30px;
  left: 90px;
}
.join_step ul li:last-child::after {
  display: none;
}
.join_step ul li p {
  font-size: 20px;
}
.join_step ul li p.num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #aeb2c1;
  color: #fff;
  font-size: 26px;
  line-height: 60px;
  margin: 0 auto 15px;
}
.join_step ul li.on p.num {
  background-color: var(--sozo-main);
}
.join_input_wrap {
  width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid var(--sozo-border);
  padding: 50px;
  box-sizing: border-box;
  border-radius: 4px;
}
.join_input_wrap .box_tit {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: var(--font-SB);
}
.join_input_wrap .scroll_box {
  width: 100%;
  height: 300px;
  padding: 20px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  box-sizing: border-box;
  overflow-y: scroll;
}
.join_input_wrap .scroll_box::-webkit-scrollbar {
  width: 5px;
}
.join_input_wrap .scroll_box::-webkit-scrollbar-thumb {
  border-radius: 20px;
}
.join_input_wrap .scroll_box::-webkit-scrollbar-track {
  background-color: #fff;
}
.join_input_wrap .scroll_box .guide_wrap {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
}
.join_input_wrap .cust_chk {
  margin: 20px 0 40px;
}
.join_input_wrap .cust_chk:last-child {
  margin-bottom: 0;
}
.join_input_wrap .join_list {
  padding-left: 20px;
}
.join_input_wrap .join_list li {
  margin-bottom: 15px;
}
.join_input_wrap .join_list .email_same_wrap .cust_chk {
  margin: 0 0 0 10px;
}
.join_input_wrap .agree_all_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--sozo-border);
  padding-top: 40px;
}
.join_input_wrap .agree_all_wrap .cust_chk {
  margin: 0;
}
.join_bottom {
  width: 900px;
  margin: 0 auto;
  padding: 30px 0 100px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.join_complete {
  text-align: center;
}
.join_complete p {
  font-size: 18px;
  line-height: 26px;
}
.join_complete p strong {
  color: var(--sozo-main);
}
.join_complete p.txt01 {
  font-size: 28px;
  padding: 30px 0 15px;
}

/***** Header *****/
header {
  width: 100%;
}

#header {
  height: 160px;
  background-color: #fff;
  z-index: 4;
}

.header_wrap .inner {
  width: 1280px;
  height: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
}
.header_wrap .inner h1 img {
  width: 200px;
  transition: all 0.5s;
}
.header_wrap .inner .search_box {
  width: 620px;
  position: relative;
}
.header_wrap .inner .search_box .search_bar input {
  width: 100%;
  height: 45px;
  border: 1px solid #666;
  border-radius: 30px;
  padding: 0 30px;
  box-sizing: border-box;
  outline: 0;
}
.header_wrap .inner .search_box .search_bar input:focus {
  border-color: #e95948;
}
.header_wrap .inner .search_box .search_bar .search_btn {
  width: 25px;
  height: auto;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.header_wrap .inner .search_box .search_bar .search_btn img {
  width: 100%;
}
.header_wrap .inner .ico_my {
  display: inline-block;
  width: 39px;
  height: auto;
  margin-right: 5px;
  transition: all 0.5s;
}
.header_wrap .inner .ico_my img {
  width: 100%;
}
.header_wrap .inner .ico_cart {
  display: inline-block;
  width: 49px;
  height: auto;
  margin-right: 10px;
  transition: all 0.5s;
}
.header_wrap .inner .ico_cart img {
  width: 100%;
}
.header_wrap .inner .ico_cart div {
  position: relative;
}
.header_wrap .inner .ico_cart div span {
  position: absolute;
  right: -10px;
  top: -5px;
  background-color: #e95948;
  border-radius: 50%;
  display: block;
  width: 20px;
  height: 20px;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  text-align: center;
}
.header_wrap .gnb_wrap {
  width: 100%;
  height: 50px;
  border: 1px solid #e7e7e7;
  border-width: 1px 0;
  box-sizing: border-box;
  position: relative;
}
.header_wrap .gnb_wrap .menu {
  width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.header_wrap .gnb_wrap .menu li {
  height: 100%;
  font-size: 16px;
  padding: 0 35px;
  font-weight: 400;
}
.header_wrap .gnb_wrap .menu li a {
  line-height: 50px;
}
.header_wrap .gnb_wrap .menu li.all_cate {
  padding: 0 15px;
  margin-right: 30px;
  border: 1px solid #e7e7e7;
  border-width: 0 1px;
}
.header_wrap .gnb_wrap .menu li.all_cate img {
  cursor: pointer;
  margin-top: 16px;
}
.header_wrap .gnb_wrap .allMenuBox {
  display: none;
  width: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 49px;
  z-index: 20;
  padding: 40px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #e7e7e7;
}
.header_wrap .gnb_wrap .allMenuBox .swiper-container {
  width: 1280px;
  margin: 0 auto;
}
.header_wrap .gnb_wrap .allMenuBox .swiper-container .swiper-slide {
  width: 11.11%;
  font-size: 14px;
  padding-left: 15px;
  box-sizing: border-box;
}
.header_wrap .gnb_wrap .allMenuBox .swiper-container .swiper-slide :last-child {
  border-right: 0;
}
.header_wrap .gnb_wrap .allMenuBox .swiper-container .swiper-slide .depth1 {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}
.header_wrap .gnb_wrap .allMenuBox .swiper-container .swiper-slide .depth1 a {
  color: #333;
}
.header_wrap .gnb_wrap .allMenuBox .swiper-container .swiper-slide ul li {
  text-align: left;
  line-height: 26px;
}
.header_wrap .gnb_wrap .allMenuBox .swiper-container .swiper-slide ul li a {
  color: #333;
}

#header.header_fix {
  /* 스크롤 시, Header 변화*/
}
#header.header_fix .header_wrap {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 999;
}
#header.header_fix .header_wrap .inner {
  height: 80px;
  transition: all 0.5s;
}
#header.header_fix .header_wrap .inner h1 img {
  width: 180px;
  transition: all 0.5s;
}
#header.header_fix .header_wrap .inner .ico_my {
  width: 30px;
  height: auto;
  transition: all 0.5s;
}
#header.header_fix .header_wrap .inner .ico_cart {
  width: 40px;
  height: auto;
  transition: all 0.5s;
}

/***** Main *****/
.content_wrap {
  width: 1280px;
  margin: 0 auto;
  position: relative;
}

.banner_main {
  width: 980px;
  height: 400px;
  border-radius: 20px;
  margin: 40px 0 0 0 !important;
  overflow: hidden;
}
.banner_main .swiper-pagination-bullet-active {
  background-color: #e95948;
}

.pro_display {
  /* 메인 > 상품진열 타입01 : 모바일 쿠폰 */
  /* 메인 > 상품진열 타입02 : 테마관 */
}
.pro_display01 {
  width: 980px;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.pro_display01 .pro_left {
  text-align: left;
}
.pro_display01 .pro_left span {
  font-size: 24px;
}
.pro_display01 .pro_left p {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 60px;
}
.pro_display01 .pro_right .pro_item_wrap {
  width: 640px;
  display: grid;
}
.pro_display01 .pro_right .pro_item_wrap.col_02 {
  grid-template-columns: 1fr 1fr;
}
.pro_display01 .pro_right .pro_item_wrap.col_03 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 10px;
}
.pro_display01 .pro_right .pro_item_wrap.col_03 li .pro_txt p {
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro_display01 .pro_right .pro_item_wrap li {
  width: 100%;
}
.pro_display01 .pro_right .pro_item_wrap li .pro_img {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.pro_display01 .pro_right .pro_item_wrap li .pro_img::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.pro_display01 .pro_right .pro_item_wrap li .pro_img img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.pro_display01 .pro_right .pro_item_wrap li .pro_txt {
  font-size: 14px;
}
.pro_display01 .pro_right .pro_item_wrap li .pro_txt p {
  margin-bottom: 5px;
}
.pro_display01 .pro_right .pro_item_wrap li .price_top .per {
  color: var(--sitecolor1);
}
.pro_display01 .pro_right .pro_item_wrap li .price_top .per .pct {
  display: inline-block;
}
.pro_display01 .pro_right .pro_item_wrap li .price_bottom {
  color: #888;
  text-decoration: line-through;
  font-size: 13px;
}
.pro_display02 {
  width: 980px;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.pro_display02 .pro_left {
  text-align: left;
}
.pro_display02 .pro_left span {
  font-size: 24px;
}
.pro_display02 .pro_left p {
  font-size: 38px;
  font-weight: 700;
  margin: 5px 0 60px;
}
.pro_display02 .pro_right {
  position: relative;
}
.pro_display02 .pro_right .pro_item_wrap {
  width: 640px;
}
.pro_display02 .pro_right .pro_item_wrap li {
  width: 100%;
}
.pro_display02 .pro_right .pro_item_wrap li .pro_img {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.pro_display02 .pro_right .pro_item_wrap li .pro_img::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.pro_display02 .pro_right .pro_item_wrap li .pro_img img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.pro_display02 .pro_right .pro_item_wrap li .pro_txt p {
  font-size: 14px;
  margin-bottom: 5px;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro_display02 .pro_right .swiper-button-prev, .pro_display02 .pro_right .swiper-button-next {
  width: 50px;
  height: 50px;
  background-image: url("../data/jinkoonsh/icon/ico_swiper_arrow.png");
  background-size: 100%;
  top: 100px;
}
.pro_display02 .pro_right .swiper-button-prev {
  left: -10px;
}
.pro_display02 .pro_right .swiper-button-next {
  transform: scaleX(-1);
  right: -10px;
}

.banner_band_wrap {
  margin-top: 60px;
}

.cont_right {
  width: 260px;
  text-align: center;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 10;
}
.cont_right .posi_wrap {
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.5s;
}
.cont_right .posi_wrap.fix {
  position: fixed;
  width: 260px;
  top: 200px;
  transition: all 0.5s;
}
.cont_right .posi_wrap.bottom_fix {
  opacity: 0;
  transition: all 0.5s;
}

.area_popular {
  /* 메인 > 인기상품 */
  width: 980px;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.area_popular .tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.area_popular .tit p {
  font-size: 30px;
  font-weight: 600;
}
.area_popular .left {
  width: 520px;
}
.area_popular .left .pro_item_wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.area_popular .left .pro_item_wrap li {
  width: 100%;
}
.area_popular .left .pro_item_wrap li .pro_img {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.area_popular .left .pro_item_wrap li .pro_img::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.area_popular .left .pro_item_wrap li .pro_img img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.area_popular .left .pro_item_wrap li .pro_txt {
  font-size: 16px;
}
.area_popular .left .pro_item_wrap li .pro_txt p {
  margin-bottom: 5px;
  width: 250px;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.area_popular .left .pro_item_wrap li .pro_txt .price_top .per {
  color: #e95948;
}
.area_popular .left .pro_item_wrap li .pro_txt .price_top .per .pct, .area_popular .left .pro_item_wrap li .pro_txt .price_top .per .m_per {
  font-family: "Pretendard", Arial, "Malgun Gothic", "dotum", sans-serif;
  display: inline-block;
}
.area_popular .left .pro_item_wrap li .pro_txt .price_bottom {
  color: #888;
  text-decoration: line-through;
  font-size: 14px;
}
.area_popular .right {
  width: 420px;
}
.area_popular .right .banner_brand {
  border-radius: 8px;
}
.area_popular .right .banner_brand .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
}
.area_popular .right .banner_brand .swiper-pagination-bullet-active {
  background-color: #e95948;
}
.area_evtbanner {
  /* 메인 > 이벤트 배너 */
  width: 980px;
  margin-top: 80px;
}
.area_evtbanner .tit p {
  font-size: 30px;
  font-weight: 600;
}
.area_evtbanner .banner_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}
.area_evtbanner .banner_wrap li {
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
}
.area_evtbanner .banner_wrap li img {
  width: 100%;
}
.area_customer {
  /* 메인 > 고객센터 정보 */
  width: 980px;
  margin-top: 80px;
}
.area_customer .tit {
  margin-bottom: 30px;
  text-align: center;
}
.area_customer .tit p {
  font-size: 30px;
  font-weight: 600;
}
.area_customer .customer_info_wrap {
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 8px;
}
.area_customer .customer_info_wrap li {
  width: 33.33%;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 0 40px 30px;
}
.area_customer .customer_info_wrap li dl dt {
  font-size: 26px;
  font-weight: 400;
  margin: 30px 0 15px;
}
.area_customer .customer_info_wrap li dl dd {
  font-size: 16px;
  color: #999;
  line-height: 24px;
}
.area_username {
  /* 메인 > 유저 이름 및 로그아웃*/
  font-size: 26px;
}
.area_username .name {
  font-weight: 700;
}
.area_username img {
  position: relative;
  top: -4px;
}
.area_username .btn_logout {
  display: block;
  font-size: 16px;
  width: 160px;
  height: 45px;
  border-radius: 30px;
  background-color: #333;
  color: #fff;
  line-height: 45px;
  margin: 20px auto 0;
}
.area_quick {
  /* 메인 > Quick Menu */
  margin-top: 70px;
}
.area_quick .tit {
  font-size: 26px;
  font-weight: 500;
}
.area_quick .menu {
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}
.area_quick .menu li {
  width: 33.33%;
}
.area_quick .menu li p {
  font-size: 14px;
  white-space: nowrap;
  margin-top: 10px;
}
.area_quick .menu .ico_bg {
  width: 60px;
  height: 60px;
  background-color: #e95948;
  border-radius: 50%;
  line-height: 60px;
  margin: 0 auto;
}
.area_recent {
  /* 메인 > 최근 본 상품 */
  margin-top: 70px;
}
.area_recent .tit {
  font-size: 26px;
  font-weight: 500;
}
.area_recent .rightMenuSwiper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.area_recent .rightMenuSwiper .swiper-slide {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.area_recent .rightMenuSwiper .swiper-slide::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.area_recent .rightMenuSwiper .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

/* Footer */
.footer_wrap {
  width: 100%;
  margin-top: 100px;
}
.footer_top {
  width: 100%;
  background-color: #f5f5f5;
  padding: 15px 0;
  box-sizing: content-box;
}
.footer_top ul {
  width: 1280px;
  margin: 0 auto;
  display: flex;
}
.footer_top ul li {
  font-size: 14px;
  color: #757575;
  padding-right: 20px;
}
.footer_top ul li a {
  color: inherit;
}
.footer_bottom {
  width: 100%;
  background-color: #333;
  padding: 60px 0;
  box-sizing: content-box;
}
.footer_bottom .cont {
  width: 1280px;
  position: relative;
  margin: 0 auto;
  color: #999;
  text-align: left;
  font-size: 14px;
}
.footer_bottom .cont .info_company {
  width: 500px;
  margin-bottom: 20px;
}
.footer_bottom .cont .info_company li {
  position: relative;
  padding: 0 10px 0 5px;
  display: inline-block;
  line-height: 22px;
}
.footer_bottom .cont .info_company li::after {
  content: "|";
  position: absolute;
  top: 0;
  right: 0;
}
.footer_bottom .cont .info_company li:nth-child(1), .footer_bottom .cont .info_company li:nth-child(3), .footer_bottom .cont .info_company li:nth-child(4), .footer_bottom .cont .info_company li:nth-child(6) {
  padding-left: 0;
}
.footer_bottom .cont .info_company li:nth-child(2)::after, .footer_bottom .cont .info_company li:nth-child(3)::after, .footer_bottom .cont .info_company li:nth-child(5)::after, .footer_bottom .cont .info_company li:last-child::after {
  display: none;
}
.footer_bottom .cont .info_pay {
  display: flex;
  margin-bottom: 10px;
}
.footer_bottom .cont .info_pay img {
  margin-right: 10px;
}
.footer_bottom .cont .info_pay p {
  line-height: 22px;
}
.footer_bottom .cont .logo_footer {
  position: absolute;
  bottom: 0;
  right: 0;
}

.login_footer {
  width: 100%;
  background-color: #f5f5f5;
  padding: 30px 0;
}
.login_footer .cont {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--sozo-txt02);
  font-size: 12px;
}
.login_footer .cont a {
  color: inherit;
}
.login_footer .cont .logo {
  width: 200px;
  height: auto;
  margin-right: 30px;
}
.login_footer .cont .company_info .info01 {
  display: flex;
  gap: 20px;
}
.login_footer .cont .company_info .info02 {
  width: 530px;
  margin: 10px 0;
}
.login_footer .cont .company_info .info02 li {
  display: inline-block;
  line-height: 20px;
}
.login_footer .cont .company_info .info02 li.bar::after {
  content: "|";
  margin: 0 5px;
}
.login_footer .cont .cs_info {
  font-size: 14px;
}
.login_footer .cont .cs_info .info01 dd {
  font-size: 20px;
  font-weight: bold;
  margin: 5px 0;
}
.login_footer .cont .cs_info .info02 {
  display: flex;
  margin-bottom: 3px;
}
.login_footer .cont .cs_info .info02 dt {
  margin-right: 5px;
}
.login_footer .cont .select_selected {
  padding: 0 16px;
}
.login_footer .cont .select_selected::after {
  top: 0;
}
.login_footer .cont .select_arrow_active::after {
  top: 6px !important;
}
.login_footer .cont .family_site_wrap {
  width: 100px;
  position: relative;
  cursor: pointer;
}
.login_footer .cont .family_site_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sozo-txt01);
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
}
.login_footer .cont .family_site_wrap.on::after {
  transform: rotate(-135deg);
  top: 6px;
}
.login_footer .cont .family_site_wrap .site_list {
  display: none;
  position: absolute;
  bottom: 25px;
  right: 0;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--sozo-border);
}
.login_footer .cont .family_site_wrap .site_list li {
  width: 150px;
  padding: 0 15px;
  box-sizing: border-box;
}
.login_footer .cont .family_site_wrap .site_list li a {
  display: block;
  width: 100%;
  line-height: 40px;
}
.login_footer .cont .family_site_wrap .site_list li:hover a {
  color: var(--sozo-main);
}
.login_footer .cont .family_site_wrap .site_list li::after {
  display: none;
}

/* 띠배너 */
.join_band_banner {
  text-align: center;
  background-color: #5657d3;
}

.shinil {
  /* 제품 리스트 */
}
.shinil_header {
  width: 100%;
  height: 140px;
  position: relative;
}
.shinil_header .top {
  width: 1280px;
  margin: 0 auto;
  padding: 10px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shinil_header .top .search {
  width: 560px;
  position: relative;
}
.shinil_header .top .search input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--sozo-main);
  border-radius: 50px;
  box-sizing: border-box;
  padding: 0 25px;
  outline: 0;
  font-size: 16px;
  color: #333;
}
.shinil_header .top .search button {
  width: 30px;
  height: 30px;
  font-size: 0;
  background: transparent url("../data/jinkoonsh/shinil/icon_search.png") no-repeat 0 0;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.shinil_header .top .etc_btn {
  display: flex;
  gap: 20px;
  text-align: center;
}
.shinil_header .top .etc_btn p {
  font-size: 12px;
  margin-top: 5px;
}
.shinil_header .top .etc_btn .cart {
  padding-right: 5px;
  position: relative;
}
.shinil_header .top .etc_btn .cart img {
  padding-right: 5px;
}
.shinil_header .top .etc_btn .cart .cunt {
  position: absolute;
  top: -5px;
  right: 0;
  border-radius: 50%;
  background-color: var(--sozo-main);
  color: #fff;
  display: block;
  width: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
}
.shinil_header .bottom {
  width: 1280px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.shinil_header .bottom ul {
  display: flex;
  transition: all 0.5s;
}
.shinil_header .bottom ul li {
  line-height: 50px;
}
.shinil_header .bottom .menu_main li {
  font-size: 16px;
  margin-right: 20px;
}
.shinil_header .bottom .menu_main .cate {
  padding-left: 25px;
  background: transparent url("../data/jinkoonsh/shinil/icon_hamburger.png") no-repeat center left;
  cursor: pointer;
}
.shinil_header .bottom .menu_sub li {
  font-size: 14px;
  margin-right: 15px;
  color: #7a7a7a;
  position: relative;
}
.shinil_header .bottom .menu_sub li::after {
  content: "|";
  position: absolute;
  right: -10px;
}
.shinil_header .bottom .menu_sub li:last-child {
  margin-right: 0;
}
.shinil_header .bottom .menu_sub li:last-child::after {
  display: none;
}
.shinil_header .wrap {
  width: 100%;
  box-shadow: 0 3px 6px rgba(146, 146, 146, 0.1), 0 3px 6px rgba(146, 146, 146, 0.1);
  position: fixed;
  top: 0;
  z-index: 9995;
  background-color: #fff;
}
.shinil_header .wrap.fix .bottom {
  height: 0;
  transition: all 0.5s;
}
.shinil_header .wrap.fix .bottom ul {
  transform: translateY(-50px);
  transition: all 0.5s;
}
.shinil_header .wrap.fix .bottom ul li {
  font-size: 0;
}
.shinil_header .wrap.fix:hover .bottom {
  height: 50px;
  transition: all 0.5s;
}
.shinil_header .wrap.fix:hover ul {
  transform: translateY(0);
  transition: all 0.5s;
}
.shinil_header .wrap.fix:hover ul.menu_main li {
  font-size: 16px;
}
.shinil_header .wrap.fix:hover ul.menu_sub li {
  font-size: 14px;
}
.shinil_header .all_cate_wrap {
  position: absolute;
  left: 0;
  top: 140px;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  box-shadow: 0 3px 6px rgba(146, 146, 146, 0.1), 0 3px 6px rgba(146, 146, 146, 0.1);
}
.shinil_header .all_cate_wrap .all_cate_cont {
  width: 1200px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  padding-left: 100px;
}
.shinil_header .all_cate_wrap .all_cate_cont a:hover {
  color: var(--sozo-main);
}
.shinil_header .all_cate_wrap .all_cate_cont .item_tit {
  font-family: var(--font-bold);
  font-size: 16px;
}
.shinil_header .all_cate_wrap .all_cate_cont .item_tit + .item_sub {
  margin-top: 15px;
}
.shinil_header .all_cate_wrap .all_cate_cont .item_sub li {
  margin-bottom: 10px;
}
.shinil_header .all_cate_wrap .all_cate_cont .item_sub li a {
  font-size: 14px;
}
.shinil_main_banner li {
  width: 100%;
  text-align: center;
}
.shinil_main_banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.shinil_notice {
  width: 100%;
  height: 70px;
  background-color: #f4f4f4;
}
.shinil_notice .wrap {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
.shinil_notice .wrap .notice_swiper {
  width: 100%;
  display: flex;
}
.shinil_notice .wrap .notice_swiper dt {
  font-size: 16px;
  line-height: 70px;
  padding-right: 20px;
  font-family: var(--font-bold);
}
.shinil_notice .wrap .notice_swiper dd {
  width: calc(100% - 100px);
}
.shinil_notice .wrap .notice_swiper dd .swiper-container {
  width: 100%;
  height: 70px;
  overflow: hidden;
}
.shinil_notice .wrap .notice_swiper dd .swiper-container .swiper-slide {
  width: 90%;
  font-size: 16px;
  line-height: 70px;
  color: var(--sozo-txt01);
  overflow: hidden;
}
.shinil_notice .wrap .notice_swiper dd .swiper-container .swiper-button-next, .shinil_notice .wrap .notice_swiper dd .swiper-container .swiper-button-prev {
  width: 11px;
  height: 10px;
  background-image: url("../data/jinkoonsh/shinil/icon_arrow01.png");
  background-size: 100%;
  position: absolute;
  left: unset;
}
.shinil_notice .wrap .notice_swiper dd .swiper-container .swiper-button-next {
  right: 0;
  top: 40px;
  bottom: unset;
}
.shinil_notice .wrap .notice_swiper dd .swiper-container .swiper-button-prev {
  transform: scaleY(-1);
  right: 0;
  bottom: 20px;
  top: unset;
}
.shinil_my {
  width: 1280px;
  margin: 0 auto;
}
.shinil_my .my_table {
  width: 100%;
  border: 2px solid #8d959f;
  border-radius: 10px;
}
.shinil_my .my_table td {
  padding: 20px 30px;
  border: 1px solid var(--sozo-border);
  border-width: 0 1px 1px 0;
}
.shinil_my .my_table td:last-child {
  border-width: 0 0 1px 0;
}
.shinil_my .my_table td dt {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}
.shinil_my .my_table td dd {
  color: var(--sozo-main);
  font-size: 16px;
  font-weight: bold;
}
.shinil_my .my_table td dd span {
  font-size: 14px;
}
.shinil_my .my_table .user {
  padding: 0;
  background-color: #f7f9fa;
  border-radius: 10px 0 0 10px;
  border: 0;
}
.shinil_my .my_table .user .cont {
  padding: 30px 0 70px 30px;
  display: flex;
  gap: 25px;
  position: relative;
}
.shinil_my .my_table .user .cont img {
  height: 26px;
  margin-top: 10px;
}
.shinil_my .my_table .user .cont dt {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}
.shinil_my .my_table .user .cont dd {
  font-size: 16px;
}
.shinil_my .my_table .user .cont .balloon {
  width: 200px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 1px solid #8d959f;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(146, 146, 146, 0.2), 0 3px 6px rgba(146, 146, 146, 0.2);
}
.shinil_my .my_table .user .cont .balloon_arrow {
  display: block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid #8d959f;
  border-width: 1px 0 0 1px;
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.shinil_my .my_table .user .cont .balloon dt {
  font-size: 14px;
  color: var(--sozo-txt01);
  font-weight: normal;
}
.shinil_my .my_table .user .cont .balloon dd {
  color: #333;
  display: flex;
  justify-content: space-between;
}
.shinil_my .my_table .user .cont .balloon dd .btn_detail {
  padding: 0 10px;
  line-height: 20px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  font-size: 12px;
  color: #848484;
  display: inline-block;
  height: 20px;
  margin-left: 5px;
  font-weight: normal;
}
.shinil_my .my_table .level_bar_wrap {
  border: 0;
}
.shinil_my .my_table .level_bar_wrap dl {
  display: flex;
  align-items: center;
}
.shinil_my .my_table .level_bar_wrap dl dt {
  width: 200px;
  font-size: 16px;
  margin-bottom: 0;
}
.shinil_my .my_table .level_bar_wrap dl dd {
  width: calc(100% - 200px);
}
.shinil_my .my_table .level_bar_wrap dl dd .level_bg {
  width: 100%;
  height: 7px;
  background-color: #f4f4f4;
  border-radius: 10px;
  margin-bottom: 15px;
}
.shinil_my .my_table .level_bar_wrap dl dd .level_bg .bar {
  width: 0;
  height: 100%;
  background-color: #d4d0c9;
  position: relative;
  border-radius: 10px;
}
.shinil_my .my_table .level_bar_wrap dl dd .level_bg .bar img {
  display: block;
  width: 20px;
  height: auto;
  position: absolute;
  right: 0;
  top: -5px;
}
.shinil_my .my_table .level_txt {
  font-size: 14px;
  color: var(--sozo-txt01);
  display: flex;
  justify-content: space-between;
}
.shinil_my .my_cont_wrap {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 2px solid #8d959f;
  margin-bottom: 80px;
}
.shinil_my .my_cont_wrap > div {
  width: 19%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.shinil_my .my_cont_wrap > div.profile {
  width: 24%;
  background-color: #f7f9fa;
  border-radius: 8px 0 0 8px;
  padding: 0 0 0 30px;
}
.shinil_my .my_cont_wrap > div.profile .info {
  display: flex;
  align-items: center;
}
.shinil_my .my_cont_wrap > div.profile .info img {
  width: 30px;
  height: 26px;
  margin-right: 10px;
}
.shinil_my .my_cont_wrap > div.profile .info p {
  font-size: 14px;
}
.shinil_my .my_cont_wrap > div.profile .info p.name {
  font-size: 20px;
  margin-bottom: 5px;
}
.shinil_my .my_cont_wrap > div.profile .info p strong {
  font-family: var(--font-bold);
}
.shinil_my .my_cont_wrap > div.profile .info p.drugstore_name {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  white-space: nowrap;
  width: 195px;
  margin-bottom: 5px;
}
.shinil_my .my_cont_wrap > div.profile .btn_detail {
  margin: 5px 0 0 40px;
}
.shinil_my .my_cont_wrap > div.box {
  position: relative;
}
.shinil_my .my_cont_wrap > div.box::after {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  position: absolute;
  top: 50%;
  right: 0;
  background-color: var(--sozo-border);
  transform: translateY(-50%);
}
.shinil_my .my_cont_wrap > div.box:last-child {
  border-right: 0;
}
.shinil_my .my_cont_wrap > div.box:last-child::after {
  display: none;
}
.shinil_my .my_cont_wrap > div.box dl {
  width: 100%;
}
.shinil_my .my_cont_wrap > div.box dt {
  font-size: 16px;
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
  position: relative;
}
.shinil_my .my_cont_wrap > div.box dt .deta {
  font-size: 14px;
  color: var(--sozo-txt01);
  position: absolute;
  left: 0;
  top: 26px;
}
.shinil_my .my_cont_wrap > div.box dd {
  font-size: 24px;
  color: var(--sozo-main);
}
.shinil_my .my_cont_wrap > div.box dd span:nth-child(1) {
  font-size: 24px;
}
.shinil_my .my_cont_wrap > div.box dd span:nth-child(2) {
  font-size: 16px;
  margin-left: 3px;
}
.shinil_cont_banner {
  width: 1280px;
  margin: 70px auto;
}
.shinil_cont_banner img {
  width: 100%;
  border-radius: 8px;
}
.shinil_slider_pro {
  width: 1280px;
  margin: 0 auto;
}
.shinil_slider_pro .cate_wrap {
  position: relative;
}
.shinil_slider_pro .cate_wrap .all_pro {
  color: var(--sozo-txt01);
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 18px;
}
.shinil_tab_wrap .tab_btn {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.shinil_tab_wrap .tab_btn li {
  color: #8d959f;
  font-size: 16px;
  padding: 15px 30px;
  box-sizing: border-box;
  background-color: #e8e8e8;
  border-radius: 40px;
  cursor: pointer;
  white-space: nowrap;
}
.shinil_tab_wrap .tab_btn li.on {
  background-color: var(--sozo-main);
  color: #fff;
}
.shinil_tab_wrap .tab_box {
  display: none;
}
.shinil_tab_wrap .tab_box.on {
  display: block;
}
.shinil_pro_type01 .pro_img {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center center;
  cursor: pointer;
  transition: background-size 0.3s ease;
  -moz-transition: background-size 0.3s ease;
  -web-kit-transition: background-size 0.3s ease;
}
.shinil_pro_type01 .pro_img::after {
  content: "";
  display: block;
  padding-bottom: 90%;
}
.shinil_pro_type01 .pro_img img {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
}
.shinil_pro_type01 .pro_img:hover {
  background-size: 100%;
  transition: background-size 0.3s ease;
  -moz-transition: background-size 0.3s ease;
  -web-kit-transition: background-size 0.3s ease;
}
.shinil_pro_type01 .pro_txt p {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shinil_pro_type01 .pro_txt .won {
  margin-top: 10px;
  font-family: var(--font-bold);
}
.shinil_pro_type01 + .pro_arrow .swiper-button-next, .shinil_pro_type01 + .pro_arrow .swiper-button-prev {
  width: 37px;
  height: 69px;
  background-image: url("../data/jinkoonsh/shinil/icon_arrow02.png");
  background-size: 100%;
  position: absolute;
  bottom: unset;
}
.shinil_pro_type01 + .pro_arrow .swiper-button-prev {
  left: -70px;
  top: 180px;
  bottom: unset;
}
.shinil_pro_type01 + .pro_arrow .swiper-button-next {
  transform: scaleX(-1);
  right: -70px;
  top: 180px;
  left: unset;
}
.shinil_pro_type01 .pay_wrap {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.shinil_pro_type01 .pay_wrap .discount {
  color: var(--sozo-red);
}
.shinil_pro_type01 .pay_wrap .discount span {
  font-size: 12px;
  margin-right: 5px;
}
.shinil_pro_type01 .pay_wrap .won {
  margin-top: 0;
}
.shinil_pro_type01 .pay_wrap + .cancel_line {
  font-size: 14px;
  color: var(--sozo-txt01);
  text-decoration: line-through;
}
.shinil_pro_type02 li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.shinil_pro_type02 .pro_info {
  display: flex;
  align-items: center;
}
.shinil_pro_type02 .pro_img {
  width: 125px;
  position: relative;
  border: 1px solid var(--sozo-border);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 15px 10px 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.shinil_pro_type02 .pro_img::after {
  content: "";
  display: block;
  padding-bottom: 90%;
}
.shinil_pro_type02 .pro_img img {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
}
.shinil_pro_type02 .pro_txt {
  width: 320px;
  word-break: keep-all;
}
.shinil_pro_type02 .pro_txt p {
  font-size: 16px;
}
.shinil_pro_type02 .pro_txt p.won {
  font-family: var(--font-bold);
  margin-top: 15px;
}
.shinil_pro_type02 .pay_wrap {
  display: flex;
  align-items: center;
  margin: 15px 0 3px;
}
.shinil_pro_type02 .pay_wrap .discount {
  color: var(--sozo-red);
}
.shinil_pro_type02 .pay_wrap .discount span {
  font-size: 12px;
  margin-right: 5px;
}
.shinil_pro_type02 .pay_wrap p.won {
  margin-top: 0;
}
.shinil_pro_type02 .pay_wrap + .cancel_line {
  font-size: 14px;
  color: var(--sozo-txt01);
  text-decoration: line-through;
}
.shinil_section_w100per {
  width: 100%;
  background-color: #f4f4f4;
  padding: 0 0 70px 0;
}
.shinil_section_w100per .set_soldout {
  background-color: rgba(244, 244, 244, 0.7);
}
.shinil_section_w100per .set_soldout::before {
  top: 100px;
}
.shinil_section_w100per .set_soldout::after {
  top: 150px;
}
.shinil_section_vertical {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  padding-top: 80px;
}
.shinil_section_vertical .left {
  width: calc(50% - 50px);
  border-right: 1px solid var(--sozo-border);
  margin-right: 50px;
  padding-right: 50px;
}
.shinil_section_vertical .right {
  width: calc(50% - 50px);
}
.shinil_section_vertical .shinil_sec_tit {
  padding-top: 0;
}
.shinil_section_vertical .set_soldout::before {
  width: 30px;
  height: 30px;
  top: 25px;
}
.shinil_section_vertical .set_soldout::after {
  font-size: 16px;
  top: 60px;
}
.shinil_section_horizon {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.shinil_banner_wrap {
  padding-top: 80px;
  margin-top: 80px;
}
.shinil_banner_slider {
  width: 900px;
  position: relative;
}
.shinil_banner_slider .swiper-button-next, .shinil_banner_slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: #fff url("../data/jinkoonsh/shinil/icon_arrow03.png") no-repeat center center;
  background-size: 20px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(146, 146, 146, 0.1), 0 3px 6px rgba(146, 146, 146, 0.1);
}
.shinil_banner_slider .swiper-button-next {
  transform: rotate(-90deg);
  right: -15px;
}
.shinil_banner_slider .swiper-button-prev {
  transform: rotate(90deg);
  left: -20px;
}
.shinil_banner_slider img {
  border-radius: 8px;
  width: 100%;
}
.shinil_notice_wrap {
  width: 750px;
  margin-top: 80px;
}
.shinil_notice_wrap h2 {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.shinil_notice_wrap h2 .all_pro {
  color: var(--sozo-txt01);
  font-size: 16px;
  font-weight: normal;
}
.shinil_notice_wrap ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  padding-left: 10px;
}
.shinil_notice_wrap ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background-color: #333;
  border-radius: 50%;
}
.shinil_notice_wrap ul li p {
  font-size: 14px;
}
.shinil_notice_wrap ul li p.data {
  color: var(--sozo-txt01);
}
.shinil_cs_wrap {
  width: 425px;
  height: 200px;
  border: 2px solid #c3c7cc;
  margin-top: 80px;
  display: flex;
  align-items: center;
  padding: 0 35px;
  box-sizing: border-box;
}
.shinil_cs_wrap img {
  margin-right: 30px;
}
.shinil_cs_wrap h2 {
  font-size: 18px;
  font-weight: 400;
}
.shinil_cs_wrap dl dt {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
}
.shinil_cs_wrap dl dd {
  font-size: 14px;
  color: var(--sozo-txt01);
  margin-bottom: 5px;
}
.shinil_footer {
  background-color: #f8f8f8;
  margin-top: 100px;
}
.shinil_footer footer {
  color: var(--sozo-txt01);
  font-size: 12px;
}
.shinil_footer footer .top {
  width: 100%;
  height: 40px;
  border: 1px solid var(--sozo-border);
  border-width: 1px 0;
}
.shinil_footer footer .top .cont {
  width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shinil_footer footer .top .cont ul {
  display: flex;
}
.shinil_footer footer .top .cont ul li {
  position: relative;
  padding: 0 10px;
}
.shinil_footer footer .top .cont ul li::after {
  content: "|";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.shinil_footer footer .top .cont ul li:first-child {
  padding-left: 0;
}
.shinil_footer footer .top .cont ul li:last-child::after {
  display: none;
}
.shinil_footer footer .top .cont .family_site_wrap {
  width: 100px;
  position: relative;
  cursor: pointer;
}
.shinil_footer footer .top .cont .family_site_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sozo-txt01);
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
}
.shinil_footer footer .top .cont .family_site_wrap.on::after {
  transform: rotate(-135deg);
  top: 6px;
}
.shinil_footer footer .top .cont .family_site_wrap .site_list {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--sozo-border);
}
.shinil_footer footer .top .cont .family_site_wrap .site_list li {
  width: 150px;
  padding: 0 15px;
  box-sizing: border-box;
}
.shinil_footer footer .top .cont .family_site_wrap .site_list li a {
  display: block;
  width: 100%;
  line-height: 40px;
}
.shinil_footer footer .top .cont .family_site_wrap .site_list li:hover a {
  color: var(--sozo-main);
}
.shinil_footer footer .top .cont .family_site_wrap .site_list li::after {
  display: none;
}
.shinil_footer footer .bottom {
  width: 1280px;
  margin: 0 auto;
  padding: 60px 0;
}
.shinil_footer footer .bottom img {
  margin-bottom: 20px;
}
.shinil_footer footer .bottom ul {
  display: flex;
  margin-bottom: 5px;
}
.shinil_footer footer .bottom ul li {
  position: relative;
  padding: 0px 8px 0 5px;
}
.shinil_footer footer .bottom ul li::after {
  content: "|";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.shinil_footer footer .bottom ul li:first-child {
  padding-left: 0;
}
.shinil_footer footer .bottom ul li:last-child::after {
  display: none;
}
.shinil_footer footer .bottom .copyright {
  margin-top: 15px;
}
.shinil_select {
  position: relative;
}
.shinil_select select {
  display: none;
}
.shinil_select .select_hide {
  display: none;
}
.shinil_select .select_selected {
  background: transparent;
  color: var(--sozo-txt01);
  padding: 8px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}
.shinil_select .select_selected::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sozo-txt01);
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
}
.shinil_select .select_selected.select_arrow_active::after {
  transform: rotate(-135deg);
  top: 13px;
}
.shinil_select .select_items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  right: -10px;
  z-index: 99;
  width: 150px;
  border-radius: 8px;
  border: 1px solid var(--sozo-border);
}
.shinil_select .select_items div {
  color: var(--sozo-txt01);
  padding: 10px;
  cursor: pointer;
  user-select: none;
}
.shinil_select .select_items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.shinil_select .select .same_as_selected {
  background-color: rgba(0, 0, 0, 0.1);
}
.shinil_left, .shinil_right {
  width: 200px;
  position: fixed;
  top: 200px;
  left: 10px;
  z-index: 999;
  transition: all 0.5s;
}
.shinil_left .mini_banner .swiper-pagination-bullet-active, .shinil_right .mini_banner .swiper-pagination-bullet-active {
  background: #fff;
}
.shinil_left .mini_banner .swiper-slide img, .shinil_right .mini_banner .swiper-slide img {
  width: 100%;
  border-radius: 8px;
}
.shinil_left .cart_table, .shinil_right .cart_table {
  background-color: #fff;
  margin-top: 10px;
  border-radius: 8px;
  padding: 20px 15px;
  border: 1px solid var(--sozo-border);
}
.shinil_left .cart_table h3, .shinil_right .cart_table h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.shinil_left .cart_table table tr th, .shinil_left .cart_table table tr td, .shinil_right .cart_table table tr th, .shinil_right .cart_table table tr td {
  font-size: 12px;
  padding: 5px;
  color: var(--sozo-txt01);
}
.shinil_left .cart_table table tr th, .shinil_right .cart_table table tr th {
  background-color: #f4f4f4;
  font-weight: normal;
}
.shinil_left .cart_table table tr td, .shinil_right .cart_table table tr td {
  border-bottom: 1px solid var(--sozo-border02);
}
.shinil_left .cart_table table tr td.center, .shinil_right .cart_table table tr td.center {
  text-align: center;
}
.shinil_left .cart_table table tr td.right, .shinil_right .cart_table table tr td.right {
  text-align: right;
}
.shinil_left .cart_table table tr td.left, .shinil_right .cart_table table tr td.left {
  text-align: left;
}
.shinil_left .cart_table table tr td .pro_tit, .shinil_right .cart_table table tr td .pro_tit {
  width: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shinil_left.bottom_fix, .shinil_right.bottom_fix {
  opacity: 0;
  transition: all 0.5s;
}
.shinil_left.wing_banner .wing_close, .shinil_right.wing_banner .wing_close {
  position: absolute;
  width: 100%;
  line-height: 30px;
  text-align: center;
  left: 0;
  bottom: 0;
  background-color: #f4f4f4;
  border-radius: 0 0 8px 8px;
  font-weight: bold;
  color: var(--sozo-txt01);
  cursor: pointer;
  font-size: 12px;
  border: 1px solid var(--sozo-border);
  border-top: 0;
  box-sizing: border-box;
}
.shinil_left {
  width: 220px;
}
.shinil_left .cart_table table {
  margin-bottom: 20px;
}
.shinil_left .cart_table table thead {
  width: 190px;
  display: block;
}
.shinil_left .cart_table table thead tr th:nth-child(1) {
  width: 75px;
}
.shinil_left .cart_table table thead tr th:nth-child(2) {
  width: 20%;
}
.shinil_left .cart_table table thead tr th:nth-child(3) {
  width: 40%;
}
.shinil_left .cart_table table tbody {
  width: 190px;
  max-height: 150px;
  overflow-y: scroll;
  display: block;
}
.shinil_left .cart_table table tbody tr td:nth-child(1) {
  width: 75px;
}
.shinil_left .cart_table table tbody tr td:nth-child(2) {
  width: 20%;
}
.shinil_left .cart_table table tbody tr td:nth-child(3) {
  width: 40%;
}
.shinil_left .cart_table table tbody::-webkit-scrollbar {
  width: 5px;
}
.shinil_left .cart_table table tbody::-webkit-scrollbar-thumb {
  border-radius: 20px;
}
.shinil_left .cart_table table tbody::-webkit-scrollbar-track {
  background-color: #fff;
}
.shinil_left .mini_banner .swiper-slide {
  width: 100% !important;
}
.shinil_right {
  width: 170px;
  left: unset;
  right: 10px;
}
.shinil_right .quick_menu {
  background-color: #fff;
  margin-top: 10px;
  border-radius: 8px;
  padding: 10px 10px 40px 10px;
  border: 1px solid var(--sozo-border);
  position: relative;
}
.shinil_right .quick_menu .pay {
  background-color: #f4f4f4;
  padding: 15px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.shinil_right .quick_menu .pay a {
  font-size: 14px;
  font-weight: bold;
  color: var(--sozo-txt01);
  display: block;
  border-bottom: 1px solid var(--sozo-border);
  padding: 0 5px 5px 5px;
  margin-bottom: 10px;
  position: relative;
}
.shinil_right .quick_menu .pay a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid #bababa;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  position: absolute;
  right: 5px;
  top: 3px;
}
.shinil_right .quick_menu .pay dl {
  font-size: 14px;
  padding: 0 5px;
}
.shinil_right .quick_menu .pay dl dt {
  color: var(--sozo-txt01);
  margin-bottom: 5px;
}
.shinil_right .quick_menu .pay dl dd {
  color: var(--sozo-main);
}
.shinil_right .quick_menu .menu {
  padding: 0 5px;
}
.shinil_right .quick_menu .menu li {
  border-bottom: 1px solid var(--sozo-border02);
  padding: 5px;
  color: var(--sozo-txt01);
  font-size: 14px;
}
.shinil_right .quick_menu .menu li:last-child {
  border: 0;
}
.shinil_right .quick_menu .top_btn {
  position: absolute;
  width: 100%;
  line-height: 30px;
  text-align: center;
  left: 0;
  bottom: 0;
  background-color: #f4f4f4;
  border-radius: 0 0 8px 8px;
  font-weight: bold;
  color: var(--sozo-txt01);
}
.shinil_another {
  left: unset;
  right: 20px;
}
.shinil_pro_wrap {
  width: 1280px;
  height: calc(100vh - 150px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.shinil_pro_wrap .left {
  width: 410px;
  height: 100%;
}
.shinil_pro_wrap .left .page_name {
  padding: 20px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.shinil_pro_wrap .left .page_name .select_cate {
  margin-left: 5px;
}
.shinil_pro_wrap .left .page_name .select_cate .select_selected {
  padding: 0 30px 0 0;
  color: #333;
}
.shinil_pro_wrap .left .page_name .select_cate .select_selected::after {
  width: 6px;
  height: 6px;
  top: 5px;
  right: 6px;
}
.shinil_pro_wrap .left .page_name .select_cate .select_selected::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #bdbdbd;
  position: absolute;
  right: 0;
  top: 0;
}
.shinil_pro_wrap .left .page_name .select_cate .select_selected.select_arrow_active::after {
  top: 8px;
}
.shinil_pro_wrap .left .page_name .select_cate .select_items {
  margin-top: 10px;
}
.shinil_pro_wrap .left .etc_box {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.shinil_pro_wrap .left .etc_box .favorite_btn {
  padding: 8px 15px 8px 35px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  font-size: 14px;
  color: var(--sozo-txt01);
  position: relative;
}
.shinil_pro_wrap .left .etc_box .favorite_btn::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: transparent url("/../data/jinkoonsh/shinil/ico_star.png") 0 0 no-repeat;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.shinil_pro_wrap .left .etc_box .search {
  position: relative;
}
.shinil_pro_wrap .left .etc_box .search button {
  width: 20px;
  height: 20px;
  background: transparent url("/../data/jinkoonsh/shinil/icon_search_g.png") 0 0 no-repeat;
  font-size: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.shinil_pro_wrap .left .etc_box .search input {
  width: 185px;
  height: 36px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
  padding: 8px 10px;
}
.shinil_pro_wrap .left .etc_box .search input:focus {
  border-color: var(--sozo-main);
  outline: 0;
}
.shinil_pro_wrap .left .etc_box .search input:focus + button {
  background: transparent url("/../data/jinkoonsh/shinil/icon_search.png") 0 0 no-repeat;
  background-size: 100%;
}
.shinil_pro_wrap .left .etc_box .array {
  width: 111px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  font-size: 14px;
  color: var(--sozo-txt01);
}
.shinil_pro_wrap .left .etc_box .array .select_selected::after {
  top: 10px;
  right: 15px;
}
.shinil_pro_wrap .left .etc_box .array .select_selected.select_arrow_active::after {
  top: 15px;
}
.shinil_pro_wrap .left .etc_box .array .select_items {
  margin-top: 5px;
  right: -1px;
  border-radius: 4px;
  width: 111px;
}
.shinil_pro_wrap .left .pro_list {
  height: calc(100% - 100px);
  overflow-y: auto;
}
.shinil_pro_wrap .left .pro_list::-webkit-scrollbar {
  width: 5px;
}
.shinil_pro_wrap .left .pro_list::-webkit-scrollbar-thumb {
  border-radius: 20px;
}
.shinil_pro_wrap .left .pro_list::-webkit-scrollbar-track {
  background-color: #fff;
}
.shinil_pro_wrap .left .pro_box {
  border: 1px solid var(--sozo-border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 0 3px 6px rgba(146, 146, 146, 0.1), 0 3px 6px rgba(146, 146, 146, 0.1);
}
.shinil_pro_wrap .left .pro_box .info {
  padding: 20px;
  display: flex;
  position: relative;
  border-radius: 8px;
}
.shinil_pro_wrap .left .pro_box .info .pro_img {
  width: 60px;
  height: 60px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  background-color: #fff;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.shinil_pro_wrap .left .pro_box .info .pro_tit {
  padding: 5px 10px;
}
.shinil_pro_wrap .left .pro_box .info .same_btn {
  border: 1px solid var(--sozo-border);
  font-size: 12px;
  color: var(--sozo-txt01);
  border-radius: 4px;
  background-color: #fff;
  display: inline-block;
  padding: 5px 10px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.shinil_pro_wrap .left .pro_box .option {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--sozo-border);
}
.shinil_pro_wrap .left .pro_box .option dt {
  padding-left: 20px;
}
.shinil_pro_wrap .left .pro_box .option dd {
  padding-right: 20px;
}
.shinil_pro_wrap .left .pro_box .option dd p {
  display: inline-block;
}
.shinil_pro_wrap .left .pro_box .option dd .favorite_btn {
  width: 15px;
  height: 15px;
  background: transparent url("/../data/jinkoonsh/shinil/ico_star.png") 0 0 no-repeat;
  position: relative;
  top: -2px;
  background-size: 100%;
}
.shinil_pro_wrap .left .pro_box .option dd .favorite_btn.act {
  background: transparent url("/../data/jinkoonsh/shinil/ico_star_on.png") 0 0 no-repeat;
}
.shinil_pro_wrap .left .pro_box.on {
  border-color: var(--sozo-main);
}
.shinil_pro_wrap .left .pro_box.on .info {
  background-color: #f8fbf4;
}
.shinil_pro_wrap .left .pro_box.on .option {
  border-top-color: var(--sozo-main);
}
.shinil_pro_wrap .left .pro_box.on dl.selc {
  background-color: #f6f9e6;
  font-weight: bold;
}
.shinil_pro_wrap .left .pro_box.on dl:last-child {
  border-radius: 0 0 8px 8px;
}
.shinil_pro_wrap .right {
  width: 850px;
  height: 100%;
}
.shinil_pro_wrap .right .pro_info_wrap {
  display: flex;
  gap: 10px;
  padding-top: 61px;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_img {
  width: 100px;
  height: 100px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_img_hover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: #fff;
  text-align: center;
  line-height: 100px;
  font-size: 14px;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_img:hover .pro_img_hover {
  opacity: 1;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_info {
  width: 420px;
  height: 100px;
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  position: relative;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_info .down_btn {
  font-size: 12px;
  border: 1px solid var(--sozo-border);
  color: var(--sozo-txt01);
  border-radius: 4px;
  padding: 5px 10px;
  position: absolute;
  left: 0;
  top: -35px;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_info dl dt {
  font-size: 14px;
  border-bottom: 1px solid var(--sozo-border);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_info dl dd {
  font-size: 12px;
  color: var(--sozo-txt01);
  margin-bottom: 5px;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_info dl dd:last-child {
  margin-bottom: 0;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year {
  width: calc(100% - 540px);
  height: 100px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year .tit {
  font-size: 14px;
  position: absolute;
  left: 0;
  top: -25px;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table {
  font-size: 12px;
  width: 100%;
  height: 100px;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr th {
  background-color: #f4f4f4;
  padding: 5px 8px;
  color: var(--sozo-txt01);
  font-weight: 400;
  text-align: center;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr th:nth-child(1) {
  width: 25%;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr th:nth-child(2) {
  width: 25%;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr th:nth-child(3) {
  width: 20%;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr th:nth-child(4) {
  width: 30%;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr td {
  padding: 5px 8px;
  text-align: right;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr td.center {
  text-align: center;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr td:nth-child(1) {
  width: 25%;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr td:nth-child(2) {
  width: 25%;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr td:nth-child(3) {
  width: 20%;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tr td:nth-child(4) {
  width: 30%;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tbody {
  display: block;
  max-height: 70px;
  overflow-y: auto;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tbody tr {
  display: table;
  width: 100%;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tbody::-webkit-scrollbar {
  width: 5px;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tbody::-webkit-scrollbar-thumb {
  border-radius: 20px;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table tbody::-webkit-scrollbar-track {
  background-color: #fff;
}
.shinil_pro_wrap .right .pro_info_wrap .pro_1year table thead {
  display: table;
  width: 308px;
}
.shinil_pro_wrap .right .banner_wrap {
  margin: 20px 0;
}
.shinil_pro_wrap .right .banner_wrap img {
  border-radius: 8px;
}
.shinil_pro_wrap .right .pro_detail table {
  width: 100%;
  font-size: 14px;
}
.shinil_pro_wrap .right .pro_detail table tr th {
  background-color: #f4f4f4;
  padding: 10px 0;
  text-align: center;
  color: var(--sozo-txt01);
  font-weight: 400;
}
.shinil_pro_wrap .right .pro_detail table tr td {
  padding: 10px;
  border-bottom: 1px solid var(--sozo-border);
  text-align: center;
}
.shinil_pro_wrap .right .pro_detail table tr td .ea_box {
  display: flex;
  position: relative;
}
.shinil_pro_wrap .right .pro_detail table tr td .ea_box input {
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  text-align: center;
  width: 80px;
  line-height: 26px;
  box-sizing: border-box;
  margin-right: 5px;
  outline: none;
}
.shinil_pro_wrap .right .pro_detail table tr td .ea_box input:focus {
  border-color: var(--sozo-main);
}
.shinil_pro_wrap .right .pro_detail table tr td .ea_box .cart_btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  font-size: 0;
  background: transparent url("/../data/jinkoonsh/shinil/icon_cart_mini.png") no-repeat center center;
  background-size: auto;
}
.shinil_pro_wrap .right .pro_detail table tr td .ea_box .balloon {
  width: 80px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid var(--sozo-border);
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(146, 146, 146, 0.2), 0 3px 6px rgba(146, 146, 146, 0.2);
}
.shinil_pro_wrap .right .pro_detail table tr td .ea_box .balloon_arrow {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid var(--sozo-border);
  border-width: 1px 0 0 1px;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.shinil_pro_wrap .right .pro_detail table tr td .ea_box .balloon dt {
  font-size: 14px;
  color: var(--sozo-txt01);
  font-weight: normal;
}
.shinil_pro_wrap .right .pro_detail table tr td .ea_box .balloon dd {
  color: #333;
  display: flex;
  justify-content: space-between;
}
.shinil_pro_wrap .right .pro_detail table tr td .ea_box .balloon dd .btn_detail {
  padding: 0 10px;
  line-height: 20px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  font-size: 12px;
  color: #848484;
  display: inline-block;
  height: 20px;
  margin-left: 5px;
  font-weight: normal;
}
.shinil_pro_wrap .right .pro_detail table tr td .pay_btn {
  padding: 7px 10px;
  border: 1px solid var(--sozo-border);
  color: var(--sozo-txt01);
  border-radius: 4px;
}
.shinil_pro_wrap02 .content {
  width: 1280px;
  margin: 30px auto 0;
}
.shinil_pop_mask {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999998;
}
.shinil_pop_wrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 999999;
}
.shinil_pop_wrap.active {
  width: 700px;
  padding: 20px 20px 30px 20px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 5px 6px 15px rgba(0, 0, 0, 0.31);
}
.shinil_pop_wrap .cont {
  position: relative;
}
.shinil_pop_wrap .cont .tit {
  font-size: 24px;
  border-bottom: 2px solid var(--sozo-main);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.shinil_pop_wrap .cont .info01 {
  display: flex;
  gap: 15px;
}
.shinil_pop_wrap .cont .info01 .img {
  width: 100px;
  height: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid var(--sozo-border);
  border-radius: 8px;
  box-sizing: border-box;
}
.shinil_pop_wrap .cont .info01 .txt {
  padding: 10px 0;
  font-size: 14px;
}
.shinil_pop_wrap .cont .info01 .txt li {
  margin-bottom: 5px;
}
.shinil_pop_wrap .cont .info01 .txt li span {
  display: inline-block;
  width: 50px;
}
.shinil_pop_wrap .cont .info02 {
  font-size: 14px;
  line-height: 21px;
}
.shinil_pop_wrap .cont .info02 .section_tit {
  width: 100%;
  border: 1px solid var(--sozo-border);
  border-width: 1px 0;
  line-height: 35px;
  font-size: 14px;
  text-align: center;
  margin: 20px 0;
}
.shinil_pop_wrap .cont .info02 .detail_cont {
  max-height: 300px;
  overflow-x: auto;
}
.shinil_pop_wrap .cont .info02 .detail_cont::-webkit-scrollbar {
  width: 5px;
}
.shinil_pop_wrap .cont .info02 .detail_cont::-webkit-scrollbar-thumb {
  border-radius: 20px;
}
.shinil_pop_wrap .cont .info02 .detail_cont::-webkit-scrollbar-track {
  background-color: #fff;
}
.shinil_pop_close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 0;
  background: transparent url("/../data/jinkoonsh/shinil/ico_close.png") no-repeat center center;
  background-size: auto;
}

.cate_banner_wrap {
  width: 100%;
}
.cate_banner_wrap img {
  display: block;
  margin: 0 auto;
}

.sublist_banner {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.sublist_banner .center {
  position: absolute;
  top: 0;
  right: -200%;
  bottom: 0;
  left: -200%;
}
.sublist_banner .center img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.pro_wrap .grid_pro_list ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px 15px;
}
.pro_wrap .grid_pro_list ul li {
  width: 305px;
  position: relative;
}
.pro_wrap .grid_pro_list .img_wrap {
  position: relative;
}
.pro_wrap .grid_pro_list .img_wrap .square {
  transition: background-size 0.3s ease;
  -moz-transition: background-size 0.3s ease;
  -web-kit-transition: background-size 0.3s ease;
}
.pro_wrap .grid_pro_list .img_wrap .square:hover {
  background-size: 120%;
  transition: background-size 0.3s ease;
  -moz-transition: background-size 0.3s ease;
  -web-kit-transition: background-size 0.3s ease;
}
.pro_wrap .grid_pro_list .txt_wrap {
  font-size: 16px;
}
.pro_wrap .grid_pro_list .txt_wrap .top {
  display: flex;
  margin: 10px 0 5px;
}
.pro_wrap .grid_pro_list .txt_wrap .top p {
  width: 300px;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro_wrap .grid_pro_list .txt_wrap .bottom div {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.pro_wrap .grid_pro_list .txt_wrap .bottom .discount_txt {
  color: var(--sozo-red);
  font-size: 16px;
  margin-right: 5px;
}
.pro_wrap .grid_pro_list .txt_wrap .bottom .discount_txt span {
  font-size: 12px;
}
.pro_wrap .grid_pro_list .txt_wrap .bottom .cancel_line {
  font-size: 14px;
  color: var(--sozo-txt01);
  text-decoration: line-through;
  margin-top: 2px;
}
.pro_wrap .grid_pro_list .txt_wrap .check_type {
  margin-right: 8px;
}

.area_tit {
  width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto 0;
}
.area_tit p {
  font-size: 30px;
  font-family: var(--font-medium);
}
.area_tit .search {
  position: relative;
}
.area_tit .search input {
  width: 350px;
  height: 35px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  padding: 0 15px;
}
.area_tit .search button {
  width: 35px;
  height: 35px;
  display: block;
  background: transparent url("/../images/icon/icon_search_g.png") no-repeat center center;
  background-size: auto;
  position: absolute;
  top: 0;
  right: 5px;
}

.set_soldout {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.set_soldout::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #333;
  background: transparent url("/../images/icon/ico_close.png") no-repeat center center;
  background-size: 50%;
  position: absolute;
  left: 50%;
  top: 150px;
  transform: translateX(-50%);
}
.set_soldout::after {
  content: "Sold Out";
  display: block;
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 200px;
  transform: translateX(-50%);
}

.best_wrap .tit_area {
  width: 100%;
  text-align: center;
  margin: 60px 0 40px;
}
.best_wrap .tit_area h2 span {
  font-size: 36px;
  font-family: var(--font-bold);
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}
.best_wrap .category_area {
  display: none;
}
.best_wrap .pdBtnBoxWrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cate_btn_wrap ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cate_btn_wrap ul li {
  color: #8d959f;
  font-size: 16px;
  padding: 15px 30px;
  box-sizing: border-box;
  background-color: #e8e8e8;
  border-radius: 40px;
  cursor: pointer;
  white-space: nowrap;
}
.cate_btn_wrap ul li.on {
  background-color: var(--sozo-main);
  color: #fff;
}

.shinil_sec_tit {
  font-size: 34px;
  font-family: var(--font-bold);
  padding: 80px 0 30px;
  position: relative;
}
.shinil_sec_tit .sub {
  font-size: 20PX;
  color: var(--sozo-txt01);
  margin-top: 5px;
  font-family: var(--font-light);
}
.shinil_sec_tit .tit_icon {
  position: relative;
  padding-left: 60px;
}
.shinil_sec_tit .tit_icon img {
  position: absolute;
  top: -10px;
  left: 0;
}
.shinil_sec_tit .all_pro {
  color: var(--sozo-txt01);
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  top: 10px;
  right: 0;
}
.shinil_sec_tit02 {
  font-size: 40px;
  font-family: var(--font-bold);
}

.pop_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999988;
  display: none;
}
.pop_paybg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999988;
  display: none;
}
.pop_wrap {
  width: 500px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 9999999;
  display: none;
}
.pop_wrap .header {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--sozo-border);
}
.pop_wrap .header p {
  font-size: 20px;
  font-family: var(--font-bold);
}
.pop_wrap .header .btn_close {
  width: 20px;
  height: 20px;
  display: block;
  background: transparent url("/data/jinkoonsh/icon/icon_close.svg") 0 0 no-repeat;
  cursor: pointer;
  opacity: 0.5;
}
.pop_wrap .cont {
  padding: 20px 30px;
}
.pop_wrap .cont .gray_box {
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 25px 20px;
}
.pop_wrap .cont .gray_box dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.pop_wrap .cont .gray_box dl dd span {
  font-size: 20px;
  margin-right: 3px;
}
.pop_wrap .cont .tit {
  font-size: 16px;
  padding-left: 10px;
  margin: 20px 0 10px;
}
.pop_wrap .cont .pay_input {
  position: relative;
  border-bottom: 1px solid var(--sozo-main);
}
.pop_wrap .cont .pay_input input {
  width: 100%;
  border: 0;
  padding: 10px;
  font-size: 30px;
  outline: 0;
}
.pop_wrap .cont .pay_input input::placeholder {
  font-size: 30px;
  color: var(--sozo-txt01);
}
.pop_wrap .cont .pay_input span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 18px;
}
.pop_wrap .cont .pay_btn {
  margin: 10px 0 20px;
  display: flex;
  gap: 10px;
}
.pop_wrap .cont .pay_type {
  margin-bottom: 20px;
}
.pop_wrap .cont .pay_type .half {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.pop_wrap .cont .pay_type .simple_pay img {
  width: auto;
  height: 20px;
  display: inline-block;
}
.pop_wrap .cont .pay_type .simple_pay img:first-child {
  margin-left: 5px;
}
.pop_wrap .cont .pay_agree .all_line {
  border-bottom: 1px solid var(--sozo-border02);
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.pop_wrap .cont .pay_agree ul li {
  margin-bottom: 10px;
}
.pop_wrap .cont .pay_agree .notice {
  padding-left: 25px;
  color: var(--sozo-red);
  font-size: 12px;
}
.pop_wrap .cont .search_wrap .search_btn {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pop_wrap .cont .search_wrap .search_btn li a {
  display: block;
  font-size: 12px;
  background-color: #e8e8e8;
  color: #8d959f;
  width: 60px;
  line-height: 25px;
  text-align: center;
  border-radius: 15px;
}
.pop_wrap .cont .search_wrap .search_calendar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.pop_wrap .cont .search_wrap .search_calendar .calendar_wrap {
  width: 140px;
}
.pop_wrap .cont .search_wrap .table_default tr td {
  padding: 10px;
}
.pop_wrap .cont .search_wrap .search_input {
  display: flex;
  gap: 5px;
}
.pop_wrap .cont .search_wrap .search_input .btn {
  width: 100px;
  line-height: 35px;
  background-color: var(--sozo-gray02);
}
.pop_wrap .scroll {
  width: 100%;
  overflow-y: scroll;
  padding: 0 30px 20px 30px;
  box-sizing: border-box;
}
.pop_wrap .scroll::-webkit-scrollbar {
  width: 5px;
  position: absolute;
  right: 0;
}
.pop_wrap .scroll::-webkit-scrollbar-thumb {
  border-radius: 20px;
}
.pop_wrap .scroll::-webkit-scrollbar-track {
  background-color: #fff;
}
.pop_wrap .bottom {
  padding: 0 30px 20px 30px;
}
.pop_wrap .bottom .half {
  display: flex;
  gap: 10px;
}
.pop_wrap .month_btn_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pop_wrap .month_btn_wrap li {
  text-align: center;
}
.pop_wrap .month_btn_wrap li button {
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  line-height: 40px;
  display: block;
  width: 100%;
  font-size: 14px;
}
.pop_wrap .month_btn_wrap li button.on {
  border-color: var(--sozo-main);
  color: var(--sozo-main);
}
.pop_wrap .month_btn_wrap li button:hover {
  background-color: #f8fbf4;
}
.pop_wrap.mini {
  width: 400px;
}
.pop_wrap.middle {
  width: 630px;
}
.pop_wrap.big {
  width: 1000px;
}
.pop_wrap.pro_detail {
  height: auto;
}
.pop_wrap.pro_detail .header {
  border-bottom: 2px solid var(--sozo-main);
  margin: 0 20px;
  padding: 30px 10px 10px 10px;
}
.pop_wrap.pro_detail .info_wrap .info01 {
  display: flex;
  gap: 25px;
}
.pop_wrap.pro_detail .info_wrap .info01 .img {
  width: 220px;
}
.pop_wrap.pro_detail .info_wrap .info01 .img .square {
  border: 1px solid var(--sozo-border);
  box-sizing: border-box;
  border-radius: 4px;
  cursor: auto;
}
.pop_wrap.pro_detail .info_wrap .info01 .img .square::after {
  border: 0;
}
.pop_wrap.pro_detail .info_wrap .info01 .img .btn_brochure {
  width: 220px;
  border: 1px solid var(--sozo-border);
  background-color: #fff;
  color: var(--sozo-txt03);
  line-height: 38px;
  box-sizing: border-box;
  margin-top: 10px;
  font-size: 14px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt {
  width: calc(100% - 245px);
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .txt01 {
  padding: 0 0 10px 10px;
  border-bottom: 1px solid var(--sozo-border);
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .txt01 .name {
  font-size: 16px;
  font-family: var(--font-bold);
  margin: 10px 0 15px 0;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .txt01 dl:last-child {
  margin-bottom: 0;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .txt01 #prescription_select dd {
  display: flex;
  gap: 10px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .txt02 {
  padding: 10px 0 0 10px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt div dl {
  display: flex;
  font-size: 14px;
  margin-bottom: 10px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt div dl dt {
  width: 120px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt div dl .point {
  color: var(--sozo-red);
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .promotion_desc {
  font-size: 14px;
  padding: 5px 10px;
  word-break: keep-all;
  background-color: var(--sozo-sub02);
  color: #fff;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .promotion_desc + .pay_box {
  margin-top: 10px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .pay_box {
  background-color: var(--sozo-gray04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 20px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .pay_box .num_btn_wrap button {
  background-color: #fff;
  border: 1px solid var(--sozo-border);
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .pay_box .pay {
  font-size: 18px;
  text-align: right;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .pay_box .pay .through {
  text-decoration: line-through;
  font-size: 14px;
  color: var(--sozo-gray02);
  margin-top: 3px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .btn_wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .btn_wrap .btn {
  width: 145px;
  line-height: 40px;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .btn_wrap .btn_favorites {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--sozo-border);
  background: transparent url("/../images/icon/ico_star02.png") center center no-repeat;
}
.pop_wrap.pro_detail .info_wrap .info01 .txt .btn_wrap .btn_favorites.act {
  background: transparent url("/../images/icon/ico_star02_on.png") center center no-repeat;
}
.pop_wrap.pro_detail .scroll {
  height: 345px;
  margin-bottom: 20px;
}
.pop_wrap.pro_detail .sec_tit {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 10px;
  padding: 0 5px;
  box-sizing: border-box;
}
.pop_wrap.pro_detail .detail_tit {
  font-size: 14px;
  line-height: 40px;
  background-color: var(--sozo-gray04);
  text-align: center;
  margin: 20px 0 10px;
}
.pop_wrap.pro_detail .price_result_wrap {
  display: flex;
  justify-content: center;
  gap: 5px;
  color: var(--sozo-red);
}
.pop_wrap.pro_detail .price_result_wrap li {
  width: auto;
}
.pop_wrap.pro_detail .detail_cont img {
  width: 100%;
}
.pop_wrap.manager_msg .manager_ok .gray_box {
  text-align: center;
  font-size: 20px;
}
.pop_wrap.manager_msg .manager_ok .gray_box strong {
  font-family: var(--font-bold);
  margin-right: 15px;
}
.pop_wrap.manager_msg .manager_ok .gray_box + .explain {
  text-align: center;
  font-size: 16px;
  margin: 25px 0;
}
.pop_wrap.manager_msg .manager_ok .inquire_list_wrap {
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  padding: 10px 20px;
}
.pop_wrap.manager_msg .manager_ok .inquire_list_wrap ul li {
  padding: 20px 0 20px 20px;
  border-bottom: 1px solid var(--sozo-border);
}
.pop_wrap.manager_msg .manager_ok .inquire_list_wrap ul li .radio_type {
  font-size: 16px;
}
.pop_wrap.manager_msg .manager_ok .inquire_list_wrap ul li .radio_type span {
  margin-right: 15px;
}
.pop_wrap.manager_msg .manager_ok .inquire_list_wrap ul li .radio_type p {
  margin-left: 30px;
}
.pop_wrap.manager_msg .manager_ok .inquire_list_wrap ul li:last-child {
  border-bottom: 0;
}
.pop_wrap.manager_msg .manager_ok .inquire_list_wrap ul li.etc_inquire {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pop_wrap.manager_msg .manager_ok .inquire_list_wrap ul li.etc_inquire .textarea_type {
  width: 265px;
  height: 103px;
  resize: none;
}
.pop_wrap.manager_msg .manager_ok .inquire_list_wrap + .noti {
  font-size: 14px;
  margin-top: 5px;
  text-indent: 10px;
  color: var(--sozo-txt02);
}
.pop_wrap.manager_msg .manager_none {
  text-align: center;
}
.pop_wrap.manager_msg .manager_none .txt {
  font-size: 18px;
}
.pop_wrap.manager_msg .manager_none .txt .strong {
  font-size: 24px;
  font-family: var(--font-bold);
  margin: 20px 0;
}
.pop_wrap.manager_msg .kakao_ch {
  background-color: #fae100;
  width: 100%;
  text-align: center;
  color: #3c1d1e;
  font-size: 22px;
  border-radius: 0 0 10px 10px;
  margin-top: 10px;
}
.pop_wrap.manager_msg .kakao_ch strong {
  font-family: var(--font-bold);
}
.pop_wrap.manager_msg .kakao_ch a {
  display: block;
  width: 100%;
  line-height: 75px;
}
.pop_wrap.map_pop .map_wrap iframe {
  width: 100%;
}
.pop_wrap.map_pop .contact_info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
}
.pop_wrap.map_pop .contact_info .tit {
  font-size: 18px;
  margin: 30px 0 10px;
  padding: 0;
  font-family: var(--font-bold);
}
.pop_wrap.map_pop .contact_info dl {
  display: flex;
  align-items: baseline;
}
.pop_wrap.map_pop .contact_info dl dt {
  color: var(--sozo-sub02);
}
.pop_wrap.map_pop .contact_info dl dd {
  line-height: 25px;
  margin-left: 5px;
}
.pop_wrap.com_desc {
  width: 900px;
}
.pop_wrap.com_desc .cont {
  background: transparent url(/images/img_about01.png) no-repeat 0 0;
  background-size: 100%;
}
.pop_wrap.com_desc .com_desc_wrap .dese_box {
  display: flex;
  gap: 30px;
}
.pop_wrap.com_desc .com_desc_wrap .dese_box img {
  width: 300px;
}
.pop_wrap.com_desc .com_desc_wrap .dese01 .txt {
  padding-top: 20px;
}
.pop_wrap.com_desc .com_desc_wrap .dese02 {
  align-items: flex-end;
  position: relative;
  top: -40px;
  justify-content: space-between;
}
.pop_wrap.com_desc .com_desc_wrap .txt p {
  margin-bottom: 20px;
}
.pop_wrap.com_desc .com_desc_wrap .txt .tit {
  font-family: "GmarketSans", sans-serif;
  font-weight: bold;
  padding: 0;
  color: var(--sozo-main);
  margin-bottom: 10px;
}
.pop_wrap.com_desc .com_desc_wrap .txt .sub {
  font-size: 24px;
}
.pop_wrap.level_benefit .cont img {
  width: 100%;
}
.pop_wrap .terms_wrap {
  height: 350px;
  padding: 0;
}

#balance_pop .sozopay {
  margin: 30px 0 20px;
  position: relative;
}
#balance_pop .sozopay .swiper-container {
  width: 100%;
}
#balance_pop .sozopay .swiper-button-next, #balance_pop .sozopay .swiper-button-prev {
  width: 30px;
  height: 65px;
  background-image: url("../data/jinkoonsh/shinil/icon_arrow02.png");
  background-size: 100%;
  top: 40%;
}
#balance_pop .sozopay .swiper-button-next {
  transform: scaleX(-1);
}
#balance_pop .sozopay .swiper-slide-active .card .img img {
  border: 2px solid var(--sozo-main);
  border-radius: 9px;
  background-color: var(--sozo-main);
  box-sizing: border-box;
}
#balance_pop .sozopay .card {
  position: relative;
}
#balance_pop .sozopay .card .img img {
  width: auto;
  height: 86px;
}
#balance_pop .sozopay .card .month_payment {
  display: block;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  width: 132px;
  line-height: 26px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 5px 0 10px;
  position: relative;
  font-size: 14px;
}
#balance_pop .sozopay .card .month_payment::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sozo-txt01);
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
  position: absolute;
  right: 10px;
  top: 6px;
}
#balance_pop .sozopay .card .card_num {
  font-size: 14px;
  text-indent: 5px;
}
#balance_pop .sozopay .card .bank_num {
  width: 100%;
  font-size: 14px;
  background-color: #fff;
  display: block;
  padding: 0 5px;
  line-height: 22px;
  box-sizing: border-box;
  margin-top: 5px;
}
#balance_pop .sozopay .card.add {
  background-color: var(--sozo-gray);
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  width: 100%;
  height: 127px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
}
#balance_pop .sozopay .card.add img {
  margin-bottom: 10px;
}
#balance_pop .sozopay .bg {
  width: 50px;
  height: 210px;
  position: absolute;
  top: 0;
  z-index: 5;
}
#balance_pop .sozopay .bg.left {
  left: 0;
  background: linear-gradient(270deg, transparent 0%, rgb(255, 255, 255) 100%);
}
#balance_pop .sozopay .bg.right {
  right: 0;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, transparent 100%);
}

.pop_installments.bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: none;
  border-radius: 0;
  transform: 0;
}

.layer_pop {
  width: 500px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 9999999;
  display: none;
}
.layer_pop .header {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--sozo-border);
}
.layer_pop .header p {
  font-size: 20px;
  font-family: var(--font-bold);
}
.layer_pop .header .btn_close {
  width: 20px;
  height: 20px;
  display: block;
  background: transparent url("/data/jinkoonsh/icon/icon_close.svg") 0 0 no-repeat;
  cursor: pointer;
  opacity: 0.5;
}
.layer_pop .cont {
  padding: 20px 30px;
}
.layer_pop .bottom {
  padding-top: 30px;
}
.layer_pop .bottom .half {
  display: flex;
  gap: 10px;
}
.layer_pop .textarea {
  border: 1px solid var(--sozo-border);
  width: 100%;
  min-height: 80px;
  resize: vertical;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
}
.layer_pop .textarea:focus {
  outline: none;
  border-color: var(--sozo-main);
}

#pop_div {
  display: none;
  z-index: 99999999;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
#pop_div .cart_view {
  width: 400px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
#pop_div .cart_view .cont {
  text-align: center;
  padding: 30px 0 10px;
}
#pop_div .cart_view .cont img {
  width: 80px;
}
#pop_div .cart_view .cont p {
  margin-top: 20px;
}
#pop_div .cart_view .bottom {
  padding: 20px;
  display: flex;
  gap: 10px;
}

.guide_wrap p {
  margin: 20px 0 0 0;
  font-size: 14px;
  line-height: 18px;
}
.guide_wrap ol {
  margin-top: 30px;
  font-size: 18px;
  line-height: 24px;
}
.guide_wrap ol li {
  margin-top: 10px;
  font-weight: bold;
}
.guide_wrap h2 {
  margin-top: 50px;
  font-size: 18px;
  line-height: 24px;
}

.table_default {
  width: 100%;
  font-size: 12px;
  border-top: 1px solid var(--sozo-border);
}
.table_default tr th, .table_default tr td {
  word-break: keep-all;
}
.table_default tr th.left, .table_default tr td.left {
  text-align: left;
}
.table_default tr th.right, .table_default tr td.right {
  text-align: right;
}
.table_default + .table_default {
  margin-top: 30px;
}
.table_default.horizon {
  text-align: center;
  font-size: 14px;
  color: #333;
}
.table_default.horizon tr th {
  background-color: var(--sozo-gray);
  border-bottom: 1px solid var(--sozo-border);
  padding: 10px;
  font-weight: normal;
  font-size: 14px;
  color: var(--sozo-txt03);
}
.table_default.horizon tr td {
  border-bottom: 1px solid var(--sozo-border);
  padding: 10px;
}
.table_default.horizon.pro_list .info01 {
  display: flex;
  align-items: center;
  gap: 40px;
}
.table_default.horizon.pro_list .info01 .square {
  width: 150px;
}
.table_default.horizon.pro_list .info02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.table_default.horizon.pro_list tr.sold_out .layer {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}
.table_default.horizon.pro_list tr.sold_out td {
  position: relative;
}
.table_default.horizon.pro_list tr.sold_out td:nth-child(2) .square {
  opacity: 0.5;
}
.table_default.horizon.pro_list tr.sold_out td:nth-child(2) .layer {
  z-index: 2;
}
.table_default.horizon.pro_list tr.sold_out td:nth-child(2) .layer::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid #333;
  border-radius: 50%;
  background: transparent url("/images/icon/ico_close.png") no-repeat center center;
  background-size: 50%;
  position: absolute;
  top: 58px;
  left: 56px;
}
.table_default.horizon.pro_list tr.sold_out td:nth-child(2) .layer::before {
  content: "Sold Out";
  font-size: 20px;
  position: absolute;
  top: 100px;
  left: 40px;
}
.table_default.vertical {
  text-align: left;
  font-size: 14px;
}
.table_default.vertical tr th, .table_default.vertical tr td {
  border-bottom: 1px solid var(--sozo-border);
  padding: 15px;
}
.table_default.vertical tr th {
  background-color: var(--sozo-gray);
  font-weight: normal;
  color: var(--sozo-txt03);
}
.table_default.vertical tr td.center {
  text-align: center;
}
.table_default.vertical tr td.right {
  text-align: right;
}
.table_default.vertical tr td.left {
  text-align: left;
}
.table_default .input_type {
  height: 35px;
}
.table_default.table_mypage .pro_info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table_default.table_mypage .pro_info img {
  width: 80px;
}
.table_default.table_mypage .pro_info .tit {
  font-size: 14px !important;
  font-family: var(--font-regular) !important;
  padding-right: 0 !important;
  text-indent: 0 !important;
  display: block !important;
  margin: 0 !important;
}
.table_default.table_mypage .pro_info .square {
  cursor: auto;
  width: 100px;
}
.table_default.table_mypage .pro_info .square::after {
  border: 0;
  margin-bottom: 0;
}
.table_default.table_mypage .btn_align {
  display: flex;
  gap: 5px;
  justify-self: center;
}
.table_default.table_mypage .btn_input {
  height: 35px;
  line-height: 35px;
}
.table_default + .notice_default {
  text-align: right;
}

.square {
  background-size: 100%;
  background-position: center center;
  cursor: pointer;
  background-repeat: no-repeat;
}
.square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
  margin-bottom: 10px;
  border: 1px solid #eee;
  border-radius: 4px;
}

.paging_box {
  margin-top: 40px;
}

.paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.paging a {
  color: #333;
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: block;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
}
.paging a.prev {
  background-color: var(--sozo-gray);
  font-size: 0;
  position: relative;
}
.paging a.prev::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #999;
  transform: rotate(45deg);
  border-width: 0 0 2px 2px;
  position: absolute;
  top: 9px;
  left: 12px;
}
.paging a.prev:last-of-type::after {
  transform: rotate(225deg);
  left: 8px;
}
.paging a.next {
  background-color: var(--sozo-gray);
  font-size: 0;
  position: relative;
}
.paging a.next::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #999;
  transform: rotate(45deg);
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 9px;
  right: 12px;
}
.paging a.active {
  background-color: var(--sozo-main);
  color: #fff;
  font-size: 14px;
}
.paging a.on {
  background-color: var(--sozo-main);
  color: #fff;
}
.paging a.endPg, .paging a.strPg {
  font-size: 0;
}
.paging .text {
  width: 80px;
  height: 30px;
  padding: 0 5px 0 10px;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  outline: 0;
  text-align: center;
}
.paging .btn_yellow01 {
  background-color: var(--sozo-gray02);
  color: #fff;
  padding: 0 15px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 14px;
}
.paging .btn_cart {
  padding: 0 15px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 14px;
  background-color: var(--sozo-main);
  color: #fff;
  cursor: pointer;
}

.viewLoading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.viewLoading .loader_circle {
  width: 100px;
  --b: 15px ;
}
.viewLoading p {
  font-size: 20px;
  color: var(--sozo-txt02);
}

/***** 장바구니, 주문 *****/
.step_wrap {
  width: 1280px;
  margin: 0 auto 20px;
}
.step_wrap .tit {
  font-size: 24px;
  text-align: center;
  font-weight: normal;
  margin: 50px 0 20px;
}
.step_wrap .txt {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.step_wrap .txt li {
  font-size: 16px;
  opacity: 0.3;
}
.step_wrap .txt li span {
  font-family: var(--font-bold);
}
.step_wrap .txt li::after {
  content: ">";
  font-family: cursive;
  margin: 0 15px;
}
.step_wrap .txt li:last-child::after {
  display: none;
}
.step_wrap .txt li.on {
  opacity: 1;
}

.cart_pro_wrap .cate_btn_wrap {
  padding: 20px 0;
}
.cart_pro_wrap .table_default .info01 {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
  word-break: keep-all;
}
.cart_pro_wrap .table_default .info01 .square {
  width: 150px;
  height: auto;
  cursor: default;
}
.cart_pro_wrap .table_default .info01 .desc {
  font-size: 13px;
  color: var(--sozo-txt01);
  margin-top: 20px;
  font-family: var(--font-medium);
}
.cart_pro_wrap .table_default .info01 .badge {
  margin-bottom: 5px;
}
.cart_pro_wrap .table_default .num_btn_wrap {
  justify-content: center;
}
.cart_pro_wrap .table_default .order_price {
  font-size: 18px;
}
.cart_pro_wrap .table_default .order_price.through {
  font-size: 14px;
  color: var(--sozo-txt01);
  text-decoration: line-through;
  margin-top: 3px;
}
.cart_pro_wrap .table_default .order_price .won {
  margin-left: 3px;
}

.total_box {
  background-color: var(--sozo-gray);
  border-radius: 8px;
  margin-top: 40px;
  padding: 30px 70px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.total_box dl {
  display: flex;
  align-items: center;
}
.total_box dl dt {
  font-size: 14px;
  margin-right: 10px;
}
.total_box dl dt span {
  font-family: var(--font-bold);
}
.total_box dl dd {
  font-size: 18px;
  font-family: var(--font-bold);
}
.total_box dl dd .mwon {
  font-family: var(--font-regular);
}
.total_box .price01::after {
  content: "-";
  display: block;
  width: 25px;
  height: 25px;
  background-color: #adadad;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 25px;
  margin: 0 20px;
}
.total_box .price02::after {
  content: "=";
  display: block;
  width: 25px;
  height: 25px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 25px;
  margin: 0 20px;
}

.order_btn_wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order_btn_wrap div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.order_btn_wrap div .arrow::before {
  content: "<";
  font-family: cursive;
  color: #636262;
  margin-right: 10px;
  font-weight: bold;
}

.notice_default {
  font-size: 14px;
  margin-top: 10px;
}
.notice_default.left {
  text-align: left;
}
.notice_red {
  font-size: 14px;
  color: var(--sozo-red);
  margin-top: 10px;
}

.order_wrap {
  background-color: #f3f5f7;
}
.order_wrap .wrap {
  width: 1280px;
  margin: 0 auto;
  position: relative;
}
.order_wrap .cont_left {
  width: 850px;
  padding-bottom: 100px;
}
.order_wrap .cont_right {
  width: 390px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.5s;
}
.order_wrap .cont_right.bottom_fix {
  opacity: 0;
  transition: all 0.5s;
}
.order_wrap .box .tit {
  padding: 50px 0 20px;
  font-size: 20px;
  font-family: var(--font-bold);
  text-indent: 10px;
}
.order_wrap .box .cont {
  background-color: #fff;
  padding: 30px 20px;
  box-sizing: content-box;
  border-radius: 8px;
}
.order_wrap .box .cont .tab_btn {
  margin-bottom: 20px;
}
.order_wrap .box .cont .tab_btn li {
  padding: 15px 20px;
  font-size: 14px;
}
.order_wrap .box .cont .table_default.horizon td {
  padding: 10px 15px;
}
.order_wrap .box .cont .pro_info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.order_wrap .box .cont .pro_info .square {
  width: 100px;
  height: auto;
}
.order_wrap .box .cont .order_price {
  font-size: 18px;
}
.order_wrap .box .cont .order_price.through {
  text-decoration: line-through;
  font-size: 14px;
  color: var(--sozo-gray02);
  margin-top: 3px;
}
.order_wrap .box.total {
  margin-top: 10px;
}
.order_wrap .box.total .cont {
  padding: 15px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.order_wrap .box.total .cont p:first-child {
  margin-bottom: 5px;
}
.order_wrap .box.total .cont .sum {
  font-size: 20px;
}
.order_wrap .box.total .cont .through {
  text-align: right;
  font-size: 16px;
}
.order_wrap .box.discount .flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.order_wrap .box.discount .state {
  font-size: 12px;
  color: var(--sozo-txt02);
}
.order_wrap .box.discount .point_use {
  display: flex;
}
.order_wrap .box.discount .point_use input {
  border: 1px solid var(--sozo-border);
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  box-sizing: border-box;
  font-family: var(--font-regular);
}
.order_wrap .box.discount .point_use input:focus {
  outline: 0;
}
.order_wrap .box.discount .point_use button {
  background-color: var(--sozo-gray03);
  line-height: 30px;
  padding: 0 15px;
  outline: 0;
}
.order_wrap .box.payment .how {
  background-color: var(--sozo-gray);
  padding: 20px 60px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-evenly;
}
.order_wrap .box.payment .how li {
  font-size: 14px;
}
.order_wrap .box.payment .how li .radio_type {
  font-size: inherit;
}
.order_wrap .box.payment .agree li {
  margin-top: 10px;
}
.order_wrap .box.payment .agree li:first-child {
  font-size: 14px;
  border-bottom: 1px solid var(--sozo-border);
  padding: 20px 0 10px;
}
.order_wrap .box.payment .agree li .check_type input[type=checkbox] + span {
  margin-right: 10px;
}
.order_wrap .box.payment .pay_ico {
  width: auto;
  height: 20px;
  margin-right: 5px;
}
.order_wrap .box.payment .pay_ico:first-of-type {
  margin-left: 10px;
}
.order_wrap .box.payment .bottom {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.order_wrap .box.payment .bottom .btn:first-of-type {
  margin-right: 10px;
}
.order_wrap .box.payment .sozopay {
  margin: 30px 0 20px;
  position: relative;
}
.order_wrap .box.payment .sozopay .swiper-container {
  width: 640px;
}
.order_wrap .box.payment .sozopay .swiper-button-next, .order_wrap .box.payment .sozopay .swiper-button-prev {
  width: 37px;
  height: 69px;
  background-image: url("../data/jinkoonsh/shinil/icon_arrow02.png");
  background-size: 100%;
}
.order_wrap .box.payment .sozopay .swiper-button-next {
  transform: scaleX(-1);
}
.order_wrap .box.payment .sozopay .swiper-slide-active .card .img img {
  border: 2px solid var(--sozo-main);
  border-radius: 9px;
  background-color: var(--sozo-main);
  box-sizing: border-box;
}
.order_wrap .box.payment .sozopay .card {
  position: relative;
}
.order_wrap .box.payment .sozopay .card .img img {
  width: 100%;
}
.order_wrap .box.payment .sozopay .card .month_payment {
  display: block;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  width: 100%;
  line-height: 30px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 5px 0 10px;
  position: relative;
  font-size: 14px;
}
.order_wrap .box.payment .sozopay .card .month_payment::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sozo-txt01);
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
  position: absolute;
  right: 15px;
  top: 9px;
}
.order_wrap .box.payment .sozopay .card .card_num {
  font-size: 14px;
  text-indent: 5px;
}
.order_wrap .box.payment .sozopay .card .bank_num {
  width: 90%;
  font-size: 14px;
  background-color: #fff;
  display: block;
  border-radius: 4px;
  padding: 0 10px;
  line-height: 30px;
  box-sizing: border-box;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.order_wrap .box.payment .sozopay .card.add {
  background-color: var(--sozo-gray);
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  width: 100%;
  height: 127px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
}
.order_wrap .box.payment .sozopay .card.add img {
  margin-bottom: 10px;
}
.order_wrap .box.payment .sozopay .bg {
  width: 50px;
  height: 210px;
  position: absolute;
  top: 0;
  z-index: 5;
}
.order_wrap .box.payment .sozopay .bg.left {
  left: 0;
  background: linear-gradient(270deg, transparent 0%, rgb(255, 255, 255) 100%);
}
.order_wrap .box.payment .sozopay .bg.right {
  right: 0;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, transparent 100%);
}
.order_wrap .box.payment_info {
  width: 390px;
  position: absolute;
  top: 0;
  right: 0;
}
.order_wrap .box.payment_info dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 14px;
  margin-bottom: 15px;
}
.order_wrap .box.payment_info dl.order {
  border: 1px solid var(--sozo-border);
  border-width: 1px 0;
  padding: 20px 15px;
}
.order_wrap .box.payment_info dl.order dd {
  font-family: var(--font-bold);
  font-size: 16px;
}
.order_wrap .box.payment_info dl.order dd .mwon {
  font-family: var(--font-regular);
  font-size: 14px;
}
.order_wrap .box.payment_info dl.result {
  padding-top: 25px;
  border-top: 1px solid var(--sozo-border);
}
.order_wrap .box.payment_info dl.result dd {
  font-family: var(--font-bold);
  font-size: 24px;
}
.order_wrap .box.payment_info dl.result dd .table .mwon {
  font-family: var(--font-regular);
  font-size: 21px;
}
.order_wrap .box.payment_info dl.point {
  color: var(--sozo-red);
}
.order_wrap .box.payment_info .bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.order_wrap .box.payment_info .bottom .btn {
  width: 100%;
}
.order_wrap .box.payment_info.fix {
  position: fixed;
  top: 150px;
  right: unset;
}

.order_finish_wrap .box_wrap .tit {
  padding: 50px 0 20px;
  font-size: 20px;
  font-family: var(--font-bold);
  text-indent: 10px;
}
.order_finish_wrap .box_wrap .tit .sub_txt {
  font-size: 16px;
  font-family: var(--font-light);
}
.order_finish_wrap .box_wrap.box_half {
  display: flex;
  gap: 10px;
}
.order_finish_wrap .box_wrap.box_half .table_cont {
  width: 50%;
}
.order_finish_wrap .pro_info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.order_finish_wrap .pro_info .square {
  width: 100px;
  cursor: default;
}
.order_finish_wrap .pro_info .square::after {
  margin-bottom: 0;
}
.order_finish_wrap .bottom {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
}

/***** 마이페이지 *****/
.my_wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.my_wrap .left .cont {
  width: 240px;
}
.my_wrap .left .cont .menu {
  border-bottom: 2px solid #333;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.my_wrap .left .cont .menu h2 {
  border-bottom: 2px solid #333;
  margin: 50px 0 20px;
  padding: 0 10px 15px;
  box-sizing: border-box;
  font-size: 28px;
  font-family: var(--font-regular);
  font-weight: normal;
}
.my_wrap .left .cont .menu .list01 {
  border-bottom: 1px solid var(--sozo-border);
  padding: 0 15px 20px;
  margin-bottom: 30px;
}
.my_wrap .left .cont .menu .list01 dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: var(--font-medium);
}
.my_wrap .left .cont .menu .list01 dl:last-child {
  margin-bottom: 0;
}
.my_wrap .left .cont .menu .list02 {
  padding: 0 15px;
}
.my_wrap .left .cont .menu .list02 dl {
  margin-bottom: 25px;
}
.my_wrap .left .cont .menu .list02 dl:last-child {
  margin-bottom: 0;
}
.my_wrap .left .cont .menu .list02 dl dt {
  font-family: var(--font-bold);
  font-size: 16px;
  margin-bottom: 15px;
}
.my_wrap .left .cont .menu .list02 dl dd {
  font-size: 14px;
  margin-bottom: 15px;
}
.my_wrap .left .cont .menu .list02 dl dd a.on {
  color: var(--sozo-sub02);
}
.my_wrap .left .cont .cs_box {
  background-color: var(--sozo-sub);
  padding: 35px 20px;
  box-sizing: border-box;
  font-size: 14px;
}
.my_wrap .left .cont .cs_box dl {
  font-family: var(--font-bold);
}
.my_wrap .left .cont .cs_box dl dt {
  font-size: 14px;
}
.my_wrap .left .cont .cs_box dl dd {
  font-size: 24px;
  margin: 15px 0;
}
.my_wrap .left .cont .cs_box p {
  line-height: 20px;
}
.my_wrap .right {
  width: 1000px;
  padding-top: 50px;
}
.my_wrap .right .summary_wrap .greeting {
  font-size: 20px;
  margin-bottom: 20px;
}
.my_wrap .right .summary_wrap .wrap {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.my_wrap .right .summary_wrap .wrap dl {
  border: 1px solid var(--sozo-border);
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
}
.my_wrap .right .summary_wrap .wrap dl dt {
  font-size: 16px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.my_wrap .right .summary_wrap .wrap dl dt .deta {
  font-size: 14px;
  color: var(--sozo-txt01);
  position: absolute;
  left: 0;
  top: 26px;
}
.my_wrap .right .summary_wrap .wrap dl dd {
  font-size: 24px;
  color: var(--sozo-main);
}
.my_wrap .right .summary_wrap .wrap dl dd .mwon {
  font-size: 16px;
}
.my_wrap .right .table_wrap .tit {
  font-size: 18px;
  font-family: var(--font-bold);
  margin: 50px 0 20px;
  text-indent: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 5px;
}
.my_wrap .right .table_wrap .tit a {
  font-size: 14px;
  font-family: var(--font-regular);
  color: var(--sozo-gray02);
}
.my_wrap .right .table_wrap .tit .date {
  font-size: 14px;
  font-family: var(--font-regular);
  color: var(--sozo-gray02);
}
.my_wrap .right .table_wrap.first .tit {
  margin: 0 0 25px 0;
}
.my_wrap .right .table_wrap .pro_info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--sozo-border);
}
.my_wrap .right .table_wrap .pro_info li:first-child {
  border-top: 0;
}
.my_wrap .right .table_wrap .pro_info li .square {
  width: 80px;
  cursor: auto;
}
.my_wrap .right .table_wrap .pro_info li .pro {
  display: flex;
  align-items: center;
  gap: 10px;
}
.my_wrap .right .table_wrap .pro_info li dl dd {
  text-align: left;
}
.my_wrap .right .table_wrap.recent_order .th_pro span {
  display: inline-block;
}
.my_wrap .right .table_wrap.recent_order .th_pro span:first-child {
  width: 365px;
}
.my_wrap .right .table_wrap.recent_order .th_pro span:last-child {
  width: 70px;
}
.my_wrap .right .table_wrap.recent_order .state {
  width: 70px;
}
.my_wrap .right .table_wrap.recent_order .info_delivery {
  display: flex;
  gap: 10px;
  align-items: center;
}
.my_wrap .right .table_wrap.order_search .search_btn {
  display: flex;
  gap: 5px;
  align-items: center;
}
.my_wrap .right .table_wrap.order_search .search_btn li {
  width: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 15px;
  background-color: #e8e8e8;
  color: #8d959f;
  cursor: pointer;
}
.my_wrap .right .table_wrap.order_search .search_btn li a {
  display: block;
  width: 100%;
}
.my_wrap .right .table_wrap.order_search .search_btn li.on {
  background-color: var(--sozo-main);
  color: #fff;
}
.my_wrap .right .table_wrap.order_search .search_calendar {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.my_wrap .right .table_wrap.order_search .radio_wrap {
  display: flex;
  gap: 15px;
}
.my_wrap .right .table_wrap.order_search .order_unum_wrap input {
  width: 500px;
}
.my_wrap .right .table_wrap.list_order .pro_info .state {
  width: 75px;
}
.my_wrap .right .table_wrap.list_order .info_delivery {
  display: flex;
  gap: 10px;
  align-items: center;
}
.my_wrap .right .table_wrap.detail_pro .pro_wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}
.my_wrap .right .table_wrap.detail_pro .pro_wrap .square {
  width: 100px;
}
.my_wrap .right .table_wrap.detail_pro .info_delivery {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.my_wrap .right .table_wrap.detail_pay table td {
  text-align: left;
}
.my_wrap .right .table_wrap.detail_pay table td.all span {
  font-family: var(--font-bold);
}
.my_wrap .right .table_wrap.detail_pay table td.all span.result {
  font-size: 18px;
  color: var(--sozo-red);
}
.my_wrap .right .table_wrap.return_list {
  text-align: center;
}
.my_wrap .right .table_wrap.return_list .col_add_btn {
  display: block;
  line-height: 30px;
  padding: 0 10px;
  background-color: #999;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}
.my_wrap .right .table_wrap.return_list .col_del_btn {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid var(--sozo-red);
  border-radius: 4px;
  background: transparent url("/images/icon/ico_close_red.png") center center no-repeat;
  font-size: 0;
  margin: 0 auto;
}
.my_wrap .right .table_wrap.return_list .return_reg {
  display: none;
}
.my_wrap .right .table_wrap.today_history .pro_info .square {
  width: 100px;
}
.my_wrap .right .table_wrap.consult_reg .mobile_wrap {
  display: flex;
  gap: 5px;
  align-items: center;
}
.my_wrap .right .table_wrap.consult_reg .mobile_wrap input {
  width: 100px;
}
.my_wrap .right .table_wrap.consult_reg .mobile_wrap p {
  margin-left: 10px;
}
.my_wrap .right .table_wrap.consult_reg .term_tit {
  font-size: 18px;
  font-family: var(--font-bold);
  margin: 20px 0 10px;
}
.my_wrap .right .table_wrap.consult_reg .term_box {
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 22px;
}
.my_wrap .right .table_wrap.consult_reg .term_chk {
  margin: 10px 0 20px;
}
.my_wrap .right .table_wrap.consult_list .board_qa_box {
  text-align: left;
}
.my_wrap .right .table_wrap.consult_list .board_qa_box td {
  padding: 20px;
  background-color: #f9f9f9;
}
.my_wrap .right .table_wrap.consult_list .board_qa_box td .questions {
  padding: 0 0 20px 30px;
  border-bottom: 1px dashed var(--sozo-border);
  margin-bottom: 20px;
  font-family: var(--font-bold);
  position: relative;
}
.my_wrap .right .table_wrap.consult_list .board_qa_box td .questions .ico_q {
  font-size: 18px;
  color: var(--sozo-main);
  position: absolute;
  top: 0;
  left: 0;
}
.my_wrap .right .table_wrap.consult_list .board_qa_box td .answers {
  position: relative;
  padding-left: 30px;
}
.my_wrap .right .table_wrap.consult_list .board_qa_box td .answers .ico_a {
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
}
.my_wrap .right .table_wrap.consult_list .board_qa_box td .answers .title {
  font-family: var(--font-bold);
}
.my_wrap .right .table_wrap.consult_list .board_qa_box td .answers .time {
  color: var(--sozo-txt01);
  font-size: 12px;
}
.my_wrap .right .table_wrap.consult_list .board_qa_box td .content {
  line-height: 22px;
}
.my_wrap .right .table_wrap.editMember .input_type {
  width: 600px;
}
.my_wrap .right .table_wrap.editMember .input_type + .input_type {
  margin-top: 5px;
}
.my_wrap .right .table_wrap.editMember .file label {
  display: flex;
  gap: 10px;
  align-items: center;
}
.my_wrap .right .table_wrap.editMember .phone_sms_wrap .smsDisplayCount {
  display: none;
}
.my_wrap .right .table_wrap.editMember .email_wrap {
  position: relative;
}
.my_wrap .right .table_wrap.editMember .email_wrap .select_option {
  width: 200px;
  position: absolute;
  right: 220px;
  bottom: 0;
}
.my_wrap .right .table_wrap.editMember .email_wrap .select_option .active_cont {
  border: 0;
}
.my_wrap .right .table_wrap.my_point .point_box {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 60px;
}
.my_wrap .right .table_wrap.my_point .point_box div {
  width: 50%;
  padding: 0 20px;
}
.my_wrap .right .table_wrap.my_point .point_box .txt {
  background-color: var(--sozo-gray);
  position: relative;
  border-radius: 6px 0 0 6px;
}
.my_wrap .right .table_wrap.my_point .point_box .txt::after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 7px;
  right: -23px;
  transform: rotate(45deg);
  background-color: var(--sozo-gray);
}
.my_wrap .right .table_wrap.my_point .point_box .info {
  font-size: 20px;
  font-family: var(--font-bold);
  text-align: right;
  background-color: var(--sozo-gray03);
  border-radius: 0 6px 6px 0;
}
.my_wrap .right .order_num_box {
  background-color: var(--sozo-gray);
  text-align: center;
  line-height: 80px;
  font-size: 16px;
  margin-top: 45px;
}
.my_wrap .right .order_num_box em {
  font-family: var(--font-bold);
  color: var(--sozo-main);
}
.my_wrap .right .box_wrap .tit {
  font-size: 18px;
  font-family: var(--font-bold);
  margin: 50px 0 20px;
  text-indent: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 5px;
}
.my_wrap .right .box_wrap .tit a {
  font-size: 14px;
  font-family: var(--font-regular);
  color: var(--sozo-gray02);
}
.my_wrap .right .box_wrap .tit.flex_start {
  justify-content: flex-start;
}
.my_wrap .right .box_wrap .tit .tit_desc {
  font-family: var(--font-regular);
  font-size: 16px;
  color: var(--sozo-txt02);
}
.my_wrap .right .box_wrap .tit .tit_desc_red {
  font-family: var(--font-regular);
  font-size: 16px;
  color: var(--sozo-red);
}
.my_wrap .right .box_wrap.first .tit {
  margin: 0 0 25px 0;
}
.my_wrap .right .box_wrap.faq_page .search_wrap {
  background-color: var(--sozo-gray);
  padding: 25px 0;
  margin-bottom: 30px;
}
.my_wrap .right .box_wrap.faq_page .search_wrap .tit {
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.my_wrap .right .box_wrap.faq_page .search_wrap .input_wrap {
  width: 700px;
  margin: 0 auto;
  position: relative;
}
.my_wrap .right .box_wrap.faq_page .search_wrap .input_wrap .input_type {
  border-radius: 20px;
}
.my_wrap .right .box_wrap.faq_page .search_wrap .input_wrap .btn_search {
  width: 35px;
  height: 35px;
  background: transparent url("/../images/icon/icon_search_g.png") no-repeat center center;
  font-size: 0;
  position: absolute;
  right: 15px;
  bottom: 3px;
}
.my_wrap .right .box_wrap.faq_page .faqTab {
  margin-bottom: 20px;
}
.my_wrap .right .box_wrap.faq_page .faqTab a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--sozo-gray);
  border-radius: 20px;
}
.my_wrap .right .box_wrap.faq_page .faqTab a.on {
  background-color: var(--sozo-main);
  color: #fff;
}
.my_wrap .right .box_wrap.faq_page .qna_list {
  margin-bottom: 30px;
}
.my_wrap .right .box_wrap.faq_page .qna_list div.q {
  cursor: pointer;
  font-family: var(--font-bold);
}
.my_wrap .right .box_wrap.faq_page .qna_list div.a {
  display: none;
  margin-top: 20px;
}
.my_wrap .right .box_wrap.faq_page .qna_list > li {
  padding: 20px;
  border: 1px solid var(--sozo-border);
  margin-bottom: 10px;
  border-radius: 4px;
  position: relative;
}
.my_wrap .right .box_wrap.faq_page .qna_list > li::after {
  display: inline-block;
  content: "×";
  font-size: 30px;
  position: absolute;
  right: 20px;
  top: 12px;
  transform: rotate(45deg);
  transition: all 0.3s;
  color: var(--sozo-txt02);
}
.my_wrap .right .box_wrap.faq_page .qna_list > li.on {
  border-color: var(--sozo-main);
}
.my_wrap .right .box_wrap.faq_page .qna_list > li.on::after {
  transform: rotate(0);
  transition: all 0.3s;
}
.my_wrap .right .box_wrap.faq_page .qna_list > li.noFAQ {
  border: 0;
}
.my_wrap .right .box_wrap.faq_page .qna_list > li.noFAQ::after {
  display: none;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay {
  margin: 30px 0 20px;
  position: relative;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay ul li:last-child {
  margin-right: 0 !important;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .swiper-container {
  width: 900px;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .swiper-button-next, .my_wrap .right .box_wrap.my_sozopay .sozopay .swiper-button-prev {
  width: 37px;
  height: 69px;
  background-image: url("../data/jinkoonsh/shinil/icon_arrow02.png");
  background-size: 100%;
  position: absolute;
  top: 50%;
  margin-top: -40px;
  z-index: 2;
  cursor: pointer;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .swiper-button-next {
  transform: scaleX(-1);
  right: 0;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .swiper-button-prev {
  left: 0;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card {
  position: relative;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card .img img {
  width: 100%;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card .month_payment {
  display: block;
  border: 1px solid var(--sozo-border);
  border-radius: 4px;
  width: 100%;
  line-height: 30px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 5px 0 10px;
  position: relative;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card .month_payment::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--sozo-txt01);
  transform: rotate(45deg);
  border-width: 0 1px 1px 0;
  position: absolute;
  right: 15px;
  top: 9px;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card .bank_num {
  width: 90%;
  font-size: 14px;
  background-color: #fff;
  display: block;
  border-radius: 4px;
  padding: 0 10px;
  line-height: 30px;
  box-sizing: border-box;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card.add {
  background-color: var(--sozo-gray);
  border: 1px solid var(--sozo-border);
  border-radius: 8px;
  width: 100%;
  height: 181px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card.add img {
  margin-bottom: 10px;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card_info .btn_del {
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid var(--sozo-border);
  line-height: 20px;
  color: var(--sozo-txt03);
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .card_info .card_num {
  font-size: 14px;
  text-indent: 5px;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .bg {
  width: 130px;
  height: 250px;
  position: absolute;
  top: 0;
  z-index: 5;
  padding: 0;
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .bg.left {
  left: 0;
  background: linear-gradient(270deg, transparent 0%, rgb(255, 255, 255) 100%);
}
.my_wrap .right .box_wrap.my_sozopay .sozopay .bg.right {
  right: 0;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, transparent 100%);
}
.my_wrap .right .return_how_wrap {
  background-color: #f8f8f8;
  padding: 25px;
}
.my_wrap .right .return_how_wrap ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.my_wrap .right .return_how_wrap ul li {
  text-align: center;
  font-size: 16px;
  position: relative;
}
.my_wrap .right .return_how_wrap ul li p {
  margin-top: 20px;
}
.my_wrap .right .return_how_wrap ul li p b {
  font-family: var(--font-bold);
  color: var(--sozo-main);
  margin-right: 5px;
}
.my_wrap .right .return_how_wrap ul li p.sub {
  margin-top: 3px;
  color: var(--sozo-txt01);
}
.my_wrap .right .return_how_wrap ul li::after {
  content: "";
  display: block;
  background: transparent url("/images/icon/return_how_arrow.png") 0 0 no-repeat;
  width: 15px;
  height: 23px;
  position: absolute;
  right: -9px;
  top: 55px;
}
.my_wrap .right .return_how_wrap ul li:last-child::after {
  display: none;
}
.my_wrap .right .return_how_wrap + .notice {
  color: var(--sozo-red);
  margin-top: 10px;
}
.my_wrap .right .return_how_txt li {
  margin-bottom: 10px;
}
.my_wrap .right .return_how_txt li b {
  font-family: var(--font-bold);
  color: var(--sozo-main);
  margin-right: 5px;
}
.my_wrap .right .return_how_txt li:last-child {
  margin-bottom: 0;
}
.my_wrap .right .return_tab {
  margin-top: 50px;
}
.my_wrap .right .return_tab .tit {
  margin: 20px 0;
}
.my_wrap .right .return_tab .btn_center {
  margin-top: 20px;
}
.my_wrap .right .return_tab .tab_btn {
  width: 100%;
  gap: 0;
}
.my_wrap .right .return_tab .tab_btn li {
  width: 50%;
  text-align: center;
  background: none;
  border-bottom: 1px solid var(--sozo-main);
  border-radius: 0;
}
.my_wrap .right .return_tab .tab_btn li.on {
  border: 1px solid var(--sozo-main);
  border-bottom-color: transparent;
  color: var(--sozo-main);
  font-family: var(--font-bold);
}
.my_wrap .right .return_tab .search_wrap .search_btn {
  display: flex;
  align-items: center;
  gap: 5px;
}
.my_wrap .right .return_tab .search_wrap .search_btn li a {
  display: block;
  font-size: 12px;
  background-color: #e8e8e8;
  color: #8d959f;
  width: 60px;
  line-height: 25px;
  text-align: center;
  border-radius: 15px;
}
.my_wrap .right .return_tab .search_wrap .search_btn li.on a {
  background-color: var(--sozo-main);
  color: #fff;
}
.my_wrap .right .return_tab .search_wrap .search_calendar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.my_wrap .right .return_tab .search_wrap .search_calendar .calendar_wrap {
  width: 140px;
}
.my_wrap .right .return_tab .search_wrap .table_default tr td {
  padding: 10px;
}
.my_wrap .right .return_tab .search_wrap .search_input {
  display: flex;
  gap: 5px;
}
.my_wrap .right .return_tab .search_wrap .search_input .btn {
  width: 100px;
  line-height: 35px;
  background-color: var(--sozo-gray02);
}
.my_wrap .right .return_tab .search_wrap .search_input .input_type {
  width: 100%;
  text-align: left;
}
.my_wrap .right .return_tab .table_wrap + .table_wrap .tit {
  margin: 30px 0 20px;
}
.my_wrap .right .return_tab .table_wrap + .box_wrap .tit {
  margin: 30px 0 20px;
}
.my_wrap .right .return_tab table .pro_info {
  display: flex;
  gap: 10px;
  align-items: center;
}
.my_wrap .right .return_tab table .pro_info .square {
  width: 70px;
  cursor: default;
}
.my_wrap .right .return_tab table .pro_info .square::after {
  margin-bottom: 0;
}
.my_wrap .right .return_tab table .pro_info dd {
  word-break: keep-all;
}
.my_wrap .right .return_tab table .pro_info + .pro_info {
  border-top: 1px dashed var(--sozo-border);
  margin-top: 10px;
  padding-top: 10px;
}
.my_wrap .right .return_tab table .pro_info + .return_write {
  border-top: 1px dashed var(--sozo-border);
  margin-top: 10px;
  padding-top: 10px;
}
.my_wrap .right .return_tab table .input_type {
  width: 70px;
  text-align: center;
}
.my_wrap .right .return_tab table .input_type.expiry_date {
  width: 120px;
}
.my_wrap .right .return_tab table .return_write {
  display: flex;
  align-items: center;
  gap: 10px;
}
.my_wrap .right .return_tab table .return_reason {
  display: flex;
  align-items: center;
  gap: 10px;
}
.my_wrap .right .return_tab table .return_reason dd {
  width: calc(100% - 50px);
}
.my_wrap .right .return_tab table .return_reason dd input {
  width: 100%;
  text-align: left;
}
.my_wrap .right .return_tab table td.dasher_border {
  border-top: 1px dashed var(--sozo-border);
}
.my_wrap .right .return_tab table .none_border td:nth-of-type(2), .my_wrap .right .return_tab table .none_border td:nth-of-type(3), .my_wrap .right .return_tab table .none_border td:nth-of-type(4), .my_wrap .right .return_tab table .none_border td:nth-of-type(5), .my_wrap .right .return_tab table .none_border td:nth-of-type(6), .my_wrap .right .return_tab table .none_border td:nth-of-type(7) {
  border-bottom: 0;
}
.my_wrap .right .return_tab .return_etc_wrap {
  display: none;
}
.my_wrap .search_list {
  width: 100%;
  height: 400px;
  margin-top: 20px;
}
.my_wrap .search_list .list_wrap {
  padding: 0;
}
.my_wrap .search_list .pro_info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.my_wrap .search_list .pro_info dd {
  word-break: keep-all;
}
.my_wrap .search_list .pro_info .square {
  width: 70px;
}
.my_wrap .ledger_table {
  width: 100%;
  overflow: auto;
}
.my_wrap .ledger_table .table_default {
  width: 100%;
}
.my_wrap .ledger_table .table_default tr th {
  border-bottom: 0;
}
.my_wrap .ledger_table .table_default tr td {
  border-bottom: 1px solid #ececec;
  /*&:last-child{
      border-right: 0;
  }*/
}
.my_wrap .ledger_table .table_default tr td.sign img {
  display: block;
  width: 20px;
  margin: 0 auto;
}
.my_wrap .ledger_table .table_default tr:nth-child(even) td {
  background-color: #fcfcfc;
}
.my_wrap .ledger_table .table_default tr.point td {
  font-family: var(--font-bold);
  color: var(--sozo-red);
}

.result_txt {
  margin: 30px 0 10px;
}
.result_txt span {
  font-family: var(--font-bold);
}

/* 준비중 */
.prepared_wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prepared_wrap .cont {
  text-align: center;
  font-size: 20px;
}
.prepared_wrap .cont img {
  width: 150px;
  margin-bottom: 30px;
}
.prepared_wrap .cont p {
  font-size: 20px;
  line-height: 25px;
}
.prepared_wrap .cont p.strong {
  font-size: 30px;
  font-family: var(--font-bold);
  margin-bottom: 10px;
}
.prepared_wrap .cont p + p {
  margin-top: 10px;
}

.site_working {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site_working .cont {
  border-bottom: 7px solid #0059e7;
}
.site_working .txt {
  padding: 40px 0;
  width: 680px;
  margin: 0 auto;
  color: #595959;
}
.site_working .txt dl dt {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}
.site_working .txt dl dt span {
  font-size: 18px;
  margin-left: 5px;
}
.site_working .txt dl dd {
  padding-left: 15px;
  position: relative;
  font-size: 16px;
}
.site_working .txt dl dd::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
.site_working .txt dl dd b {
  font-family: var(--font-regular);
}
.site_working .txt dl + dl {
  margin-top: 15px;
}

/* 기획전 */
.eventmall_wrap .evt_cate ul {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.eventmall_wrap .evt_cate ul li {
  display: inline-block;
  color: #8d959f;
  font-size: 16px;
  padding: 15px 30px;
  box-sizing: border-box;
  background-color: #e8e8e8;
  border-radius: 40px;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
.eventmall_wrap .evt_cate ul li.on {
  background-color: var(--sozo-main);
  color: #fff;
}
.eventmall_wrap .pro_wrap {
  margin-bottom: 30px;
}
.eventmall_wrap .pro_wrap.tab_box {
  display: none;
}
.eventmall_wrap .pro_wrap.tab_box.on {
  display: block;
}

.order_none {
  width: 100%;
  height: 100%;
  background: #fff url(/images/img_none_product.png) no-repeat center top;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
}
.order_none p {
  width: 100%;
  text-align: center;
  color: var(--sozo-txt01);
  position: absolute;
  bottom: 70px;
}

.notice_wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7176f6;
}
.notice_wrap img {
  width: 100%;
  max-width: 500px;
}

/*###### 반응형 관련 CSS ######*/
@media (max-width: 768px) {
  .prepared_wrap .cont img {
    width: 30%;
  }
  .prepared_wrap .cont p {
    font-size: 0.8em;
    line-height: 21px;
  }
  .prepared_wrap .cont p.strong {
    font-size: 1em;
  }
}
@media (max-width: 1366px) and (max-height: 768px) {
  .btn_login {
    line-height: 4.3002vw;
    font-size: 1.7201vw;
  }
  .sozo_login {
    height: calc(100vh - 10.9461vw);
  }
  .sozo_login .login_cont_wrap {
    width: 80%;
    height: auto;
    aspect-ratio: 57/32;
    background-position: center center;
    padding: 4.6912vw;
  }
  .sozo_login .login_cont_wrap .left {
    padding: 2.3456vw 4.6912vw 0 0;
    display: flex;
    align-items: center;
  }
  .sozo_login .login_cont_wrap .left .benefit_wrap02 .tit {
    font-size: 1.7201vw;
  }
  .sozo_login .login_cont_wrap .left .benefit_wrap02 .list li {
    gap: 1.1728vw;
    padding: 1.5637vw 0;
  }
  .sozo_login .login_cont_wrap .left .benefit_wrap02 .list li .ico_wrap {
    width: 5.6294vw;
  }
  .sozo_login .login_cont_wrap .left .benefit_wrap02 .list li dl dt {
    font-size: 1.251vw;
    margin-bottom: 0.3909vw;
  }
  .sozo_login .login_cont_wrap .right {
    padding-left: 4.6912vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap {
    width: 31.2744vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .logo {
    margin: 0 auto 1.9547vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .input_wrap {
    padding: 1.1728vw;
    margin-bottom: 0.7819vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .cust_chk {
    margin-top: 1.1728vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .btn_login {
    margin: 1.1728vw 0 1.5637vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .sub_btn li a {
    font-size: 1.251vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .btn_remote {
    font-size: 1.0946vw;
    margin-top: 2.3456vw;
  }
  .login_footer .cont {
    width: 90%;
  }
  .login_footer .cont .logo {
    width: 14.0735vw;
  }
  .login_footer .cont .company_info {
    width: 40%;
  }
  .login_footer .cont .company_info .info02 {
    width: 100%;
    margin: 0.7819vw 0;
  }
  .login_footer .cont .cs_info .info01 dd {
    font-size: 1.5637vw;
  }
}
/* 125% ~ 150% */
@media screen and (max-width: 1920px) and (max-height: 1080px) and (min-resolution: 120dpi) and (max-resolution: 144dpi) {
  .cust_chk {
    font-size: 0.9382vw;
  }
  .cust_chk .on {
    width: 1.5637vw;
    height: 1.5637vw;
    background-size: 100%;
  }
  .cust_chk input[type=checkbox]:checked + .on {
    background-size: 100%;
  }
  .btn_login {
    line-height: 3.1274vw;
    font-size: 1.251vw;
  }
  .sozo_login {
    height: calc(100vh - 7.8186vw);
  }
  .sozo_login .login_cont_wrap {
    width: 60%;
    height: auto;
    padding: 2.3456vw;
  }
  .sozo_login .login_cont_wrap .left {
    padding: 0 3.9093vw 0 1.1728vw;
  }
  .sozo_login .login_cont_wrap .left .benefit_wrap02 .tit {
    font-size: 1.4073vw;
  }
  .sozo_login .login_cont_wrap .left .benefit_wrap02 .list li {
    gap: 0.7819vw;
    padding: 0.7819vw 0;
  }
  .sozo_login .login_cont_wrap .left .benefit_wrap02 .list li dl dt {
    font-size: 0.9382vw;
  }
  .sozo_login .login_cont_wrap .left .benefit_wrap02 .list li dl dd {
    font-size: 0.9382vw;
  }
  .sozo_login .login_cont_wrap .left .benefit_wrap02 .list li .ico_wrap img {
    width: 5.0821vw;
  }
  .sozo_login .login_cont_wrap .right {
    padding-left: 2.6583vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap {
    width: 23.4558vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .logo {
    width: 7.8186vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .input_wrap label, .sozo_login .login_cont_wrap .right .login_wrap .input_wrap input {
    font-size: 0.9382vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .btn_login {
    margin: 0.7819vw 0;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .sub_btn li a {
    font-size: 0.9382vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .sub_btn li::after {
    font-size: 0.9382vw;
  }
  .sozo_login .login_cont_wrap .right .login_wrap .btn_remote {
    font-size: 0.9382vw;
    margin-top: 1.1728vw;
  }
  .login_footer {
    padding: 1.5637vw 0;
  }
  .login_footer .cont {
    font-size: 0.9382vw;
  }
  .login_footer .cont .logo {
    width: 11.7279vw;
  }
  .login_footer .cont .cs_info {
    font-size: 0.9382vw;
  }
  .login_footer .cont .cs_info .info01 dd {
    font-size: 18px;
  }
}
@media (max-width: 1600px) {
  .shinil_header .top {
    width: 95%;
  }
  .shinil_header .bottom {
    width: 95%;
  }
  .shinil_header .all_cate_wrap .all_cate_cont {
    width: 95%;
    padding-left: 5%;
  }
  .shinil_left {
    width: 110px;
  }
  .shinil_left .mini_banner {
    display: none;
  }
  .shinil_left .cart_table {
    padding: 10px;
    font-size: 12px;
  }
  .shinil_left .cart_table .btn_detail, .shinil_left .cart_table thead {
    display: none !important;
  }
  .shinil_left .cart_table tbody {
    width: 100% !important;
  }
  .shinil_left .cart_table tbody tr td {
    display: block;
  }
  .shinil_left .cart_table tbody tr td:nth-child(2) {
    display: none;
  }
  .shinil_left .cart_table tbody tr td:nth-child(1) {
    border-bottom: 0;
  }
  .shinil_left .cart_table tbody tr td:nth-child(3) {
    width: 80% !important;
  }
  .shinil_right {
    width: 120px;
  }
  .shinil_right .quick_menu .pay {
    display: none;
  }
  .shinil_right .mini_banner {
    display: none;
  }
}